   RESET & ROOT
═══════════════════════════════════════════════ */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      /* Page — full dark */
      --page: #080e12;
      --section: #0b1318;
      --section-alt: #091016;
      --white: #ffffff;
      --card: #0f1a22;
      --card-hover: #152030;

      /* Text */
      --text: #f0f0f2;
      --sub: #8a8a9a;
      --muted: #555565;
      --faint: #3a3a4a;

      /* Borders */
      --border: rgba(255,255,255,0.07);
      --border2: rgba(255,255,255,0.12);

      /* Brand */
      --green: #10b981;
      --green2: #059669;
      --orange: #F97316;
      --red: #f43f5e;
      --amber: #f59e0b;
      --indigo: #818cf8;
    }

    html {
      color-scheme: light;
      overflow-x: hidden;
    }

    body {
      background: var(--page);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      padding-top: 60px;
    }

    /* ═══════════════════════════════════════════════
   GRID BACKGROUND
═══════════════════════════════════════════════ */
    .grid-bg {
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    /* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal.d1 {
      transition-delay: .1s;
    }

    .reveal.d2 {
      transition-delay: .2s;
    }

    .reveal.d3 {
      transition-delay: .3s;
    }

    .reveal.d4 {
      transition-delay: .4s;
    }

    /* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: 60px;
      display: flex;
      align-items: center;
      background: rgba(8,14,18,.30);
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: background .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s;
    }

    #nav.scrolled {
      background: rgba(8,14,18,.55);
      backdrop-filter: blur(28px) saturate(200%);
      -webkit-backdrop-filter: blur(28px) saturate(200%);
      border-color: rgba(255,255,255,.10);
      box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 32px rgba(0,0,0,.35);
    }

    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
    }

    .nav-logo-mark {
      width: 34px;
      height: 34px;
      background: transparent;
      border-radius: 0px;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: drop-shadow(0 0 8px rgba(255,255,255,0.55)) drop-shadow(0 0 18px rgba(255,255,255,0.25));
      transition: filter 0.3s ease;
    }
    .nav-logo-mark img {
      border-radius: 22% !important;
      display: block;
    }
    .nav-logo:hover .nav-logo-mark {
      filter: drop-shadow(0 0 12px rgba(255,255,255,0.80)) drop-shadow(0 0 28px rgba(255,255,255,0.35));
    }

    .nav-logo-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: -.03em;
      color: #fff;
    }

    .nav-logo-name span {
      color: rgba(255,255,255,0.4);
      font-weight: 400;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.72);
      text-decoration: none;
      padding: 7px 14px;
      border-radius: 7px;
      transition: color .2s, background .2s;
    }

    .nav-links a:hover {
      color: #ffffff;
      background: rgba(255,255,255,.10);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn-ghost-nav {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.10);
      color: rgba(255,255,255,0.75);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      padding: 7px 14px;
      border-radius: 7px;
      cursor: pointer;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: color .2s, background .2s, border-color .2s;
    }

    .btn-ghost-nav:hover {
      color: #fff;
      background: rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.18);
    }

    .btn-nav-cta {
      background: var(--green);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      padding: 8px 18px;
      border-radius: 7px;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }

    .btn-nav-cta:hover {
      background: var(--green2);
      transform: translateY(-1px);
    }

    /* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
    .hero {
      min-height: calc(100vh - 96px);
      padding: 64px 32px 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: var(--page);
    }

    /* ── HERO BACKGROUND MESH ── */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 80%,  rgba(6,182,212,.22)   0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%,  rgba(59,130,246,.18)  0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 50% 0%,   rgba(99,102,241,.12)  0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 75% 25%,  rgba(6,182,212,.08)   0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }
    .hero > * { position: relative; z-index: 1; }

    .hero-glow {
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 500px;
      background: radial-gradient(ellipse, rgba(6,182,212,.28) 0%, rgba(59,130,246,.08) 50%, transparent 72%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 14px;
      background: rgba(59,130,246,.08);
      border: 1px solid rgba(59,130,246,.25);
      border-radius: 100px;
      margin-bottom: 28px;
      animation: fadeUp .5s ease both;
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      animation: throb 2s infinite;
    }

    .hero-badge-text {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--green);
    }

    @keyframes throb {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(.8)
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(16px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(40px, 6vw, 78px);
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: -.035em;
      color: #fff;
      max-width: 860px;
      animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) .1s both;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--green);
    }

    .hero-sub {
      margin-top: 20px;
      max-width: 520px;
      font-size: 16px;
      line-height: 1.75;
      color: var(--sub);
      font-weight: 400;
      letter-spacing: -.01em;
      animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) .2s both;
    }

    .hero-ctas {
      margin-top: 32px;
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) .3s both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--green);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 4px 24px rgba(16,185,129,.30);
      transition: transform .2s, box-shadow .2s, background .2s;
      overflow: hidden;
    }

    .btn-primary:hover {
      background: var(--green2);
      transform: translateY(-1px);
      box-shadow: 0 8px 32px rgba(16,185,129,.40);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,.07);
      color: var(--sub);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.14);
      cursor: pointer;
      text-decoration: none;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
      transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.22);
      color: #fff;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 4px 16px rgba(0,0,0,.3);
    }

    .hero-proof {
      margin-top: 16px;
      font-size: 11.5px;
      color: var(--muted);
      font-family: 'Inter', sans-serif;
      letter-spacing: .03em;
      animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) .4s both;
    }

    /* ═══════════════════════════════════════════════
   DASHBOARD MOCKUP
═══════════════════════════════════════════════ */
    .mockup-outer {
      width: 100%;
      max-width: 1060px;
      overflow: visible;
      border-radius: 18px;
      margin-top: 56px;
      position: relative;
      animation: fadeUp 1s cubic-bezier(.16, 1, .3, 1) .5s both;
    }
    .mockup-outer::before {
      content: '';
      position: absolute;
      inset: -30px -40px;
      background:
        radial-gradient(ellipse 80% 50% at 50% 60%, rgba(246,221,66,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(59,130,246,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 80% 80%, rgba(129,140,248,0.07) 0%, transparent 55%);
      pointer-events: none;
      z-index: -1;
      filter: blur(20px);
      border-radius: 32px;
    }

    @media(max-width:900px) {
      .mockup-outer {
        margin-top: 36px;
        margin-bottom: -20px;
      }
    }

    .mockup-wrap {
      width: 1060px;
      position: relative;
      transform-origin: top left;
    }

    .mockup-glow {
      position: absolute;
      inset: -40px;
      background: radial-gradient(ellipse at 50% 55%, rgba(59,130,246,.1), transparent 65%);
      pointer-events: none;
      z-index: -1;
    }

    .mockup-frame {
      background: #e8e8e8;
      border: 1px solid rgba(0, 0, 0, .12);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .14), 0 0 0 1px rgba(0, 0, 0, .04);
      width: 1060px;
    }

    .mockup-chrome {
      height: 36px;
      background: #1e1e1e;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      padding: 0 14px;
      gap: 10px;
    }

    .chrome-dots {
      display: flex;
      gap: 5px;
    }

    .chrome-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .chrome-url {
      flex: 1;
      text-align: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      color: #999;
    }

    .mockup-body {
      display: flex;
      height: 460px;
    }

    /* Sidebar */
    .mock-sidebar {
      width: 58px;
      background: #111;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 12px 0;
      gap: 2px;
      flex-shrink: 0;
    }

    .sidebar-logo {
      width: 28px;
      height: 28px;
      background: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .sidebar-btn {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      background: transparent;
      transition: background .15s;
    }

    .sidebar-btn svg {
      width: 15px;
      height: 15px;
      stroke: #555;
      stroke-width: 1.8;
      fill: none;
    }

    .sidebar-btn.act {
      background: rgba(255, 255, 255, .12);
    }

    .sidebar-btn.act svg {
      stroke: #fff;
    }

    .sidebar-btn:hover:not(.act) {
      background: rgba(255, 255, 255, .07);
    }

    .sb-spacer {
      flex: 1;
    }

    .sb-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      padding-bottom: 4px;
    }

    /* Left profile panel */
    .mock-left {
      width: 198px;
      background: #f0f0f0;
      flex-shrink: 0;
      border-right: 1px solid rgba(0, 0, 0, .07);
      display: flex;
      flex-direction: column;
      padding: 14px 13px;
      overflow: hidden;
    }

    .mlp-profile {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .mlp-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, #6366f1, #4f46e5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .mlp-name {
      font-size: 12px;
      font-weight: 700;
      color: #111;
      letter-spacing: -.02em;
    }

    .mlp-email {
      font-size: 9.5px;
      color: #aaa;
      margin-top: 1px;
    }

    .mlp-sec {
      font-size: 8.5px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #bbb;
      margin-bottom: 7px;
      margin-top: 3px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mlp-sec-sw {
      font-size: 8.5px;
      font-weight: 700;
      color: var(--green);
      cursor: pointer;
      letter-spacing: .04em;
    }

    .mlp-acct-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 3px;
    }

    .mlp-acct-name {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
      color: #222;
    }

    .mlp-acct-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #111;
    }

    .mlp-acct-badge {
      font-size: 9px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      background: rgba(59,130,246,.12);
      color: var(--green);
    }

    .mlp-pval {
      font-family: 'JetBrains Mono', monospace;
      font-size: 21px;
      font-weight: 600;
      color: #111;
      margin: 5px 0 2px;
      letter-spacing: -.02em;
    }

    .mlp-today {
      font-size: 10px;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 12px;
    }

    .mlp-divider {
      height: 1px;
      background: rgba(0, 0, 0, .08);
      margin: 9px 0;
    }

    .mlp-metric-row {
      display: flex;
      gap: 6px;
      margin-bottom: 6px;
    }

    .mlp-metric-card {
      flex: 1;
      background: #fff;
      border-radius: 9px;
      padding: 8px 9px;
      border: 1px solid rgba(0, 0, 0, .05);
      box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
    }

    .mlp-metric-lbl {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #bbb;
    }

    .mlp-metric-val {
      font-size: 12px;
      font-weight: 700;
      color: #111;
      margin-top: 3px;
    }

    .mlp-eff {
      background: #fff;
      border-radius: 9px;
      padding: 9px 10px;
      border: 1px solid rgba(0, 0, 0, .05);
      box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mlp-eff-lbl {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #bbb;
    }

    .mlp-eff-val {
      font-size: 12.5px;
      font-weight: 700;
      color: #111;
      margin-top: 2px;
    }

    .mlp-quote {
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid rgba(0, 0, 0, .07);
      font-size: 9px;
      color: #bbb;
      line-height: 1.55;
      font-style: italic;
    }

    /* Main content */
    .mock-main {
      flex: 1;
      background: #e8e8e8;
      padding: 16px 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      overflow: hidden;
      min-width: 0;
    }

    .mock-topbar {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .mock-page-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 17px;
      font-weight: 800;
      color: #111;
      letter-spacing: -.03em;
    }

    .mock-new-entry {
      display: flex;
      align-items: center;
      gap: 5px;
      background: #111;
      color: #fff;
      font-size: 9.5px;
      font-weight: 700;
      padding: 6px 11px;
      border-radius: 7px;
      letter-spacing: .04em;
      cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .mock-tabs {
      display: flex;
      gap: 3px;
      margin-top: 2px;
    }

    .mtab {
      font-size: 10px;
      font-weight: 700;
      padding: 4px 13px;
      border-radius: 100px;
      letter-spacing: .04em;
      cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .mtab.act {
      background: #111;
      color: #fff;
    }

    .mtab.inact {
      background: rgba(0, 0, 0, .06);
      color: #999;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .mtab-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #ccc;
    }

    .mock-subtitle {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 800;
      color: #111;
      letter-spacing: -.025em;
      margin-top: -2px;
    }

    /* Metric cards row 1 — 4 up */
    .mc-row4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 7px;
    }

    /* Metric cards row 2 — 3 up */
    .mc-row3 {
      display: grid;
      grid-template-columns: 1.4fr 1fr .8fr;
      gap: 7px;
    }

    .perf-card {
      background: #fff;
      border-radius: 13px;
      padding: 13px 14px;
      border: 1px solid rgba(0, 0, 0, .06);
      box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    }

    .pc-lbl {
      font-size: 8.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #bbb;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .pc-badge-dd {
      font-size: 8px;
      font-weight: 800;
      background: rgba(244, 63, 94, .1);
      color: var(--red);
      padding: 2px 6px;
      border-radius: 4px;
      letter-spacing: .05em;
    }

    .pc-badge-good {
      font-size: 8px;
      font-weight: 800;
      background: rgba(59,130,246,.1);
      color: var(--green);
      padding: 2px 6px;
      border-radius: 4px;
      letter-spacing: .05em;
    }

    .pc-val {
      font-family: 'JetBrains Mono', monospace;
      font-size: 19px;
      font-weight: 600;
      color: #111;
      margin-top: 5px;
      letter-spacing: -.01em;
    }

    .pc-val.green {
      color: var(--green);
    }

    .pc-val.red {
      color: var(--red);
    }

    .pc-sub {
      font-size: 8.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: #ccc;
      margin-top: 3px;
    }

    /* Charts row */
    .chart-row {
      display: grid;
      grid-template-columns: 1.65fr 1fr;
      gap: 7px;
      flex: 1;
      min-height: 0;
    }

    .chart-card {
      background: #fff;
      border-radius: 13px;
      padding: 13px;
      border: 1px solid rgba(0, 0, 0, .06);
      box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .cc-lbl {
      font-size: 8.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #bbb;
      margin-bottom: 8px;
    }

    /* Equity curve — dark line on white card */
    .eq-path {
      stroke: #111;
      stroke-width: 2.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 3000;
      stroke-dashoffset: 3000;
    }

    .eq-path.animated {
      animation: drawLine 2.2s cubic-bezier(.4, 0, .2, 1) .4s forwards;
    }

    @keyframes drawLine {
      to {
        stroke-dashoffset: 0;
      }
    }

    .eq-dot {
      opacity: 0;
    }

    .eq-dot.animated {
      opacity: 1;
      animation: pulseDot 2s ease-in-out infinite;
    }

    @keyframes pulseDot {

      0%,
      100% {
        r: 3.5;
        opacity: 1
      }

      50% {
        r: 6;
        opacity: .4
      }
    }

    /* Weekday bars */
    .wday-bars {
      display: flex;
      align-items: flex-end;
      gap: 5px;
      flex: 1;
      padding-top: 4px;
    }

    .wday-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      flex: 1;
    }

    .wday-bar {
      width: 100%;
      border-radius: 4px 4px 0 0;
      transform-origin: bottom;
      transform: scaleY(0);
      transition: transform .7s cubic-bezier(.34, 1.56, .64, 1);
    }

    .wday-bar.anim {
      transform: scaleY(1);
    }

    .wday-lbl {
      font-size: 8.5px;
      font-family: 'JetBrains Mono', monospace;
      color: #ccc;
    }

    /* Eyebrow labels */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 14px;
    }

    .eyebrow-line {
      width: 22px;
      height: 1.5px;
      background: var(--green);
    }

    /* Section headings */
    .sec-h {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(30px, 3.6vw, 48px);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1.1;
      color: #f0f0f2;
    }

    .sec-h em {
      font-style: normal;
      color: var(--green);
    }

    .sec-p {
      font-size: 15.5px;
      color: var(--sub);
      line-height: 1.8;
      max-width: 500px;
      margin-top: 14px;
    }

    /* ═══════════════════════════════════════════════
   STATS BAR  (dark strip)
═══════════════════════════════════════════════ */
    .stats-bar {
      background: #0a0a0d;
      border-top: 1px solid rgba(255,255,255,.05);
      border-bottom: 1px solid rgba(255,255,255,.05);
      padding: 36px 32px;
    }

    .stats-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .sb-item {
      text-align: center;
      position: relative;
    }

    .sb-item+.sb-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 36px;
      width: 1px;
      background: rgba(255, 255, 255, .08);
    }

    .sb-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 42px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .sb-num .acc {
      color: var(--green);
    }

    .sb-lbl {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-top: 6px;
    }

    /* ═══════════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════════ */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ═══════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════ */
    .features-sec {
      padding: 110px 0;
      background:
        radial-gradient(ellipse 70% 40% at 50% -5%,  rgba(59,130,246,.16) 0%, transparent 65%),
        radial-gradient(ellipse 50% 30% at 90% 50%,  rgba(59,130,246,.08) 0%, transparent 60%),
        var(--section);
      position: relative;
      overflow: hidden;
    }
    .features-sec::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(6,182,212,.07) 0%, transparent 70%);
      pointer-events: none;
    }

    /* 3-col uniform grid — no "wide" spans so all cards same size */
    .feat-grid {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .feat-card {
      background: rgba(10,16,24,.80);
      border-radius: 20px;
      padding: 28px 28px 24px;
      transition: transform .3s, box-shadow .3s;
      position: relative;
      overflow: visible;
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .feat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1.5px;
      background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04), rgba(255,255,255,.10));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      transition: background .35s;
    }

    .feat-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1.5px;
      background: transparent;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      transition: background .35s;
      z-index: 1;
    }

    .feat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }

    .feat-card:hover::after {
      background: linear-gradient(135deg, rgba(6,182,212,.8), rgba(99,102,241,.6), rgba(59,130,246,.4));
    }

    /* Icon box */
    .feat-icon {
      width: 46px;
      height: 46px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      flex-shrink: 0;
    }

    .feat-icon svg {
      width: 22px;
      height: 22px;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .fi-green {
      background: rgba(59,130,246,.1);
    }

    .fi-green svg {
      stroke: #10b981;
    }

    .fi-indigo {
      background: rgba(99, 102, 241, .1);
    }

    .fi-indigo svg {
      stroke: #6366f1;
    }

    .fi-red {
      background: rgba(244, 63, 94, .1);
    }

    .fi-red svg {
      stroke: #f43f5e;
    }

    .fi-amber {
      background: rgba(245, 158, 11, .1);
    }

    .fi-amber svg {
      stroke: #f59e0b;
    }

    .fi-sky {
      background: rgba(14, 165, 233, .1);
    }

    .fi-sky svg {
      stroke: #0ea5e9;
    }

    .fi-violet {
      background: rgba(139, 92, 246, .1);
    }

    .fi-violet svg {
      stroke: #8b5cf6;
    }

    .feat-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: -.025em;
    }

    .feat-desc {
      font-size: 13.5px;
      color: var(--sub);
      line-height: 1.7;
      flex: 1;
    }

    .feat-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 14px;
    }

    .ftag {
      font-size: 10.5px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 100px;
      border: 1px solid rgba(0, 0, 0, .08);
      color: #888;
      background: rgba(0, 0, 0, .03);
    }

    /* ═══════════════════════════════════════════════
   ANALYTICS
═══════════════════════════════════════════════ */
    .analytics-sec {
      padding: 110px 0;
      background:
        radial-gradient(ellipse 60% 60% at 100% 50%,  rgba(99,102,241,.18) 0%, transparent 62%),
        radial-gradient(ellipse 40% 40% at 0%  80%,   rgba(129,140,248,.08) 0%, transparent 55%),
        radial-gradient(ellipse 80% 30% at 50% 100%,  rgba(59,130,246,.06) 0%, transparent 60%),
        var(--page);
      position: relative;
      overflow: hidden;
    }
    .analytics-sec::before {
      content: '';
      position: absolute;
      bottom: -80px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(ellipse, rgba(129,140,248,.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .a-mockup {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 26px;
      box-shadow: 0 8px 40px rgba(0,0,0,.4);
      position: relative;
    }

    .a-mockup::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(249,115,22,.08), transparent 55%);
      z-index: -1;
    }

    .analytics-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .a-title {
      font-size: 11px;
      font-weight: 700;
      color: #bbb;
      margin-bottom: 18px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .bar-chart {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 96px;
    }

    .ba-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      flex: 1;
    }

    .ba-bar {
      width: 100%;
      border-radius: 4px 4px 0 0;
      transition: opacity .2s;
    }

    .ba-bar:hover {
      opacity: .75;
    }

    .ba-lbl {
      font-size: 9px;
      color: #ccc;
      font-family: 'JetBrains Mono', monospace;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px;
      margin-top: 18px;
    }

    .mm {
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: 10px 13px;
    }

    .mm-lbl {
      font-size: 8.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: #bbb;
    }

    .mm-val {
      font-family: 'JetBrains Mono', monospace;
      font-size: 17px;
      font-weight: 600;
      margin-top: 3px;
    }

    .g {
      color: var(--green);
    }

    .b {
      color: var(--indigo);
    }

    .r {
      color: var(--red);
    }

    .w {
      color: #111;
    }

    .rdist {
      margin-top: 18px;
    }

    .rdist-lbl {
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #bbb;
      margin-bottom: 9px;
    }

    .rdist-bars {
      display: flex;
      align-items: flex-end;
      gap: 5px;
      height: 60px;
    }

    .rdb {
      border-radius: 3px 3px 0 0;
      flex: 1;
    }

    .check-list {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .check-row {
      display: flex;
      gap: 12px;
    }

    .check-ico {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(59,130,246,.1);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }

    .check-ico svg {
      width: 9px;
      height: 9px;
      stroke: var(--green);
      stroke-width: 2.5;
      fill: none;
    }

    .check-txt {
      font-size: 14px;
      color: var(--sub);
      line-height: 1.65;
    }

    .check-txt strong {
      color: #fff;
      font-weight: 600;
    }

    /* ═══════════════════════════════════════════════
   PSYCHOLOGY
═══════════════════════════════════════════════ */
    .psych-sec {
      padding: 110px 0;
      background:
        radial-gradient(ellipse 65% 55% at -5% 50%,  rgba(99,102,241,.20) 0%, transparent 62%),
        radial-gradient(ellipse 40% 35% at 50% 100%, rgba(6,182,212,.10) 0%, transparent 55%),
        radial-gradient(ellipse 35% 30% at 100% 20%, rgba(99,102,241,.07) 0%, transparent 50%),
        var(--section);
      position: relative;
      overflow: hidden;
    }
    .psych-sec::before {
      content: '';
      position: absolute;
      top: -60px; left: -80px;
      width: 500px; height: 400px;
      background: radial-gradient(ellipse, rgba(99,102,241,.05) 0%, transparent 65%);
      pointer-events: none;
    }

    .psych-mockup {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 8px 40px rgba(0,0,0,.4);
    }

    .psych-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .pm-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -.02em;
    }

    .mood-day {
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      border-radius: 11px;
      padding: 11px 13px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 7px;
    }

    .mdc-date {
      font-size: 9.5px;
      color: var(--muted);
      font-weight: 600;
    }

    .mdc-label {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--text);
      margin-top: 2px;
    }

    .state-tags {
      display: flex;
      gap: 3px;
    }

    .stag {
      font-size: 8.5px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 100px;
    }

    .st-g {
      background: rgba(59,130,246,.1);
      color: var(--green);
    }

    .st-r {
      background: rgba(244, 63, 94, .1);
      color: var(--red);
    }

    .st-i {
      background: rgba(99, 102, 241, .1);
      color: var(--indigo);
    }

    .st-a {
      background: rgba(245, 158, 11, .1);
      color: var(--amber);
    }

    .score-circle {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11.5px;
      font-weight: 600;
    }

    .sc-g {
      background: rgba(59,130,246,.1);
      color: var(--green);
    }

    .sc-r {
      background: rgba(244, 63, 94, .1);
      color: var(--red);
    }

    .sc-a {
      background: rgba(245, 158, 11, .1);
      color: var(--amber);
    }

    .mistake-card {
      background: rgba(244,63,94,.08);
      border: 1px solid rgba(244, 63, 94, .18);
      border-radius: 11px;
      padding: 13px;
      margin-top: 4px;
    }

    .mc-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px;
    }

    .mc-cat {
      font-size: 9.5px;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--red);
    }

    .mc-impact {
      font-size: 8.5px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 100px;
      background: rgba(244, 63, 94, .1);
      color: var(--red);
    }

    .mc-text {
      font-size: 11px;
      color: var(--sub);
      line-height: 1.55;
    }

    .mc-lesson {
      font-size: 10px;
      color: var(--green);
      margin-top: 6px;
      font-style: italic;
      display: flex;
      align-items: flex-start;
      gap: 4px;
    }

    .psych-quote {
      background: rgba(249,115,22,.06);
      border-left: 3px solid var(--green);
      border-radius: 0 11px 11px 0;
      padding: 16px 20px;
      margin-top: 28px;
    }

    .pq-text {
      font-size: 14.5px;
      line-height: 1.7;
      color: #888;
      font-style: italic;
    }

    .pq-author {
      margin-top: 9px;
      font-size: 12px;
      font-weight: 700;
      color: #999;
    }

    /* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
    .how-sec {
      padding: 110px 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% 50%,  rgba(139,92,246,.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 10% 20%,  rgba(99,102,241,.08) 0%, transparent 55%),
        var(--page);
      position: relative;
      overflow: hidden;
    }
    .how-sec::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(6,182,212,.05) 0%, transparent 65%);
      pointer-events: none;
    }

    .steps {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .step-card {
      background: rgba(10,16,24,.80);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }

    .step-card:hover {
      border-color: rgba(249,115,22,.3);
      transform: translateY(-4px);
      box-shadow: 0 14px 36px rgba(0,0,0,.5), 0 0 0 1px rgba(249,115,22,.1);
      background: var(--card-hover);
    }

    .step-num {
      width: 44px;
      height: 44px;
      background: var(--green);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 800;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      letter-spacing: -.03em;
    }

    .step-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16.5px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
      letter-spacing: -.03em;
    }

    .step-desc {
      font-size: 13.5px;
      color: var(--sub);
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════
   COMPARISON
═══════════════════════════════════════════════ */
    .compare-sec {
      padding: 110px 0;
      background:
        radial-gradient(ellipse 60% 70% at 35% 50%,  rgba(59,130,246,.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 80%,  rgba(5,150,105,.08)  0%, transparent 55%),
        var(--section);
      position: relative;
      overflow: hidden;
    }
    .compare-sec::before {
      content: '';
      position: absolute;
      bottom: -80px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 300px;
      background: radial-gradient(ellipse, rgba(129,140,248,.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .compare-table {
      margin-top: 52px;
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      background: var(--card);
      box-shadow: 0 4px 40px rgba(0,0,0,.4);
    }

    .ct-head {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      background: rgba(255,255,255,.03);
      border-bottom: 1px solid var(--border);
    }

    .ct-h {
      padding: 16px 26px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #bbb;
    }

    .ct-h.ours {
      color: var(--green);
      border-top: 2px solid var(--green);
      background: rgba(249,115,22,.03);
    }

    .ct-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      border-bottom: 1px solid var(--border);
      transition: background .15s;
    }

    .ct-row:last-child {
      border-bottom: none;
    }

    .ct-row:hover {
      background: rgba(255,255,255,.03);
    }

    .ct-c {
      padding: 14px 26px;
      font-size: 13px;
      color: var(--sub);
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .ct-c.feat {
      font-weight: 500;
      color: var(--text);
    }

    .ct-c.ours {
      background: rgba(249,115,22,.06);
    }

    .tick {
      color: var(--green);
      font-size: 15px;
      font-weight: 700;
    }

    .cross {
      color: #ddd;
      font-size: 15px;
    }

    .partial {
      color: var(--amber);
      font-size: 12px;
      font-weight: 600;
    }

    /* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
    .testi-sec {
      padding: 110px 0;
      background:
        radial-gradient(ellipse 55% 55% at 80% 40%,  rgba(99,102,241,.13) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%,  rgba(6,182,212,.09) 0%, transparent 55%),
        var(--page);
      position: relative;
      overflow: hidden;
    }
    .testi-sec::before {
      content: '';
      position: absolute;
      top: 50%; right: -100px;
      transform: translateY(-50%);
      width: 400px; height: 400px;
      background: radial-gradient(ellipse, rgba(6,182,212,.05) 0%, transparent 65%);
      pointer-events: none;
    }

    .testi-grid {
      margin-top: 52px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .testi-card {
      background: rgba(10,16,24,.75);
      border-radius: 20px;
      padding: 30px;
      position: relative;
      overflow: visible;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: transform .3s, box-shadow .3s;
    }

    .testi-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1.5px;
      background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04), rgba(255,255,255,.10));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      transition: background .35s;
      z-index: 1;
    }

    .testi-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(0,0,0,.5);
    }

    .testi-card:hover::before {
      background: linear-gradient(135deg, rgba(16,185,129,.6), rgba(6,182,212,.4), rgba(99,102,241,.3));
    }

    .stars {
      color: var(--amber);
      font-size: 13px;
      letter-spacing: 2px;
      margin-bottom: 14px;
    }

    .testi-text {
      font-size: 14px;
      line-height: 1.7;
      color: var(--sub);
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
    }

    .t-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
    }

    .t-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
    }

    .t-role {
      font-size: 11px;
      color: #bbb;
      margin-top: 1px;
    }

    /* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
    .pricing-sec {
      padding: 110px 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 50%,  rgba(6,182,212,.16) 0%, rgba(59,130,246,.08) 40%, transparent 72%),
        radial-gradient(ellipse 50% 40% at 20% 100%, rgba(99,102,241,.12) 0%, transparent 58%),
        radial-gradient(ellipse 50% 40% at 80% 0%,   rgba(99,102,241,.10) 0%, transparent 55%),
        #090907;
      position: relative;
      overflow: hidden;
    }
    .pricing-sec::before {
      content: '';
      position: absolute;
      top: -60px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 350px;
      background: radial-gradient(ellipse, rgba(6,182,212,.30) 0%, rgba(59,130,246,.10) 45%, transparent 68%);
      pointer-events: none;
      width: 900px; height: 500px;
      top: -80px;
    }

    .pricing-cards {
      margin-top: 52px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
    }

    .plan-card {
      background: rgba(10,16,24,.80);
      border-radius: 24px;
      padding: 34px;
      position: relative;
      overflow: visible;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transition: transform .3s, box-shadow .3s;
    }

    .plan-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      padding: 1.5px;
      background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04), rgba(255,255,255,.10));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      transition: background .35s;
    }

    .plan-card.featured {
      border-color: rgba(249,115,22,.55);
      box-shadow:
        0 0 0 1px rgba(249,115,22,.25),
        0 0 60px rgba(6,182,212,.18),
        0 0 120px rgba(6,182,212,.08),
        0 24px 80px rgba(0,0,0,.6);
      background: linear-gradient(160deg, #1e1508 0%, #130f04 50%, #0e0c08 100%);
    }

    .pop-badge {
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green);
      color: #fff;
      font-size: 9.5px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 0 0 9px 9px;
    }

    .plan-tier {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .plan-tier.pro {
      color: var(--green);
    }

    .plan-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 24px;
      line-height: 1.55;
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 1px;
      margin-bottom: 5px;
    }

    .price-sym {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--text);
    }

    .price-val {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 52px;
      font-weight: 800;
      letter-spacing: -.04em;
      color: var(--text);
      line-height: 1;
    }

    .price-period {
      font-size: 12.5px;
      color: var(--muted);
      margin-left: 3px;
    }

    .plan-cta {
      width: 100%;
      padding: 12px;
      border-radius: 9px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: .02em;
      cursor: pointer;
      margin: 20px 0 24px;
      transition: all .2s;
      border: none;
    }

    .cta-outline {
      background: transparent;
      border: 1px solid var(--border2);
      color: var(--sub);
    }

    .cta-outline:hover {
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.2);
      color: var(--text);
    }

    .cta-solid {
      background: var(--green);
      color: #fff;
      box-shadow: 0 4px 20px rgba(249,115,22,.35);
    }

    .cta-solid:hover {
      background: var(--green2);
      transform: translateY(-1px);
      box-shadow: 0 8px 30px rgba(249,115,22,.4);
    }

    .pf-row {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      color: rgba(255,255,255,0.60);
      margin-bottom: 8px;
    }

    .pf-check {
      color: var(--green);
      font-size: 13px;
      flex-shrink: 0;
    }

    .pf-cross {
      color: rgba(255,255,255,0.20);
      font-size: 13px;
      flex-shrink: 0;
    }

    /* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
    .final-cta {
      padding: 120px 32px;
      background:
        radial-gradient(ellipse 90% 70% at 50% 50%,  rgba(59,130,246,.22)  0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 15% 80%,  rgba(6,182,212,.18)  0%, transparent 58%),
        radial-gradient(ellipse 60% 50% at 85% 80%,  rgba(99,102,241,.14)  0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 50% 0%,   rgba(99,102,241,.12)  0%, transparent 50%),
        #040406;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 400px;
      background: radial-gradient(ellipse 60% 80%, rgba(59,130,246,.32) 0%, rgba(99,102,241,.12) 45%, transparent 70%);
      width: 800px;
      height: 600px;
      pointer-events: none;
    }

    .fcta-h {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1.07;
      color: #fff;
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .fcta-h em {
      font-style: normal;
      color: var(--green);
    }

    .fcta-sub {
      font-size: 15px;
      color: rgba(255,255,255,0.62);
      margin-top: 16px;
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }

    .fcta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      padding: 13px 30px;
      border-radius: 9px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 20px rgba(255, 255, 255, .1);
      transition: transform .2s, box-shadow .2s;
    }

    .fcta-btn:hover {
      transform: translateY(-2px);
      background: var(--green2);
      box-shadow: 0 8px 40px rgba(249,115,22,.4);
    }

    .fcta-note {
      font-size: 11.5px;
      color: rgba(255,255,255,0.45);
      margin-top: 16px;
      position: relative;
      z-index: 1;
      letter-spacing: .03em;
    }

    /* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
    footer {
      background: #070709;
      border-top: 1px solid rgba(255,255,255,.07);
      padding: 52px 40px 32px;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 28px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      margin-bottom: 6px;
    }

    .footer-brand-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14.5px;
      font-weight: 700;
      color: #fff;
    }

    .footer-brand-name span {
      color: rgba(255,255,255,0.38);
      font-weight: 400;
    }

    .footer-tagline {
      font-size: 12px;
      color: rgba(255,255,255,0.42);
      margin-top: 3px;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.48);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-links a:hover {
      color: #fff;
    }

    /* Inner pages use .footer-links-row (same treatment as .footer-links) */
    .footer-links-row {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-links-row a {
      font-size: 13px;
      color: rgba(255,255,255,0.48);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-links-row a:hover {
      color: #fff;
    }

    /* Compact footers: avoid index-style top border on copyright in .footer-inner */
    footer .footer-inner > .footer-copy {
      border-top: none;
      margin-top: 0;
      padding-top: 0;
      max-width: none;
    }

    /* ── Inner / marketing subpages (about, blog, legal, contact, etc.) ── */
    section.section {
      padding: 88px 0 96px;
    }
    .page-hero {
      margin-bottom: 40px;
    }
    .page-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }
    .page-hero h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0 0 16px;
    }
    .page-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0 0 16px;
    }
    .page-hero-sub {
      font-size: 16px;
      color: var(--sub);
      line-height: 1.65;
      max-width: 640px;
      margin: 0 auto;
    }
    .page-sub {
      font-size: 15px;
      color: var(--sub);
      line-height: 1.65;
      max-width: 560px;
    }
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.38);
      margin-bottom: 8px;
    }
    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.02em;
      margin: 0 0 8px;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .glass-card {
      background: rgba(10, 16, 26, 0.72);
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      box-shadow:
        0 8px 32px rgba(0,0,0,0.40),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.20);
    }
    .prose {
      font-size: 15px;
      color: rgba(255,255,255,0.82);
      line-height: 1.75;
    }
    .prose p { margin: 0 0 14px; }
    .prose p:last-child { margin-bottom: 0; }
    .prose h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin: 28px 0 12px;
    }
    .prose h3 {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin: 20px 0 10px;
    }
    .prose a {
      color: var(--green);
      text-decoration: none;
    }
    .prose a:hover { text-decoration: underline; }
    .divider {
      height: 1px;
      background: rgba(255,255,255,0.08);
      width: 100%;
    }

    /* Contact page */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 40px;
      align-items: start;
      max-width: 920px;
      margin: 0 auto;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 8px;
    }
    .form-input,
    .form-textarea,
    .form-select {
      width: 100%;
      box-sizing: border-box;
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 14px;
      color: #fff;
      font-family: inherit;
    }
    .form-textarea {
      min-height: 140px;
      resize: vertical;
      line-height: 1.5;
    }
    .form-select {
      cursor: pointer;
    }
    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
      outline: none;
      border-color: rgba(16, 185, 129, 0.45);
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
    }

    /* Blog: expandable articles */
    .article-full {
      display: none;
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .article-full.open {
      display: block;
    }
    .article-preview-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 14px;
      gap: 12px;
      flex-wrap: wrap;
    }
    .expand-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 8px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      cursor: pointer;
      font-family: inherit;
      transition: background 0.2s, border-color 0.2s;
    }
    .expand-btn:hover {
      background: rgba(16, 185, 129, 0.12);
      border-color: rgba(16, 185, 129, 0.25);
    }
    .expand-btn svg {
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }
    .expand-btn[aria-expanded="true"] svg {
      transform: rotate(180deg);
    }
    .tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 7px;
      border: 1px solid transparent;
    }
    .tag-green {
      color: var(--green);
      background: rgba(16, 185, 129, 0.12);
      border-color: rgba(16, 185, 129, 0.25);
    }
    .tag-indigo {
      color: var(--indigo);
      background: rgba(129, 140, 248, 0.12);
      border-color: rgba(129, 140, 248, 0.25);
    }
    .tag-amber {
      color: var(--amber);
      background: rgba(245, 158, 11, 0.12);
      border-color: rgba(245, 158, 11, 0.25);
    }
    .tag-red {
      color: var(--red);
      background: rgba(244, 63, 94, 0.12);
      border-color: rgba(244, 63, 94, 0.25);
    }
    .prose blockquote {
      margin: 16px 0;
      padding: 14px 18px;
      border-left: 3px solid var(--green);
      background: rgba(255, 255, 255, 0.04);
      border-radius: 0 10px 10px 0;
      font-style: italic;
      color: rgba(255, 255, 255, 0.88);
    }
    .prose ol {
      margin: 12px 0;
      padding-left: 22px;
    }
    .prose li {
      margin: 8px 0;
    }

    @media (max-width: 900px) {
      .grid-2, .grid-3 { grid-template-columns: 1fr; }
      section.section { padding: 72px 0 64px; }
      .contact-layout { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .article-preview-meta {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    .footer-copy {
      border-top: 1px solid rgba(255,255,255,.06);
      margin-top: 32px;
      padding-top: 22px;
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-copy span {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      letter-spacing: .03em;
    }

    .footer-copy a {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-copy a:hover {
      color: rgba(255,255,255,0.6);
    }

    /* ═══════════════════════════════════════════════
   TICKER STRIP
═══════════════════════════════════════════════ */
    .ticker-strip {
      background: #111;
      overflow: hidden;
      height: 36px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,.04);
      position: relative;
      z-index: 100;
    }

    .ios-app-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 20px;
      background: linear-gradient(90deg, rgba(16, 185, 129, .06), rgba(129, 140, 248, .06));
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      position: relative;
      z-index: 99;
    }

    .ios-app-strip-dot {
      flex-shrink: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 10px rgba(16, 185, 129, .5);
    }

    .ios-app-strip-text {
      margin: 0;
      font-size: 13px;
      line-height: 1.5;
      color: var(--sub);
      text-align: center;
      max-width: 52rem;
    }

    .ios-app-strip-text strong {
      color: var(--text);
      font-weight: 600;
    }

    .ios-app-strip-text a {
      color: var(--green);
      font-weight: 600;
      text-decoration: none;
    }

    .ios-app-strip-text a:hover {
      text-decoration: underline;
    }

    .ticker-track {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
      animation: tickerScroll 28s linear infinite;
      will-change: transform;
    }

    .ticker-track span {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9.5px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      padding: 0 18px;
    }

    .ticker-sep {
      color: var(--green) !important;
      font-size: 6px !important;
      padding: 0 !important;
      opacity: .6;
    }

    @keyframes tickerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ═══════════════════════════════════════════════
   HERO PARTICLES
═══════════════════════════════════════════════ */
    .hero-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: .6;
    }

    .hero > *:not(.hero-particles):not(.hero-glow):not(.hero-orb):not(.hero-illustrations):not(.hero-chart-bg) {
      position: relative;
      z-index: 1;
    }

    /* ═══════════════════════════════════════════════
   FLOATING ORBS
═══════════════════════════════════════════════ */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .orb1 {
      animation: orbFloat1 18s ease-in-out infinite;
    }

    .orb2 {
      animation: orbFloat2 22s ease-in-out infinite;
    }

    @keyframes orbFloat1 { from { opacity:.4 } to { opacity:.6 } }
      33% { transform: translate(-30px,40px) scale(1.05); }
      66% { transform: translate(20px,-20px) scale(.96); }
    }

    @keyframes orbFloat2 { from { opacity:.3 } to { opacity:.5 } }
      40% { transform: translate(25px,-35px) scale(1.04); }
      70% { transform: translate(-15px,20px) scale(.97); }
    }

    /* ═══════════════════════════════════════════════
   BUTTON SHIMMER
═══════════════════════════════════════════════ */
    .btn-primary {
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
      transform: skewX(-15deg);
      animation: btnShimmer 3.5s ease-in-out infinite;
    }

    .btn-primary {
      position: relative;
    }

    @keyframes btnShimmer { 0%,100%{background-position:200% center} 50%{background-position:0% center} }
      40%,100% { left: 150%; }
    }

    /* ═══════════════════════════════════════════════
   ANIMATED GRADIENT TEXT
═══════════════════════════════════════════════ */
    .hero h1 em {
      background: linear-gradient(135deg, #10b981 0%, #34d399 40%, #059669 70%, #10b981 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 4s ease infinite;
    }

    @keyframes gradientShift {
      0%,100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* ═══════════════════════════════════════════════
   ENHANCED CARD REVEALS
═══════════════════════════════════════════════ */
    .reveal-scale {
      opacity: 0;
      transform: translateY(24px) scale(.97);
      transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
    }

    .reveal-scale.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-28px);
      transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(28px);
      transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ═══════════════════════════════════════════════
   GLOW PULSE ON FEATURED PLAN
═══════════════════════════════════════════════ */
    .plan-card.featured {
      animation: planGlow 5s ease-in-out infinite;
    }

    @keyframes planGlow {
      0%,100% { box-shadow: 0 0 0 3px rgba(249,115,22,.07), 0 12px 40px rgba(0,0,0,.08); }
      50% { box-shadow: 0 0 0 5px rgba(249,115,22,.13), 0 16px 50px rgba(6,182,212,.1); }
    }

    /* ═══════════════════════════════════════════════
   STAT BAR NUMBER GLOW
═══════════════════════════════════════════════ */
    .sb-num {
      text-shadow: 0 0 40px rgba(6,182,212,.15);
    }

    /* ═══════════════════════════════════════════════
   ANIMATED BORDER FEATURE CARDS
═══════════════════════════════════════════════ */
    .feat-card:hover::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(249,115,22,.15), transparent 50%, rgba(99,102,241,.1));
      z-index: -1;
      animation: borderGlow .4s ease both;
    }

    @keyframes borderGlow {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* ═══════════════════════════════════════════════
   MOCKUP TILT CONTAINER
═══════════════════════════════════════════════ */
    .mockup-wrap {
      perspective: 1200px;
    }

    .mockup-frame {
      transition: transform .15s ease;
      will-change: transform;
    }

    /* ═══════════════════════════════════════════════
   MOBILE NAV — HAMBURGER
═══════════════════════════════════════════════ */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: none;
      border: 1px solid rgba(0,0,0,.1);
      border-radius: 8px;
      cursor: pointer;
      padding: 0;
      transition: border-color .2s, background .2s;
    }

    .hamburger:hover {
      background: rgba(0,0,0,.04);
      border-color: rgba(0,0,0,.16);
    }

    .hamburger span {
      display: block;
      width: 16px;
      height: 1.5px;
      background: #222;
      border-radius: 2px;
      transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ═══════════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════════ */
    .mobile-drawer {
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      z-index: 199;
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
      transform: translateY(-8px);
      opacity: 0;
      pointer-events: none;
      transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s ease;
    }

    .mobile-drawer.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .mobile-drawer-inner {
      padding: 20px 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .mobile-nav-links a {
      font-size: 15px;
      font-weight: 600;
      color: var(--sub);
      text-decoration: none;
      padding: 12px 14px;
      border-radius: 10px;
      transition: background .2s, color .2s;
      font-family: 'Plus Jakarta Sans', sans-serif;
      letter-spacing: -.01em;
    }

    .mobile-nav-links a:hover {
      background: rgba(255,255,255,.06);
      color: #fff;
    }

    .mobile-nav-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-top: 8px;
      border-top: 1px solid var(--border);
    }

    .mobile-full-btn {
      width: 100%;
      padding: 13px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
    }

    .drawer-overlay {
      position: fixed;
      inset: 60px 0 0;
      background: rgba(0,0,0,.2);
      z-index: 198;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .drawer-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    /* ═══════════════════════════════════════════════
   RESPONSIVE — 900px
═══════════════════════════════════════════════ */
    @media(max-width:900px) {
      .nav-links { display: none; }
      .nav-desktop-only { display: none; }
      .hamburger { display: flex; }
      .feat-grid { grid-template-columns: 1fr 1fr; }
      .analytics-inner, .psych-inner { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .pricing-cards { grid-template-columns: 1fr; max-width: 440px; }
      .compare-sec { display: none; }
    }

    /* ═══════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════ */
    @media(max-width:768px) {
      .hero { padding: 52px 20px 56px; }
      .hero-sub { font-size: 15px; }
      .stats-bar { padding: 28px 20px; }
      .stats-bar-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
      .sb-item+.sb-item::before { display: none; }
      .sb-num { font-size: 34px; }
      .features-sec, .analytics-sec, .psych-sec,
      .how-sec, .testi-sec, .pricing-sec { padding: 72px 0; }
      .container { padding: 0 20px; }
      .feat-grid { grid-template-columns: 1fr; gap: 10px; }
      .sec-h { font-size: clamp(26px, 5vw, 38px); }
      .sec-p { font-size: 14.5px; }
      .testi-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .testi-card { padding: 22px; }
      .final-cta { padding: 80px 20px; }
      .fcta-h { font-size: clamp(30px, 6vw, 52px); }
      footer { padding: 40px 20px 24px; }
      .footer-inner { flex-direction: column; gap: 20px; }
      .footer-links { gap: 16px; }
      .footer-copy { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
    }

    /* ═══════════════════════════════════════════════
   RESPONSIVE — 600px
═══════════════════════════════════════════════ */
    @media(max-width:600px) {
      .hero { padding: 44px 16px 48px; }
      .container { padding: 0 16px; }
      .ticker-strip { height: 30px; }
      .ios-app-strip { padding: 9px 14px; }
      .ios-app-strip-text { font-size: 12px; }
      .stats-bar-inner { grid-template-columns: repeat(2,1fr); gap: 28px; }
      .sb-item+.sb-item::before { display: none; }
      .feat-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .pricing-cards { grid-template-columns: 1fr; max-width: none; }
      .hero h1 { font-size: clamp(32px, 9vw, 48px); line-height: 1.1; }
      .hero-sub { font-size: 14px; line-height: 1.7; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 20px; }
      .analytics-inner { gap: 36px; }
      .psych-inner { gap: 36px; }
      .features-sec, .analytics-sec, .psych-sec,
      .how-sec, .testi-sec, .pricing-sec { padding: 60px 0; }
      .final-cta { padding: 64px 16px; }
      .fcta-btn { width: 100%; justify-content: center; }
    }

    /* ═══════════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════════ */
    @media(max-width:480px) {
      #nav { height: 56px; }
      .nav-inner { padding: 0 16px; }
      .mobile-drawer { top: 56px; }
      .drawer-overlay { top: 56px; }
      .hero { padding: 36px 14px 44px; }
      .container { padding: 0 14px; }
      .sb-num { font-size: 28px; }
      .sb-lbl { font-size: 9px; }
      .hero h1 { font-size: clamp(28px, 8.5vw, 40px); }
      .hero-badge-text { font-size: 9px; }
      .feat-card { padding: 22px 20px 18px; }
      .step-card { padding: 24px 20px; }
      .testi-card { padding: 20px; }
      .plan-card { padding: 26px 22px; }
      .sec-h { font-size: clamp(24px, 6.5vw, 32px); }
      .footer-links { gap: 12px; flex-wrap: wrap; }
    }

    /* ═══════════════════════════════════════════════
   RESPONSIVE — 375px
═══════════════════════════════════════════════ */
    @media(max-width:375px) {
      .hero { padding: 30px 12px 40px; }
      .container { padding: 0 12px; }
      .hero h1 { font-size: 26px; }
      .btn-primary, .btn-secondary { font-size: 12.5px; }
      .sb-num { font-size: 24px; }
      .pricing-cards { gap: 12px; }
      .plan-card { padding: 22px 18px; }
      .price-val { font-size: 42px; }
    }

        /* ═══════════════════════════════════════════════
   3D TRADING ILLUSTRATIONS
═══════════════════════════════════════════════ */
    .hero-illustrations {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      pointer-events: none;
      z-index: 2;
    }

    .float-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 16px;
      padding: 14px 16px;
      box-shadow:
        0 8px 32px rgba(0,0,0,0.40),
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 1px 0 rgba(255,255,255,0.12) inset;
    }
    .fc-1 { box-shadow: 0 8px 32px rgba(0,0,0,0.40), 0 0 24px rgba(16,185,129,0.15), 0 0 1px rgba(255,255,255,0.08) inset; }
    .fc-2 { box-shadow: 0 8px 32px rgba(0,0,0,0.40), 0 0 24px rgba(246,221,66,0.12), 0 0 1px rgba(255,255,255,0.08) inset; }
    .fc-3 { box-shadow: 0 8px 32px rgba(0,0,0,0.40), 0 0 24px rgba(244,63,94,0.14), 0 0 1px rgba(255,255,255,0.08) inset; }
    .fc-4 { box-shadow: 0 8px 32px rgba(0,0,0,0.40), 0 0 24px rgba(129,140,248,0.14), 0 0 1px rgba(255,255,255,0.08) inset; }

    .fc-1 {
      top: 12%;
      left: 2%;
      animation: floatA 7s ease-in-out infinite;
    }

    .fc-2 {
      top: 10%;
      right: 2%;
      animation: floatB 8s ease-in-out infinite;
    }

    .fc-3 {
      bottom: 30%;
      left: 1%;
      animation: floatC 9s ease-in-out infinite;
    }

    .fc-4 {
      bottom: 24%;
      right: 1%;
      animation: floatA 6.5s ease-in-out infinite reverse;
    }

    @keyframes floatA {
      0%,100% { transform: translateY(0) rotate(-1deg); }
      50% { transform: translateY(-14px) rotate(1deg); }
    }
    @keyframes floatB {
      0%,100% { transform: translateY(0) rotate(1.5deg); }
      50% { transform: translateY(-18px) rotate(-1deg); }
    }
    @keyframes floatC {
      0%,100% { transform: translateY(0) rotate(-2deg); }
      50% { transform: translateY(-10px) rotate(.5deg); }
    }

    .fc-label {
      font-size: 8.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 5px;
      font-family: 'JetBrains Mono', monospace;
    }

    .fc-val {
      font-family: 'JetBrains Mono', monospace;
      font-size: 18px;
      font-weight: 700;
      color: rgba(255,255,255,0.92);
      line-height: 1;
    }

    .fc-val.green { color: var(--green); }
    .fc-val.red { color: var(--red); }

    .fc-sub {
      font-size: 9px;
      color: rgba(255,255,255,0.38);
      margin-top: 3px;
      font-family: 'JetBrains Mono', monospace;
    }

    .fc-spark {
      margin-top: 8px;
    }

    /* Hide float cards on small screens */
    @media(max-width:900px) {
      .fc-1, .fc-2, .fc-3, .fc-4 { display: none; }
    }

    .hero-chart-bg {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(900px, 100%);
      opacity: .06;
      pointer-events: none;
      z-index: 0;
    }

    .orb1 {
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(6,182,212,.07) 0%, transparent 70%);
      top: 5%;
      right: -10%;
      animation: orbFloat1 18s ease-in-out infinite;
    }

    .orb2 {
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(99,102,241,.06) 0%, transparent 70%);
      bottom: 15%;
      left: -8%;
      animation: orbFloat2 22s ease-in-out infinite;
    }

    /* ═══════════════════════════════════════════════
   HERO NO-CC LINE
═══════════════════════════════════════════════ */
    .hero-no-cc {
      margin-top: 10px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--green);
      letter-spacing: .02em;
      animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .45s both;
    }

    /* ═══════════════════════════════════════════════
   ACTIVE NAV LINK
═══════════════════════════════════════════════ */
    .nav-links a.active {
      color: #fff;
      background: rgba(255,255,255,.08);
    }

    /* ═══════════════════════════════════════════════
   STICKY CTA BAR
═══════════════════════════════════════════════ */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 190;
      background: rgba(18, 16, 10, 0.82);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border-top: 1px solid rgba(246, 221, 66, 0.18);
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      transform: translateY(100%);
      transition: transform .4s cubic-bezier(.16,1,.3,1);
      box-shadow: 0 -1px 0 rgba(255,255,255,0.06) inset, 0 -8px 32px rgba(0,0,0,0.5);
    }
    .sticky-cta.visible { transform: translateY(0); }
    .sticky-cta-text {
      font-size: 13px;
      color: rgba(255,255,255,0.82);
      font-weight: 500;
    }
    .sticky-cta-text strong { color: #ffffff; letter-spacing: -0.01em; }
    .sticky-cta-btn {
      background: var(--green);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      padding: 9px 20px;
      border-radius: 7px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s, transform .15s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .sticky-cta-btn:hover { background: var(--green2); transform: translateY(-1px); }
    .sticky-cta-close {
      background: none; border: none; cursor: pointer;
      color: rgba(255,255,255,0.35); font-size: 18px; padding: 4px; line-height: 1;
      flex-shrink: 0;
    }
    .sticky-cta-close:hover { color: rgba(255,255,255,0.7); }
    @media(max-width:600px) {
      .sticky-cta-text { display: none; }
      .sticky-cta { justify-content: space-between; padding: 10px 16px; }
    }

    /* ═══════════════════════════════════════════════
   LOGO / SOCIAL PROOF BAR
═══════════════════════════════════════════════ */
    .logo-bar {
      background: #0a0a0d;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 22px 32px;
    }
    .logo-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .logo-bar-label {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .logo-bar-logos {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .logo-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 700;
      color: var(--sub);
      letter-spacing: -.01em;
    }
    .logo-pill-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
    }

    /* ═══════════════════════════════════════════════
   ENHANCED REVEAL ANIMATIONS
═══════════════════════════════════════════════ */
    .reveal-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
    }
    .reveal-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
    }
    .reveal-scale {
      opacity: 0;
      transform: scale(.94);
      transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
    }
    .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
      opacity: 1; transform: none;
    }

    /* ═══════════════════════════════════════════════
   PRICING TOGGLE
═══════════════════════════════════════════════ */
    .pricing-toggle {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
      margin-bottom: 4px;
    }
    .toggle-track {
      position: relative;
      width: 44px; height: 24px;
      background: rgba(255,255,255,.12);
      border-radius: 12px;
      cursor: pointer;
      transition: background .2s;
      flex-shrink: 0;
    }
    .toggle-track.on { background: var(--green); }
    .toggle-knob {
      position: absolute;
      top: 3px; left: 3px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: #fff;
      transition: transform .25s cubic-bezier(.34,1.56,.64,1);
      box-shadow: 0 1px 4px rgba(0,0,0,.2);
    }
    .toggle-track.on .toggle-knob { transform: translateX(20px); }
    .toggle-lbl {
      font-size: 12.5px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
    }
    .toggle-lbl.active { color: var(--text); }
    .save-badge {
      background: rgba(249,115,22,.12);
      color: var(--green);
      font-size: 10px;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 100px;
      letter-spacing: .05em;
    }

    /* ═══════════════════════════════════════════════
   PRICING CARD HIERARCHY
═══════════════════════════════════════════════ */
    .plan-card.free-card {
      opacity: .75;
      transform: scale(.97);
      transition: opacity .3s, transform .3s, border-color .3s;
    }
    .plan-card.free-card:hover {
      opacity: .9;
      transform: scale(.99);
    }

    /* ═══════════════════════════════════════════════
   COMPARISON TABLE — WINNER HIGHLIGHT
═══════════════════════════════════════════════ */
    .ct-winner-label {
      font-size: 9px;
      font-weight: 800;
      color: var(--green);
      letter-spacing: .08em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ═══════════════════════════════════════════════
   APP STORE SECTION
═══════════════════════════════════════════════ */
    .app-sec {
      padding: 110px 0;
      background: #111;
      position: relative;
      overflow: hidden;
    }
    .app-sec::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 800px; height: 500px;
      background: radial-gradient(ellipse, rgba(6,182,212,.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .app-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .app-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 14px;
    }
    .app-eyebrow-line { width: 22px; height: 1.5px; background: var(--orange); }
    .app-h {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(30px, 3.6vw, 48px);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 16px;
    }
    .app-h em { font-style: normal; color: var(--orange); }
    .app-p {
      font-size: 15px;
      color: rgba(255,255,255,0.58);
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 460px;
    }
    .app-badges {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .app-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px;
      padding: 12px 20px;
      cursor: pointer;
      transition: background .2s, border-color .2s, transform .2s;
      text-decoration: none;
    }
    .app-badge:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.2);
      transform: translateY(-2px);
    }
    .app-badge-icon { flex-shrink: 0; }
    .app-badge-text { line-height: 1.3; }
    .app-badge-sub {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }
    .app-badge-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }
    .app-coming-note {
      font-size: 11.5px;
      color: rgba(255,255,255,0.42);
      letter-spacing: .03em;
    }
    .app-coming-note strong { color: var(--orange); }

    .app-phone-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .app-phone {
      width: 260px;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 36px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
      position: relative;
    }
    .app-phone-notch {
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 100px; height: 28px;
      background: #1a1a1a;
      border-radius: 0 0 20px 20px;
      z-index: 10;
    }
    .app-phone-screen {
      background: #0f0f0f;
      min-height: 520px;
      padding: 40px 16px 20px;
      position: relative;
    }
    .aph-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }
    .aph-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.03em;
    }
    .aph-date {
      font-size: 9px;
      color: rgba(255,255,255,0.42);
      font-family: 'JetBrains Mono', monospace;
    }
    .aph-metric-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 10px;
    }
    .aph-card {
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 12px;
      padding: 12px;
    }
    .aph-card-lbl {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
      margin-bottom: 5px;
      font-family: 'JetBrains Mono', monospace;
    }
    .aph-card-val {
      font-family: 'JetBrains Mono', monospace;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }
    .aph-card-val.g { color: #10b981; }
    .aph-card-val.r { color: #f43f5e; }
    .aph-card-sub {
      font-size: 8px;
      color: rgba(255,255,255,0.38);
      margin-top: 2px;
      font-family: 'JetBrains Mono', monospace;
    }
    .aph-chart {
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 10px;
    }
    .aph-chart-lbl {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
      margin-bottom: 10px;
      font-family: 'JetBrains Mono', monospace;
    }
    .aph-trades {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .aph-trade-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,.05);
      border-radius: 9px;
      padding: 9px 11px;
    }
    .aph-trade-sym {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      color: #fff;
    }
    .aph-trade-side {
      font-size: 7.5px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 6px;
    }
    .side-l { background: rgba(249,115,22,.15); color: #10b981; }
    .side-s { background: rgba(244,63,94,.15); color: #f43f5e; }
    .aph-trade-pnl {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 700;
    }
    .aph-phone-glow {
      position: absolute;
      top: -60px; left: 50%;
      transform: translateX(-50%);
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(6,182,212,.12), transparent 65%);
      pointer-events: none;
      z-index: -1;
    }
    @media(max-width:900px) {
      .app-inner { grid-template-columns: 1fr; gap: 48px; }
      .app-phone-wrap { margin-top: 16px; }
    }

    /* ═══════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════ */
    .faq-sec {
      padding: 110px 0;
      background: var(--page);
      position: relative;
      overflow: hidden;
    }
    .faq-sec::before {
      content: '';
      position: absolute;
      bottom: -60px; left: 50%;
      transform: translateX(-50%);
      width: 500px; height: 300px;
      background: radial-gradient(ellipse, rgba(129,140,248,.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .faq-list {
      margin-top: 52px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .faq-item {
      background: var(--card);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color .2s, background .2s;
    }
    .faq-item:hover {
      border-color: rgba(255,255,255,.13);
      background: var(--card-hover);
    }
    .faq-item.open {
      border-color: rgba(59,130,246,.25);
      background: var(--card-hover);
    }
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 22px;
      cursor: pointer;
      gap: 16px;
      user-select: none;
    }
    .faq-q-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -.02em;
      line-height: 1.45;
    }
    .faq-icon {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .2s, border-color .2s, transform .35s cubic-bezier(.34,1.56,.64,1);
    }
    .faq-icon svg {
      width: 10px; height: 10px;
      stroke: #888; stroke-width: 2.5; fill: none;
      transition: stroke .2s, transform .35s cubic-bezier(.34,1.56,.64,1);
    }
    .faq-item.open .faq-icon {
      background: var(--green);
      border-color: var(--green);
    }
    .faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
    .faq-a {
      font-size: 14px;
      color: var(--sub);
      line-height: 1.75;
      padding: 0 22px;
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s cubic-bezier(.16,1,.3,1), padding .3s;
    }
    .faq-item.open .faq-a { max-height: 600px; padding: 0 22px 22px; }

    /* ═══════════════════════════════════════════════
   TESTIMONIAL ENHANCEMENT
═══════════════════════════════════════════════ */
    .t-platform {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .05em;
      padding: 2px 7px;
      border-radius: 4px;
      margin-top: 2px;
    }
    .tp-green { background: rgba(249,115,22,.1); color: var(--green); }
    .tp-indigo { background: rgba(99,102,241,.1); color: var(--indigo); }
    .tp-amber { background: rgba(99,102,241,.1); color: var(--amber); }

    /* ═══════════════════════════════════════════════
   FOOTER ENHANCEMENT
═══════════════════════════════════════════════ */
    .footer-cols {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 40px;
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-col-title { /* footer section heading */
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.38);
      margin-bottom: 14px;
    }
    .footer-col-links {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .footer-col-links a {
      color: rgba(255,255,255,0.52);
      font-size: 13px;
      text-decoration: none;
      transition: color .2s;
    }
    .footer-col-links a:hover { color: #fff; }
    .footer-social {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }
    .footer-social-btn {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s;
      text-decoration: none;
    }
    .footer-social-btn:hover { background: rgba(255,255,255,.12); }
    @media(max-width:900px) {
      .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
    }
    @media(max-width:600px) {
      .footer-cols { grid-template-columns: 1fr; gap: 24px; }
    }


    /* ═══════════════════════════════════════════════
   SECTION HIGHLIGHT DIVIDERS & GLOWS
═══════════════════════════════════════════════ */
    .section-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(249,115,22,.3), transparent);
      position: relative;
    }
    .section-divider::before {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 200px; height: 3px;
      background: radial-gradient(ellipse, rgba(6,182,212,.6), transparent 70%);
    }
    .section-divider-indigo {
      background: linear-gradient(90deg, transparent, rgba(129,140,248,.12), transparent);
    }
    .section-divider-indigo::before {
      background: radial-gradient(ellipse, rgba(129,140,248,.5), transparent 70%);
    }
    .section-divider-amber {
      background: linear-gradient(90deg, transparent, rgba(99,102,241,.2), transparent);
    }
    .section-divider-amber::before {
      background: radial-gradient(ellipse, rgba(99,102,241,.4), transparent 70%);
    }

    /* Section highlight label pill */
    .section-highlight-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(249,115,22,.08);
      border: 1px solid rgba(249,115,22,.2);
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }
    .section-highlight-pill-indigo {
      background: rgba(129,140,248,.08);
      border-color: rgba(129,140,248,.2);
      color: var(--indigo);
    }
    .section-highlight-pill-amber {
      background: rgba(99,102,241,.08);
      border-color: rgba(99,102,241,.2);
      color: var(--amber);
    }
    .shp-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: currentColor;
      animation: throb 2s infinite;
    }

    /* Highlighted section wrappers with side-glow borders */
    .sec-glow-left::before {
      content: '';
      position: absolute;
      left: 0; top: 15%; bottom: 15%;
      width: 3px;
      background: linear-gradient(180deg, transparent, rgba(249,115,22,.4), transparent);
      border-radius: 0 3px 3px 0;
    }
    .sec-glow-right::after {
      content: '';
      position: absolute;
      right: 0; top: 15%; bottom: 15%;
      width: 3px;
      background: linear-gradient(180deg, transparent, rgba(129,140,248,.35), transparent);
      border-radius: 3px 0 0 3px;
    }


    /* ═══════════════════════════════════════════════
   APP STATIC PHONE MOCKUP
═══════════════════════════════════════════════ */
    .app-static-phone {
      position: relative;
      width: 272px;
      height: 580px;
      flex-shrink: 0;
      border-radius: 32px;
      overflow: hidden;
      background: #080e12;
    }
    .app-static-phone::before {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 42px;
      background: #1a1a1f;
      box-shadow: inset 0 0 0 2px rgba(255,255,255,.08), 0 40px 80px rgba(0,0,0,.8);
      z-index: -1;
    }
    .app-static-phone::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 32px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
      pointer-events: none;
      z-index: 3;
    }
    .app-static-phone img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      border-radius: 0 !important;
      box-shadow: none !important;
    }
    @media(max-width:900px) {
      .app-static-phone { width: 230px; height: 490px; }
    }


    /* ══════════════════════════════════════════
       BACKGROUND GRADIENT  (matching reference image)
       Deep warm-black with golden/yellow-green glow orbs
    ══════════════════════════════════════════ */
    body {
      background:
        radial-gradient(ellipse 60% 50% at 70% 10%,  rgba(246,221,66,0.13) 0%, transparent 65%),
        radial-gradient(ellipse 45% 40% at 10% 30%,  rgba(250,209,65,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 10% 85%,  rgba(246,221,66,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 85% 55%,  rgba(180,200,40,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 50% 50%,  rgba(20,18,12,1.0)   0%, transparent 100%),
        linear-gradient(160deg, #100e08 0%, #0c0a06 40%, #0e0c08 70%, #090807 100%) !important;
      background-attachment: fixed !important;
    }

    /* Remove old solid section backgrounds */
    .logo-bar,
    .hero,
    .features-sec,
    .analytics-sec,
    .psychology-sec,
    .compare-sec,
    .pricing-sec,
    .testimonials-sec,
    .faq-sec,
    .cta-sec,
    .app-sec,
    .footer-sec,
    section {
      background: transparent !important;
    }

    /* ══════════════════════════════════════════
       GLASSMORPHISM — NAVBAR (always-on frosted)
    ══════════════════════════════════════════ */
    #nav {
      background: rgba(8, 12, 18, 0.58) !important;
      backdrop-filter: blur(28px) saturate(200%) !important;
      -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
      border-bottom: 1px solid rgba(255,255,255,.10) !important;
      box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 4px 32px rgba(0,0,0,.40),
                  inset 0 1px 0 rgba(255,255,255,.05) !important;
    }
    #nav.scrolled {
      background: rgba(4, 7, 12, 0.85) !important;
      backdrop-filter: blur(40px) saturate(240%) !important;
      -webkit-backdrop-filter: blur(40px) saturate(240%) !important;
      border-bottom: 1px solid rgba(255,255,255,.14) !important;
      box-shadow: 0 1px 0 rgba(255,255,255,.09), 0 8px 48px rgba(0,0,0,.55),
                  inset 0 1px 0 rgba(255,255,255,.07) !important;
    }
    /* Ghost nav button — frosted glass treatment */
    .btn-ghost-nav {
      background: rgba(255,255,255,.05) !important;
      border: 1px solid rgba(255,255,255,.20) !important;
      color: rgba(255,255,255,0.85) !important;
      backdrop-filter: blur(16px) !important;
      -webkit-backdrop-filter: blur(16px) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.15), inset 0 -1px 0 rgba(0,0,0,.12) !important;
    }
    .btn-ghost-nav:hover {
      background: rgba(255,255,255,.12) !important;
      border-color: rgba(255,255,255,.30) !important;
      color: #fff !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.20), 0 4px 16px rgba(0,0,0,.30) !important;
    }

    /* ══════════════════════════════════════════
       GLASSMORPHISM — CARDS (three layers)
    ══════════════════════════════════════════ */

    /* ── FEATURE CARDS: frosted dark + gradient border → cyan/indigo glow on hover ── */
    .feat-card {
      background: rgba(10, 16, 26, 0.72) !important;
      backdrop-filter: blur(20px) saturate(160%) !important;
      -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
      border: none !important;
      box-shadow:
        0 8px 32px rgba(0,0,0,0.40),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.20) !important;
    }
    /* Layer 1: subtle always-visible gradient border */
    .feat-card::before {
      background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04), rgba(255,255,255,.10)) !important;
    }
    /* Layer 2 + 3: cyan/indigo glow border on hover */
    .feat-card:hover {
      background: rgba(12, 20, 34, 0.82) !important;
      transform: translateY(-5px) !important;
      box-shadow:
        0 24px 64px rgba(0,0,0,0.55),
        0 0 40px rgba(6,182,212,0.08),
        inset 0 1px 0 rgba(255,255,255,0.12) !important;
    }
    .feat-card:hover::after {
      background: linear-gradient(135deg, rgba(6,182,212,.90), rgba(99,102,241,.70), rgba(59,130,246,.50)) !important;
    }
    .feat-card:hover::before {
      background: linear-gradient(135deg, rgba(6,182,212,.30), rgba(99,102,241,.15), rgba(59,130,246,.10)) !important;
    }

    /* ── TESTIMONIAL CARDS: frosted base + green/teal glow border on hover ── */
    .testi-card {
      background: rgba(10, 16, 26, 0.70) !important;
      backdrop-filter: blur(18px) saturate(150%) !important;
      -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
      border: none !important;
      box-shadow:
        0 8px 32px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.18) !important;
    }
    .testi-card::before {
      background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04), rgba(255,255,255,.09)) !important;
    }
    .testi-card:hover {
      background: rgba(10, 20, 28, 0.80) !important;
      transform: translateY(-3px) !important;
      box-shadow:
        0 20px 56px rgba(0,0,0,0.50),
        0 0 30px rgba(16,185,129,0.07),
        inset 0 1px 0 rgba(255,255,255,0.11) !important;
    }
    .testi-card:hover::before {
      background: linear-gradient(135deg, rgba(16,185,129,.75), rgba(6,182,212,.55), rgba(99,102,241,.35)) !important;
    }

    /* ── PRICING CARDS: heaviest blur + always-visible white gradient border ── */
    .plan-card {
      background: rgba(10, 16, 26, 0.78) !important;
      backdrop-filter: blur(28px) saturate(180%) !important;
      -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
      border: none !important;
      box-shadow:
        0 12px 48px rgba(0,0,0,0.50),
        inset 0 1px 0 rgba(255,255,255,0.10),
        inset 0 -1px 0 rgba(0,0,0,0.22) !important;
    }
    .plan-card::before {
      background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06), rgba(255,255,255,.14)) !important;
    }
    .plan-card:hover {
      box-shadow:
        0 20px 64px rgba(0,0,0,0.60),
        inset 0 1px 0 rgba(255,255,255,0.14) !important;
    }

    /* Pro/featured plan */
    .plan-card.featured {
      background: linear-gradient(160deg, rgba(18,24,36,.90) 0%, rgba(12,16,28,.85) 100%) !important;
      border: none !important;
      box-shadow:
        0 0 0 1px rgba(16,185,129,.28),
        0 0 60px rgba(6,182,212,.14),
        0 0 120px rgba(6,182,212,.06),
        0 24px 80px rgba(0,0,0,.60),
        inset 0 1px 0 rgba(255,255,255,0.10) !important;
    }
    .plan-card.featured::before {
      background: linear-gradient(135deg, rgba(16,185,129,.45), rgba(6,182,212,.25), rgba(99,102,241,.20)) !important;
    }

    /* Other card types - subtle base glass */
    .faq-item,
    .logo-pill,
    .compare-table-wrap {
      background: rgba(255, 255, 255, 0.04) !important;
      backdrop-filter: blur(18px) saturate(140%) !important;
      -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
      border: 1px solid rgba(255, 255, 255, 0.09) !important;
      box-shadow:
        0 8px 32px rgba(0,0,0,0.30),
        inset 0 1px 0 rgba(255,255,255,0.07),
        inset 0 -1px 0 rgba(0,0,0,0.15) !important;
    }

    /* ══════════════════════════════════════════
       GLASSMORPHISM — MOCKUP FRAME
    ══════════════════════════════════════════ */
    .mockup-frame {
      box-shadow:
        0 40px 120px rgba(0,0,0,0.65),
        0 0 0 1px rgba(246,221,66,0.08),
        0 0 80px rgba(246,221,66,0.04) !important;
    }

    /* ══════════════════════════════════════════
       GLASSMORPHISM — MOBILE DRAWER
    ══════════════════════════════════════════ */
    .mobile-drawer {
      background: rgba(10, 8, 4, 0.88) !important;
      backdrop-filter: blur(36px) !important;
      border-right: 1px solid rgba(255,255,255,0.07) !important;
    }

    /* ══════════════════════════════════════════
       GLASSMORPHISM — STICKY CTA
    ══════════════════════════════════════════ */
    .sticky-cta {
      background: rgba(10, 8, 4, 0.78) !important;
      backdrop-filter: blur(24px) !important;
      border-top: 1px solid rgba(255,255,255,0.08) !important;
    }

    /* ══════════════════════════════════════════
       GLASSMORPHISM — LOGO BAR
    ══════════════════════════════════════════ */
    .logo-bar {
      backdrop-filter: blur(12px) !important;
      border-color: rgba(255,255,255,0.07) !important;
    }

    /* ══════════════════════════════════════════
       GLASSMORPHISM — FAQ OPEN STATE
    ══════════════════════════════════════════ */
    .faq-item.open {
      background: rgba(255,255,255,0.06) !important;
    }

    /* Grid bg subtle */
    .grid-bg {
      background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px) !important;
      background-size: 64px 64px !important;
    }

  
    .footer-brand-name span {
      color: rgba(255,255,255,0.55);
    }
    
    
    .faq-q:hover .faq-q-text {
      color: var(--text);
    }
    .faq-q:hover {
      background: rgba(255,255,255,0.03);
      border-radius: 8px;
    }
    
    /* ── PREMIUM NOISE OVERLAY on coloured sections ── */
    .pricing-sec::after,
    .final-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      background-size: 180px 180px;
      opacity: 0.025;
      pointer-events: none;
      z-index: 0;
      mix-blend-mode: overlay;
    }
    .pricing-sec > *,
    .final-cta > * { position: relative; z-index: 1; }

    /* ── STEP CARDS colour-coded per step ── */
    .step-card:nth-child(1) { border-top: 2px solid rgba(59,130,246,.4); }
    .step-card:nth-child(2) { border-top: 2px solid rgba(99,102,241,.4); }
    .step-card:nth-child(3) { border-top: 2px solid rgba(249,115,22,.4); }

    /* ── FEATURE CARDS accent border per colour ── */
    .feat-card:hover {
      border-color: rgba(59,130,246,.25);
      background: linear-gradient(160deg, rgba(59,130,246,.04), transparent 60%), var(--card-hover);
    }

    /* ── TESTIMONIAL CARDS warm tint ── */
    .testi-card {
      background: linear-gradient(160deg, rgba(99,102,241,.04) 0%, var(--card) 50%);
    }

    /* ── PRO PLAN CTA — unmissable orange gradient ── */
    .cta-solid {
      background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%) !important;
      box-shadow: 0 4px 24px rgba(249,115,22,.45), 0 0 0 1px rgba(6,182,212,.3) !important;
      border: none !important;
      color: #fff !important;
      font-weight: 800 !important;
    }
    .cta-solid:hover {
      background: linear-gradient(135deg, #ea6c0a 0%, #d97706 100%) !important;
      box-shadow: 0 8px 40px rgba(249,115,22,.55), 0 0 0 1px rgba(6,182,212,.4) !important;
      transform: translateY(-2px) !important;
    }

    /* ── SECTION EYEBROW LINES — per-section accent ── */
    #analytics .eyebrow-line { background: var(--indigo); }
    #psychology .eyebrow-line { background: var(--amber); }
    #pricing .eyebrow-line { background: var(--orange); }

    /* ── TICKER STRIP tint ── */
    .ticker-strip {
      background: linear-gradient(90deg, #070709, rgba(59,130,246,.08) 30%, rgba(249,115,22,.06) 70%, #070709) !important;
      border-top: 1px solid rgba(59,130,246,.12) !important;
      border-bottom: 1px solid rgba(249,115,22,.10) !important;
    }

