:root {
      --bg-top: #667db1;
      --bg-bottom: #7085b9;
      --nav: #111a35;
      --nav-2: #1a2750;
      --panel: rgba(19, 31, 66, 0.92);
      --panel-2: rgba(30, 47, 92, 0.94);
      --panel-soft: rgba(255,255,255,0.06);
      --text: #f5f8ff;
      --muted: #c7d6f7;
      --line: rgba(167, 214, 255, 0.18);
      --line-strong: rgba(135, 220, 255, 0.34);
      --accent: #34d7ff;
      --accent-2: #0ec2ff;
      --accent-soft: rgba(52, 215, 255, 0.12);
      --orange: #ff8f1f;
      --green: #20e07a;
      --good: #24dd88;
      --warn: #ffb13a;
      --low: #c7d0ea;
      --chip: rgba(255,255,255,0.08);
      --shadow: 0 22px 58px rgba(3, 9, 25, 0.28);
    }
    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Inter, "Arial Narrow", Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top center, rgba(255,255,255,0.20), transparent 25%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
      color: var(--text);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(60deg, rgba(255,255,255,0.07) 0 2px, transparent 2px 110px),
        linear-gradient(-60deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 110px),
        linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 95px);
      opacity: 0.18;
      mix-blend-mode: screen;
    }
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at 50% -10%, rgba(74, 206, 255, 0.18), transparent 28%);
    }
    a { color: inherit; text-decoration: none; }
    .ow-shell {
      position: sticky;
      top: 0;
      z-index: 30;
      padding-top: 8px;
      backdrop-filter: blur(8px);
    }
    .ow-nav {
      width: min(1500px, calc(100% - 16px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr auto auto;
      gap: 12px;
      align-items: center;
    }
    .ow-home,
    .ow-tab,
    .ow-logo,
    .hud-chip {
      border: 1px solid rgba(149, 212, 255, 0.24);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), var(--shadow);
    }
    .ow-home,
    .ow-tab {
      min-height: 62px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      background: linear-gradient(180deg, var(--nav) 0%, var(--nav-2) 100%);
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: .04em;
      color: rgba(255,255,255,0.96);
      clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
      white-space: nowrap;
    }
    .ow-home {
      width: 62px;
      padding: 0;
      font-size: 24px;
      clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    }
    .ow-menu {
      display: flex;
      gap: 10px;
      align-items: center;
      min-width: 0;
      overflow: auto hidden;
      padding-bottom: 2px;
    }
    .ow-menu::-webkit-scrollbar { height: 0; }
    .ow-tab.active {
      background: linear-gradient(180deg, #0f8dd8 0%, #0a6fc1 100%);
      border-color: rgba(122, 235, 255, 0.55);
      box-shadow:
        inset 0 -4px 0 rgba(57, 231, 255, 0.78),
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 16px 40px rgba(0, 25, 53, 0.24);
    }
    .ow-logo {
      justify-self: center;
      min-height: 76px;
      min-width: 320px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 34px;
      position: relative;
      background: linear-gradient(180deg, #0f8ed8 0%, #0863ac 100%);
      clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, calc(100% - 18px) 100%, 18px 100%, 0 18px);
      text-transform: uppercase;
      font-weight: 1000;
      letter-spacing: .08em;
      color: #eefcff;
    }
    .ow-logo::before {
      content: '◯';
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      margin-right: 12px;
      font-size: 18px;
      color: #ffffff;
      background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
    }
    .ow-hud {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .hud-chip {
      min-height: 46px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
      background: linear-gradient(180deg, rgba(17,26,53,.95), rgba(28,42,79,.95));
      text-transform: uppercase;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: .08em;
      color: #dfeafe;
      white-space: nowrap;
    }
    .hud-chip.accent {
      background: linear-gradient(180deg, #1fa64e 0%, #108f3c 100%);
      color: white;
      border-color: rgba(145, 255, 193, 0.42);
    }
    .wrap {
      width: min(1460px, calc(100% - 56px));
      margin: 0 auto;
      padding: 16px 0 56px;
      position: relative;
      z-index: 1;
    }
    .hero {
      display: grid;
      gap: 20px;
      grid-template-columns: 1.36fr 0.84fr;
      align-items: stretch;
      margin-bottom: 24px;
    }
    .card {
      background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
      position: relative;
      overflow: hidden;
    }
    .card::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 4px;
      background: linear-gradient(90deg, rgba(255,255,255,0), rgba(74,213,255,0.95), rgba(255,255,255,0));
      opacity: 0.85;
    }
    .card::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 22%);
    }
    .hero-main {
      padding: 32px 34px 28px;
    }
    .hero-side {
      padding: 24px 24px 22px;
      display: grid;
      gap: 14px;
      align-content: start;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      background: rgba(255,255,255,0.06);
      border-left: 4px solid var(--accent);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #f5fbff;
      margin-bottom: 14px;
      font-weight: 900;
    }
    h1 {
      margin: 0 0 12px;
      font-size: clamp(38px, 5vw, 68px);
      line-height: 0.92;
      text-transform: uppercase;
      font-style: italic;
      letter-spacing: -0.04em;
      max-width: 9ch;
    }
    .subtitle {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
      max-width: 56ch;
      margin-bottom: 4px;
    }
    .meta-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0,1fr));
      gap: 12px;
      margin-top: 22px;
    }
    .meta {
      grid-column: span 4;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border: 1px solid rgba(166, 220, 255, 0.14);
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      padding: 16px 18px 18px;
      position: relative;
      overflow: hidden;
    }
    .meta::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 42%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0));
    }
    .meta.meta-wide { grid-column: span 12; }
    .meta .k {
      display: block;
      color: #a9dfff;
      font-size: 11px;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: .10em;
      font-weight: 900;
    }
    .meta .v {
      font-weight: 900;
      font-size: 19px;
      line-height: 1.15;
      text-transform: uppercase;
      font-style: italic;
      letter-spacing: -.02em;
    }
    .meta .sub {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }
    .meta .v.compact {
      font-size: 15px;
      line-height: 1.55;
      font-style: normal;
      text-transform: none;
      font-weight: 700;
      letter-spacing: 0;
    }
    label {
      display: block;
      font-size: 12px;
      color: #dcecff;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 800;
    }
    select, input {
      width: 100%;
      border: 1px solid rgba(154, 214, 255, 0.22);
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
      color: var(--text);
      clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
      padding: 13px 16px;
      min-height: 54px;
      font-size: 15px;
      outline: none;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    }
    input::placeholder { color: #c3d0ee; }
    select option {
      background: #10192c;
      color: #fff;
    }
    .side-controls {
      display: grid;
      gap: 14px;
    }
    .field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .btn-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    button {
      border: 1px solid rgba(130, 226, 255, 0.38);
      background: linear-gradient(180deg, #3fbaff 0%, #1488dc 100%);
      color: #f4fcff;
      padding: 12px 18px;
      font-weight: 900;
      clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
      cursor: pointer;
      font-size: 13px;
      min-height: 50px;
      text-transform: uppercase;
      letter-spacing: .08em;
      box-shadow: inset 0 -3px 0 rgba(101, 241, 255, 0.85), inset 0 1px 0 rgba(255,255,255,0.16);
    }
    button.ghost {
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .section {
      margin-top: 18px;
      padding: 26px;
    }
    .section h2 {
      margin: 0 0 10px;
      font-size: clamp(34px, 4vw, 56px);
      line-height: 0.96;
      font-style: italic;
      text-transform: uppercase;
      letter-spacing: -0.04em;
    }
    .section p.small {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      max-width: 86ch;
    }
    .result-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 16px;
      margin-top: 16px;
    }
    .pick-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
      border: 1px solid var(--line);
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
      padding: 18px;
      min-height: 186px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }
    .pick-card::before {
      content: '';
      position: absolute;
      inset: 0 auto 0 0;
      width: 7px;
      background: linear-gradient(180deg, var(--accent), rgba(255,255,255,0));
      opacity: 0.95;
    }
    .pick-rank {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      display: inline-grid;
      place-items: center;
      font-weight: 1000;
      font-style: italic;
      background: linear-gradient(180deg, #94d8ff 0%, #36afff 100%);
      color: #071528;
      border: 0;
      box-shadow: inset 0 2px 0 rgba(255,255,255,0.3);
    }
    .pick-hero {
      font-size: 31px;
      font-weight: 1000;
      margin-top: 8px;
      line-height: 0.95;
      font-style: italic;
      text-transform: uppercase;
      letter-spacing: -0.04em;
    }
    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(175, 224, 255, 0.16);
      color: var(--text);
      font-size: 11px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .06em;
      font-weight: 800;
    }
    .badge.high { border-color: rgba(35,221,136,.45); color: #c1ffe0; background: rgba(24, 123, 70, 0.24); }
    .badge.medium { border-color: rgba(255,177,58,.45); color: #ffe2ae; background: rgba(161, 92, 9, 0.22); }
    .badge.low { border-color: rgba(198, 208, 234, .32); color: #edf2ff; background: rgba(91, 105, 142, 0.24); }
    .inline-lists {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 16px;
    }
    .mini {
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--line);
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      padding: 16px;
    }
    .mini h3 {
      margin: 0 0 10px;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 900;
      color: #ddf3ff;
    }
    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .toolbar {
      display: grid;
      grid-template-columns: 1.2fr 0.7fr 0.7fr;
      gap: 12px;
      margin-bottom: 14px;
    }
    .table-wrap {
      overflow: auto;
      border: 1px solid var(--line);
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
      background: rgba(10, 18, 40, 0.26);
    }
    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 960px;
    }
    thead th {
      position: sticky;
      top: 0;
      background: #121e41;
      color: #c5f0ff;
      text-align: left;
      font-size: 11px;
      letter-spacing: .10em;
      text-transform: uppercase;
      padding: 15px 14px;
      border-bottom: 1px solid rgba(135, 220, 255, 0.18);
      z-index: 1;
      font-weight: 900;
    }
    tbody td {
      padding: 14px;
      border-top: 1px solid rgba(255,255,255,0.06);
      vertical-align: top;
      font-size: 14px;
    }
    tbody tr:nth-child(odd) {
      background: rgba(255,255,255,0.02);
    }
    tbody tr:hover {
      background: rgba(255,255,255,0.05);
    }
    .hero-name {
      font-weight: 900;
      font-size: 15px;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: .01em;
    }
    .muted {
      color: var(--muted);
    }
    .notes-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
      margin-top: 16px;
    }
    .note-card {
      padding: 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--line);
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .note-card h3 {
      margin: 0 0 8px;
      font-size: 16px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .05em;
    }
    .footer {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.8;
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .empty {
      padding: 24px;
      border: 1px dashed rgba(195, 226, 255, 0.22);
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      color: var(--muted);
      text-align: center;
      background: rgba(255,255,255,0.03);
    }

    .hero-preview-card {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 14px;
      align-items: center;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--line);
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
      padding: 14px;
      position: relative;
      overflow: hidden;
    }
    .hero-preview-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 6px;
      background: linear-gradient(180deg, var(--accent), rgba(255,255,255,0));
    }
    .hero-preview-meta {
      min-width: 0;
    }
    .hero-preview-title {
      font-size: 11px;
      letter-spacing: .11em;
      text-transform: uppercase;
      color: #a8dfff;
      margin-bottom: 6px;
      font-weight: 900;
    }
    .hero-preview-name {
      font-size: 26px;
      font-weight: 1000;
      line-height: 0.95;
      margin-bottom: 10px;
      text-transform: uppercase;
      font-style: italic;
      letter-spacing: -0.03em;
    }
    .hero-preview-summary {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: grid;
      gap: 5px;
    }
    .hero-preview-summary-label {
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #8fdfff;
      font-weight: 900;
      opacity: 0.9;
    }
    .hero-preview-summary-text {
      font-size: 13px;
      line-height: 1.45;
      color: #d9ebff;
    }

    .official-note {
      margin: 14px 0 0;
      padding: 14px 16px;
      border: 1px solid rgba(116, 214, 255, 0.18);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      display: grid;
      gap: 6px;
    }
    .official-note .eyebrow {
      font-size: 10px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 900;
      color: #8fdfff;
    }
    .official-note .copy {
      font-size: 13px;
      line-height: 1.55;
      color: #d7eaff;
    }
    .snapshot-block {
      margin-top: 14px;
      padding: 12px;
      border: 1px solid rgba(116, 214, 255, 0.12);
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      display: grid;
      gap: 10px;
    }
    .snapshot-head {
      display: grid;
      gap: 3px;
    }
    .snapshot-kicker {
      font-size: 10px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: #8fdfff;
      font-weight: 900;
    }
    .snapshot-copy {
      font-size: 12px;
      line-height: 1.45;
      color: #d7eaff;
    }
    .pick-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 10px;
    }
    .stat-pill {
      display: grid;
      gap: 4px;
      padding: 12px 12px 10px;
      border: 1px solid rgba(116, 214, 255, 0.14);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      min-height: 64px;
    }
    .stat-pill .k {
      font-size: 10px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .11em;
      color: #8fdfff;
      font-weight: 900;
    }
    .stat-pill strong {
      font-size: 22px;
      line-height: 1;
      font-weight: 1000;
      font-style: italic;
      letter-spacing: -0.03em;
      color: #f6fbff;
    }
    .stat-pill span.meta {
      font-size: 11px;
      line-height: 1.3;
      color: var(--muted);
    }
    .line-pick-wr {
      margin-left: 2px;
      color: #8fe6ff;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .04em;
    }
    .avatar-shell {
      position: relative;
      display: inline-grid;
      place-items: center;
      border-radius: 18px;
      overflow: hidden;
      background:
        radial-gradient(circle at top, rgba(124,156,255,0.25), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
      flex: 0 0 auto;
    }
    .avatar-shell.sm {
      width: 36px;
      height: 36px;
      border-radius: 12px;
    }
    .avatar-shell.md {
      width: 76px;
      height: 76px;
      border-radius: 18px;
    }
    .avatar-shell.lg {
      width: 72px;
      height: 72px;
      border-radius: 18px;
    }
    .avatar-shell img,
    .avatar-fallback {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .avatar-shell img {
      object-fit: cover;
      object-position: center top;
      z-index: 1;
    }
    .avatar-fallback {
      display: grid;
      place-items: center;
      font-size: 28px;
      color: #ecf1ff;
      background:
        radial-gradient(circle at 30% 20%, rgba(124,156,255,0.28), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
    }
    .avatar-shell.sm .avatar-fallback {
      font-size: 16px;
    }
    .hero-inline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }
    .pick-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .pick-header {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 12px;
      align-items: center;
    }
    .pick-title-wrap {
      min-width: 0;
    }
    .pick-role {
      font-size: 11px;
      color: #afebff;
      margin-top: 6px;
      text-transform: uppercase;
      letter-spacing: .10em;
      font-weight: 800;
    }
    .pick-vs {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
      text-align: right;
      text-transform: uppercase;
      letter-spacing: .05em;
      font-weight: 700;
    }
    .pick-vs strong {
      color: var(--text);
      font-weight: 900;
      font-style: italic;
    }
    .quick-summary {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }
    .line-picks {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
    }
    .line-pick {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--line);
      color: var(--text);
      font-size: 12px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .04em;
      font-weight: 800;
    }
    .line-pick .avatar-shell.sm {
      width: 30px;
      height: 30px;
      border-radius: 10px;
    }
    .line-pick .avatar-shell.sm .avatar-fallback {
      font-size: 14px;
    }
    .line-pick strong {
      font-weight: 900;
    }
    .table-hero {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: center;
    }
    .table-hero .avatar-shell.sm {
      width: 44px;
      height: 44px;
      border-radius: 14px;
    }
    .table-hero .avatar-shell.sm .avatar-fallback {
      font-size: 18px;
    }
    .table-wrap::-webkit-scrollbar,
    .ow-menu::-webkit-scrollbar { height: 10px; width: 10px; }
    .table-wrap::-webkit-scrollbar-thumb,
    .ow-menu::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.14);
      border-radius: 999px;
    }

    @media (max-width: 1240px) {
      .ow-nav {
        grid-template-columns: auto 1fr auto;
      }
      .ow-hud { display: none; }
    }
    @media (max-width: 1100px) {
      .hero {
        grid-template-columns: 1fr;
      }
      .field-grid,
      .result-grid, .inline-lists, .notes-grid, .meta-grid, .toolbar {
        grid-template-columns: 1fr;
      }
      .meta,
      .meta.meta-wide {
        grid-column: span 1;
      }
      .ow-logo {
        min-width: 240px;
      }
    }
    @media (max-width: 840px) {
      .ow-nav {
        grid-template-columns: auto 1fr;
      }
      .ow-logo {
        display: none;
      }
      .wrap {
        width: min(100%, calc(100% - 24px));
        padding-top: 18px;
      }
      .hero-main,
      .hero-side,
      .section {
        padding: 20px;
      }
      h1,
      .section h2 {
        max-width: none;
      }
    }

.ow-shell {
      padding-top: 12px;
      padding-bottom: 8px;
      background: linear-gradient(180deg, rgba(10, 18, 37, 0.58), rgba(10, 18, 37, 0.12));
    }
    .ow-nav {
      width: min(1520px, calc(100% - 40px));
      gap: 16px;
    }
    .ow-home,
    .ow-tab,
    .ow-logo,
    .hud-chip,
    button,
    select,
    input,
    .pick-card,
    .meta,
    .mini,
    .note-card,
    .hero-preview-card {
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, filter .16s ease;
    }
    .ow-home,
    .ow-tab {
      min-height: 58px;
      padding: 0 28px;
      font-size: 13px;
      border-color: rgba(146, 214, 255, 0.28);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 14px 34px rgba(4, 10, 28, 0.20);
    }
    .ow-home:hover,
    .ow-tab:hover {
      transform: translateY(-1px);
      border-color: rgba(128, 230, 255, 0.48);
      filter: brightness(1.04);
    }
    .ow-tab.active {
      box-shadow:
        inset 0 -4px 0 rgba(57, 231, 255, 0.82),
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 18px 42px rgba(0, 33, 72, 0.26);
    }
    .ow-logo {
      min-height: 74px;
      min-width: 340px;
      letter-spacing: .10em;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 20px 44px rgba(0, 33, 72, 0.22);
    }
    .hud-chip {
      min-height: 44px;
      padding: 0 18px;
      font-size: 11px;
      letter-spacing: .10em;
    }
    .wrap {
      width: min(1480px, calc(100% - 56px));
      padding: 28px 0 80px;
    }
    .hero {
      grid-template-columns: 1.42fr 0.86fr;
      gap: 24px;
      margin-bottom: 28px;
    }
    .card {
      border-color: rgba(164, 221, 255, 0.16);
      background: linear-gradient(180deg, rgba(15, 27, 60, 0.96) 0%, rgba(26, 42, 82, 0.95) 100%);
      box-shadow: 0 24px 58px rgba(5, 10, 28, 0.26);
    }
    .card::before {
      height: 5px;
      opacity: 0.95;
    }
    .hero-main {
      padding: 36px 36px 30px;
    }
    h1 {
      margin: 0 0 14px;
      font-size: clamp(42px, 5.6vw, 76px);
      max-width: 8.5ch;
    }
    .subtitle {
      font-size: 17px;
      line-height: 1.65;
      max-width: 48ch;
      color: #d2def8;
      margin-bottom: 6px;
    }
    .meta-grid {
      gap: 14px;
      margin-top: 26px;
    }
    .meta {
      padding: 18px 20px 20px;
      border-color: rgba(166, 220, 255, 0.16);
      background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    }
    .meta::before {
      width: 46%;
      height: 4px;
    }
    .meta .k {
      margin-bottom: 8px;
      color: #9fe6ff;
      font-size: 10px;
      letter-spacing: .12em;
    }
    .meta .v {
      font-size: 22px;
    }
    .meta .sub {
      margin-top: 9px;
      font-size: 13px;
      line-height: 1.55;
      color: #c9d9f7;
    }
    .hero-side {
      padding: 20px;
      gap: 16px;
    }
    .panel-head,
    .side-controls {
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
      border: 1px solid rgba(166, 220, 255, 0.14);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    }
    .panel-head {
      padding: 16px 16px 15px;
    }
    .panel-head::before,
    .side-controls::before {
      content: '';
      position: absolute;
      inset: 0 0 auto 0;
      height: 3px;
      background: linear-gradient(90deg, rgba(52,215,255,0.95), rgba(255,255,255,0));
    }
    .panel-tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 10px;
      margin-bottom: 10px;
      border-radius: 999px;
      background: rgba(52, 215, 255, 0.12);
      border: 1px solid rgba(113, 225, 255, 0.26);
      color: #bff6ff;
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .12em;
    }
    .panel-head h3 {
      margin: 0 0 6px;
      font-size: 24px;
      line-height: 1.05;
      font-style: italic;
      text-transform: uppercase;
      letter-spacing: -.03em;
    }
    .panel-head p {
      margin: 0;
      color: #cad8f5;
      font-size: 13px;
      line-height: 1.6;
    }
    .side-controls {
      padding: 16px;
      display: grid;
      gap: 16px;
    }
    .field-grid {
      gap: 14px;
    }
    label {
      margin-bottom: 10px;
      font-size: 11px;
      color: #d7ebff;
      letter-spacing: .10em;
    }
    select,
    input {
      min-height: 58px;
      padding: 14px 18px;
      font-size: 15px;
      font-weight: 700;
      border-color: rgba(154, 214, 255, 0.24);
      background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.04));
    }
    select:hover,
    input:hover {
      border-color: rgba(135, 223, 255, 0.40);
      background: linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.05));
    }
    select:focus,
    input:focus {
      border-color: rgba(102, 233, 255, 0.64);
      box-shadow: 0 0 0 2px rgba(52, 215, 255, 0.16), inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .btn-row {
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 12px;
    }
    button {
      min-height: 54px;
      padding: 0 20px;
      font-size: 13px;
      letter-spacing: .09em;
    }
    button:hover {
      transform: translateY(-1px);
      filter: brightness(1.04);
      box-shadow: inset 0 -3px 0 rgba(101, 241, 255, 0.85), inset 0 1px 0 rgba(255,255,255,0.16), 0 16px 34px rgba(2, 17, 39, 0.24);
    }
    button.ghost:hover {
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 28px rgba(2, 17, 39, 0.16);
      border-color: rgba(255,255,255,0.18);
    }
    .hero-preview-card {
      padding: 16px;
      grid-template-columns: 84px 1fr;
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    }
    .hero-preview-name {
      font-size: 28px;
      margin-bottom: 12px;
    }
    .panel-footnote {
      padding: 2px 4px 0;
      color: #c7d6f0;
      font-size: 13px;
      line-height: 1.65;
    }
    .section {
      margin-top: 22px;
      padding: 30px 28px 32px;
    }
    .section h2 {
      margin: 0 0 14px;
      font-size: clamp(38px, 4.6vw, 64px);
    }
    .section p.small {
      margin: 0 0 22px;
      max-width: 92ch;
      font-size: 15px;
      color: #cfdbf7;
    }
    .quick-summary {
      gap: 10px;
      margin-bottom: 18px;
    }
    .result-grid {
      gap: 18px;
      margin-top: 18px;
    }
    .pick-card {
      min-height: 218px;
      padding: 20px 20px 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      border-color: rgba(167, 214, 255, 0.18);
    }
    .pick-card::after {
      content: '';
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(52,215,255,0), rgba(52,215,255,0.45), rgba(52,215,255,0));
      pointer-events: none;
    }
    .pick-card:hover {
      transform: translateY(-2px);
      border-color: rgba(120, 227, 255, 0.34);
      box-shadow: 0 22px 46px rgba(4, 13, 32, 0.24);
    }
    .pick-rank {
      width: 46px;
      height: 46px;
      font-size: 18px;
    }
    .pick-header {
      grid-template-columns: 76px 1fr;
      gap: 14px;
    }
    .pick-hero {
      font-size: 34px;
    }
    .pick-role {
      margin-top: 7px;
      font-size: 12px;
    }
    .badges {
      gap: 10px;
    }
    .badge {
      padding: 9px 13px;
      font-size: 11px;
      border-color: rgba(175, 224, 255, 0.18);
      background: rgba(255,255,255,0.075);
    }
    .inline-lists {
      gap: 16px;
      margin-top: 18px;
    }
    .mini {
      padding: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    }
    .line-picks {
      gap: 12px;
    }
    .line-pick {
      padding: 9px 13px;
      font-size: 12px;
      border-color: rgba(167, 214, 255, 0.18);
      background: rgba(255,255,255,0.065);
    }
    .toolbar {
      grid-template-columns: 1.3fr .7fr .7fr;
      gap: 14px;
      margin-bottom: 18px;
    }
    .table-wrap {
      background: rgba(10, 18, 40, 0.32);
      border-color: rgba(167, 214, 255, 0.18);
    }
    thead th {
      padding: 16px;
      background: linear-gradient(180deg, #122146 0%, #0f1d3e 100%);
    }
    tbody td {
      padding: 16px;
    }
    .table-hero {
      gap: 14px;
    }
    .note-card {
      padding: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    }
    .note-card:hover {
      transform: translateY(-1px);
      border-color: rgba(120, 227, 255, 0.28);
    }
    .footer {
      margin-top: 22px;
      padding-top: 18px;
      color: #c9d8f4;
    }
    .empty {
      padding: 26px;
      font-size: 14px;
      line-height: 1.65;
      background: rgba(255,255,255,0.035);
    }
    @media (max-width: 1240px) {
      .hero {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 840px) {
      .ow-nav {
        width: min(100%, calc(100% - 20px));
      }
      .wrap {
        width: min(100%, calc(100% - 20px));
        padding-top: 18px;
      }
      .hero-main,
      .hero-side,
      .section {
        padding: 20px;
      }
      .btn-row,
      .field-grid,
      .toolbar,
      .result-grid,
      .inline-lists,
      .notes-grid,
      .meta-grid {
        grid-template-columns: 1fr;
      }
      .meta,
      .meta.meta-wide {
        grid-column: span 1;
      }
    }

#emptyState {
  display: none;
}
.pick-context {
  margin-top: 8px;
}
.secondary-block {
  margin-top: 16px;
}
.secondary-lead {
  margin-bottom: 10px;
}
