/* ── RESET & VARS ── */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
      }

      :root {
        --black: #05050a;
        --void: #080810;
        --card: #0e0e1c;
        --elevated: #141428;
        --blue: #4d9eff;
        --blue-dim: #1a3a5c;
        --blue-glow: rgba(77, 158, 255, 0.15);
        --gold: #f0a500;
        --green: #1d9e75;
        --red: #e24b4a;
        --purple: #afa9ec;
        --t1: #f0eef8;
        --t2: #8b8aae;
        --t3: #3d3d5c;
        --border: rgba(255, 255, 255, 0.06);
        --border-b: rgba(77, 158, 255, 0.2);
        --font-display: "Bebas Neue", sans-serif;
        --font-body: "Barlow", sans-serif;
        --font-mono: "JetBrains Mono", monospace;
      }

      body {
        font-family: var(--font-body);
        background: var(--black);
        color: var(--t1);
        overflow-x: hidden;
        line-height: 1.6;
      }

      /* ── NOISE ── */
      body::after {
        content: "";
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: 0.35;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 20px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(5, 5, 10, 0.8);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        transition: all 0.3s;
      }
      .nav-logo {
        font-family: var(--font-display);
        font-size: 26px;
        letter-spacing: 0.06em;
        color: var(--t1);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .nav-logo .r-mark {
        width: 32px;
        height: 32px;
        background: var(--blue-dim);
        border: 1.5px solid var(--blue);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }
      .nav-logo .r-mark img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
      }
      .nav-logo .logo-max {
        color: var(--blue);
      }

      .nav-links {
        display: flex;
        gap: 32px;
        list-style: none;
      }
      .nav-links a {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--t3);
        text-decoration: none;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--blue);
      }

      .nav-cta {
        background: var(--blue-dim);
        border: 1px solid var(--blue);
        color: var(--blue);
        padding: 10px 24px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s;
        white-space: nowrap;
      }
      .nav-cta:hover {
        background: var(--blue);
        color: #fff;
      }

      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
      }
      .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--t2);
        border-radius: 2px;
        transition: 0.3s;
      }

      /* ── HERO ── */
      #hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 120px 48px 80px;
        position: relative;
        overflow: hidden;
      }

      .hero-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
          radial-gradient(
            ellipse 70% 50% at 50% -10%,
            rgba(77, 158, 255, 0.12) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse 40% 30% at 80% 70%,
            rgba(175, 169, 236, 0.06) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse 50% 40% at 10% 80%,
            rgba(77, 158, 255, 0.04) 0%,
            transparent 50%
          );
      }

      .hero-grid {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(77, 158, 255, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(77, 158, 255, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(
          ellipse 80% 60% at 50% 50%,
          black 0%,
          transparent 80%
        );
      }

      .hero-eyebrow {
        font-family: var(--font-mono);
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--t3);
        margin-bottom: 32px;
        display: flex;
        align-items: center;
        gap: 16px;
        animation: fadeUp 0.8s ease both;
      }
      .hero-eyebrow::before {
        content: "";
        width: 36px;
        height: 1px;
        background: var(--blue);
      }

      .hero-headline {
        font-family: var(--font-display);
        font-size: clamp(72px, 10vw, 160px);
        line-height: 0.92;
        letter-spacing: 0.01em;
        margin-bottom: 32px;
        animation: fadeUp 0.8s ease 0.1s both;
      }
      .hero-headline .line-blue {
        color: var(--blue);
      }
      .hero-headline .line-dim {
        -webkit-text-stroke: 1px rgba(240, 238, 248, 0.2);
        color: transparent;
      }

      .hero-sub {
        font-size: clamp(16px, 2vw, 20px);
        font-weight: 300;
        color: var(--t2);
        max-width: 520px;
        line-height: 1.7;
        margin-bottom: 48px;
        animation: fadeUp 0.8s ease 0.2s both;
      }
      .hero-sub strong {
        color: var(--t1);
        font-weight: 500;
      }

      .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeUp 0.8s ease 0.3s both;
      }

      .btn-primary {
        background: var(--blue);
        color: #fff;
        padding: 16px 36px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: none;
        cursor: pointer;
      }
      .btn-primary:hover {
        background: #6baaff;
        transform: translateY(-2px);
      }
      .btn-primary svg {
        width: 16px;
        height: 16px;
      }

      .btn-ghost {
        background: transparent;
        color: var(--t2);
        padding: 16px 32px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-decoration: none;
        border: 1px solid var(--border);
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-ghost:hover {
        border-color: var(--blue-dim);
        color: var(--blue);
      }

      .hero-stats {
        display: flex;
        gap: 48px;
        margin-top: 80px;
        padding-top: 40px;
        border-top: 1px solid var(--border);
        animation: fadeUp 0.8s ease 0.4s both;
        flex-wrap: wrap;
      }
      .hero-stat-num {
        font-family: var(--font-display);
        font-size: 42px;
        color: var(--t1);
        letter-spacing: 0.02em;
      }
      .hero-stat-num span {
        color: var(--blue);
      }
      .hero-stat-label {
        font-size: 11px;
        color: var(--t3);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-top: 4px;
        font-family: var(--font-mono);
      }

      /* Floating AXIS card */
      .hero-axis-float {
        position: absolute;
        right: 6%;
        top: 50%;
        transform: translateY(-50%);
        width: 280px;
        background: rgba(8, 13, 24, 0.9);
        border: 1px solid var(--blue-dim);
        border-left: 3px solid var(--blue);
        border-radius: 14px;
        padding: 20px;
        backdrop-filter: blur(20px);
        animation:
          floatCard 6s ease-in-out infinite,
          fadeUp 0.8s ease 0.5s both;
        box-shadow: 0 0 40px rgba(77, 158, 255, 0.1);
      }
      .axis-float-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
      }
      .axis-float-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--blue);
      }
      .axis-float-label {
        font-family: var(--font-mono);
        font-size: 9px;
        color: var(--blue);
        letter-spacing: 0.15em;
        text-transform: uppercase;
        font-weight: 500;
      }
      .axis-float-time {
        margin-left: auto;
        font-family: var(--font-mono);
        font-size: 9px;
        color: var(--t3);
      }
      .axis-float-msg {
        font-size: 13px;
        color: #c8c6e8;
        line-height: 1.65;
        font-style: italic;
        margin-bottom: 14px;
      }
      .axis-float-stats {
        display: flex;
        gap: 12px;
      }
      .axis-stat {
        text-align: center;
      }
      .axis-stat-val {
        font-family: var(--font-display);
        font-size: 22px;
        letter-spacing: 0.02em;
      }
      .axis-stat-lbl {
        font-family: var(--font-mono);
        font-size: 8px;
        color: var(--t3);
        letter-spacing: 0.1em;
      }

      /* ── SECTIONS COMMON ── */
      section {
        padding: 120px 48px;
        max-width: 1200px;
        margin: 0 auto;
      }
      .section-label {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .section-label::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--blue);
      }
      .section-title {
        font-family: var(--font-display);
        font-size: clamp(42px, 6vw, 88px);
        line-height: 0.95;
        letter-spacing: 0.01em;
        margin-bottom: 24px;
      }
      .section-sub {
        font-size: 17px;
        color: var(--t2);
        max-width: 520px;
        line-height: 1.7;
        margin-bottom: 64px;
        font-weight: 300;
      }

      /* ── PROBLEM ── */
      #problem {
        padding: 120px 48px;
        max-width: none;
        background: linear-gradient(
          180deg,
          var(--black) 0%,
          rgba(8, 13, 24, 0.5) 50%,
          var(--black) 100%
        );
        position: relative;
      }
      .problem-inner {
        max-width: 1200px;
        margin: 0 auto;
      }

      .problem-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1px;
        background: var(--border);
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 80px;
      }
      .problem-item {
        background: var(--void);
        padding: 40px 32px;
        position: relative;
        overflow: hidden;
      }
      .problem-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--red);
        opacity: 0;
        transition: 0.3s;
      }
      .problem-item:hover::before {
        opacity: 1;
      }
      .problem-num {
        font-family: var(--font-mono);
        font-size: 10px;
        color: var(--t3);
        letter-spacing: 0.15em;
        margin-bottom: 20px;
      }
      .problem-heading {
        font-size: 20px;
        font-weight: 700;
        color: var(--t1);
        margin-bottom: 12px;
      }
      .problem-text {
        font-size: 14px;
        color: var(--t2);
        line-height: 1.7;
      }

      .problem-statement {
        background: rgba(8, 13, 24, 0.8);
        border: 1px solid var(--border-b);
        border-left: 3px solid var(--blue);
        border-radius: 14px;
        padding: 48px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
      }
      .ps-quote {
        font-family: var(--font-display);
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.05;
        color: var(--t1);
      }
      .ps-quote .accent {
        color: var(--blue);
      }
      .ps-desc {
        font-size: 16px;
        color: var(--t2);
        line-height: 1.75;
        font-weight: 300;
      }

      /* ── HOW IT WORKS ── */
      .steps {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }
      .step-row {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 32px;
        padding: 32px 0;
        border-bottom: 1px solid var(--border);
        align-items: start;
        transition: 0.2s;
      }
      .step-row:last-child {
        border-bottom: none;
      }
      .step-row:hover .step-num {
        color: var(--blue);
      }
      .step-num {
        font-family: var(--font-display);
        font-size: 64px;
        color: var(--t3);
        letter-spacing: 0.02em;
        line-height: 0.9;
        transition: 0.2s;
      }
      .step-content h3 {
        font-size: 22px;
        font-weight: 700;
        color: var(--t1);
        margin-bottom: 10px;
      }
      .step-content p {
        font-size: 15px;
        color: var(--t2);
        line-height: 1.7;
        max-width: 520px;
      }
      .step-tag {
        display: inline-block;
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 20px;
        margin-top: 12px;
        background: rgba(77, 158, 255, 0.08);
        color: var(--blue);
        border: 1px solid rgba(77, 158, 255, 0.15);
      }

      /* ── FEATURES ── */
      #features {
        background: var(--black);
      }
      .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
      .feature-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s;
        cursor: default;
      }
      .feature-card::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: 0.3s;
        background: radial-gradient(
          ellipse at 50% 0%,
          rgba(77, 158, 255, 0.06) 0%,
          transparent 70%
        );
      }
      .feature-card:hover {
        border-color: var(--blue-dim);
        transform: translateY(-4px);
      }
      .feature-card:hover::after {
        opacity: 1;
      }
      .feature-card.featured {
        grid-column: span 2;
        background: linear-gradient(
          135deg,
          rgba(8, 13, 24, 0.9) 0%,
          rgba(14, 14, 28, 0.9) 100%
        );
        border-color: var(--blue-dim);
      }
      .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 20px;
        background: rgba(77, 158, 255, 0.08);
        border: 1px solid rgba(77, 158, 255, 0.15);
      }
      .feature-title {
        font-size: 20px;
        font-weight: 700;
        color: var(--t1);
        margin-bottom: 10px;
      }
      .feature-desc {
        font-size: 14px;
        color: var(--t2);
        line-height: 1.7;
      }
      .feature-tag {
        display: inline-block;
        font-family: var(--font-mono);
        font-size: 9px;
        padding: 3px 10px;
        border-radius: 20px;
        margin-top: 14px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .tag-blue {
        background: rgba(77, 158, 255, 0.1);
        color: var(--blue);
        border: 1px solid rgba(77, 158, 255, 0.2);
      }
      .tag-gold {
        background: rgba(240, 165, 0, 0.1);
        color: var(--gold);
        border: 1px solid rgba(240, 165, 0, 0.2);
      }
      .tag-green {
        background: rgba(29, 158, 117, 0.1);
        color: var(--green);
        border: 1px solid rgba(29, 158, 117, 0.2);
      }
      .tag-purple {
        background: rgba(175, 169, 236, 0.1);
        color: var(--purple);
        border: 1px solid rgba(175, 169, 236, 0.2);
      }

      /* Featured card AXIS mockup */
      .axis-mockup {
        margin-top: 24px;
        background: rgba(8, 13, 24, 0.95);
        border: 1px solid var(--blue-dim);
        border-left: 3px solid var(--blue);
        border-radius: 12px;
        padding: 16px;
      }
      .axis-mock-header {
        font-family: var(--font-mono);
        font-size: 9px;
        color: var(--blue);
        letter-spacing: 0.15em;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .axis-mock-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--blue);
      }
      .axis-mock-msg {
        font-size: 13px;
        color: #c8c6e8;
        line-height: 1.6;
        font-style: italic;
      }

      /* ── PATHS ── */
      #paths {
        max-width: none;
        padding: 120px 48px;
        background: var(--void);
      }
      .paths-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .paths-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
      .path-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 28px;
        position: relative;
        overflow: hidden;
        transition: 0.3s;
      }
      .path-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        transition: 0.3s;
      }
      .path-card:hover {
        transform: translateY(-4px);
      }
      .path-card.p1::before {
        background: var(--red);
      }
      .path-card.p2::before {
        background: var(--gold);
      }
      .path-card.p3::before {
        background: var(--gold);
      }
      .path-card.p4::before {
        background: var(--purple);
      }
      .path-card.p5::before {
        background: var(--blue);
      }
      .path-card.p6::before {
        background: linear-gradient(
          90deg,
          var(--blue),
          var(--purple),
          var(--gold)
        );
      }
      .path-emoji {
        font-size: 28px;
        margin-bottom: 14px;
        display: block;
      }
      .path-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--t1);
        margin-bottom: 6px;
      }
      .path-sub {
        font-family: var(--font-mono);
        font-size: 9px;
        color: var(--t3);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .path-desc {
        font-size: 13px;
        color: var(--t2);
        line-height: 1.6;
        margin-bottom: 14px;
      }
      .path-ranks {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
      }
      .rank-chip {
        font-family: var(--font-mono);
        font-size: 9px;
        padding: 2px 8px;
        border-radius: 20px;
        border: 1px solid var(--border);
        color: var(--t3);
        letter-spacing: 0.04em;
      }
      .rank-chip.active {
        border-color: var(--blue);
        color: var(--blue);
        background: rgba(77, 158, 255, 0.08);
      }

      /* ── STATS SECTION ── */
      .stats-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 0;
      }
      .stat-showcase-item {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 20px 24px;
      }
      .stat-show-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
      }
      .stat-show-name {
        font-family: var(--font-mono);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        width: 36px;
      }
      .stat-show-track {
        flex: 1;
        height: 6px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 3px;
        overflow: hidden;
      }
      .stat-show-fill {
        height: 100%;
        border-radius: 3px;
        transition: width 0.8s ease;
      }
      .stat-show-val {
        font-size: 11px;
        color: var(--t3);
        font-family: var(--font-mono);
        width: 28px;
        text-align: right;
      }

      /* ── AXIS SECTION ── */
      #axis {
        position: relative;
        overflow: hidden;
      }
      .axis-section-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(
          ellipse 60% 50% at 50% 50%,
          rgba(77, 158, 255, 0.06) 0%,
          transparent 70%
        );
      }
      .axis-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }
      .axis-messages {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .axis-msg-card {
        background: rgba(8, 13, 24, 0.9);
        border: 1px solid var(--blue-dim);
        border-left: 3px solid;
        border-radius: 12px;
        padding: 16px 18px;
        transition: 0.2s;
      }
      .axis-msg-card:hover {
        transform: translateX(4px);
      }
      .axis-msg-card.m-blue {
        border-left-color: var(--blue);
      }
      .axis-msg-card.m-gold {
        border-left-color: var(--gold);
      }
      .axis-msg-card.m-green {
        border-left-color: var(--green);
      }
      .axis-msg-card.m-red {
        border-left-color: var(--red);
      }
      .amh {
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .amd {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        flex-shrink: 0;
      }
      .amt {
        font-size: 13px;
        color: #c8c6e8;
        line-height: 1.65;
        font-style: italic;
      }

      .axis-right h2 {
        font-family: var(--font-display);
        font-size: clamp(42px, 5vw, 72px);
        line-height: 0.95;
        margin-bottom: 24px;
      }
      .axis-right h2 .a-blue {
        color: var(--blue);
      }
      .axis-right p {
        font-size: 16px;
        color: var(--t2);
        line-height: 1.75;
        margin-bottom: 32px;
        font-weight: 300;
      }

      .axis-personality {
        display: flex;
        gap: 12px;
      }
      .ap-card {
        flex: 1;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 14px;
      }
      .ap-label {
        font-family: var(--font-mono);
        font-size: 9px;
        color: var(--blue);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 6px;
      }
      .ap-desc {
        font-size: 11px;
        color: var(--t2);
        line-height: 1.5;
      }

      /* ── PRICING ── */
      #pricing {
        background: var(--black);
      }
      .pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
      }
      .pricing-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 36px;
        position: relative;
        overflow: hidden;
      }
      .pricing-card.featured {
        background: rgba(8, 13, 24, 0.95);
        border-color: var(--blue);
        border-width: 1.5px;
      }
      .pricing-card.featured::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--blue);
      }
      .pricing-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--blue);
        color: #fff;
        font-family: var(--font-mono);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 20px;
      }
      .pricing-tier {
        font-family: var(--font-mono);
        font-size: 10px;
        color: var(--t3);
        letter-spacing: 0.15em;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .pricing-price {
        font-family: var(--font-display);
        font-size: 54px;
        color: var(--t1);
        letter-spacing: 0.01em;
        margin-bottom: 4px;
      }
      .pricing-price.free-price {
        font-size: 48px;
        color: var(--green);
      }
      .pricing-period {
        font-size: 13px;
        color: var(--t3);
        margin-bottom: 28px;
      }
      .pricing-features {
        list-style: none;
        margin-bottom: 32px;
      }
      .pricing-features li {
        font-size: 14px;
        color: var(--t2);
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .pricing-features li:last-child {
        border-bottom: none;
      }
      .pricing-features li::before {
        content: "";
        width: 16px;
        height: 16px;
        border-radius: 50%;
        flex-shrink: 0;
        background: rgba(29, 158, 117, 0.15);
        border: 1px solid var(--green);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%231D9E75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
      }
      .pricing-features li.locked {
        color: var(--t3);
      }
      .pricing-features li.locked::before {
        background: rgba(61, 61, 92, 0.3);
        border-color: var(--t3);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M3.5 4V3a1.5 1.5 0 013 0v1' stroke='%233D3D5C' stroke-width='1.2' stroke-linecap='round' fill='none'/%3E%3Crect x='2.5' y='4' width='5' height='3.5' rx='1' stroke='%233D3D5C' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
      }

      /* ── WAITLIST ── */
      #waitlist {
        max-width: none;
        padding: 0;
        background: linear-gradient(
          180deg,
          var(--black) 0%,
          rgba(5, 8, 15, 1) 100%
        );
      }
      .waitlist-inner {
        max-width: 800px;
        margin: 0 auto;
        padding: 120px 48px;
        text-align: center;
      }
      .waitlist-inner .section-label {
        justify-content: center;
      }
      .waitlist-inner .section-label::before {
        display: none;
      }
      .waitlist-inner .section-title {
        font-size: clamp(52px, 8vw, 100px);
      }
      .waitlist-sub {
        font-size: 18px;
        color: var(--t2);
        line-height: 1.7;
        margin-bottom: 48px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      .waitlist-form {
        display: flex;
        gap: 12px;
        max-width: 480px;
        margin: 0 auto 32px;
      }
      .waitlist-input {
        flex: 1;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 14px 18px;
        font-size: 15px;
        color: var(--t1);
        font-family: var(--font-body);
        outline: none;
        transition: 0.2s;
      }
      .waitlist-input::placeholder {
        color: var(--t3);
      }
      .waitlist-input:focus {
        border-color: var(--blue);
      }
      .waitlist-btn {
        background: var(--blue);
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 14px 28px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.2s;
        white-space: nowrap;
        font-family: var(--font-body);
      }
      .waitlist-btn:hover {
        background: #6baaff;
      }
      .waitlist-note {
        font-family: var(--font-mono);
        font-size: 10px;
        color: var(--t3);
        letter-spacing: 0.08em;
      }
      .waitlist-count {
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--t3);
        letter-spacing: 0.08em;
      }
      .waitlist-avatars {
        display: flex;
      }
      .w-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid var(--black);
        margin-left: -8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
      }

      /* ── FOOTER ── */
      footer {
        padding: 48px;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--border);
        flex-wrap: wrap;
        gap: 24px;
      }
      .footer-logo {
        font-family: var(--font-display);
        font-size: 22px;
        letter-spacing: 0.06em;
        color: var(--t1);
        text-decoration: none;
      }
      .footer-logo span {
        color: var(--blue);
      }
      .footer-links {
        display: flex;
        gap: 24px;
        list-style: none;
      }
      .footer-links a {
        font-size: 12px;
        color: var(--t3);
        text-decoration: none;
        transition: 0.2s;
        letter-spacing: 0.06em;
      }
      .footer-links a:hover {
        color: var(--blue);
      }
      .footer-copy {
        font-family: var(--font-mono);
        font-size: 10px;
        color: var(--t3);
        letter-spacing: 0.08em;
      }

      /* ── MOBILE NAV DRAWER ── */
      .mobile-menu {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(5, 5, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
      }
      .mobile-menu.open {
        display: flex;
      }
      .mobile-menu a {
        font-family: var(--font-display);
        font-size: 42px;
        color: var(--t2);
        text-decoration: none;
        letter-spacing: 0.04em;
        transition: 0.2s;
      }
      .mobile-menu a:hover {
        color: var(--blue);
      }
      .mobile-close {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: var(--t2);
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
      }

      /* ── DIVIDER ── */
      .full-divider {
        border: none;
        border-top: 1px solid var(--border);
        margin: 0;
      }

      /* ── ANIMATIONS ── */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(28px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes floatCard {
        0%,
        100% {
          transform: translateY(-50%) translateY(0px);
        }
        50% {
          transform: translateY(-50%) translateY(-12px);
        }
      }
      @keyframes pulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(77, 158, 255, 0.3);
        }
        50% {
          box-shadow: 0 0 0 12px rgba(77, 158, 255, 0);
        }
      }

      .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 1100px) {
        .hero-axis-float {
          display: none;
        }
        .hero-headline {
          font-size: clamp(56px, 9vw, 120px);
        }
      }

      @media (max-width: 900px) {
        nav {
          padding: 18px 24px;
        }
        .nav-links {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        section {
          padding: 80px 24px;
        }
        #problem,
        #paths,
        #waitlist {
          padding: 80px 24px;
        }
        .waitlist-inner {
          padding: 80px 24px;
        }
        .hero-headline {
          font-size: clamp(52px, 12vw, 100px);
        }
        #hero {
          padding: 100px 24px 60px;
        }
        .problem-grid {
          grid-template-columns: 1fr;
        }
        .problem-statement {
          grid-template-columns: 1fr;
          gap: 24px;
        }
        .features-grid {
          grid-template-columns: 1fr;
        }
        .feature-card.featured {
          grid-column: span 1;
        }
        .paths-grid {
          grid-template-columns: 1fr 1fr;
        }
        .axis-split {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .pricing-grid {
          grid-template-columns: 1fr;
        }
        .stats-showcase {
          grid-template-columns: 1fr;
        }
        .waitlist-form {
          flex-direction: column;
        }
        footer {
          flex-direction: column;
          text-align: center;
        }
        .footer-links {
          flex-wrap: wrap;
          justify-content: center;
        }
        .hero-stats {
          gap: 28px;
        }
        .axis-personality {
          flex-direction: column;
        }
      }

      @media (max-width: 600px) {
        .paths-grid {
          grid-template-columns: 1fr;
        }
        .hero-stats {
          flex-direction: column;
          gap: 20px;
        }
        .hero-actions {
          flex-direction: column;
        }
        .btn-primary,
        .btn-ghost {
          justify-content: center;
        }
      }