﻿
  /* ---------- Tokens ---------- */
  :root {
    /* Neutrals */
    --bg:        #FAFAF7;       /* bone */
    --surface:   #FFFFFF;
    --soft:      #F1EEE7;       /* soft grey-cream */
    --line:      #E5E1D7;
    --ink:       #15151A;       /* greyish black */
    --ink-2:     #2B2B30;
    --ink-3:     #5C5C63;
    --ink-4:     #8A8A91;

    /* Dark */
    --dark:      #0E0E0F;
    --dark-2:    #161618;
    --dark-3:    #1F1F22;
    --dark-line: #2A2A2E;
    --on-dark:   #ECEAE3;
    --on-dark-2: #A6A39A;

    /* Gold */
    --gold:      #C9A24C;
    --gold-2:    #E0C078;
    --gold-3:    #8E6A26;
    --gold-soft: rgba(201,162,76,.14);
    --gold-line: rgba(201,162,76,.32);
    --gold-grad: linear-gradient(135deg, #E6C77B 0%, #C9A24C 45%, #8E6A26 100%);
    --gold-grad-soft: radial-gradient(120% 80% at 80% 10%, rgba(224,192,120,.22) 0%, rgba(201,162,76,.06) 35%, rgba(0,0,0,0) 70%);

    /* Type */
    --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
    --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;

    --radius-s: 10px;
    --radius:   14px;
    --radius-l: 22px;
    --radius-xl: 28px;

    --shadow-1: 0 1px 0 rgba(20,20,25,.04), 0 1px 2px rgba(20,20,25,.04);
    --shadow-2: 0 1px 0 rgba(20,20,25,.04), 0 10px 24px -12px rgba(20,20,25,.18);
    --shadow-gold: 0 12px 30px -14px rgba(201,162,76,.55);

    --container: 1180px;
  }

  /* ---------- Reset ---------- */
  *,*::before,*::after { box-sizing: border-box; }
  html, body { margin:0; padding:0; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; }
  h1,h2,h3,h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; text-wrap: balance; }
  p { margin: 0; text-wrap: pretty; }

  ::selection { background: var(--gold); color: #fff; }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
  }
  @media (min-width: 768px) { .container { padding: 0 32px; } }

  /* ---------- Reusable bits ---------- */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
  }
  .eyebrow::before {
    content: "";
    width: 6px; height: 6px; border-radius: 999px;
    background: var(--gold-grad);
    box-shadow: 0 0 0 3px var(--gold-soft);
  }
  .eyebrow.on-dark {
    color: var(--on-dark-2);
    background: rgba(255,255,255,.04);
    border-color: var(--dark-line);
  }

  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15.5px;
    letter-spacing: -0.005em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary {
    background: var(--gold-grad);
    color: #1A1407;
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,.35);
  }
  .btn-primary:hover { filter: brightness(1.04); }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
  }
  .btn-secondary:hover { background: var(--surface); border-color: #d8d3c5; }
  .btn-secondary.on-dark {
    color: var(--on-dark);
    border-color: var(--dark-line);
    background: rgba(255,255,255,.02);
  }
  .btn-secondary.on-dark:hover { background: rgba(255,255,255,.06); }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 0 4px;
    height: auto;
  }
  .btn .arr { display:inline-block; transition: transform .2s ease; }
  .btn:hover .arr { transform: translateX(3px); }

  .section { padding: 88px 0; position: relative; }
  @media (max-width: 720px) { .section { padding: 64px 0; } }

  .section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
  .section-head h2 {
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.1;
    margin: 14px 0 12px;
  }
  .section-head p {
    color: var(--ink-3);
    font-size: 16.5px;
    max-width: 580px;
    margin: 0 auto;
  }

  /* ---------- Nav ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,250,247,.82);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  .nav.scrolled { border-bottom-color: var(--line); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .brand-mark {
    width: 30px; height: 30px;
    border-radius: 9px;
    background: var(--gold-grad);
    display: grid; place-items: center;
    color: #1A1407;
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 4px 12px -6px rgba(201,162,76,.5);
  }
  .brand-mark span { transform: translateY(1px); font-style: italic; }
  .brand-name { font-size: 16.5px; }
  .brand-name em { font-style: normal; color: var(--ink-3); font-weight: 400; }
  .brand-gold { color: var(--gold); }

  .nav-links {
    display: none;
    align-items: center; gap: 28px;
    font-size: 14.5px; color: var(--ink-3);
  }
  .nav-links a { transition: color .15s ease; }
  .nav-links a:hover { color: var(--ink); }
  @media (min-width: 880px) { .nav-links { display: flex; } }

  .nav-cta { display: flex; align-items: center; gap: 8px; }
  .nav-cta .btn { height: 40px; padding: 0 16px; font-size: 14px; }
  .nav-cta .login { display: none; }
  @media (min-width: 540px) { .nav-cta .login { display: inline-flex; } }

  /* ---------- Hero ---------- */
  .hero {
    background: var(--dark);
    color: var(--on-dark);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--dark-line);
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(60% 50% at 85% 0%, rgba(224,192,120,.22) 0%, rgba(0,0,0,0) 60%),
      radial-gradient(50% 40% at 10% 100%, rgba(201,162,76,.10) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
  }
  .hero::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 64px 100%;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    z-index: 0;
    pointer-events: none;
  }
  .hero .container { position: relative; z-index: 1; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 56px 0 88px;
    align-items: center;
  }
  @media (min-width: 980px) {
    .hero-grid {
      grid-template-columns: 1.05fr 1fr;
      gap: 64px;
      padding: 96px 0 120px;
    }
  }

  .hero h1 {
    font-size: clamp(38px, 6.4vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 22px 0 18px;
    color: #fff;
  }
  .hero h1 .accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
  }
  .hero p.sub {
    font-size: clamp(16px, 1.8vw, 18.5px);
    color: var(--on-dark-2);
    max-width: 540px;
    margin-bottom: 28px;
  }
  .hero-cta {
    display: flex; flex-wrap: wrap; gap: 12px;
  }
  .hero-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px;
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--on-dark-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; margin-right: 8px; vertical-align: middle; }

  /* Hero visual: phone */
  .hero-visual { position: relative; min-height: 480px; }
  .phone {
    position: relative;
    width: 280px;
    aspect-ratio: 9 / 19.5;
    margin: 0 auto;
    border-radius: 42px;
    background: linear-gradient(160deg, #2A2A2E 0%, #161618 60%);
    padding: 10px;
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,.6),
      0 0 0 1px rgba(255,255,255,.05),
      inset 0 0 0 1px rgba(255,255,255,.04);
    animation: floatPanel 8s ease-in-out infinite;
  }
  @media (min-width: 980px) { .phone { width: 300px; } }
  .phone-screen {
    width: 100%; height: 100%;
    border-radius: 32px;
    background: #0B0B0C;
    overflow: hidden;
    position: relative;
    display: flex; flex-direction: column;
  }
  .phone-notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 22px;
    background: #000;
    border-radius: 999px;
    z-index: 4;
  }
  .status-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 22px 6px;
    font-family: var(--mono);
    font-size: 11px;
    color: #fff;
  }
  .status-bar .right { display: flex; gap: 5px; align-items: center; }
  .status-bar i {
    display: inline-block; width: 14px; height: 8px;
    border: 1.2px solid #fff; border-radius: 2px;
    position: relative;
  }
  .status-bar i::after {
    content: ""; position: absolute; right: -3px; top: 2px;
    width: 2px; height: 4px; background: #fff; border-radius: 0 1px 1px 0;
  }

  .app {
    flex: 1; padding: 8px 14px 14px;
    color: #ECEAE3;
    display: flex; flex-direction: column; gap: 10px;
    overflow: hidden;
  }
  .app-top {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 8px;
  }
  .app-top .greeting { font-size: 11px; color: #8A8A91; font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; }
  .app-top .name { font-size: 14px; font-weight: 500; }
  .avatar { width: 28px; height: 28px; border-radius: 999px; background: var(--gold-grad); display:grid; place-items:center; color:#1A1407; font-size: 12px; font-weight:600; }

  .summary {
    background: linear-gradient(140deg, rgba(224,192,120,.16), rgba(201,162,76,.04));
    border: 1px solid rgba(201,162,76,.25);
    border-radius: 14px;
    padding: 12px 14px;
  }
  .summary .label { font-family: var(--mono); font-size: 10px; color: #C9A24C; letter-spacing: .15em; text-transform: uppercase; }
  .summary .val { font-size: 22px; font-weight: 600; margin-top: 2px; letter-spacing: -0.02em; color:#fff; }
  .summary .delta { font-size: 11px; color: #A6A39A; margin-top: 2px; }
  .summary .delta b { color: #E0C078; font-weight: 500; }

  .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat {
    background: #18181B;
    border: 1px solid #232327;
    border-radius: 12px;
    padding: 10px;
  }
  .stat .k { font-size: 10px; font-family: var(--mono); color: #8A8A91; letter-spacing: .1em; text-transform: uppercase; }
  .stat .v { font-size: 14px; font-weight: 500; margin-top: 4px; color: #fff; }
  .stat .v.gold { color: #E0C078; }

  .activity {
    background: #18181B;
    border: 1px solid #232327;
    border-radius: 12px;
    padding: 10px 12px;
    flex: 1;
    display: flex; flex-direction: column; gap: 8px;
    min-height: 0;
  }
  .activity .hd { font-size: 11px; color:#8A8A91; font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em; }
  .row {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #232327;
  }
  .row:last-child { border-bottom: 0; }
  .pill {
    width: 30px; height: 30px; border-radius: 9px;
    background: #232327;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .pill.gold { background: rgba(201,162,76,.15); }
  .row .t { font-size: 12px; flex: 1; min-width: 0; }
  .row .t b { display:block; font-weight:500; color:#fff; }
  .row .t span { color:#8A8A91; font-size: 10.5px; }
  .row .amt { font-size: 12px; font-weight: 500; color: #E0C078; font-variant-numeric: tabular-nums; }
  .row .amt.out { color: #B0B0B7; }

  /* Floating chips around phone (desktop only) */
  .float-chip {
    display: none;
    position: absolute;
    padding: 10px 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--dark-line);
    border-radius: 12px;
    color: var(--on-dark);
    font-size: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center; gap: 10px;
    z-index: 6;
  }
  .float-chip .k { font-family: var(--mono); font-size: 10px; color: var(--on-dark-2); text-transform: uppercase; letter-spacing: .1em; }
  .float-chip .v { font-size: 14px; font-weight: 500; color: #fff; }
  .float-chip .v.gold { color: #E0C078; }
  .float-chip .ic { width: 28px; height: 28px; border-radius: 8px; background: rgba(201,162,76,.15); display:grid; place-items:center; }
  @media (min-width: 980px) {
    .float-chip { display: inline-flex; }
    .chip-1 { top: 12%; left: -10px; animation: float 6s ease-in-out infinite; }
    .chip-2 { top: 48%; right: -12px; animation: float 7s ease-in-out infinite -2s; }
    .chip-3 { bottom: 8%; left: 6%; animation: float 8s ease-in-out infinite -4s; }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @keyframes floatPanel {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
  }

  /* ---------- Logo strip ---------- */
  .strip {
    border-top: 1px solid var(--dark-line);
    padding: 22px 0;
    background: var(--dark-2);
    color: var(--on-dark-2);
  }
  .strip-inner {
    display: flex; align-items: center; gap: 24px;
    overflow: hidden;
    position: relative;
  }
  .strip-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    flex-shrink: 0;
    padding-right: 24px;
    border-right: 1px solid var(--dark-line);
  }
  .strip-track {
    display: flex; gap: 36px;
    flex: 1; overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }
  .strip-track .scroll {
    display: flex; gap: 36px;
    animation: marquee 38s linear infinite;
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .strip-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; white-space: nowrap;
  }
  .strip-item::before {
    content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  }

  /* ---------- Pain points ---------- */
  .pain {
    background: var(--bg);
  }
  .pain-grid {
    display: grid; gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
  @media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
  .pain-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease;
  }
  .pain-card:hover { border-color: var(--gold-line); transform: translateY(-2px); }
  .pain-card .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-4);
    letter-spacing: .15em;
    text-transform: uppercase;
  }
  .pain-card h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 18px 0 10px;
  }
  .pain-card p { color: var(--ink-3); font-size: 14.5px; }
  .pain-card .ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gold-soft);
    color: var(--gold-3);
    display: grid; place-items: center;
    margin-top: 18px;
    border: 1px solid var(--gold-line);
  }

  /* ---------- Features (Everything) ---------- */
  .features { background: var(--soft); }
  .feat-grid {
    display: grid; gap: 12px;
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
  }
  @media (min-width: 720px) { .feat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
  .feat {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 16px 20px;
    display: flex; flex-direction: column; gap: 10px;
    min-height: 156px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    cursor: pointer;
  }
  .feat:hover {
    border-color: var(--gold-line);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2);
  }
  .feat .ic {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(224,192,120,.22), rgba(201,162,76,.08));
    border: 1px solid var(--gold-line);
    color: var(--gold-3);
    display: grid; place-items: center;
  }
  .feat h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
  .feat p { font-size: 13px; color: var(--ink-3); line-height: 1.45; }
  .feat .tag {
    margin-top: auto;
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--ink-4);
    text-transform: uppercase;
    letter-spacing: .12em;
  }

  /* ---------- Phone + Laptop ---------- */
  .devices {
    background: var(--dark);
    color: var(--on-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
  }
  .devices::before {
    content:"";
    position:absolute; inset:0;
    background: var(--gold-grad-soft);
    pointer-events: none;
  }
  .devices .container { position: relative; }
  .devices .section-head h2, .devices .section-head p { color: var(--on-dark); }
  .devices .section-head p { color: var(--on-dark-2); }

  .device-stage {
    margin-top: 48px;
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: end;
    justify-items: center;
  }
  @media (min-width: 880px) {
    .device-stage {
      grid-template-columns: 0.8fr 1.4fr;
      align-items: center;
      gap: 8px;
    }
  }

  .laptop {
    width: 100%;
    max-width: 720px;
    animation: floatPanel 9s ease-in-out infinite -2s;
  }
  .laptop-screen {
    background: #0B0B0C;
    border: 1px solid #2A2A2E;
    border-radius: 14px 14px 4px 4px;
    padding: 10px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
  }
  .laptop-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 4px 4px 8px;
  }
  .laptop-bar i { width: 9px; height: 9px; border-radius: 50%; background: #2A2A2E; display:inline-block; }
  .laptop-base {
    height: 12px;
    background: linear-gradient(180deg, #232327, #161618);
    border-radius: 0 0 14px 14px;
    margin: 0 -12px;
    border: 1px solid #2A2A2E;
    border-top: none;
    position: relative;
  }
  .laptop-base::after {
    content:""; position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
    width: 90px; height: 5px;
    background: #2A2A2E;
    border-radius: 0 0 8px 8px;
  }

  .dashboard {
    background: #111114;
    border-radius: 8px;
    padding: 18px;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 14px;
    min-height: 360px;
  }
  .dash-side {
    border-right: 1px solid #232327;
    padding-right: 14px;
    display: flex; flex-direction: column; gap: 4px;
  }
  .dash-brand {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: #fff;
    margin-bottom: 12px;
  }
  .dash-brand .m { width: 22px; height: 22px; border-radius: 7px; background: var(--gold-grad); display:grid; place-items:center; color:#1A1407; font-family: var(--serif); font-size: 14px; font-style: italic; }
  .dash-item {
    font-size: 12px;
    padding: 7px 9px;
    border-radius: 7px;
    color: #A6A39A;
    display: flex; align-items: center; gap: 8px;
  }
  .dash-item .dot { width: 5px; height: 5px; border-radius: 50%; background: #3A3A3F; }
  .dash-item.active { background: rgba(201,162,76,.12); color: #fff; }
  .dash-item.active .dot { background: var(--gold); }

  .dash-main { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
  .dash-top {
    display: flex; justify-content: space-between; align-items: center;
  }
  .dash-top h5 { font-size: 14px; color:#fff; font-weight: 600; }
  .dash-top .range {
    font-family: var(--mono); font-size: 10px; color: #8A8A91;
    padding: 5px 9px; border: 1px solid #232327; border-radius: 999px;
    text-transform: uppercase; letter-spacing: .1em;
  }
  .kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .kpi {
    background: #18181B;
    border: 1px solid #232327;
    border-radius: 10px;
    padding: 10px 12px;
  }
  .kpi .k { font-family: var(--mono); font-size: 9.5px; color:#8A8A91; letter-spacing: .12em; text-transform: uppercase; }
  .kpi .v { font-size: 16px; font-weight: 600; color: #fff; margin-top: 4px; letter-spacing: -0.01em; }
  .kpi .v.gold { color: #E0C078; }
  .kpi .d { font-size: 10px; color: #6E8A5C; margin-top: 2px; font-family: var(--mono); }

  .chart {
    background: #18181B;
    border: 1px solid #232327;
    border-radius: 10px;
    padding: 12px;
    flex: 1;
    min-height: 120px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .chart .lab { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; color: #8A8A91; letter-spacing: .12em; text-transform: uppercase; }
  .chart-svg { width: 100%; height: 100%; min-height: 90px; }

  .dash-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mini-panel {
    background: #18181B;
    border: 1px solid #232327;
    border-radius: 10px;
    padding: 10px 12px;
  }
  .mini-panel .hd {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .mini-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #A6A39A;
    font-size: 10.5px;
    line-height: 1.7;
  }
  .mini-row b {
    color: #ECEAE3;
    font-weight: 500;
  }

  .devices .phone {
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,.7),
      0 0 0 1px rgba(255,255,255,.05);
  }

  /* ---------- Local Kenya ---------- */
  .local { background: var(--bg); }
  .local-grid {
    margin-top: 40px;
    display: grid; gap: 12px;
    grid-template-columns: 1fr 1fr;
  }
  @media (min-width: 720px) { .local-grid { grid-template-columns: repeat(5, 1fr); } }
  .local-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 14px;
    text-align: left;
    transition: border-color .2s ease, background .2s ease;
    display: flex; flex-direction: column; gap: 8px;
    min-height: 100px;
  }
  .local-item:hover { border-color: var(--gold-line); background: #FFFCF5; }
  .local-item .k { font-family: var(--mono); font-size: 10.5px; color: var(--ink-4); letter-spacing: .12em; text-transform: uppercase; }
  .local-item .v { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
  .local-item .ic {
    width: 26px; height: 26px; border-radius: 7px;
    background: var(--gold-soft);
    color: var(--gold-3);
    display: grid; place-items: center;
    align-self: flex-start;
  }

  /* ---------- Business types ---------- */
  .biz { background: var(--soft); }
  .biz-scroll {
    margin-top: 36px;
    display: flex; gap: 12px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }
  .biz-scroll::-webkit-scrollbar { display: none; }
  .biz-chip {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 18px;
    min-width: 180px;
    scroll-snap-align: start;
    display: flex; flex-direction: column; gap: 10px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
    cursor: pointer;
  }
  .biz-chip:hover, .biz-chip.active {
    border-color: var(--gold);
    background: linear-gradient(180deg, #fff, #FFFCF5);
    transform: translateY(-2px);
  }
  .biz-chip .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-3); display:grid; place-items:center; }
  .biz-chip .name { font-size: 15px; font-weight: 500; }
  .biz-chip .meta { font-family: var(--mono); font-size: 10.5px; color: var(--ink-4); letter-spacing: .1em; text-transform: uppercase; }

  /* ---------- Setup ---------- */
  .setup {
    background: var(--dark);
    color: var(--on-dark);
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    position: relative; overflow: hidden;
  }
  .setup::before {
    content:"";
    position:absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,162,76,.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .setup .container { position: relative; }
  .setup .section-head h2, .setup .section-head p { color: var(--on-dark); }
  .setup .section-head p { color: var(--on-dark-2); }

  .steps {
    margin-top: 44px;
    display: grid; gap: 12px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px) {
    .steps { grid-template-columns: repeat(4, 1fr); }
  }
  .step {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--dark-line);
    border-radius: var(--radius-l);
    padding: 22px 20px;
    position: relative;
    transition: border-color .2s ease, background .2s ease;
  }
  .step:hover {
    border-color: var(--gold-line);
    background: rgba(201,162,76,.04);
  }
  .step .n {
    font-family: var(--serif);
    font-size: 38px;
    line-height: 1;
    font-style: italic;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
    display: inline-block;
  }
  .step h4 { font-size: 17px; color: #fff; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; }
  .step p { font-size: 13.5px; color: var(--on-dark-2); line-height: 1.5; }

  .setup-note {
    margin-top: 32px;
    text-align: center;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--on-dark-2);
  }
  .setup-note b { color: var(--gold-2); font-weight: 500; }

  /* ---------- Get the app ---------- */
  .getapp { background: var(--bg); }
  .getapp-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-2);
  }
  @media (max-width: 720px) { .getapp-card { padding: 26px 20px; } }

  .getapp-main {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .getapp-copy { flex: 1 1 320px; min-width: 0; }
  .getapp-copy h3 {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
  }
  .getapp-copy p { color: var(--ink-3); margin: 0; font-size: 15px; }

  .getapp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
  }
  /* On a phone the button must span the card, not sit in a narrow column. */
  @media (max-width: 720px) {
    .getapp-actions { width: 100%; }
    .getapp-actions .btn { width: 100%; }
  }

  .getapp-meta {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-4);
    text-align: center;
  }

  .getapp-steps {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 720px) {
    .getapp-steps { grid-template-columns: 1fr; gap: 16px; }
  }
  .getapp-step { display: flex; gap: 12px; align-items: flex-start; }
  .getapp-step .n {
    flex: 0 0 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--gold-soft);
    border: 1px solid var(--gold-line);
    color: var(--gold-3);
    font-family: var(--mono);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .getapp-step p { margin: 0; font-size: 14px; color: var(--ink-3); line-height: 1.5; }
  .getapp-step b { color: var(--ink); font-weight: 500; }

  .getapp-alt {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .getapp-alt p { margin: 0; font-size: 14px; color: var(--ink-3); }
  .getapp-alt b { color: var(--ink); font-weight: 500; }

  /* ---------- Benefits ---------- */
  .benefits { background: var(--bg); }
  .ben-grid {
    margin-top: 36px;
    display: grid; gap: 0;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    background: var(--surface);
    overflow: hidden;
  }
  @media (min-width: 720px) {
    .ben-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 1024px) {
    .ben-grid { grid-template-columns: repeat(4, 1fr); }
  }
  .ben {
    padding: 22px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 10px;
    transition: background .2s ease;
  }
  .ben:hover { background: #FFFCF5; }
  .ben .ic {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold-3);
    border: 1px solid var(--gold-line);
    display:grid; place-items:center;
  }
  .ben .k { font-family: var(--mono); font-size: 10.5px; color: var(--ink-4); letter-spacing: .12em; text-transform: uppercase; }
  .ben .v { font-size: 15.5px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.3; }

  /* Remove extra right/bottom borders */
  @media (min-width: 1024px) {
    .ben:nth-child(4n) { border-right: 0; }
    .ben:nth-child(n+5) { border-bottom: 0; }
  }
  @media (min-width: 720px) and (max-width: 1023.99px) {
    .ben:nth-child(2n) { border-right: 0; }
    .ben:nth-child(n+7) { border-bottom: 0; }
  }
  @media (max-width: 719.99px) {
    .ben { border-right: 0; }
    .ben:last-child { border-bottom: 0; }
  }

  /* ---------- Testimonials ---------- */
  .testimonials { background: var(--soft); }

  .reviews-grid {
    margin-top: 44px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

  .review-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .review-card:hover {
    border-color: var(--gold-line);
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
  }

  .review-stars {
    display: flex;
    gap: 3px;
  }
  .review-stars .star {
    width: 16px;
    height: 16px;
    color: var(--gold);
  }
  .review-stars .star.empty {
    color: var(--line);
  }

  .review-comment {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-2);
    flex: 1;
  }
  .review-comment::before {
    content: '\201C';
    font-family: var(--serif);
    font-size: 28px;
    line-height: 0;
    vertical-align: -10px;
    color: var(--gold);
    margin-right: 2px;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
  .review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: #1A1407;
    font-weight: 600;
    font-size: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .review-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }

  .reviews-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 0;
    color: var(--ink-4);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  /* ---------- Final CTA ---------- */
  .cta {
    padding: 88px 0;
    background: var(--bg);
  }
  .cta-card {
    background: var(--dark);
    color: var(--on-dark);
    border-radius: var(--radius-xl);
    padding: 56px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--dark-line);
  }
  @media (min-width: 720px) { .cta-card { padding: 88px 56px; } }
  .cta-card::before {
    content:"";
    position:absolute; inset:0;
    background: var(--gold-grad-soft);
    pointer-events:none;
  }
  .cta-card::after {
    content:"";
    position: absolute;
    bottom: -120px; left: 50%; transform: translateX(-50%);
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,76,.25) 0%, transparent 60%);
    pointer-events:none;
  }
  .cta-card > * { position: relative; z-index: 1; }
  .cta-card h2 {
    font-size: clamp(30px, 5vw, 50px);
    color: #fff;
    margin: 16px 0 14px;
    line-height: 1.05;
  }
  .cta-card h2 .accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .cta-card p {
    color: var(--on-dark-2);
    font-size: 16.5px;
    max-width: 540px;
    margin: 0 auto 28px;
  }
  .cta-card .btns {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  }
  .waitlist-form {
    display: grid;
    gap: 12px;
    width: min(620px, 100%);
    margin: 30px auto 0;
  }
  .waitlist-row {
    display: grid;
    gap: 12px;
  }
  @media (min-width: 720px) {
    .waitlist-row { grid-template-columns: 1fr 1fr; }
  }
  .waitlist-form input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 14px;
    padding: 15px 16px;
    outline: none;
  }
  .waitlist-form input::placeholder { color: rgba(236,234,227,.58); }
  .waitlist-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,76,.16); }
  .waitlist-form .btn { border: 0; justify-content: center; cursor: pointer; }
  .form-message {
    min-height: 22px;
    color: var(--on-dark-2);
    font-size: 14px;
    text-align: center;
  }
  .form-message.ok { color: #E0C078; }
  .form-message.error { color: #FFC3B8; }

  /* ---------- Footer ---------- */
  .footer {
    background: var(--dark);
    color: var(--on-dark-2);
    border-top: 1px solid var(--dark-line);
  }
  .footer-inner {
    padding: 56px 0 28px;
    display: grid; gap: 36px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px) {
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  }
  .footer-brand .brand-name { color: #fff; }
  .footer-brand p { font-size: 14px; color: var(--on-dark-2); margin-top: 12px; max-width: 280px; }
  .footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 14px; font-weight: 500; }
  .footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .footer a { font-size: 14px; transition: color .15s ease; }
  .footer a:hover { color: var(--gold-2); }

  .footer-bottom {
    border-top: 1px solid var(--dark-line);
    padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 14px;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--ink-4);
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  /* ---------- Mobile sticky CTA ---------- */
  .mobile-cta {
    position: fixed;
    left: 16px; right: 16px;
    bottom: 16px;
    display: none;
    gap: 8px;
    padding: 10px;
    background: rgba(14,14,15,.92);
    border: 1px solid var(--dark-line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 999px;
    z-index: 60;
    box-shadow: 0 14px 40px -10px rgba(0,0,0,.45);
    transform: translateY(120%);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .mobile-cta.show { transform: translateY(0); }
  .mobile-cta .btn { height: 44px; padding: 0 18px; font-size: 14px; flex: 1; }
  .mobile-cta .btn-secondary { color: var(--on-dark); border-color: transparent; background: transparent; }
  @media (max-width: 719.99px) { .mobile-cta { display: flex; } }

  /* ---------- Reveal animation ---------- */
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* ---------- Pricing ---------- */
  .pricing { background: var(--dark); }
  .pricing .section-head .eyebrow {
    background: rgba(201,162,76,.12);
    border-color: rgba(201,162,76,.25);
    color: var(--gold-2);
  }
  .pricing .section-head h2 { color: var(--on-dark); }
  .pricing .section-head p  { color: var(--on-dark-2); }

  .plan-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 32px;
    align-items: start;
  }
  @media (min-width: 640px)  { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1100px) { .plan-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; } }

  .plan-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-line);
    border-radius: var(--radius-l);
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .plan-card:hover {
    border-color: rgba(201,162,76,.4);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -16px rgba(0,0,0,.6);
  }
  .plan-card.featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, rgba(201,162,76,.08) 0%, var(--dark-2) 55%);
  }
  .plan-card.custom-plan {
    background: var(--dark-3);
    border-color: rgba(255,255,255,.08);
    grid-column: 1 / -1;
  }
  @media (min-width: 1100px) { .plan-card.custom-plan { grid-column: auto; } }

  .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-grad);
    color: #1A1407;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
  }

  .plan-trial {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #4ADE80;
    background: rgba(74,222,128,.08);
    border: 1px solid rgba(74,222,128,.2);
    border-radius: 999px;
    padding: 3px 10px;
    width: fit-content;
  }

  .plan-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--on-dark);
  }

  .plan-ideal {
    font-size: 12px;
    color: var(--on-dark-2);
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: -8px;
  }

  .plan-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px 0;
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
  }
  .plan-card.featured .plan-price { border-color: rgba(201,162,76,.25); }
  .plan-price .mo {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--on-dark);
    line-height: 1;
  }
  .plan-price .mo .curr {
    font-size: 16px;
    font-weight: 500;
    vertical-align: super;
    margin-right: 1px;
    color: var(--on-dark-2);
  }
  .plan-price .mo .per { font-size: 16px; font-weight: 400; color: var(--on-dark-2); }
  .plan-price .yr { font-size: 12.5px; color: var(--on-dark-2); }
  .plan-price .yr b { color: var(--gold-2); font-weight: 500; }
  .plan-card.custom-plan .plan-price .mo { font-size: 24px; }

  .plan-limits {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .plan-limit-chip {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--on-dark-2);
    background: rgba(255,255,255,.04);
    border: 1px solid var(--dark-line);
    border-radius: 999px;
    padding: 3px 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .plan-card.featured .plan-limit-chip {
    border-color: rgba(201,162,76,.28);
    color: var(--gold-2);
  }

  .plan-inherit {
    font-size: 13px;
    font-weight: 600;
    color: var(--on-dark);
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .plan-inherit::before {
    content: "◈";
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
  }

  .plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
  }
  .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--on-dark-2);
    line-height: 1.4;
  }
  .plan-features li::before {
    content: "";
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    background: rgba(201,162,76,.1) url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23C9A24C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E") no-repeat center / 10px;
    border: 1px solid rgba(201,162,76,.25);
    margin-top: 2px;
    flex-shrink: 0;
  }

  .plan-cta { margin-top: auto; padding-top: 4px; }
  .plan-cta .btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 46px; font-size: 14.5px; font-weight: 500;
    border-radius: 999px; cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
  }
  .plan-cta .btn-outline {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.15);
    color: var(--on-dark);
  }
  .plan-cta .btn-outline:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.28); }
  .plan-cta .btn-dark {
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.1);
    color: var(--on-dark);
  }
  .plan-cta .btn-dark:hover { background: rgba(255,255,255,.1); }
  .plan-trial-note {
    text-align: center;
    font-size: 11.5px;
    color: var(--on-dark-2);
    margin-top: 8px;
  }
  .plan-trial-note b { color: #4ADE80; font-weight: 500; }

  .pricing-note {
    text-align: center;
    margin: 20px 0 0;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--on-dark-2);
  }
  .pricing-note b { color: var(--gold-2); font-weight: 600; }

  .pricing-fairness {
    margin-top: 36px;
    padding: 22px 26px;
    background: var(--dark-3);
    border: 1px solid var(--dark-line);
    border-radius: var(--radius-l);
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  @media (min-width: 720px) { .pricing-fairness { align-items: center; } }
  .pricing-fairness .ic {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: 12px;
    background: rgba(201,162,76,.1);
    color: var(--gold-2);
    border: 1px solid rgba(201,162,76,.2);
    display: grid; place-items: center;
  }
  .pricing-fairness p { font-size: 14.5px; color: var(--on-dark-2); line-height: 1.55; }
  .pricing-fairness p b { color: var(--on-dark); font-weight: 500; }

  .addons {
    margin-top: 24px;
    padding: 26px 28px;
    background: rgba(255,255,255,.02);
    border-radius: var(--radius-l);
    border: 1px solid var(--dark-line);
    position: relative;
    overflow: hidden;
  }
  .addons::before {
    content: "";
    position: absolute; top: -50%; right: -5%;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(201,162,76,.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .addons .addon-head { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 5px; position: relative; }
  .addons .addon-sub { font-size: 13px; color: var(--on-dark-2); margin-bottom: 16px; position: relative; }
  .addon-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
    position: relative;
  }
  .addon-chip {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid var(--dark-line);
    border-radius: 999px;
    color: var(--on-dark-2);
    background: rgba(255,255,255,.04);
  }
  .addons .addon-note { font-size: 13px; color: var(--on-dark-2); font-style: italic; position: relative; }

  /* ---------- A11y ---------- */
  :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 6px;
  }

  /* Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
  }

  /* ---------- Multi-page: mobile nav + page hero ---------- */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    cursor: pointer;
    color: var(--ink);
  }
  @media (min-width: 880px) { .nav-toggle { display: none; } }

  .nav-links a.active { color: var(--ink); font-weight: 600; }

  @media (max-width: 879px) {
    .nav-inner { position: relative; flex-wrap: wrap; gap: 0; }
    .nav-links {
      display: none;
      width: 100%;
      order: 3;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 8px 0 12px;
      border-top: 1px solid var(--line);
      margin-top: 8px;
      background: rgba(250,250,247,.98);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      padding: 12px 4px;
      border-bottom: 1px solid var(--line);
      font-size: 15px;
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-cta { margin-left: auto; }
    .nav-cta .login { display: none !important; }
  }

  .page-hero {
    padding: 56px 0 48px;
    background: var(--dark);
    color: var(--on-dark);
    border-bottom: 1px solid var(--dark-line);
  }
  .page-hero h1 {
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.08;
    margin: 14px 0 12px;
    max-width: 720px;
  }
  .page-hero p {
    color: var(--on-dark-2);
    font-size: 17px;
    max-width: 620px;
    line-height: 1.55;
  }

  .explore-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) { .explore-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 960px) { .explore-grid { grid-template-columns: repeat(3, 1fr); } }

  .explore-card {
    display: block;
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-1);
    transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .explore-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
    border-color: var(--gold-line);
  }
  .explore-card h3 { font-size: 18px; margin: 10px 0 8px; }
  .explore-card p { color: var(--ink-3); font-size: 14.5px; line-height: 1.5; }
  .explore-card .link {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-3);
  }

  .contact-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

  .contact-card {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-1);
  }
  .contact-card h3 { font-size: 17px; margin-bottom: 8px; }
  .contact-card p { color: var(--ink-3); font-size: 14.5px; margin-bottom: 14px; }
  .contact-card a.btn { width: 100%; }
  .contact-hours {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: var(--radius);
    background: var(--soft);
    border: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--ink-3);
  }

