      html {
        color-scheme: dark;
      }

      :root {
        --ink: #f8fafc;
        --ink-soft: #cbd5e1;
        --ink-faint: #94a3b8;
        --line: rgba(255, 255, 255, 0.1);
        --paper: rgba(15, 23, 42, 0.76);
        --paper-strong: #0f172a;
        --sage: rgba(34, 197, 94, 0.1);
        --deep-green: #22c55e;
        --moss: #7dd3fc;
        --gold: #38bdf8;
        --gold-soft: rgba(56, 189, 248, 0.12);
        --sand: rgba(15, 23, 42, 0.4);
        --field: rgba(2, 6, 23, 0.58);
        --shadow: 0 30px 100px rgba(2, 6, 23, 0.42);
        --radius-xl: 32px;
        --radius-lg: 24px;
        --radius-md: 18px;
        --radius-sm: 14px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        color: var(--ink);
        font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
        background:
          radial-gradient(circle at top, rgba(45, 107, 92, 0.22), transparent 28%),
          radial-gradient(circle at right, rgba(212, 135, 51, 0.16), transparent 30%),
          linear-gradient(180deg, #07131f 0%, #081720 48%, #06111c 100%);
        min-height: 100vh;
      }

      a {
        color: inherit;
      }

      a:focus-visible,
      button:focus-visible,
      input:focus-visible,
      textarea:focus-visible {
        outline: 3px solid rgba(125, 211, 252, 0.85);
        outline-offset: 3px;
      }

      button,
      input,
      textarea {
        font: inherit;
      }

      .hidden {
        display: none !important;
      }

      .page-shell {
        max-width: 1220px;
        margin: 0 auto;
        padding: 24px 24px 40px;
      }

      .topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 18px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(15, 23, 42, 0.72);
        backdrop-filter: blur(18px);
        box-shadow: 0 16px 44px rgba(2, 6, 23, 0.32);
      }

      .brand-lockup {
        display: grid;
        gap: 4px;
      }

      .brand {
        margin: 0;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.22rem;
        text-transform: uppercase;
        color: #93c5fd;
      }

      .brand-subtitle {
        margin: 0;
        color: var(--ink-faint);
        font-size: 13px;
      }

      .nav-group {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-end;
      }

      .nav-group a,
      .nav-group button {
        color: var(--ink-soft);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
      }

      .nav-join,
      .logout-button {
        border: none;
        border-radius: 999px;
        padding: 11px 16px;
        background: linear-gradient(135deg, #22c55e, #38bdf8);
        color: #04131f !important;
        cursor: pointer;
      }

      .logout-button {
        background: rgba(255, 255, 255, 0.1);
        color: var(--ink) !important;
      }

      /* ── Two-path entry ── */

      .path-intro {
        margin-top: 56px;
        text-align: left;
        padding: 0 8px;
        max-width: 900px;
      }

      .path-byline {
        margin: 0 0 10px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.28rem;
        text-transform: uppercase;
        color: #7dd3fc;
      }

      .path-intro h1 {
        margin: 0 0 14px;
        font-size: clamp(42px, 6vw, 76px);
        line-height: 0.95;
        letter-spacing: -0.05em;
        text-wrap: balance;
      }

      .path-sub {
        margin: 0;
        max-width: 620px;
        font-size: 18px;
        line-height: 1.5;
        color: var(--ink-soft);
      }

      .path-split {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 20px;
        margin-top: 28px;
      }

      .path-card {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 36px;
        border: 1px solid var(--line);
        border-radius: var(--radius-xl);
        background: var(--paper);
        backdrop-filter: blur(14px);
        box-shadow: var(--shadow);
        text-decoration: none;
        color: var(--ink);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .path-card--club {
        grid-column: span 3;
      }

      .path-card--persist {
        grid-column: span 3;
      }

      .path-card--conference {
        grid-column: span 6;
      }

      .path-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 40px 100px rgba(2, 6, 23, 0.56);
      }

      .path-card-tag {
        margin: 0;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18rem;
        text-transform: uppercase;
        color: #7dd3fc;
      }

      .path-card h2 {
        margin: 0;
        font-size: clamp(30px, 3.5vw, 46px);
        line-height: 1;
        letter-spacing: -0.03em;
      }

      .path-card-desc {
        margin: 0;
        font-size: 16px;
        line-height: 1.6;
        color: var(--ink-soft);
        flex: 1;
      }

      .path-card-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .path-card-chips span {
        border-radius: 999px;
        padding: 8px 13px;
        font-size: 13px;
        font-weight: 700;
        background: rgba(34, 197, 94, 0.1);
        color: #86efac;
      }

      .path-card--persist .path-card-chips span {
        background: rgba(56, 189, 248, 0.1);
        color: #7dd3fc;
      }

      .path-card-cta {
        font-size: 15px;
        font-weight: 700;
        color: #86efac;
      }

      .path-card--persist .path-card-cta {
        color: #7dd3fc;
      }

      .path-card--club {
        background: linear-gradient(150deg, rgba(34, 197, 94, 0.06) 0%, var(--paper) 60%);
      }

      .path-card--persist {
        background: linear-gradient(150deg, rgba(56, 189, 248, 0.06) 0%, var(--paper) 60%);
      }

      .path-card--conference {
        background: linear-gradient(150deg, rgba(212, 135, 51, 0.08) 0%, var(--paper) 60%);
      }

      .path-card--conference .path-card-chips span {
        background: rgba(212, 135, 51, 0.12);
        color: #fbbf24;
      }

      .path-card--conference .path-card-cta {
        color: #fbbf24;
      }

      /* ── Shared panel shell ── */

      .hero-copy,
      .hero-aside,
      .section-card,
      .join-shell,
      .summary-panel {
        border: 1px solid var(--line);
        border-radius: var(--radius-xl);
        background: var(--paper);
        backdrop-filter: blur(14px);
        box-shadow: var(--shadow);
      }

      /* ── Legacy hero (not currently used in markup) ── */

      .hero {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
        gap: 24px;
        margin-top: 26px;
        align-items: stretch;
      }

      .hero-copy {
        position: relative;
        overflow: hidden;
        padding: 40px;
      }

      .hero-copy::after {
        content: "";
        position: absolute;
        right: -110px;
        top: -60px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent 68%);
      }

      .eyebrow {
        margin: 0;
        color: var(--moss);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.28rem;
        text-transform: uppercase;
      }

      h1,
      h2,
      h3 {
        font-family: "Space Grotesk", "Bricolage Grotesque", sans-serif;
      }

      h1 {
        margin: 18px 0 0;
        max-width: 780px;
        font-size: clamp(48px, 7vw, 84px);
        line-height: 0.92;
        letter-spacing: -0.04em;
      }

      .hero-subhead {
        margin: 18px 0 0;
        max-width: 720px;
        font-size: 23px;
        line-height: 1.42;
        color: var(--ink);
      }

      .hero-supporting {
        margin: 16px 0 0;
        max-width: 700px;
        color: var(--ink-soft);
        font-size: 17px;
        line-height: 1.62;
      }

      .chip-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 24px;
      }

      .chip {
        border-radius: 999px;
        padding: 10px 14px;
        background: rgba(34, 197, 94, 0.1);
        color: #86efac;
        font-size: 13px;
        font-weight: 700;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        margin-top: 28px;
      }

      .hero-actions button,
      .hero-actions a,
      .footer-links a,
      .wizard-actions button,
      .wizard-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 700;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      }

      .primary-button,
      .wizard-actions .primary-button {
        border: none;
        padding: 14px 20px;
        background: linear-gradient(135deg, #2d6b5c, #d48733);
        color: #fffdf8;
        cursor: pointer;
        box-shadow: 0 18px 34px rgba(45, 107, 92, 0.24);
      }

      .ghost-button,
      .wizard-actions .ghost-button {
        border: 1px solid var(--line);
        padding: 13px 20px;
        background: transparent;
        color: var(--ink-soft);
        cursor: pointer;
      }

      .primary-button:hover,
      .ghost-button:hover,
      .nav-join:hover,
      .logout-button:hover,
      .wizard-actions button:hover {
        transform: translateY(-1px);
      }

      .hero-note {
        margin: 20px 0 0;
        max-width: 660px;
        color: var(--ink-soft);
        font-size: 14px;
        line-height: 1.6;
      }

      .hero-aside {
        display: grid;
        grid-template-rows: 1fr auto;
        overflow: hidden;
      }

      .hero-image {
        min-height: 340px;
        background:
          linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.2)),
          url("/images/usa-olympian-jesse-smith.png") center 20% / cover no-repeat;
      }

      .hero-aside-copy {
        display: grid;
        gap: 14px;
        padding: 26px;
        background: rgba(15, 23, 42, 0.88);
      }

      .aside-tag {
        margin: 0;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.16rem;
        text-transform: uppercase;
        color: var(--moss);
      }

      .hero-aside-copy h2 {
        margin: 0;
        font-size: 34px;
        line-height: 1.02;
        letter-spacing: -0.03em;
      }

      .hero-aside-copy p {
        margin: 0;
        color: var(--ink-soft);
        line-height: 1.58;
      }

      .aside-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
      }

      .aside-list li {
        padding: 12px 14px;
        border-radius: var(--radius-sm);
        background: rgba(34, 197, 94, 0.08);
        font-weight: 600;
      }

      .content-grid,
      .membership-grid {
        display: grid;
        gap: 18px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 18px;
      }

      .section {
        margin-top: 24px;
      }

      .section-card {
        padding: 30px;
      }

      .section-head {
        display: grid;
        gap: 10px;
        max-width: 760px;
      }

      .section-head h2 {
        margin: 0;
        font-size: clamp(34px, 4.5vw, 52px);
        line-height: 1;
        letter-spacing: -0.03em;
      }

      .section-head p {
        margin: 0;
        color: var(--ink-soft);
        font-size: 17px;
        line-height: 1.6;
      }

      .value-card,
      .membership-card {
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        background: rgba(2, 6, 23, 0.46);
        padding: 22px;
      }

      .value-card h3,
      .membership-card h3 {
        margin: 12px 0 0;
        font-size: 28px;
        line-height: 1.05;
        letter-spacing: -0.03em;
      }

      .value-card p,
      .membership-card p {
        margin: 12px 0 0;
        color: var(--ink-soft);
        line-height: 1.6;
      }

      .value-card strong,
      .membership-price {
        display: inline-flex;
        width: fit-content;
        align-items: center;
        border-radius: 999px;
        padding: 8px 12px;
        background: rgba(56, 189, 248, 0.12);
        color: #7dd3fc;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08rem;
        text-transform: uppercase;
      }

      .opportunity-layout {
        display: grid;
        gap: 18px;
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
        margin-top: 22px;
      }

      .opportunity-panel,
      .support-panel {
        border-radius: var(--radius-lg);
        padding: 24px;
        border: 1px solid var(--line);
        background: rgba(2, 6, 23, 0.46);
      }

      .opportunity-quote {
        margin: 0;
        font-size: 26px;
        line-height: 1.35;
        letter-spacing: -0.02em;
      }

      .support-panel ul {
        margin: 18px 0 0;
        padding-left: 20px;
        color: var(--ink-soft);
        line-height: 1.7;
      }

      .membership-grid {
        margin-top: 22px;
      }

      .membership-card.featured {
        background: rgba(56, 189, 248, 0.06);
        border-color: rgba(56, 189, 248, 0.24);
      }

      .membership-card ul {
        margin: 16px 0 0;
        padding-left: 18px;
        color: var(--ink-soft);
        line-height: 1.65;
      }

      .membership-cta {
        margin-top: 20px;
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 11px 18px;
        background: transparent;
        color: var(--ink);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease;
      }

      .membership-cta:hover {
        background: var(--gold-soft);
        border-color: rgba(56, 189, 248, 0.4);
      }

      .membership-card.featured .membership-cta {
        background: var(--gold-soft);
        border-color: rgba(56, 189, 248, 0.4);
      }

      .membership-card.featured .membership-cta:hover {
        background: rgba(56, 189, 248, 0.2);
      }

      .join-shell {
        margin-top: 28px;
        overflow: hidden;
        transition: max-height 0.45s ease, padding 0.45s ease, opacity 0.3s ease;
      }

      .join-shell.is-collapsed {
        max-height: 0;
        padding: 0 30px;
        opacity: 0;
        border-width: 0;
      }

      .join-shell.is-open {
        max-height: 5200px;
        opacity: 1;
        padding: 32px;
      }

      .join-layout {
        display: grid;
        gap: 22px;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: start;
      }

      .join-copy {
        display: grid;
        gap: 18px;
      }

      .join-copy h2 {
        margin: 0;
        font-size: clamp(34px, 4vw, 52px);
        line-height: 1;
        letter-spacing: -0.03em;
      }

      .join-copy p {
        margin: 0;
        color: var(--ink-soft);
        line-height: 1.62;
      }

      .progress-track {
        width: 100%;
        height: 8px;
        border-radius: 999px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.08);
      }

      .progress-fill {
        width: 25%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, #22c55e, #38bdf8);
        transition: width 0.3s ease;
      }

      .summary-panel {
        padding: 24px;
      }

      .summary-panel h3 {
        margin: 0;
        font-size: 26px;
        letter-spacing: -0.03em;
      }

      .summary-list {
        display: grid;
        gap: 12px;
        margin-top: 18px;
      }

      .summary-row {
        display: grid;
        gap: 4px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--line);
      }

      .summary-row span {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.12rem;
        text-transform: uppercase;
        color: var(--ink-faint);
      }

      .summary-row strong {
        font-size: 16px;
        line-height: 1.45;
      }

      .summary-note {
        margin-top: 18px;
        padding: 14px 16px;
        border-radius: var(--radius-md);
        background: rgba(56, 189, 248, 0.08);
        color: var(--ink-soft);
      }

      .wizard-shell {
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        background: rgba(2, 6, 23, 0.46);
        padding: 24px;
      }

      .wizard-step {
        display: none;
        gap: 16px;
      }

      .wizard-step.is-active {
        display: grid;
      }

      .wizard-step h3 {
        margin: 0;
        font-size: 34px;
        line-height: 1.05;
        letter-spacing: -0.03em;
      }

      .wizard-step p {
        margin: 0;
        color: var(--ink-soft);
        line-height: 1.62;
      }

      .field-grid {
        display: grid;
        gap: 16px;
      }

      .two-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .three-up {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .field {
        display: grid;
        gap: 8px;
      }

      .field label,
      .field span {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08rem;
        text-transform: uppercase;
        color: var(--ink-faint);
      }

      input,
      textarea {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--field);
        color: var(--ink);
        padding: 14px 16px;
      }

      textarea {
        min-height: 110px;
        resize: vertical;
      }

      input:focus,
      textarea:focus {
        outline: 2px solid rgba(56, 189, 248, 0.3);
        border-color: rgba(56, 189, 248, 0.4);
      }

      .field-hint {
        font-size: 13px;
        color: var(--ink-faint);
        line-height: 1.55;
      }

      .kids-panel,
      .plan-grid {
        display: grid;
        gap: 12px;
      }

      .kid-row {
        display: grid;
        gap: 12px;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
      }

      .remove-button {
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 13px 14px;
        background: transparent;
        color: var(--ink);
        cursor: pointer;
        font-weight: 700;
      }

      .small-action {
        width: fit-content;
        border: none;
        border-radius: 999px;
        padding: 10px 14px;
        background: rgba(34, 197, 94, 0.1);
        color: #86efac;
        cursor: pointer;
        font-weight: 700;
      }

      .plan-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .plan-option {
        position: relative;
        display: grid;
        gap: 10px;
        padding: 22px 20px 20px 54px;
        border-radius: var(--radius-md);
        border: 1px solid var(--line);
        background: rgba(2, 6, 23, 0.46);
        cursor: pointer;
      }

      .plan-option input {
        position: absolute;
        left: 20px;
        top: 24px;
        width: auto;
        margin: 0;
      }

      .plan-option strong {
        font-size: 22px;
        line-height: 1.05;
      }

      .plan-option small {
        color: var(--ink-soft);
        line-height: 1.5;
      }

      .plan-option[data-plan="family"] {
        background: rgba(34, 197, 94, 0.06);
      }

      .plan-option.is-selected {
        border-color: rgba(56, 189, 248, 0.4);
        box-shadow: 0 18px 32px rgba(56, 189, 248, 0.1);
        background: rgba(56, 189, 248, 0.06);
      }

      .checkbox-card {
        display: grid;
        gap: 12px;
        grid-template-columns: 22px minmax(0, 1fr);
        align-items: start;
        padding: 16px;
        border-radius: var(--radius-md);
        background: rgba(34, 197, 94, 0.08);
      }

      .checkbox-card input {
        width: auto;
        margin-top: 3px;
      }

      .checkbox-card p {
        margin: 0;
      }

      .review-card {
        padding: 18px;
        border-radius: var(--radius-md);
        background: rgba(2, 6, 23, 0.6);
        border: 1px solid var(--line);
      }

      .review-card h4 {
        margin: 0 0 12px;
        font-size: 22px;
      }

      .review-card pre {
        margin: 0;
        white-space: pre-wrap;
        font-family: inherit;
        color: var(--ink-soft);
        line-height: 1.62;
      }

      .form-status {
        min-height: 22px;
        margin-top: 18px;
        color: #fca5a5;
        font-size: 14px;
        line-height: 1.5;
      }

      .form-status.success {
        color: #86efac;
      }

      .wizard-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        margin-top: 16px;
      }

      .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 30px;
      }

      .mt-18 { margin-top: 18px; }

      .footer-cta-stack {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 30px;
      }

      .footer-links-secondary {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
      }

      .footer-note {
        margin-top: 16px;
        color: var(--ink-faint);
        font-size: 13px;
        line-height: 1.6;
      }

      @media (max-width: 1080px) {
        .path-split {
          grid-template-columns: 1fr;
        }

        .path-card--club,
        .path-card--persist,
        .path-card--conference {
          grid-column: auto;
        }

        .hero,
        .join-layout,
        .opportunity-layout {
          grid-template-columns: 1fr;
        }

        .content-grid,
        .membership-grid,
        .plan-grid,
        .two-up,
        .three-up {
          grid-template-columns: 1fr;
        }

        .hero-image {
          min-height: 300px;
        }
      }

      @media (max-width: 720px) {
        .page-shell {
          padding: 18px;
        }

        .topbar,
        .hero-copy,
        .hero-aside-copy,
        .path-card,
        .section-card,
        .join-shell.is-open,
        .summary-panel,
        .wizard-shell {
          padding-left: 20px;
          padding-right: 20px;
        }

        h1 {
          font-size: 46px;
        }

        .wizard-step h3,
        .section-head h2,
        .join-copy h2 {
          font-size: 34px;
        }

        .kid-row {
          grid-template-columns: 1fr;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        .progress-fill,
        .join-shell,
        .primary-button,
        .ghost-button,
        .nav-join,
        .logout-button,
        .wizard-actions button {
          transition: none;
        }
      }
