:root {
      color-scheme: dark;
      --ink: #f5f7ff;
      --muted: #b8c1d9;
      --bg: #0b1020;
      --surface: #121a30;
      --line: #2b3655;
      --accent: #b9f35a;
      --accent-ink: #11190a;
      --blue: #79b8ff;
      --max: 72rem;
      --radius: 1.25rem;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background:
        radial-gradient(circle at 85% 8%, rgba(121, 184, 255, .14), transparent 24rem),
        radial-gradient(circle at 8% 30%, rgba(185, 243, 90, .08), transparent 22rem),
        var(--bg);
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 1rem;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; }
    a:focus-visible {
      outline: .2rem solid var(--accent);
      outline-offset: .25rem;
      border-radius: .2rem;
    }
    .skip-link {
      position: fixed;
      z-index: 10;
      top: .75rem;
      left: .75rem;
      padding: .7rem 1rem;
      background: var(--accent);
      color: var(--accent-ink);
      font-weight: 800;
      transform: translateY(-180%);
    }
    .skip-link:focus { transform: translateY(0); }
    .wrap { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }

    header {
      position: relative;
      border-bottom: 1px solid rgba(184, 193, 217, .16);
    }
    .nav-shell {
      min-height: 5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .brand {
      text-decoration: none;
      font-size: 1.15rem;
      font-weight: 850;
      letter-spacing: -.03em;
    }
    .brand-mark { color: var(--accent); }
    nav ul {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: .35rem 1.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    nav a {
      color: var(--muted);
      text-decoration: none;
      font-size: .92rem;
      font-weight: 700;
    }
    nav a:hover { color: var(--ink); }

    main { overflow: hidden; }
    section { scroll-margin-top: 1rem; }
    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
      align-items: center;
      gap: clamp(3rem, 8vw, 7rem);
      min-height: 34rem;
      padding-block: clamp(3.5rem, 7vw, 6rem);
    }
    .eyebrow {
      margin: 0 0 1rem;
      color: var(--accent);
      font-size: .78rem;
      font-weight: 850;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { line-height: 1.12; }
    h1 {
      max-width: 20ch;
      margin-bottom: 1.5rem;
      font-size: clamp(2.3rem, 5.6vw, 4.6rem);
      letter-spacing: -.065em;
    }
    h2 {
      max-width: 18ch;
      margin-bottom: 1rem;
      font-size: clamp(2rem, 4vw, 3.5rem);
      letter-spacing: -.045em;
    }
    h3 { margin-bottom: .7rem; font-size: 1.25rem; letter-spacing: -.02em; }
    .lede { max-width: 41rem; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
    .actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
    .button {
      display: inline-flex;
      min-height: 3.15rem;
      align-items: center;
      justify-content: center;
      padding: .75rem 1.2rem;
      border: 1px solid var(--accent);
      border-radius: 999px;
      background: var(--accent);
      color: var(--accent-ink);
      font-weight: 850;
      text-decoration: none;
    }
    .button:hover { background: #cef88a; }
    .button.secondary { border-color: var(--line); background: transparent; color: var(--ink); }
    .button.secondary:hover { border-color: var(--muted); }

    .hero-shot {
      position: relative;
      padding: 1rem;
      border: 1px solid var(--line);
      border-radius: 1.5rem;
      background: rgba(18, 26, 48, .72);
      box-shadow: 0 2rem 5rem rgba(0, 0, 0, .28);
    }
    .hero-shot figure { margin: 0; }
    .hero-shot img {
      display: block;
      width: 100%;
      height: auto;
      border: 1px solid var(--line);
      border-radius: .9rem;
      background: #0a0f1c;
    }
    .hero-shot figcaption {
      margin: .85rem .2rem 0;
      color: var(--muted);
      font-size: .85rem;
    }

    .band { border-block: 1px solid var(--line); background: rgba(18, 26, 48, .55); }
    .intro {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: clamp(2rem, 8vw, 7rem);
      padding-block: clamp(4.5rem, 8vw, 7rem);
    }
    .intro p:last-child, .card p:last-child, .step p:last-child, .plan p:last-child { margin-bottom: 0; }
    .intro-copy { color: var(--muted); font-size: 1.1rem; }
    .plain-link { color: var(--accent); font-weight: 800; text-underline-offset: .2rem; }

    .section-shell { padding-block: clamp(5rem, 9vw, 8rem); }
    .offer-top { padding-block: clamp(3rem, 6vw, 5rem); }
    .section-head { max-width: 47rem; margin-bottom: 2.6rem; }
    .section-head > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
    .section-foot { margin-top: 2rem; }
    .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .card, .step, .plan {
      padding: clamp(1.5rem, 3vw, 2rem);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(18, 26, 48, .8);
    }
    .card-number, .step-number {
      display: grid;
      width: 2.6rem;
      height: 2.6rem;
      margin-bottom: 2.8rem;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--accent);
      font-size: .82rem;
      font-weight: 850;
    }
    .card p, .step p, .plan p { color: var(--muted); }

    .process { background: #eff3fa; color: #11182a; }
    .process .eyebrow { color: #426b08; }
    .process .section-head > p:not(.eyebrow), .process .step p { color: #4b566d; }
    .process .step { border-color: #ced6e5; background: #fff; }
    .process .step-number { margin-bottom: 2rem; border-color: #b9c4d9; color: #426b08; }

    .plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .plan { position: relative; }
    .plan-label {
      display: inline-block;
      margin-bottom: 2rem;
      padding: .3rem .7rem;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--blue);
      font-size: .78rem;
      font-weight: 850;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .note {
      margin-top: 1.5rem;
      padding: 1rem 1.2rem;
      border-left: .2rem solid var(--accent);
      color: var(--muted);
      font-size: .95rem;
    }

    .contact {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 2rem;
      padding-block: clamp(5rem, 10vw, 8rem);
    }
    .contact h2 { max-width: 16ch; }
    .contact p:not(.eyebrow) { max-width: 38rem; color: var(--muted); }
    .contact-email { white-space: nowrap; }

    footer { border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
    .footer-shell {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      padding-block: 2.5rem;
    }
    address { margin: 0; font-style: normal; }
    .legal { text-align: right; }
    footer a { color: var(--ink); text-underline-offset: .2rem; }
    .span-all { grid-column: 1 / -1; }
    .shots { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.25rem; }
    @media (min-width: 48rem) { .shots { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
    .shot { width: 100%; height: auto; display: block; border: 1px solid var(--line); border-radius: .9rem; background: #0a0f1c; }
    .shot-cap { margin: .45rem 0 0; color: var(--muted); font-size: .85rem; }
    .shot-one { margin-top: 1.25rem; max-width: 42rem; }
    figure { margin: 0; }

    .img-link { display: block; text-decoration: none; }
    .enlarge-cue {
      display: inline-block;
      margin-top: .5rem;
      color: var(--accent);
      font-weight: 800;
      font-size: .8rem;
      letter-spacing: .01em;
    }
    .img-link:hover .enlarge-cue, .img-link:focus-visible .enlarge-cue { text-decoration: underline; }

    .article > p, .article > ul, .article > h3 { max-width: 70ch; }

    .check-table {
      width: 100%;
      margin: 0;
      border-collapse: collapse;
      font-size: .92rem;
    }
    .table-scroll {
      margin: 1.5rem 0;
      overflow-x: auto;
    }
    .table-scroll:focus-visible {
      outline: .2rem solid var(--accent);
      outline-offset: .2rem;
    }
    .table-scroll .check-table { min-width: 46rem; }
    .check-table caption {
      margin-bottom: .75rem;
      color: var(--muted);
      font-size: .85rem;
      text-align: left;
      caption-side: top;
    }
    .check-table th, .check-table td {
      border: 1px solid var(--line);
      padding: .75rem 1rem;
      text-align: left;
      vertical-align: top;
      color: var(--muted);
    }
    .check-table th {
      color: var(--ink);
      background: rgba(185, 243, 90, .08);
    }

    @media (max-width: 48rem) {
      .nav-shell { align-items: flex-start; flex-direction: column; gap: .65rem; padding-block: 1.2rem; }
      nav ul { gap: .45rem 1rem; }
      .hero, .intro, .contact { grid-template-columns: 1fr; }
      .hero { min-height: 0; }
      .hero-shot { max-width: 30rem; }
      .grid { grid-template-columns: 1fr; }
      .card-number { margin-bottom: 1.6rem; }
      .plans, .footer-shell { grid-template-columns: 1fr; }
      .contact { align-items: start; }
      .contact-email { white-space: normal; }
      .legal { text-align: left; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    }
