/* BNB Control — Landing redesign
   Type: Inter Tight (display) + Inter (body) + JetBrains Mono (data)
   Palette anchor: deep purple kept; CTA evolved from yellow → electric lime.
*/

:root {
  /* Brand purples — refined ladder */
  --plum-950: oklch(0.20 0.10 295);
  --plum-900: oklch(0.26 0.13 295);
  --plum-800: oklch(0.32 0.15 295);
  --plum-700: oklch(0.40 0.17 295);
  --plum-600: oklch(0.50 0.19 295);
  --plum-500: oklch(0.60 0.18 295);
  --plum-400: oklch(0.70 0.14 295);
  --plum-300: oklch(0.82 0.08 295);
  --plum-200: oklch(0.90 0.04 295);
  --plum-100: oklch(0.96 0.02 295);

  /* Neutrals — warm pearl */
  --ink-950: oklch(0.18 0.015 295);
  --ink-800: oklch(0.30 0.012 295);
  --ink-600: oklch(0.50 0.010 295);
  --ink-500: oklch(0.60 0.008 290);
  --ink-400: oklch(0.72 0.006 290);
  --ink-300: oklch(0.85 0.005 290);
  --ink-200: oklch(0.93 0.005 90);
  --ink-100: oklch(0.97 0.006 90);
  --ink-50:  oklch(0.985 0.004 80);
  --paper:   oklch(0.985 0.006 85);

  /* Accents — CTA color is tweakable */
  --lime:    oklch(0.88 0.20 128);
  --lime-ink:oklch(0.28 0.10 140);
  --coral:   oklch(0.74 0.18 30);
  --amber:   oklch(0.82 0.16 80);
  --mint:    oklch(0.84 0.13 170);
  --rose:    oklch(0.78 0.16 10);

  /* Status */
  --ok:   oklch(0.66 0.16 155);
  --warn: oklch(0.80 0.16 75);
  --err:  oklch(0.62 0.20 25);

  --cta:        var(--lime);
  --cta-ink:    var(--lime-ink);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 1px 2px rgba(20,8,40,.05), 0 8px 24px -12px rgba(20,8,40,.12);
  --shadow-pop:  0 30px 60px -25px rgba(20,8,40,.45), 0 12px 30px -15px rgba(20,8,40,.25);

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  background: var(--paper);
  color: var(--ink-950);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* Boot loader */
.boot {
  min-height: 100vh;
  display: grid; place-items: center;
  background: var(--plum-950);
  color: white;
}
.boot-card { text-align: center; }
.boot-logo {
  font-family: 'Inter Tight';
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.04em;
}
.boot-logo span { color: var(--lime); }
.boot p { color: var(--plum-300); margin-top: 12px; }

/* ============= Layout ============= */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============= Nav ============= */
.nav {
  position: sticky; top: 0; z-index: 80;
  backdrop-filter: blur(14px);
  background: color-mix(in oklch, var(--paper) 78%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--plum-200) 60%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Inter Tight'; font-weight: 800; letter-spacing: -0.02em; font-size: 19px; color: var(--plum-900); }
.brand-logo { height: 32px !important; width: auto; max-width: none; display: block; }
.brand-logo-white { height: 36px !important; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--plum-500), var(--plum-800));
  position: relative;
  box-shadow: inset 0 -6px 12px rgba(255,255,255,.18);
}
.brand-mark::after {
  content: ''; position: absolute; inset: 5px;
  border-radius: 5px;
  background: conic-gradient(from 35deg, transparent 0deg, rgba(255,255,255,.6) 70deg, transparent 140deg);
  mix-blend-mode: overlay;
}
.brand small { color: var(--ink-500); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--ink-800); font-weight: 500; }
.nav-links a:hover { color: var(--plum-700); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ============= Buttons ============= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 12px;
  font-weight: 600; font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .2s;
}
.btn-primary {
  background: var(--cta);
  color: var(--cta-ink);
  box-shadow: 0 6px 16px -6px color-mix(in oklch, var(--cta) 60%, transparent), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -8px color-mix(in oklch, var(--cta) 70%, transparent), inset 0 -2px 0 rgba(0,0,0,.08); }
.btn-ghost {
  background: transparent;
  color: var(--ink-950);
  border: 1px solid var(--ink-300);
}
.btn-ghost:hover { background: var(--ink-100); }
.btn-light {
  background: white; color: var(--plum-900);
  border: 1px solid color-mix(in oklch, var(--plum-300) 50%, transparent);
}
.btn-lg { padding: 16px 24px; font-size: 15px; border-radius: 14px; }
.btn-link { color: var(--ink-800); font-size: 14px; font-weight: 500; }

/* ============= Hero ============= */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 700px at 85% -10%, color-mix(in oklch, var(--plum-500) 60%, transparent), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, color-mix(in oklch, var(--plum-700) 60%, transparent), transparent 65%),
    linear-gradient(180deg, var(--plum-950), var(--plum-900) 70%, var(--plum-800));
  color: white;
  overflow: hidden;
  border-bottom: 1px solid var(--plum-800);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0 120px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--plum-700) 50%, transparent);
  border: 1px solid color-mix(in oklch, var(--plum-400) 30%, transparent);
  color: var(--plum-100);
  font-size: 13px; font-weight: 500;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px color-mix(in oklch, var(--lime) 30%, transparent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .55 } }

.hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.0;
  margin-top: 22px;
  font-weight: 900;
}
.hero h1 .accent {
  background: linear-gradient(96deg, var(--plum-200), var(--lime) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 800;
}
.hero p.lead {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.55;
  color: color-mix(in oklch, var(--plum-100) 85%, transparent);
  max-width: 540px;
}
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 32px; display: flex; gap: 26px; flex-wrap: wrap;
  color: color-mix(in oklch, var(--plum-200) 80%, transparent);
  font-size: 13px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .check { color: var(--lime); }

/* ============= Hero Dashboard mockup ============= */
.hd-wrap { position: relative; perspective: 1400px; }
.hd {
  position: relative;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid color-mix(in oklch, var(--plum-700) 30%, transparent);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.55), 0 18px 36px -18px rgba(0,0,0,.35);
  overflow: hidden;
  transform: rotateY(-7deg) rotateX(3deg) translateZ(0);
  transform-origin: center center;
  color: var(--ink-950);
}
.hd-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  background: oklch(0.96 0.01 290);
  border-bottom: 1px solid var(--ink-200);
}
.hd-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.hd-bar .dot.r { background: oklch(0.78 0.14 25); }
.hd-bar .dot.y { background: oklch(0.85 0.14 80); }
.hd-bar .dot.g { background: oklch(0.78 0.14 145); }
.hd-url {
  margin-left: 14px; flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-500);
  background: white; padding: 6px 12px; border-radius: 6px;
  border: 1px solid var(--ink-200);
}
.hd-body { padding: 18px; background: var(--ink-100); }
.hd-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hd-kpi {
  background: white; border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.hd-kpi-l { font-size: 11px; color: var(--ink-500); }
.hd-kpi strong { font-family: 'Inter Tight'; font-weight: 800; font-size: 26px; letter-spacing: -0.02em; color: var(--ink-950); }
.hd-kpi strong.accent { color: var(--plum-700); }
.hd-kpi-d { font-size: 11px; color: var(--ok); font-family: 'JetBrains Mono', monospace; }

.hd-cal {
  margin-top: 12px;
  background: white;
  border-radius: 12px;
  padding: 14px;
}
.hd-cal-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.hd-cal-head strong { font-size: 13px; font-family: 'Inter Tight'; font-weight: 700; color: var(--ink-950); }
.hd-legend { display: flex; gap: 10px; flex-wrap: wrap; }
.hd-legend span { font-size: 10px; color: var(--ink-500); display: inline-flex; align-items: center; gap: 5px; }
.hd-legend i { width: 8px; height: 8px; border-radius: 3px; display: inline-block; }
.hd-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-top: 12px; }
.hd-cal-grid.big { grid-template-columns: repeat(7, 1fr); gap: 6px; }
.hd-cell {
  border-radius: 6px;
  padding: 6px 4px;
  text-align: center;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 10px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.hd-cell.booked { background: color-mix(in oklch, oklch(0.88 0.13 155) 35%, white); }
.hd-cell.booked .hd-p { color: oklch(0.45 0.15 150); }
.hd-cell.high { background: color-mix(in oklch, var(--plum-300) 60%, white); }
.hd-cell.high .hd-p { color: var(--plum-800); font-weight: 700; }
.hd-cell.empty { background: var(--ink-100); }
.hd-cell.empty .hd-p { color: var(--ink-400); }
.hd-d { font-weight: 600; color: var(--ink-800); }
.hd-p { font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.hd-cell.pulse { transform: translateY(-2px); box-shadow: 0 6px 14px -4px color-mix(in oklch, var(--plum-500) 40%, transparent); }

.hd-otas { display: flex; gap: 6px; margin-top: 10px; align-items: center; flex-wrap: wrap; }
.ota-chip { font-size: 10px; padding: 3px 8px; border-radius: 999px; font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.ota-chip.airbnb { background: color-mix(in oklch, oklch(0.65 0.20 20) 18%, transparent); color: oklch(0.55 0.20 20); }
.ota-chip.booking { background: color-mix(in oklch, oklch(0.42 0.18 260) 15%, transparent); color: oklch(0.42 0.18 260); }
.ota-chip.vrbo { background: color-mix(in oklch, oklch(0.50 0.18 250) 14%, transparent); color: oklch(0.50 0.18 250); }
.ota-chip.expedia { background: color-mix(in oklch, oklch(0.78 0.16 80) 25%, transparent); color: oklch(0.42 0.10 80); }
.hd-sync { font-size: 10px; color: var(--ok); font-family: 'JetBrains Mono', monospace; margin-left: auto; }

.hd-toast {
  position: absolute;
  left: -40px; bottom: -22px;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 18px 36px -10px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  border: 1px solid var(--ink-200);
  animation: toast-in .5s ease-out;
  max-width: 260px;
  z-index: 4;
}
@keyframes toast-in {
  from { transform: translateY(8px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}
.hd-toast strong { display: block; color: var(--ink-950); font-size: 13px; font-weight: 700; }
.hd-toast span { display: block; color: var(--ink-500); font-size: 12px; }
.hd-toast-ic {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.hd-toast.tone-ok .hd-toast-ic { background: color-mix(in oklch, var(--ok) 18%, transparent); color: var(--ok); }
.hd-toast.tone-plum .hd-toast-ic { background: color-mix(in oklch, var(--plum-500) 18%, transparent); color: var(--plum-700); }
.hd-toast.tone-warn .hd-toast-ic { background: color-mix(in oklch, var(--warn) 25%, transparent); color: oklch(0.55 0.16 75); }

.hd-card-side {
  position: absolute;
  right: -28px; top: 56px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 16px;
  width: 220px;
  box-shadow: 0 22px 40px -12px rgba(0,0,0,.3);
  z-index: 3;
}
.hd-side-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: var(--ink-700); }
.hd-side-row + .hd-side-row { border-top: 1px dashed var(--ink-200); }
.hd-side-row strong { font-family: 'Inter Tight'; font-weight: 800; color: var(--ink-950); }
.hd-side-foot { margin-top: 10px; font-size: 10px; color: var(--ink-500); font-family: 'JetBrains Mono', monospace; }

.hd-abs { background: var(--plum-950); border-color: var(--plum-700); }
.hd-abs .hd-bar { background: var(--plum-900); border-color: var(--plum-800); }
.hd-abs .hd-url { background: var(--plum-800); border-color: var(--plum-700); color: var(--plum-300); }
.hd-abs-body { padding: 22px; background: var(--plum-950); }

/* ============= Live counter row ============= */
.tape {
  position: relative;
  background: var(--plum-950);
  color: white;
  padding: 18px 0;
  border-top: 1px solid color-mix(in oklch, var(--plum-700) 50%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--plum-700) 50%, transparent);
  overflow: hidden;
}
.tape-track {
  display: flex; gap: 56px;
  animation: tape-scroll 50s linear infinite;
  width: max-content;
}
.tape-item { display: flex; align-items: baseline; gap: 12px; font-size: 14px; color: color-mix(in oklch, var(--plum-200) 90%, transparent); white-space: nowrap; }
.tape-item strong { font-family: 'Inter Tight'; font-weight: 800; color: white; font-size: 22px; letter-spacing: -0.01em; }
.tape-item .sep { color: var(--plum-500); }
@keyframes tape-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ============= OTA strip ============= */
.otas {
  background: var(--paper);
  padding: 64px 0;
  border-bottom: 1px solid var(--ink-200);
}
.otas-label {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--ink-500);
  text-align: center;
  display: flex; align-items: center; gap: 16px; justify-content: center;
}
.otas-label::before, .otas-label::after { content: ''; height: 1px; flex: 0 0 60px; background: var(--ink-300); }
.ota-row {
  margin-top: 30px;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ota-tile {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--ink-200);
  transition: transform .2s, border-color .2s;
}
.ota-tile:hover { transform: translateY(-2px); border-color: var(--plum-300); }
.ota-mark {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: 'Inter Tight'; font-weight: 800; font-size: 17px;
}
.ota-name { font-weight: 600; font-size: 15px; color: var(--ink-950); }
.ota-meta { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--ok); display: flex; align-items: center; gap: 5px; }
.ota-meta .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

/* ============= Section base ============= */
.section { padding: 110px 0; }
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--plum-700);
  text-transform: uppercase;
}
.section-title { font-size: clamp(36px, 4vw, 56px); line-height: 1.05; margin-top: 14px; max-width: 16ch; }
.section-sub { color: var(--ink-600); font-size: 18px; line-height: 1.55; max-width: 56ch; margin-top: 16px; }

/* ============= Comparison ============= */
.compare {
  background: var(--ink-100);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.compare-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--ink-200);
}
.compare-card.bad { background: linear-gradient(180deg, color-mix(in oklch, var(--err) 8%, white), white); }
.compare-card.good {
  background: var(--plum-950);
  color: white;
  border-color: var(--plum-800);
  position: relative;
  overflow: hidden;
}
.compare-card.good::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 80% 0%, color-mix(in oklch, var(--plum-500) 35%, transparent), transparent 70%);
  pointer-events: none;
}
.compare-head { display: flex; align-items: center; gap: 12px; }
.compare-head h3 { font-size: 22px; }
.compare-pill { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.compare-card.bad .compare-pill { background: color-mix(in oklch, var(--err) 15%, transparent); color: var(--err); }
.compare-card.good .compare-pill { background: var(--lime); color: var(--lime-ink); }
.compare-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 16px; }
.compare-list li { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; align-items: flex-start; }
.compare-card.bad .compare-list li { color: var(--ink-800); }
.compare-card.good .compare-list li { color: color-mix(in oklch, var(--plum-100) 90%, transparent); }
.compare-icon { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 2px; }
.compare-card.bad .compare-icon { background: color-mix(in oklch, var(--err) 18%, transparent); color: var(--err); }
.compare-card.good .compare-icon { background: var(--lime); color: var(--lime-ink); }
@keyframes checkPulse {
  0%   { transform: scale(0.4); box-shadow: 0 0 0 0 color-mix(in oklch, var(--lime) 80%, transparent); }
  35%  { transform: scale(1.18); box-shadow: 0 0 0 8px color-mix(in oklch, var(--lime) 0%, transparent); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 transparent; }
}

/* ============= Stats ============= */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.stat-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--ink-200);
}
.stat-num { font-family: 'Inter Tight'; font-weight: 900; font-size: 64px; letter-spacing: -0.03em; line-height: 1; color: var(--plum-800); }
.stat-num small { font-size: 28px; vertical-align: top; }
.stat-label { margin-top: 12px; font-size: 15px; color: var(--ink-600); }

/* ============= Product tabs ============= */
.product { background: white; }
.tabs {
  display: inline-flex;
  background: var(--ink-100);
  border-radius: 999px;
  padding: 5px;
  margin-top: 36px;
}
.tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-600);
  transition: background .18s;
}
.tab.active { background: white; color: var(--plum-900); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.tab:not(.active):hover { color: var(--ink-950); }

.shot {
  margin-top: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-100);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-pop);
  position: relative;
}
.shot-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: white;
  border-bottom: 1px solid var(--ink-200);
}
.shot-bar .lights { display: flex; gap: 6px; }
.shot-bar .light { width: 11px; height: 11px; border-radius: 50%; }
.shot-bar .light.r { background: oklch(0.78 0.15 25); }
.shot-bar .light.y { background: oklch(0.85 0.16 80); }
.shot-bar .light.g { background: oklch(0.80 0.15 145); }
.shot-bar .url { margin-left: 14px; flex: 1; padding: 7px 14px; background: var(--ink-100); border-radius: 8px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-500); }

/* ============= Features ============= */
.features {
  background: var(--ink-100);
  border-top: 1px solid var(--ink-200);
}
.features-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--ink-200);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-3px); border-color: var(--plum-300); box-shadow: var(--shadow-card); }
.feature .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in oklch, var(--plum-200) 80%, white);
  color: var(--plum-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature h3 { font-size: 18px; }
.feature p { color: var(--ink-600); font-size: 14px; line-height: 1.55; margin: 8px 0 0; }

/* Special big feature spans 2 cols */
.feature.span2 {
  grid-column: span 2;
  background:
    linear-gradient(135deg, var(--plum-900), var(--plum-700));
  color: white;
  border-color: var(--plum-700);
  position: relative; overflow: hidden;
}
.feature.span2 .ico { background: color-mix(in oklch, var(--lime) 30%, transparent); color: var(--lime); }
.feature.span2 p { color: color-mix(in oklch, var(--plum-100) 80%, transparent); }
.feature.span2 .demo {
  margin-top: 24px;
  padding: 18px;
  background: color-mix(in oklch, var(--plum-950) 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--plum-700) 50%, transparent);
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: color-mix(in oklch, var(--plum-200) 90%, transparent);
}
.feature.span2 .demo .row { display: flex; justify-content: space-between; padding: 4px 0; }
.feature.span2 .demo .row + .row { border-top: 1px dashed color-mix(in oklch, var(--plum-600) 40%, transparent); }
.feature.span2 .demo .row .v { color: var(--lime); font-weight: 600; }

/* ============= Workflow / story ============= */
.story { background: var(--paper); }
.story-row {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
  padding: 60px 0;
  border-top: 1px dashed var(--ink-300);
}
.story-row:first-of-type { border-top: 0; }
.story-row.flip { grid-template-columns: 1.1fr 1fr; }
.story-row.flip > .story-text { order: 2; }
.story-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--plum-600);
  display: flex; align-items: center; gap: 12px;
}
.story-num::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--plum-300); }
.story-text h3 { font-size: 36px; line-height: 1.1; margin-top: 18px; max-width: 14ch; }
.story-text p { color: var(--ink-600); font-size: 17px; line-height: 1.55; margin-top: 18px; max-width: 48ch; }
.story-cta { margin-top: 22px; color: var(--plum-700); font-weight: 600; font-size: 14px; display: inline-flex; gap: 8px; }
.story-cta:hover { color: var(--plum-900); }

.story-art {
  position: relative;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  min-height: 280px;
}

/* ============= Quote / testimonial ============= */
.quote-section {
  background: var(--plum-950);
  color: white;
  background-image:
    radial-gradient(800px 400px at 90% 100%, color-mix(in oklch, var(--plum-500) 50%, transparent), transparent 70%),
    radial-gradient(700px 400px at 0% 0%, color-mix(in oklch, var(--plum-700) 40%, transparent), transparent 70%);
}
.quote-section .section-tag { color: var(--lime); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.quote-card {
  background: color-mix(in oklch, var(--plum-900) 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--plum-700) 60%, transparent);
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.quote-card .text { font-size: 16px; line-height: 1.55; color: color-mix(in oklch, var(--plum-100) 95%, transparent); flex: 1; }
.quote-card .text::before { content: '“'; color: var(--lime); font-size: 48px; font-family: 'Inter Tight'; line-height: 0.4; vertical-align: -10px; margin-right: 4px; }
.quote-meta { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--plum-500), var(--plum-700));
  display: grid; place-items: center;
  font-family: 'Inter Tight'; font-weight: 700; color: white; font-size: 14px;
}
.quote-name { font-weight: 600; font-size: 14px; }
.quote-role { color: color-mix(in oklch, var(--plum-300) 90%, transparent); font-size: 12px; }

/* ============= Pricing ============= */
.pricing { background: var(--paper); }

/* Properties slider + billing toggle */
.price-controls {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.price-slider-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 22px 28px 18px;
  width: 100%; max-width: 520px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.price-slider-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--ink-700);
  margin-bottom: 14px;
}
.price-slider-head strong {
  font-family: 'Inter Tight'; font-size: 28px; font-weight: 800;
  color: var(--plum-700); letter-spacing: -0.02em;
}
.price-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--plum-700) 0 var(--pct, 0%), var(--ink-200) var(--pct, 0%) 100%);
  outline: none; cursor: pointer;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--plum-700); border: 3px solid white;
  box-shadow: 0 2px 8px rgba(106, 0, 168, 0.3);
  cursor: pointer;
}
.price-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--plum-700); border: 3px solid white;
  box-shadow: 0 2px 8px rgba(106, 0, 168, 0.3);
  cursor: pointer; border: 3px solid white;
}
.price-slider-scale {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-500);
}

.price-billing {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-600); font-weight: 500;
}
.price-billing .on { color: var(--ink-950); font-weight: 700; }
.price-toggle {
  width: 46px; height: 26px; border-radius: 999px;
  background: var(--ink-300); border: none; cursor: pointer;
  position: relative; transition: background 0.2s;
  padding: 0;
}
.price-toggle.is-annual { background: var(--plum-700); }
.price-toggle-dot {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: white; transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.price-toggle.is-annual .price-toggle-dot { transform: translateX(20px); }
.price-save {
  background: color-mix(in oklch, var(--ok) 18%, white);
  color: var(--ok);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  padding: 4px 8px; border-radius: 6px;
}

/* 4-column pricing grid */
.price-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--ink-200);
  display: flex; flex-direction: column;
  position: relative;
}
.price.featured {
  background: white;
  color: var(--ink-950);
  border: 2px solid var(--plum-700);
  box-shadow: 0 18px 40px -20px rgba(106, 0, 168, 0.4);
}
.price-head { min-height: 92px; }
.price-name { font-family: 'Inter Tight'; font-size: 22px; font-weight: 800; color: var(--ink-950); letter-spacing: -0.01em; display: block; }
.price.featured .price-name { color: var(--plum-700); }
.price-desc { color: var(--ink-600); font-size: 13px; margin-top: 8px; line-height: 1.5; }

.price-amount-wrap { margin-top: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--ink-200); }
.price-amount {
  font-family: 'Inter Tight'; font-size: 38px; font-weight: 900; letter-spacing: -0.03em;
  line-height: 1; color: var(--ink-950);
  display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap;
}
.price-amount small { font-size: 14px; color: var(--ink-500); font-weight: 500; }
.price-free { color: var(--plum-700); }
.price-sub { font-size: 12px; color: var(--ink-500); margin-top: 8px; }

.price-cta { margin-top: 20px; justify-content: center; width: 100%; }
.price.featured .price-cta { background: var(--plum-700); color: white; border-color: var(--plum-700); }

.price-feats { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-feats li { font-size: 13.5px; color: var(--ink-800); display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.price-feats li.off { color: var(--ink-400); }
.price-feats .check { color: var(--plum-700); flex: 0 0 14px; font-weight: 700; margin-top: 1px; }
.price-feats li.off .check { color: var(--ink-300); }

.price-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--plum-700); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 999px; text-transform: uppercase;
  white-space: nowrap;
}

.price-foot-note {
  margin-top: 32px; text-align: center;
  font-size: 13px; color: var(--ink-500);
}

/* ============= FAQ ============= */
.faq-section { background: white; }
.faq-list { margin-top: 48px; max-width: 820px; }
.faq {
  border-top: 1px solid var(--ink-200);
  padding: 22px 0;
  cursor: pointer;
}
.faq:last-child { border-bottom: 1px solid var(--ink-200); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 17px; font-weight: 600; color: var(--ink-950); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink-100); color: var(--plum-800);
  display: grid; place-items: center;
  flex-shrink: 0; transition: transform .25s;
}
.faq.open .faq-toggle { transform: rotate(45deg); background: var(--plum-800); color: white; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin .25s, opacity .25s;
  opacity: 0;
  color: var(--ink-600); font-size: 15px; line-height: 1.6;
}
.faq.open .faq-a { max-height: 240px; opacity: 1; margin-top: 14px; }

/* ============= CTA ============= */
.bigcta {
  background: var(--plum-950);
  color: white;
  position: relative; overflow: hidden;
  background-image:
    radial-gradient(700px 360px at 50% 130%, color-mix(in oklch, var(--lime) 25%, transparent), transparent 70%),
    radial-gradient(900px 500px at 50% -10%, color-mix(in oklch, var(--plum-500) 50%, transparent), transparent 70%);
}
.bigcta-inner { padding: 110px 0; text-align: center; }
.bigcta h2 { font-size: clamp(48px, 6vw, 80px); line-height: 1.0; max-width: 18ch; margin: 0 auto; }
.bigcta h2 .accent { color: var(--lime); font-style: italic; font-weight: 800; }
.bigcta p { color: color-mix(in oklch, var(--plum-200) 90%, transparent); font-size: 18px; margin-top: 22px; max-width: 56ch; margin-left: auto; margin-right: auto; }
.bigcta .actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============= Footer ============= */
.footer {
  background: var(--plum-950);
  color: color-mix(in oklch, var(--plum-200) 90%, transparent);
  border-top: 1px solid color-mix(in oklch, var(--plum-700) 40%, transparent);
  padding: 64px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.footer h4 { font-size: 13px; color: white; margin-bottom: 16px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; }
.footer ul a:hover { color: var(--lime); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid color-mix(in oklch, var(--plum-800) 60%, transparent); display: flex; justify-content: space-between; font-size: 13px; color: color-mix(in oklch, var(--plum-300) 80%, transparent); }
.footer-brand .brand { color: white; font-size: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.55; margin: 16px 0 24px; max-width: 36ch; }

/* ============= Notes panel ============= */
.notes {
  position: fixed; bottom: 18px; left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-500);
  background: white; border: 1px solid var(--ink-200);
  padding: 8px 12px; border-radius: 999px;
  box-shadow: var(--shadow-card);
  z-index: 30;
}

/* ============= Responsive ============= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; padding: 64px 0 80px; }
  .compare-grid, .stats, .features-grid, .quote-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .ota-row { grid-template-columns: repeat(3, 1fr); }
  .story-row, .story-row.flip { grid-template-columns: 1fr; gap: 32px; }
  .story-row.flip > .story-text { order: 0; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .compare-grid, .stats, .features-grid, .price-grid, .quote-grid, .footer-grid, .ota-row { grid-template-columns: 1fr; }
  .feature.span2 { grid-column: span 1; }
  .price.featured { transform: none; }
  .section { padding: 72px 0; }
  .hero h1 { font-size: 44px; }
}
