:root {
      --bg: #05070a;
      --bg-2: #091014;
      --surface: rgba(12, 18, 24, .78);
      --surface-strong: #0d141b;
      --line: rgba(255,255,255,.11);
      --muted-line: rgba(40,224,198,.16);
      --red: #ff2218;
      --red-soft: rgba(255,34,24,.18);
      --aqua: #28e0c6;
      --aqua-soft: rgba(40,224,198,.16);
      --gold: #f5b840;
      --text: #f8fbff;
      --dim: #aebbc6;
      --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      --shadow: 0 24px 80px rgba(0,0,0,.42);
      --radius: 26px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background:
        radial-gradient(circle at 82% 4%, rgba(255,34,24,.22), transparent 36rem),
        radial-gradient(circle at 8% 20%, rgba(40,224,198,.16), transparent 34rem),
        linear-gradient(180deg, var(--bg) 0%, #07090d 45%, #030405 100%);
      color: var(--text);
      font-family: var(--font);
      line-height: 1.7;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, black, transparent 75%);
      z-index: -1;
    }

    a { color: inherit; }
    p { color: var(--dim); margin: 0 0 22px; }
    img { max-width: 100%; display: block; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 16px clamp(18px, 4vw, 64px);
      background: rgba(5,7,10,.72);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .logo {
      display: inline-flex;
      flex-direction: column;
      line-height: .9;
      text-decoration: none;
      letter-spacing: -.04em;
      filter: drop-shadow(0 0 16px rgba(255,34,24,.35));
    }
    .logo strong { color: var(--red); font-size: clamp(30px, 4vw, 48px); font-weight: 950; }
    .logo span {
      color: #06100f;
      background: var(--aqua);
      letter-spacing: .42em;
      text-indent: .42em;
      text-align: center;
      border-radius: 0 0 10px 10px;
      font-size: 13px;
      font-weight: 900;
      padding: 6px 12px 7px;
    }

    .nav-links { display: flex; align-items: center; gap: 20px; font-size: 13px; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; }
    .nav-links a { text-decoration: none; transition: .2s; }
    .nav-links a:hover { color: var(--aqua); }

    .pill {
      border: 1px solid var(--muted-line);
      background: rgba(40,224,198,.08);
      color: var(--aqua);
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-size: 12px;
      box-shadow: inset 0 0 20px rgba(40,224,198,.06);
    }

    .hero {
      width: min(1480px, calc(100% - 36px));
      margin: 28px auto 0;
      display: grid;
      grid-template-columns: .9fr 1.15fr;
      gap: 22px;
      min-height: 680px;
    }

    .hero-copy, .hero-media {
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: linear-gradient(160deg, rgba(13,20,27,.94), rgba(5,7,10,.86));
    }

    .hero-copy {
      padding: clamp(28px, 5vw, 72px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      isolation: isolate;
    }

    .hero-copy::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(40,224,198,.2), transparent 65%);
      left: -140px;
      bottom: -120px;
      z-index: -1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      color: var(--aqua);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .22em;
      font-weight: 900;
      margin-bottom: 24px;
    }
    .eyebrow::before { content: ""; width: 42px; height: 2px; background: var(--red); box-shadow: 0 0 18px var(--red); }

    h1 {
      font-size: clamp(42px, 6vw, 88px);
      line-height: .94;
      text-transform: uppercase;
      letter-spacing: -.07em;
      margin-bottom: 28px;
    }
    h1 span { color: var(--aqua); text-shadow: 0 0 34px rgba(40,224,198,.38); }
    .lead { font-size: clamp(17px, 1.5vw, 22px); max-width: 700px; color: #d6e3ea; }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 13px 22px;
      border-radius: 14px;
      text-decoration: none;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: 13px;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--aqua); color: #04100e; box-shadow: 0 0 34px rgba(40,224,198,.28); }
    .btn-ghost { border: 1px solid rgba(255,255,255,.18); color: var(--text); background: rgba(255,255,255,.03); }

    .hero-media { min-height: 520px; }
    .hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(5,7,10,.46), transparent 38%), linear-gradient(0deg, rgba(5,7,10,.62), transparent 44%);
    }
    .floating-score {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, auto);
      gap: 12px;
    }
    .metric {
      min-width: 118px;
      padding: 16px;
      border: 1px solid rgba(40,224,198,.25);
      border-radius: 18px;
      background: rgba(5,9,12,.72);
      backdrop-filter: blur(14px);
    }
    .metric strong { display: block; color: var(--text); font-size: 21px; line-height: 1; }
    .metric span { color: var(--dim); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

    .page {
      width: min(1240px, calc(100% - 36px));
      margin: 42px auto 0;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 34px;
      align-items: start;
    }

    .content, .sidebar-card, .notice, .footer-inner {
      border: 1px solid var(--line);
      background: rgba(9, 14, 19, .78);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
    }
    .content { border-radius: var(--radius); padding: clamp(24px, 4vw, 54px); }

    h2 {
      margin: 58px 0 22px;
      font-size: clamp(26px, 3.2vw, 44px);
      line-height: 1.06;
      letter-spacing: -.04em;
      text-transform: uppercase;
    }
    h2:first-child { margin-top: 0; }
    h2::before {
      content: "";
      display: block;
      width: 66px;
      height: 3px;
      border-radius: 10px;
      background: linear-gradient(90deg, var(--red), var(--aqua));
      margin-bottom: 14px;
      box-shadow: 0 0 22px rgba(40,224,198,.32);
    }
    h3 {
      margin: 34px 0 14px;
      font-size: 22px;
      color: #fff;
      letter-spacing: -.02em;
    }

    .image-frame {
      margin: 34px 0 38px;
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 22px 60px rgba(0,0,0,.4);
      background: #10161c;
    }
    .image-frame img { width: 100%; aspect-ratio: 16 / 7.4; object-fit: cover; }
    .image-frame figcaption {
      position: absolute;
      left: 18px;
      bottom: 18px;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(3,5,8,.72);
      color: #dce8ee;
      border: 1px solid rgba(255,255,255,.12);
      font-size: 12px;
      backdrop-filter: blur(12px);
    }

    .info-table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 18px;
      margin: 28px 0 34px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.025);
    }
    .info-table th, .info-table td { padding: 17px 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
    .info-table th { color: var(--aqua); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; background: rgba(40,224,198,.06); }
    .info-table td:first-child { color: #fff; font-weight: 800; width: 34%; }
    .info-table tr:last-child td { border-bottom: 0; }

    ul, ol { margin: 4px 0 26px 24px; color: var(--dim); }
    li { margin: 9px 0; padding-left: 4px; }
    li::marker { color: var(--aqua); font-weight: 900; }

    .note {
      margin: 34px 0;
      border: 1px solid rgba(40,224,198,.22);
      border-left: 4px solid var(--aqua);
      border-radius: 20px;
      padding: 24px;
      background: linear-gradient(135deg, rgba(40,224,198,.09), rgba(255,34,24,.055));
    }
    .note h3 { margin-top: 0; color: var(--aqua); }
    .note p { margin-bottom: 0; }

    .cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin: 28px 0 34px;
    }
    .card {
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      padding: 22px;
      background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    }
    .card b { display: block; color: var(--gold); margin-bottom: 6px; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }
    .card p { margin: 0; font-size: 15px; }

    .cta {
      margin: 54px 0 26px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
      align-items: center;
      border: 1px solid rgba(255,34,24,.26);
      border-radius: 28px;
      padding: clamp(24px, 4vw, 42px);
      background:
        radial-gradient(circle at 85% 20%, rgba(255,34,24,.24), transparent 20rem),
        linear-gradient(135deg, rgba(255,34,24,.095), rgba(40,224,198,.075));
      overflow: hidden;
    }
    .cta h2 { margin: 0 0 14px; }
    .cta h2::before { display: none; }
    .cta p { margin-bottom: 0; }
    .cta-panel {
      border: 1px solid rgba(40,224,198,.24);
      background: rgba(5,9,12,.65);
      border-radius: 22px;
      padding: 24px;
    }
    .cta-panel span { display: block; color: var(--dim); font-size: 13px; margin-top: 10px; }

    .faq-item {
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 22px 0;
    }
    .faq-item h3 { margin: 0 0 8px; font-size: 19px; color: var(--aqua); }
    .faq-item p { margin-bottom: 0; }

    .sidebar { position: sticky; top: 110px; display: grid; gap: 18px; }
    .sidebar-card { border-radius: 24px; padding: 24px; }
    .sidebar-card h4 { color: var(--aqua); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
    .side-list { list-style: none; margin: 0; }
    .side-list li { padding: 12px 0; margin: 0; border-top: 1px solid rgba(255,255,255,.08); color: var(--dim); }
    .side-list a { color: var(--dim); text-decoration: none; }
    .side-list a:hover { color: var(--aqua); }

    .mini-visual {
      overflow: hidden;
      padding: 0;
    }
    .mini-visual img { width: 100%; height: 200px; object-fit: cover; }
    .mini-visual div { padding: 20px; }

    .notice {
      width: min(1240px, calc(100% - 36px));
      margin: 36px auto 0;
      border-radius: 24px;
      padding: 24px;
      color: var(--dim);
      text-align: center;
      border-color: rgba(245,184,64,.22);
      background: rgba(245,184,64,.055);
    }

    footer { padding: 42px 18px 34px; }
    .footer-inner {
      width: min(1240px, 100%);
      margin: 0 auto;
      border-radius: 24px;
      padding: 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: var(--dim);
      font-size: 13px;
    }

    @media (max-width: 1080px) {
      .hero { grid-template-columns: 1fr; min-height: 0; }
      .hero-media { min-height: 420px; }
      .page { grid-template-columns: 1fr; }
      .sidebar { position: static; grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 760px) {
      .nav { align-items: flex-start; }
      .nav-links { display: none; }
      .hero, .page, .notice { width: min(100% - 22px, 1240px); }
      .hero-media { min-height: 300px; }
      .floating-score { position: static; grid-template-columns: 1fr; padding: 12px; background: #05070a; }
      .metric { min-width: 0; }
      .cards, .cta, .sidebar { grid-template-columns: 1fr; }
      .info-table { font-size: 14px; }
      .info-table th, .info-table td { padding: 13px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }

.topbar.is-scrolled { box-shadow: 0 18px 50px rgba(0,0,0,.36); border-bottom-color: rgba(40,224,198,.22); }
.reveal-card { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal-card.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal-card { opacity: 1; transform: none; transition: none; } }
