*, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  :root {
    --navy-900: #0b1629;
    --navy-800: #0f1e38;
    --navy-700: #1a2b4a;
    --navy-600: #2a3d5f;
    --navy-500: #4a5b7a;
    --navy-300: #94a3b8;
    --navy-200: #cbd5e1;
    --navy-100: #e2e8f0;
    --navy-50:  #f1f5f9;
    --bg: #ffffff;
    --bg-2: #f7f7f4;
    --paper: #ffffff;
    --ink: #1a1a1a;
    --ink-soft: #3b4252;
    --muted: #6b7280;
    --accent: #f59e0b;
    --accent-soft: #fef3c7;
    --success: #16a34a;
    --hair: rgba(15, 30, 56, 0.10);
    --hair-strong: rgba(15, 30, 56, 0.18);
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
    --shadow-sm: 0 1px 2px rgba(15, 30, 56, 0.04);
    --shadow: 0 4px 24px -8px rgba(15, 30, 56, 0.12), 0 1px 2px rgba(15, 30, 56, 0.04);
    --shadow-lg: 0 24px 64px -24px rgba(15, 30, 56, 0.25);
  }
  html, body {
    margin: 0; padding: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  h1,h2,h3,h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  input, select, textarea { font: inherit; color: inherit; }

  /* ---------- Utility ---------- */
  .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .narrow { max-width: 960px; margin: 0 auto; }
  .mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
  .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; font-style: italic; }
  .hair { height: 1px; width: 100%; background: var(--hair); }

  /* plank-seam divider: long hairline with tick marks every N px, evoking plank butt joints */
  .plank-divider {
    height: 12px;
    position: relative;
    background-image:
      linear-gradient(to right, var(--hair) 0, var(--hair) 100%),
      repeating-linear-gradient(to right, transparent 0, transparent 119px, var(--hair-strong) 119px, var(--hair-strong) 120px);
    background-size: 100% 1px, 100% 12px;
    background-position: center, 0 0;
    background-repeat: no-repeat, repeat-x;
    opacity: 0.6;
  }

  /* ---------- Nav ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  .nav.scrolled { border-bottom-color: var(--hair); background: rgba(255, 255, 255, 0.92); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 32px; max-width: 1440px; margin: 0 auto;
  }
  .logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; color: var(--navy-800); }
  .logo-mark {
    width: 26px; height: 26px; border-radius: 5px;
    background: var(--navy-800);
    position: relative; overflow: hidden;
  }
  .logo-mark::before, .logo-mark::after {
    content: ""; position: absolute; left: 0; right: 0;
    border-top: 1px solid rgba(255,255,255,0.35);
  }
  .logo-mark::before { top: 33%; }
  .logo-mark::after { top: 66%; }
  .nav-links { display: flex; gap: 32px; font-size: 14px; color: var(--ink-soft); }
  .nav-links a { transition: color .15s; }
  .nav-links a:hover { color: var(--navy-800); }
  .nav-cta { display: flex; gap: 12px; align-items: center; }
  @media (max-width: 840px) {
    .nav-links { display: none; }
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px; border-radius: 6px; font-size: 14px; font-weight: 500;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--navy-800); color: #fff; }
  .btn-primary:hover { background: var(--navy-900); }
  .btn-accent { background: var(--accent); color: var(--navy-900); }
  .btn-accent:hover { filter: brightness(1.05); }
  .btn-ghost { color: var(--navy-800); border: 1px solid var(--hair-strong); background: transparent; }
  .btn-ghost:hover { border-color: var(--navy-800); }
  .btn-lg { padding: 15px 26px; font-size: 15px; }
  .btn .arrow { display: inline-block; transition: transform .2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ---------- Hero ---------- */
  .hero {
    padding: 80px 32px 96px;
    position: relative;
    overflow: hidden;
  }
  .hero-inner { max-width: 1280px; margin: 0 auto; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 12px; border: 1px solid var(--hair-strong); border-radius: 100px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-soft); background: var(--paper);
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .hero h1 {
    font-family: var(--serif); font-weight: 400; font-style: normal;
    font-size: clamp(44px, 6.5vw, 88px); line-height: 1.1; letter-spacing: -0.02em;
    color: var(--navy-900);
    margin: 28px 0 40px;
    max-width: 14ch;
  }
  .hero h1 .amber { color: var(--accent); font-style: normal; }
  .hero .sub {
    font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-soft); max-width: 58ch; line-height: 1.5;
  }
  .hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
  .trust-row {
    margin-top: 40px; display: flex; align-items: center; gap: 14px;
    font-size: 13px; color: var(--muted);
  }
  .trust-avatars { display: flex; }
  .trust-avatars span {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid var(--bg);
    background: var(--navy-100);
    margin-left: -8px; display: inline-block;
    font-family: var(--mono); font-size: 10px; color: var(--navy-700);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .trust-avatars span:first-child { margin-left: 0; }
  .trust-avatars span:nth-child(1){ background:#e6d3a8; }
  .trust-avatars span:nth-child(2){ background:#c9a87a; }
  .trust-avatars span:nth-child(3){ background:#a68868; color:#fff; }
  .trust-avatars span:nth-child(4){ background:#7d5c3f; color:#fff; }
  .trust-avatars span:nth-child(5){ background:#4a3525; color:#fff; }
  .counter { color: var(--navy-800); font-weight: 600; }

  .hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
  }
  @media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* Hero visual: stacked plank abstraction */
  .plank-stack {
    position: relative; aspect-ratio: 4/5;
    border-radius: 12px; overflow: hidden;
    background: var(--navy-900);
    box-shadow: var(--shadow-lg);
  }
  .plank-stack .plank {
    position: absolute; left: 0; right: 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.4);
  }
  .plank-stack .ptag {
    position: absolute; right: 18px; top: 18px;
    font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.6);
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .plank-stack .phair {
    position: absolute; left: 18px; right: 18px; bottom: 18px;
    color: rgba(255,255,255,0.4); font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.1em;
    display: flex; justify-content: space-between;
  }
  .plank-stack .badge {
    position: absolute; left: 18px; top: 18px;
    background: var(--accent); color: var(--navy-900);
    padding: 6px 10px; border-radius: 4px; font-size: 11px; font-weight: 600;
    font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase;
  }
  .plank-stack .liveline {
    position: absolute; left: 18px; right: 18px; top: 50%;
    height: 1px; background: rgba(255,255,255,0.15); transform: translateY(-50%);
  }
  .plank-stack .liveline::before {
    content: ""; position: absolute; left: 0; top: -3px; width: 40%; height: 7px;
    background: var(--accent); border-radius: 4px;
    animation: pulse 2.2s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100% { opacity: 1; transform: translateX(0); } 50% { opacity: .6; transform: translateX(60%); } }

  .stat-card {
    position: absolute; background: var(--paper);
    border: 1px solid var(--hair); border-radius: 8px;
    padding: 12px 14px; box-shadow: var(--shadow);
    display: flex; flex-direction: column; gap: 2px;
  }
  .stat-card .k { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
  .stat-card .v { font-family: var(--serif); font-size: 28px; color: var(--navy-900); font-style: italic; }
  .stat-card .d { font-size: 11px; color: var(--success); }

  .stat-a { left: -24px; top: 20%; }
  .stat-b { right: -32px; top: 55%; }
  .stat-c { left: 10%; bottom: -28px; }

  /* ---------- Sections ---------- */
  section { padding: 96px 0; position: relative; }
  section.sec-bg { background: var(--bg-2); }
  section.sec-dark { background: var(--navy-900); color: #e6ecf5; }
  .sec-header { margin-bottom: 56px; max-width: 720px; }
  .sec-header .eyebrow { margin-bottom: 20px; }
  .sec-header h2 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(36px, 5vw, 56px); line-height: 1.08; letter-spacing: -0.02em;
    color: var(--navy-900);
  }
  section.sec-dark .sec-header h2 { color: #fff; }
  .sec-header h2 em { font-style: italic; color: var(--accent); }
  .sec-header .kick { font-size: 17px; color: var(--ink-soft); margin-top: 16px; max-width: 56ch; }
  section.sec-dark .sec-header .kick { color: var(--navy-300); }

  /* ---------- Pain points ---------- */
  .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 840px) { .pain-grid { grid-template-columns: 1fr; } }
  .pain-card {
    background: var(--paper);
    border: 1px solid var(--hair);
    border-radius: 8px;
    padding: 32px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
    position: relative;
  }
  .pain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--hair-strong); }
  .pain-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--navy-50); color: var(--navy-800);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .pain-card h3 { font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.2; margin-bottom: 10px; color: var(--navy-900); }
  .pain-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
  .pain-card .tag { position: absolute; top: 20px; right: 20px; font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; }

  /* ---------- Solution / dashboard ---------- */
  .solution-visual {
    margin-top: 48px;
    background: var(--paper);
    border: 1px solid var(--hair);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
  }
  .dash-chrome {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--hair);
    background: var(--bg-2);
  }
  .dash-chrome .dots { display: flex; gap: 6px; }
  .dash-chrome .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--navy-100); }
  .dash-chrome .urlbar {
    flex: 1; background: var(--paper); border: 1px solid var(--hair);
    padding: 5px 12px; border-radius: 6px; font-family: var(--mono); font-size: 11px; color: var(--muted);
  }
  .dash-chrome .urlbar b { color: var(--navy-800); font-weight: 500; }
  .dash-body {
    display: grid; grid-template-columns: 200px 1fr; min-height: 500px;
  }
  .dash-side { border-right: 1px solid var(--hair); padding: 20px 0; }
  .dash-side .section-label { padding: 8px 20px; font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
  .dash-side .item {
    padding: 8px 20px; font-size: 13px; color: var(--ink-soft);
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
  }
  .dash-side .item.active { background: var(--navy-50); color: var(--navy-900); font-weight: 500; border-right: 2px solid var(--accent); }
  .dash-side .item svg { width: 14px; height: 14px; opacity: 0.7; }
  .dash-main { padding: 24px 28px; }
  .dash-head {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
  }
  .dash-head h4 { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--navy-900); }
  .sync-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 10px; background: #dcfce7; color: #166534;
    border-radius: 100px; font-size: 12px; font-weight: 500;
  }
  .sync-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #16a34a; animation: blink 1.6s ease-in-out infinite; }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

  .kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
  .kpi { border: 1px solid var(--hair); border-radius: 8px; padding: 12px 14px; }
  .kpi .k { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
  .kpi .v { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--navy-900); margin-top: 2px; }
  .kpi .d { font-size: 11px; color: var(--success); margin-top: 2px; }
  .kpi .d.down { color: #dc2626; }

  .ptable { width: 100%; font-size: 13px; border-collapse: collapse; }
  .ptable th { text-align: left; font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; padding: 10px 8px; border-bottom: 1px solid var(--hair); }
  .ptable td { padding: 12px 8px; border-bottom: 1px solid var(--hair); vertical-align: middle; }
  .ptable tr:last-child td { border-bottom: none; }
  .pname { display: flex; align-items: center; gap: 10px; }
  .pswatch { width: 28px; height: 28px; border-radius: 4px; flex-shrink: 0; border: 1px solid var(--hair); }
  .pname b { display: block; color: var(--navy-900); font-weight: 500; }
  .pname span { color: var(--muted); font-size: 11px; font-family: var(--mono); }
  .tag-sm { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 500; background: var(--navy-50); color: var(--navy-800); }
  .tag-sm.synced { background: #dcfce7; color: #166534; }
  .tag-sm.pending { background: #fef3c7; color: #92400e; }
  .arr-up { color: var(--success); font-size: 12px; }
  .arr-down { color: #dc2626; font-size: 12px; }

  .solution-bullets { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
  .solution-bullets .b { display: flex; gap: 12px; align-items: flex-start; flex: 1; min-width: 220px; }
  .solution-bullets .num {
    width: 28px; height: 28px; border-radius: 50%; background: var(--navy-900); color: #fff;
    display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px;
    flex-shrink: 0;
  }
  .solution-bullets p { font-size: 15px; color: var(--ink-soft); }

  /* ---------- Features ---------- */
  .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hair); border-left: 1px solid var(--hair); }
  @media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }
  .feat {
    padding: 40px 32px; border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
    background: var(--paper); position: relative;
    transition: background .2s;
  }
  .feat:hover { background: var(--bg-2); }
  .feat-num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
  .feat-icon {
    width: 44px; height: 44px; margin: 18px 0 20px;
    color: var(--navy-800);
    display: flex; align-items: center; justify-content: center;
  }
  .feat h3 { font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1.15; color: var(--navy-900); margin-bottom: 10px; }
  .feat p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

  /* ---------- How it works ---------- */
  .steps { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; align-items: flex-start; gap: 16px; margin-top: 48px; }
  @media (max-width: 900px) { .steps { grid-template-columns: 1fr; } .steps .connector { display: none; } }
  .step { }
  .step-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--navy-900); color: #fff;
    font-family: var(--serif); font-style: italic; font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .step h3 { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--navy-900); margin-bottom: 10px; }
  .step p { color: var(--ink-soft); font-size: 15px; }
  .connector { height: 1px; background: var(--hair-strong); margin-top: 24px; position: relative; }
  .connector::after { content: ""; position: absolute; right: -2px; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--hair-strong); border-right: 1px solid var(--hair-strong); transform: rotate(45deg); }

  /* ---------- Pricing ---------- */
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
  @media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
  .price-card {
    background: var(--paper); border: 1px solid var(--hair); border-radius: 12px;
    padding: 32px; position: relative; display: flex; flex-direction: column;
  }
  .price-card.popular { background: var(--navy-900); color: #e6ecf5; border-color: var(--navy-900); transform: translateY(-8px); }
  @media (max-width: 900px) { .price-card.popular { transform: none; } }
  .price-card .plan-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
  .price-card.popular .plan-name { color: var(--accent); }
  .price-amount { margin: 16px 0 8px; }
  .price-amount .num { font-family: var(--serif); font-style: italic; font-size: 64px; letter-spacing: -0.02em; color: var(--navy-900); line-height: 1; }
  .price-card.popular .price-amount .num { color: #fff; }
  .price-amount .per { color: var(--muted); font-size: 14px; margin-left: 4px; }
  .price-card.popular .price-amount .per { color: var(--navy-300); }
  .price-tagline { color: var(--ink-soft); font-size: 14px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--hair); }
  .price-card.popular .price-tagline { color: var(--navy-300); border-color: rgba(255,255,255,0.1); }
  .price-card ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
  .price-card li { display: flex; gap: 10px; padding: 7px 0; font-size: 14px; color: var(--ink-soft); }
  .price-card.popular li { color: #cbd5e1; }
  .price-card li::before { content: "✓"; color: var(--success); font-weight: 600; }
  .price-card.popular li::before { color: var(--accent); }
  .most-pop {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--navy-900);
    padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 600;
    font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  }
  .price-footnote { text-align: center; margin-top: 28px; color: var(--muted); font-size: 14px; }

  /* ---------- Testimonials ---------- */
  .quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
  .quote-card {
    background: var(--paper); border: 1px solid var(--hair); border-radius: 8px;
    padding: 28px;
  }
  .quote-card .quote {
    font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.35;
    color: var(--navy-900);
    margin-bottom: 24px;
  }
  .quote-card .attr { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--hair); }
  .quote-card .attr .av { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-100); font-family: var(--mono); font-size: 12px; color: var(--navy-800); display: flex; align-items: center; justify-content: center; font-weight: 600; }
  .quote-card .attr .meta { font-size: 13px; }
  .quote-card .attr .meta b { color: var(--navy-900); font-weight: 500; display: block; }
  .quote-card .attr .meta span { color: var(--muted); font-family: var(--mono); font-size: 11px; }
  .beta-pill { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; }

  .works-with {
    margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--hair);
  }
  .works-with .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
  .logos-row { display: flex; flex-wrap: wrap; gap: 12px 40px; align-items: center; }
  .brand-logo {
    font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--navy-500);
    letter-spacing: -0.01em; opacity: 0.85;
    transition: opacity .2s, color .2s;
  }
  .brand-logo:hover { opacity: 1; color: var(--navy-900); }

  /* ---------- FAQ ---------- */
  .faq-wrap { max-width: 820px; margin: 0 auto; }
  .faq {
    border-top: 1px solid var(--hair);
  }
  .faq:last-child { border-bottom: 1px solid var(--hair); }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 24px 0; cursor: pointer; width: 100%; text-align: left;
    font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--navy-900);
    line-height: 1.2;
  }
  .faq-q .plus {
    width: 28px; height: 28px; flex-shrink: 0; position: relative;
    border: 1px solid var(--hair-strong); border-radius: 50%;
    transition: transform .25s ease, background .2s;
  }
  .faq-q .plus::before, .faq-q .plus::after {
    content: ""; position: absolute; left: 50%; top: 50%; background: var(--navy-800);
    transition: transform .25s ease;
  }
  .faq-q .plus::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
  .faq-q .plus::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
  .faq.open .plus { background: var(--navy-900); border-color: var(--navy-900); }
  .faq.open .plus::before, .faq.open .plus::after { background: #fff; }
  .faq.open .plus::after { transform: translate(-50%, -50%) scaleY(0); }
  .faq-a {
    display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease;
    color: var(--ink-soft); font-size: 16px; line-height: 1.6;
  }
  .faq.open .faq-a { grid-template-rows: 1fr; }
  .faq-a-inner { overflow: hidden; }
  .faq-a p { padding-bottom: 24px; max-width: 70ch; }

  /* ---------- Waitlist ---------- */
  .waitlist-wrap {
    background: var(--navy-900);
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative;
  }
  @media (max-width: 900px) { .waitlist-wrap { grid-template-columns: 1fr; } }
  .waitlist-left { padding: 56px 48px; position: relative; }
  .waitlist-left::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
      repeating-linear-gradient(180deg, transparent 0, transparent 47px, rgba(255,255,255,0.04) 47px, rgba(255,255,255,0.04) 48px);
  }
  .waitlist-left h2 {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: clamp(36px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.02em;
    position: relative; z-index: 1;
  }
  .waitlist-left p { margin-top: 16px; color: var(--navy-300); font-size: 16px; max-width: 42ch; position: relative; z-index: 1; }
  .waitlist-facts { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 1; }
  .waitlist-facts .f .v { font-family: var(--serif); font-style: italic; font-size: 40px; color: var(--accent); }
  .waitlist-facts .f .k { font-family: var(--mono); font-size: 10px; color: var(--navy-300); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
  .waitlist-right { padding: 56px 48px; background: #0f1e38; border-left: 1px solid rgba(255,255,255,0.06); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-row.full { grid-template-columns: 1fr; }
  .field label { display: block; font-family: var(--mono); font-size: 10px; color: var(--navy-300); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
  .field input, .field select {
    width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
    color: #fff; font-size: 14px; outline: none;
    transition: border-color .15s, background .15s;
  }
  .field input::placeholder { color: rgba(255,255,255,0.3); }
  .field input:focus, .field select:focus { border-color: var(--accent); background: rgba(255,255,255,0.07); }
  .field.err input, .field.err select { border-color: #ef4444; }
  .field .err-msg { font-size: 11px; color: #f87171; margin-top: 4px; font-family: var(--mono); }

  .radio-row { display: flex; gap: 8px; }
  .radio-row label {
    flex: 1; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; text-align: center; font-size: 13px; cursor: pointer;
    transition: all .15s;
    color: rgba(255,255,255,0.7);
  }
  .radio-row label:hover { border-color: rgba(255,255,255,0.25); color: #fff; }
  .radio-row input { display: none; }
  .radio-row input:checked + label { background: var(--accent); color: var(--navy-900); border-color: var(--accent); font-weight: 500; }
  .submit-btn {
    width: 100%; padding: 15px; background: var(--accent); color: var(--navy-900);
    border-radius: 6px; font-weight: 600; font-size: 15px; margin-top: 10px;
    transition: transform .15s, filter .15s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .submit-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
  .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .form-foot { margin-top: 12px; font-size: 12px; color: var(--navy-300); text-align: center; }

  .success-state {
    text-align: center; padding: 40px 20px;
  }
  .success-state .check {
    width: 56px; height: 56px; border-radius: 50%; background: var(--success); color: #fff;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    font-size: 28px;
  }
  .success-state h3 { font-family: var(--serif); font-style: italic; font-size: 32px; color: #fff; margin-bottom: 12px; }
  .success-state p { color: var(--navy-300); }

  /* ---------- Footer ---------- */
  footer { padding: 80px 0 40px; border-top: 1px solid var(--hair); background: var(--bg); }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
  @media (max-width: 840px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  .foot-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
  .foot-col a { display: block; padding: 5px 0; font-size: 14px; color: var(--ink-soft); transition: color .15s; }
  .foot-col a:hover { color: var(--navy-900); }
  .foot-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin-top: 16px; max-width: 32ch; }
  .foot-bottom {
    padding-top: 32px; border-top: 1px solid var(--hair);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 13px; color: var(--muted);
  }
  .foot-bottom .socials { display: flex; gap: 16px; }
  .foot-bottom a:hover { color: var(--navy-900); }

  /* ---------- Back to top ---------- */
  .btt {
    position: fixed; right: 28px; bottom: 28px; z-index: 40;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--navy-900); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
    transform: translateY(8px);
  }
  .btt.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

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

  /* ---------- Tweaks panel ---------- */
  .tweaks-panel {
    position: fixed; right: 24px; bottom: 80px; z-index: 60;
    width: 280px; background: var(--paper); border: 1px solid var(--hair-strong);
    border-radius: 12px; box-shadow: var(--shadow-lg);
    padding: 20px;
    display: none;
    font-size: 13px;
  }
  .tweaks-panel.on { display: block; }
  .tweaks-panel h6 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 500; }
  .tweaks-panel .label { color: var(--ink-soft); margin-bottom: 8px; display: block; font-size: 12px; }
  .swatches { display: flex; gap: 8px; flex-wrap: wrap; }
  .swatch {
    width: 32px; height: 32px; border-radius: 6px;
    border: 2px solid transparent; cursor: pointer;
    transition: transform .15s;
  }
  .swatch:hover { transform: scale(1.08); }
  .swatch.active { border-color: var(--navy-900); }

  /* ---------- Responsive tweaks ---------- */
  @media (max-width: 720px) {
    section { padding: 72px 0; }
    .hero { padding: 56px 24px 72px; }
    .container { padding: 0 24px; }
    .kpi-row { grid-template-columns: repeat(2, 1fr); }
    .ptable .hide-m { display: none; }
    .dash-body { grid-template-columns: 1fr; }
    .dash-side { display: none; }
    .waitlist-left, .waitlist-right { padding: 36px 28px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ---------- New Hero Banner (Custom Design Request) ---------- */
  .hero-new {
    background: var(--navy-900); /* Dark navy */
    color: #ffffff;
    padding: 100px 32px 120px;
    position: relative;
    overflow: hidden;
  }
  .hero-new::after {
    content: "";
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 40%);
    pointer-events: none;
  }
  .hero-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .hero-content-new {
    position: relative;
    z-index: 2;
  }
  .eyebrow-new {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 100px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    background: rgba(245, 158, 11, 0.05);
  }
  .eyebrow-new .star-icon {
    width: 16px; height: 16px;
  }
  .hero-new h1 {
    font-family: var(--sans);
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    margin: 24px 0 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
  }
  .hero-new .sub {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 40px;
  }
  .email-capture-new {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 6px;
    max-width: 480px;
    margin-bottom: 60px;
  }
  .email-capture-new .input-wrap {
    display: flex; align-items: center; gap: 10px; flex: 1;
    padding: 0 16px;
  }
  .email-capture-new .mail-icon {
    width: 20px; height: 20px; color: rgba(255, 255, 255, 0.5);
  }
  .email-capture-new input {
    background: transparent; border: none; outline: none;
    color: #fff; font-size: 15px; width: 100%; font-family: var(--sans);
  }
  .email-capture-new input::placeholder { color: rgba(255,255,255,0.5); }
  .btn-get-started {
    background: var(--accent);
    color: var(--navy-900);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    transition: transform 0.2s, filter 0.2s;
    font-family: var(--sans);
  }
  .btn-get-started:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
  }
  .hero-stats-new {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .hero-stats-new .stat-col {
    display: flex; flex-direction: column; gap: 4px;
  }
  .hero-stats-new .stat-col h2 {
    font-size: 32px; font-weight: 700; color: #fff; line-height: 1; margin: 0;
  }
  .hero-stats-new .stat-col p {
    font-size: 12px; color: rgba(255, 255, 255, 0.6); line-height: 1.4; margin: 0;
  }
  .hero-stats-new .divider {
    width: 1px; height: 40px; background: rgba(255, 255, 255, 0.15);
  }
  .hero-visual-new {
    position: relative;
    height: 600px;
    display: flex; align-items: center; justify-content: center;
  }
  .glow-circle {
    position: absolute;
    width: 500px; height: 500px;
    background: var(--accent);
    border-radius: 50%;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .float-decor { position: absolute; z-index: 2; opacity: 0.8; }
  .float-decor.d1 { width: 30px; height: 30px; top: 80px; left: 80px; }
  .float-decor.d2 { width: 24px; height: 24px; bottom: 80px; right: 20px; }

  .phone-mockup {
    position: relative;
    z-index: 3;
    width: 290px;
    height: 600px;
    background: #111;
    border-radius: 44px;
    border: 10px solid #222;
    box-shadow: 24px 24px 64px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: rotate(8deg);
  }
  /* A small notch */
  .phone-mockup::before {
    content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 100px; height: 24px; background: #222;
    border-bottom-left-radius: 16px; border-bottom-right-radius: 16px;
    z-index: 10;
  }
  .phone-screen {
    background: #fff;
    width: 100%; height: 100%;
    border-radius: 34px;
    padding: 36px 20px 20px;
    color: #111;
    overflow: hidden;
    font-family: var(--sans);
  }
  .ph-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
  }
  .ph-header span { font-size: 14px; line-height: 1.2; }
  .ph-header b { font-size: 18px; color: #000; font-weight: 700; }
  .ph-avatar { width: 36px; height: 36px; background: #e2e8f0; border-radius: 50%; overflow: hidden; }
  .ph-avatar::after { content: ""; display: block; width: 100%; height: 100%; background: url('https://i.pravatar.cc/100?img=12') center/cover; }
  .ph-btn { background: #111; color: #fff; text-align: center; padding: 14px; border-radius: 100px; font-size: 12px; font-weight: 600; margin-bottom: 24px; }
  .ph-tasks b { font-size: 14px; color: #000; font-weight: 600; }
  .ph-tabs { display: flex; gap: 8px; margin-bottom: 16px; overflow: hidden; }
  .ph-tabs span { font-size: 10px; padding: 6px 12px; border-radius: 100px; background: #f1f5f9; color: #64748b; font-weight: 500; white-space: nowrap; }
  .ph-tabs span:first-child { background: var(--accent); color: var(--navy-900); font-weight: 600; }
  .ph-card { border-radius: 16px; padding: 16px; margin-bottom: 12px; }
  .ph-card.blue { background: #3b82f6; color: #fff; height: 140px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
  .ph-card.blue::after { content: ""; position: absolute; right: -20px; bottom: -20px; width: 100px; height: 100px; background: rgba(255,255,255,0.1); border-radius: 50%; }
  .ph-card.blue p { font-size: 10px; opacity: 0.9; margin: 0; }
  .ph-card.blue span { font-size: 36px; font-weight: 700; line-height: 1; margin: 4px 0; }
  .ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .ph-card.light { background: #f8fafc; border: 1px solid #e2e8f0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px 10px; }
  .ph-card.light b { font-size: 24px; margin-bottom: 4px; color: #0f172a; }
  .ph-card.light span { font-size: 10px; color: #64748b; font-weight: 500; }

  .floating-widgets { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
  .widget {
    position: absolute;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    color: #111;
    font-size: 12px;
    font-family: var(--sans);
  }
  .w-top-right {
    top: 140px; right: -60px;
    display: flex; align-items: center; gap: 12px;
    transform: rotate(5deg);
  }
  .w-top-right .icon { width: 36px; height: 36px; background: #16a34a; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .w-top-right b { font-size: 18px; display: block; font-weight: 700; color: #000; }
  .w-top-right span { color: #64748b; font-size: 10px; font-weight: 500; }
  .w-top-right .chart { width: 60px; height: 24px; margin-left: 8px; }

  .w-mid-left {
    top: 280px; left: -40px;
    transform: rotate(-3deg);
    width: 160px;
  }
  .w-mid-left b { display: block; margin-bottom: 8px; font-size: 13px; color: #000; font-weight: 600; }
  .w-mid-left .w-icons { font-size: 13px; color: #64748b; font-weight: 500; }

  .w-bot-left {
    bottom: 100px; left: -10px;
    transform: rotate(2deg);
    width: 150px;
  }
  .w-bot-left b { font-size: 13px; font-weight: 600; color: #000; }
  .w-bot-left .perc { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 3px solid #16a34a; font-weight: 600; color: #16a34a; margin-top: -10px; }

  @media (max-width: 960px) {
    .hero-grid-new { grid-template-columns: 1fr; gap: 64px; }
    .hero-visual-new { margin-top: 20px; height: 500px; }
    .glow-circle { width: 400px; height: 400px; right: 50%; transform: translate(50%, -50%); }
    .w-top-right { right: 0; }
    .w-mid-left { left: 0; }
    .w-bot-left { left: 40px; }
    .hero-stats-new { flex-wrap: wrap; }
    .hero-new h1 { font-size: 40px; }
    .email-capture-new { flex-direction: column; padding: 12px; background: transparent; border: none; }
    .email-capture-new .input-wrap { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); width: 100%; border-radius: 8px; padding: 14px; margin-bottom: 12px; }
    .btn-get-started { width: 100%; }
  }