/* dayto.ai — production landing
   Design tokens, base + four palette presets toggled via [data-palette] */

:root {
  --bg:         #FFFFFF;
  --bg-soft:    #FAF7EF;
  --bg-card:    #FFFFFF;
  --bg-dark:    #131722;
  --text:       #131722;
  --text-soft:  #3A4357;
  --text-dim:   #5A6390;
  --text-light: #9aa4bb;
  --border:     #ECE7D6;
  --border-strong: #D8D2BD;
  --safety:     #F2C200;
  --safety-ink: #131722;
  --safety-deep:#C79C00;
  --copper:     #E56C28;
  --green:      #22A05A;
  --red:        #D63D2F;
  --amber:      #F2A20A;
  --shadow:        0 1px 2px rgba(20,30,55,.04), 0 2px 6px rgba(20,30,55,.06);
  --shadow-strong: 0 4px 16px rgba(20,30,55,.08), 0 12px 32px rgba(20,30,55,.10);
  --shadow-card:   0 1px 0 rgba(20,30,55,.04), 0 1px 3px rgba(20,30,55,.03), 0 8px 28px rgba(20,30,55,.05);
  --radius:    14px;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:      'JetBrains Mono', 'Menlo', 'Consolas', monospace;
}

/* ── Palette: copper-warm — heavier ochre, more blue-collar warmth ── */
[data-palette="copper"] {
  --bg:         #FBF7EE;
  --bg-soft:    #F4EEDD;
  --bg-card:    #FFFCF4;
  --border:     #E5DCC0;
  --border-strong: #C8BC97;
  --safety:     #E56C28;     /* copper as primary CTA */
  --safety-ink: #FFFFFF;
  --safety-deep:#B6531C;
  --copper:     #C79C00;
}

/* ── Palette: mono editorial — black/white, restrained green accent ── */
[data-palette="mono"] {
  --bg:         #FFFFFF;
  --bg-soft:    #F5F4F0;
  --bg-card:    #FFFFFF;
  --border:     #E6E5E0;
  --border-strong:#CCC9BE;
  --text:       #0A0A0A;
  --text-soft:  #2A2A2A;
  --text-dim:   #5A5A5A;
  --text-light: #A0A0A0;
  --safety:     #0A0A0A;
  --safety-ink: #FFFFFF;
  --safety-deep:#000000;
  --copper:     #22A05A;
  --shadow-card: 0 0 0 1px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.03);
}

/* ── Palette: dark premium — navy bg, yellow accent ── */
[data-palette="dark"] {
  --bg:         #0E1320;
  --bg-soft:    #131A28;
  --bg-card:    #161E2D;
  --bg-dark:    #080C15;
  --text:       #F4EFE3;
  --text-soft:  #B8C0D2;
  --text-dim:   #8993AB;
  --text-light: #5A6280;
  --border:     #232D42;
  --border-strong:#324059;
  --safety:     #F2C200;
  --safety-ink: #131722;
  --safety-deep:#C79C00;
  --copper:     #F08F4A;
  --shadow-card: 0 1px 0 rgba(0,0,0,.4), 0 12px 32px rgba(0,0,0,.35);
  --shadow-strong: 0 4px 16px rgba(0,0,0,.4), 0 24px 60px rgba(0,0,0,.5);
}

/* ── Base ───────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
a.link { color: var(--text); border-bottom: 1px solid var(--border-strong); }
a.link:hover { border-bottom-color: var(--text); }

::selection { background: var(--safety); color: var(--safety-ink); }

/* ── Type scale ─────────────────────────────────────────────────── */
.t-display {
  font-size: clamp(56px, 9vw, 112px);
  line-height: .94;
  letter-spacing: -0.045em;
  font-weight: 900;
}
.t-h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 800; }
.t-h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; }
.t-h3 { font-size: clamp(20px, 2.5vw, 26px); line-height: 1.2; letter-spacing: -0.01em; font-weight: 700; }
.t-body { font-size: 16px; line-height: 1.6; }
.t-lead { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: var(--text-soft); }
.t-small { font-size: 13.5px; line-height: 1.55; }
.t-mono {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Layout ─────────────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section.alt { background: var(--bg-soft); }

.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

/* ── Top nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.01em; }
.nav-brand-mark { width: 28px; height: 28px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-soft); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-dim); font-weight: 500;
}
.nav-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--green) 22%, transparent);
}
@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 12px; font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent; transition: transform .12s ease, background .15s, box-shadow .15s, color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--safety); color: var(--safety-ink);
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 2px 0 var(--safety-deep), 0 8px 24px color-mix(in oklab, var(--safety) 32%, transparent);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn.lg, .btn-primary.lg, .btn-dark.lg, .btn-ghost.lg { padding: 16px 22px; font-size: 16px; border-radius: 14px; }
.btn.xl, .btn-primary.xl { padding: 18px 26px; font-size: 17px; border-radius: 14px; }
.btn-primary.lg { padding: 16px 22px; font-size: 16px; border-radius: 14px; }
.btn-primary.xl { padding: 18px 26px; font-size: 17px; border-radius: 14px; }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--text); }
.btn-dark {
  background: var(--text); color: var(--bg);
  border-color: var(--text);
}
.btn-dark:hover { background: var(--text-soft); }

/* ── Pill / Tag ─────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-soft); font-weight: 500;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--safety); }
.pill-mono { font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; font-weight: 700; padding: 5px 10px; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.card-flat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 72px 0 96px;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 420px);
  gap: 56px;
  /* align-items:start (not stretch) decouples the two columns' heights, so the
     left column never slides DOWN when the right audit card grows after a result
     renders. Fixes the post-audit layout shift. */
  align-items: start;
}
.hero-grid > div:first-child {
  display: flex; flex-direction: column;
}
.hero-grid > div:first-child .hero-timeline {
  margin-top: 40px; /* fixed gap below the hook (was margin-top:auto, which paired
                        with align-items:stretch and caused the shift) */
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .hero-grid > div:first-child .hero-timeline { margin-top: 40px; }
}

.hero-eyebrow { margin-bottom: 28px; }

.wordplay {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 0;
  font-weight: 900;
}
.wordplay-static, .wordplay-rot, .wordplay-dot {
  font-size: clamp(56px, 9vw, 112px);
  line-height: .94;
  letter-spacing: -0.045em;
}
.wordplay-dot { margin: 0 .15ch; color: var(--text-light); }
.wordplay-rot {
  display: inline-block;
  background-clip: text; -webkit-background-clip: text; color: transparent;
  position: relative;
  transition: opacity .28s ease, transform .32s cubic-bezier(.22,1,.36,1);
}
.wordplay-rot.swap { opacity: 0; transform: translateY(0.18em); }
.wordplay-cursor {
  display: inline-block; width: 0.06ch; height: 0.84em;
  background: var(--text); margin-left: .12ch;
  animation: caret 1.05s steps(1) infinite;
  align-self: center;
}
@keyframes caret { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

.hero-hook {
  margin-top: 36px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--text);
  font-weight: 500;
  max-width: 58ch;
}
.hero-hook em { font-style: normal; color: var(--text-dim); }
.hero-hook strong { font-weight: 700; }
.hero-hook .accent {
  background: linear-gradient(95deg, var(--safety-deep) 0%, var(--copper) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800;
}
/* Each sentence-pair is its own block line. On desktop, opener+closer fit on
   one line ("When… AI picks one plumber."), then "Today… Tomorrow…" on the
   next. .hook-ph keeps each phrase intact so a tight viewport wraps the WHOLE
   phrase to a new line rather than breaking it mid-sentence. */
.hero-hook .hook-line { display: block; }
.hero-hook .hook-ph { white-space: nowrap; }

.hero-timeline {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; max-width: 580px;
}
.hero-step {
  position: relative;
  padding: 14px 14px 14px 14px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.hero-step-icon { width: 22px; height: 22px; margin-bottom: 8px; color: var(--text-dim); }
.hero-step:nth-child(2) .hero-step-icon { color: var(--safety-deep); }
.hero-step:nth-child(3) .hero-step-icon { color: var(--copper); }
.hero-step:nth-child(4) .hero-step-icon { color: var(--green); }
.hero-step-label { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.hero-step-text { font-size: 13.5px; font-weight: 600; color: var(--text); margin-top: 4px; }
@media (max-width: 560px) {
  .hero-timeline { grid-template-columns: 1fr 1fr; }
}

/* ── Sunbeam background ────────────────────────────────────── */
.sunbeam {
  position: absolute; pointer-events: none;
  top: -40%; right: -25%;
  width: 920px; height: 920px;
  opacity: .55;
  z-index: 0;
}
[data-palette="dark"] .sunbeam { opacity: .35; }
.sunbeam svg { width: 100%; height: 100%; animation: spin 90s linear infinite; transform-origin: 50% 50%; }
@media (prefers-reduced-motion: reduce) {
  .sunbeam svg { animation: none; }
  .wordplay-rot { transition: none; }
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.hero-inner { position: relative; z-index: 1; }

/* ── Audit form (right hero column) ────────────────────────── */
.audit-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-strong);
}
.audit-card .audit-eyebrow {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.audit-title {
  font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 4px;
}
.audit-sub { color: var(--text-dim); font-size: 13.5px; margin-bottom: 18px; }
.audit-field {
  display: block; margin-bottom: 12px;
}
.audit-label {
  font-family: var(--mono);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 6px; display: block;
}
.audit-input, .audit-select {
  width: 100%; padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.audit-input::placeholder { color: var(--text-light); }
.audit-input:focus, .audit-select:focus {
  outline: none; border-color: var(--safety);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--safety) 25%, transparent);
}
.audit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.audit-expand {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,1,.36,1);
}
.audit-expand.open { max-height: 260px; }

.audit-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 20px;
  border-radius: 12px;
  background: var(--safety); color: var(--safety-ink);
  font-weight: 700; font-size: 16px; border: none;
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 2px 0 var(--safety-deep), 0 10px 28px color-mix(in oklab, var(--safety) 38%, transparent);
  margin-top: 8px;
  transition: transform .12s;
}
.audit-submit:hover { transform: translateY(-1px); }
.audit-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-size: 12.5px; color: var(--text-dim); }
.audit-foot .check { display: flex; align-items: center; gap: 6px; }

/* progress while job running */
.audit-progress {
  margin-top: 16px;
  padding: 14px; border-radius: 12px;
  background: var(--bg-soft); border: 1px dashed var(--border-strong);
  font-family: var(--mono); font-size: 12px; color: var(--text-soft);
}
.audit-progress .bar { height: 4px; border-radius: 4px; background: var(--border); overflow: hidden; margin-top: 8px; }
.audit-progress .bar-fill { height: 100%; background: linear-gradient(90deg, var(--safety), var(--copper)); transition: width .4s ease; }

/* ── Logo strip / partners would go here. We use trust list instead. ── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 24px; max-width: 1200px; margin: 0 auto;
  flex-wrap: wrap;
  font-family: var(--mono); font-size: 11.5px; font-weight: 700;
  color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase;
}
.trust-strip-inner span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip-inner em { font-style: normal; color: var(--text); }

/* ── Show-me cards ─────────────────────────────────────────── */
.showme-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .showme-grid { grid-template-columns: 1fr; } }

.showme-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s;
}
.showme-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-strong); }
.showme-preview {
  height: 168px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.showme-body { padding: 20px 22px 22px; }
.showme-tag { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--text-dim); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.showme-h { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 8px; }
.showme-p { font-size: 14px; color: var(--text-soft); line-height: 1.5; margin: 0 0 16px; }
.showme-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13.5px; color: var(--text); }
.showme-link svg { width: 14px; height: 14px; }
.showme-card:hover .showme-link { color: var(--copper); }

/* ── Why-now stats ─────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 28px 28px 32px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-card);
  display: flex; flex-direction: column; gap: 12px;
}
.why-num {
  font-size: clamp(56px, 8vw, 88px);
  line-height: 1; font-weight: 900; letter-spacing: -0.04em;
  color: var(--text);
}
.why-num em { font-style: normal; color: var(--copper); font-size: 0.6em; vertical-align: super; }
.why-text { font-size: 15.5px; color: var(--text-soft); line-height: 1.45; }
.why-src { font-family: var(--mono); font-size: 10.5px; color: var(--text-dim); letter-spacing: .08em; text-transform: uppercase; margin-top: auto; }

/* ── Quotes / social proof ─────────────────────────────────── */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
}
.quote-mark { font-size: 36px; line-height: 1; color: var(--safety); font-weight: 900; }
.quote-text { font-size: 17px; line-height: 1.45; letter-spacing: -0.005em; color: var(--text); margin: 0; }
.quote-src { margin-top: auto; font-size: 13px; color: var(--text-dim); }
.quote-src strong { color: var(--text); font-weight: 700; }
.quote-cite {
  display: inline-block;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--bg-soft); padding: 3px 8px; border-radius: 6px; color: var(--text-dim);
  margin-top: 6px;
}

/* ── AVS Widget ────────────────────────────────────────────── */
.avs-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; box-shadow: var(--shadow-card);
}
.avs-row { display: flex; gap: 12px; }
.avs-row .audit-input { flex: 1; }
.avs-row .btn-primary { padding: 0 22px; height: 50px; }
.avs-stages {
  margin-top: 22px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.avs-stage {
  padding: 12px;
  border-radius: 10px; border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--text-dim);
  letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.avs-stage svg { width: 14px; height: 14px; flex: none; }
.avs-stage.active { background: color-mix(in oklab, var(--safety) 14%, var(--bg)); color: var(--text); border-color: var(--safety); }
.avs-stage.done { background: color-mix(in oklab, var(--green) 12%, var(--bg)); color: var(--green); border-color: color-mix(in oklab, var(--green) 40%, var(--border)); }
@media (max-width: 720px) { .avs-stages { grid-template-columns: 1fr 1fr; } }

.avs-verdict {
  margin-top: 22px; padding: 22px;
  border-radius: 14px; border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  display: flex; gap: 22px; align-items: center;
}
.avs-verdict-num {
  font-size: 64px; line-height: 1; font-weight: 900; letter-spacing: -0.04em;
  color: var(--copper);
}
.avs-verdict-body { flex: 1; }
.avs-verdict h4 { margin: 0 0 4px; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.avs-verdict p { margin: 0; color: var(--text-soft); font-size: 14.5px; }
.avs-verdict ul { margin: 10px 0 0; padding: 0; list-style: none; display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-dim); }
.avs-verdict ul li { display: flex; align-items: center; gap: 6px; }
.avs-verdict ul li .dot-red { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.avs-verdict ul li .dot-amb { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.avs-verdict ul li .dot-grn { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* ── Deliverables ──────────────────────────────────────────── */
.deliver-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 980px) { .deliver-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .deliver-grid { grid-template-columns: 1fr; } }
.deliver-card {
  padding: 24px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s, box-shadow .15s;
}
.deliver-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.deliver-icon { width: 28px; height: 28px; color: var(--text); }
.deliver-h { font-size: 16px; font-weight: 800; letter-spacing: -0.005em; margin: 0; }
.deliver-mono { font-family: var(--mono); font-size: 10.5px; color: var(--text-dim); letter-spacing: .08em; text-transform: uppercase; }
.deliver-p { font-size: 13.5px; color: var(--text-soft); line-height: 1.5; margin: 0; }
.deliver-card.bonus {
  border-color: color-mix(in oklab, var(--copper) 50%, var(--border));
  background: linear-gradient(180deg, color-mix(in oklab, var(--copper) 8%, var(--bg-card)) 0%, var(--bg-card) 100%);
  position: relative;
}
.deliver-card.bonus .deliver-icon { color: var(--copper); }
.deliver-card.bonus .deliver-mono { color: var(--copper); }
.deliver-bonus-flag {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--copper);
  background: color-mix(in oklab, var(--copper) 16%, transparent);
  padding: 4px 8px; border-radius: 6px;
}

/* ── ROI calculator ───────────────────────────────────────── */
.roi-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: stretch; }
@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr; } }
.roi-input-card, .roi-output-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
}
.roi-output-card {
  background: linear-gradient(160deg, var(--text) 0%, var(--bg-dark) 100%);
  color: var(--bg);
  border: none;
  position: relative; overflow: hidden;
}
.roi-output-card .roi-out-eyebrow { color: var(--safety); font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.roi-output-card .roi-formula { margin-top: 22px; font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.7; }
.roi-output-card .roi-formula strong { color: var(--safety); font-weight: 700; }
.roi-big {
  font-size: clamp(56px, 7vw, 84px); line-height: .98; font-weight: 900;
  letter-spacing: -0.045em; margin-top: 18px; color: var(--bg);
}
.roi-sub { font-size: 15px; color: rgba(255,255,255,.7); margin-top: 8px; }
.roi-payback {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  background: color-mix(in oklab, var(--safety) 18%, transparent);
  border: 1px solid color-mix(in oklab, var(--safety) 40%, transparent);
  color: var(--safety); font-weight: 700; font-size: 13.5px;
}
.roi-knob { margin-bottom: 20px; }
.roi-knob-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.roi-knob-label { font-family: var(--mono); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.roi-knob-val { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; }
.roi-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: var(--border);
  outline: none;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--safety); border: 3px solid var(--bg-card);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  cursor: pointer;
}
.roi-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--safety); border: 3px solid var(--bg-card);
  cursor: pointer;
}

/* ── Pricing ──────────────────────────────────────────────── */
.price-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.price-card.featured {
  border: 1px solid var(--text);
  box-shadow: 0 1px 0 rgba(20,30,55,.04), 0 24px 60px rgba(20,30,55,.08);
  position: relative;
}
.price-card.featured::before {
  content: 'Most teams start here';
  position: absolute; top: -10px; left: 24px;
  background: var(--safety); color: var(--safety-ink);
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.price-name { font-size: 14px; font-weight: 700; color: var(--text-dim); font-family: var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 0; }
.price-amt .num { font-size: 56px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.price-amt .per { color: var(--text-dim); font-size: 15px; font-weight: 500; }
.price-amt.enterprise .num { font-size: 38px; letter-spacing: -0.02em; }
.price-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.45; }
.price-list li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--green); }
.price-list li.no svg { color: var(--text-light); }
.price-list li.no { color: var(--text-dim); }
.price-foot { padding-top: 14px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-dim); }
.price-foot strong { color: var(--copper); font-weight: 700; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 17px; font-weight: 700; letter-spacing: -0.008em; color: var(--text);
}
.faq-q .plus {
  width: 22px; height: 22px; flex: none;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--text);
  border-radius: 2px;
}
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 2px; margin-top: -1px; }
.faq-q .plus::after { top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px; transition: transform .25s; }
.faq-item.open .plus::after { transform: scaleY(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,1,.36,1);
}
.faq-a-inner { padding: 0 0 22px; font-size: 15.5px; line-height: 1.55; color: var(--text-soft); max-width: 70ch; }
.faq-item.open .faq-a { max-height: 380px; }

/* ── Waitlist / enterprise / footer ──────────────────────── */
.cta-band {
  background: var(--bg-dark);
  color: var(--bg);
  border-radius: 24px;
  padding: 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.7); }
.cta-band .audit-input, .cta-band .audit-select { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.18); }
.cta-band .audit-input::placeholder { color: rgba(255,255,255,.45); }
.cta-band .audit-label { color: rgba(255,255,255,.55); }
.cta-band-sun {
  position: absolute; right: -160px; top: -160px; width: 460px; height: 460px; opacity: .14;
}
.cta-band-form {
  position: relative; z-index: 1;
}
@media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; padding: 36px; } }

.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  margin-top: 64px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 { font-size: 12px; font-family: var(--mono); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a { color: var(--text-soft); font-size: 14px; }
.footer ul a:hover { color: var(--text); }
.footer-brand p { margin: 12px 0 16px; max-width: 32ch; color: var(--text-soft); font-size: 14px; }
.footer-legal {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--text-dim);
}
.footer-legal-trades {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.footer-legal-trades strong { color: var(--text); }

/* ── Misc utility ───────────────────────────────────────── */
.eyebrow-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.section-head {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 44px;
  max-width: 700px;
}
.section-head h2 { margin: 0; }
.section-head p { margin: 0; color: var(--text-soft); font-size: 17px; line-height: 1.55; }

/* anchor offset for sticky nav */
section[id] { scroll-margin-top: 72px; }

/* ════════════════════════════════════════════════════════════════════
   v2 OVERRIDES — alignment pass, sunrise/sunset, mobile, a11y
   ════════════════════════════════════════════════════════════════════ */

/* ── Dark palette: text-light contrast lifted from ~3:1 to ~4.6:1 ── */
[data-palette="dark"] {
  --text-light: #7E8AA6;
  --border:     #2A3650;
  --border-strong:#3D4D6B;
}

/* Keyboard focus, visible everywhere */
:focus-visible {
  outline: 2px solid var(--safety);
  outline-offset: 3px;
  border-radius: 6px;
}
[data-palette="dark"] :focus-visible { outline-color: var(--safety); }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible,
.faq-q:focus-visible {
  outline: 2px solid var(--safety);
  outline-offset: 2px;
}

/* ── Sunrise / sunset gradient text utility — vertical, muted, readable ── */
.grad-sunrise {
  background: linear-gradient(to top, #C9701E 0%, #E89B3A 45%, #F2C84A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
}
.grad-sunset {
  background: linear-gradient(to top, #6E4076 0%, #B05A85 45%, #E89B3A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
}
[data-palette="dark"] .grad-sunrise {
  background: linear-gradient(to top, #E07B22 0%, #F2A640 45%, #FFD060 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}
[data-palette="dark"] .grad-sunset {
  background: linear-gradient(to top, #8A56A8 0%, #C870A0 45%, #FFB562 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}

/* "Today is that day" pill */
.today-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: color-mix(in oklab, var(--copper) 14%, var(--bg));
  border: 1px solid color-mix(in oklab, var(--copper) 36%, var(--border));
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--copper);
}
.today-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); box-shadow: 0 0 0 3px color-mix(in oklab, var(--copper) 26%, transparent); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: .8; }
}

/* ── Wordplay: 2 rows. Row 1 = "day to". Row 2 = "{word} ai".
      Forced layout via flex-direction column so 'ai' always sits next to the
      rotating word, never on its own 3rd line. */
.wordplay {
  display: flex; flex-direction: column;
  gap: 0;
  font-weight: 900;
  line-height: 1.05;
  padding-bottom: .04em;
}
.wordplay-row {
  display: flex; align-items: baseline;
  column-gap: 1ch;
  flex-wrap: nowrap;
}
.wordplay-static, .wordplay-rot {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  display: inline-block;
}
.wordplay-rot {
  background-clip: text; -webkit-background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
  /* 'ai' sits to the LEFT of this rotating word, so the word's variable width
     extends rightward and never shifts anything. No fixed slot width needed. */
  text-align: left;
  position: relative;
  transition: opacity .28s ease, transform .32s cubic-bezier(.22,1,.36,1);
}
.wordplay-rot.swap { opacity: 0; transform: translateY(0.18em); }
@media (max-width: 720px) {
  .wordplay-row { column-gap: .8ch; }
}
@media (max-width: 480px) {
  .wordplay-static, .wordplay-rot { font-size: clamp(40px, 12vw, 60px); }
}

/* ── HERO Timeline v2: gradient progression + speed lines ── */
.hero-timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 580px;
  margin-top: 40px;
  padding: 0;
}
.hero-step {
  position: relative; overflow: hidden;
  padding: 16px 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0)), var(--step-bg, var(--bg-soft));
  isolation: isolate;
  transition: transform .2s ease;
}
.hero-step::after {
  /* horizontal "speed" streaks — left to right velocity hint */
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0) 0,
      rgba(255,255,255,.06) 28%,
      rgba(255,255,255,0) 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: var(--streak-opacity, 0);
  transform: translateX(-30%);
  animation: speedline 2.4s linear infinite;
  animation-delay: var(--streak-delay, 0s);
}
@media (prefers-reduced-motion: reduce) {
  .hero-step::after { animation: none; transform: none; opacity: var(--streak-opacity, 0); }
}
@keyframes speedline {
  0% { transform: translateX(-40%); }
  100% { transform: translateX(40%); }
}
.hero-step:hover { transform: translateY(-2px); }

.hero-step:nth-child(1) {
  --step-bg: linear-gradient(180deg, #FCF8EE 0%, #F6F0DE 100%);
  --streak-opacity: 0;
}
.hero-step:nth-child(2) {
  --step-bg: linear-gradient(180deg, #FFF1D2 0%, #FBDC9C 100%);
  --streak-opacity: 0;
}
.hero-step:nth-child(3) {
  --step-bg: linear-gradient(180deg, #F5E1A6 0%, #C9D88E 100%);
  --streak-opacity: 0;
}
.hero-step:nth-child(4) {
  --step-bg: linear-gradient(180deg, #B7E0AA 0%, #6AC07F 100%);
  --streak-opacity: 0;
}

[data-palette="dark"] .hero-step:nth-child(1) { --step-bg: linear-gradient(180deg, #1A1F2E 0%, #1F2638 100%); }
[data-palette="dark"] .hero-step:nth-child(2) { --step-bg: linear-gradient(180deg, #2A2118 0%, #3D2F1E 100%); }
[data-palette="dark"] .hero-step:nth-child(3) { --step-bg: linear-gradient(180deg, #3D2F1A 0%, #5C4520 100%); }
[data-palette="dark"] .hero-step:nth-child(4) { --step-bg: linear-gradient(180deg, #1A3B2A 0%, #2E7E4F 100%); }

.hero-step .hero-step-icon { width: 22px; height: 22px; margin-bottom: 10px; }
.hero-step:nth-child(1) .hero-step-icon { color: var(--text-dim); }
.hero-step:nth-child(2) .hero-step-icon { color: var(--safety-deep); }
.hero-step:nth-child(3) .hero-step-icon { color: var(--copper); }
.hero-step:nth-child(4) .hero-step-icon { color: var(--green); }
[data-palette="dark"] .hero-step:nth-child(1) .hero-step-icon { color: #B8C0D2; }
[data-palette="dark"] .hero-step:nth-child(2) .hero-step-icon { color: #F2C84A; }
[data-palette="dark"] .hero-step:nth-child(3) .hero-step-icon { color: #F2A668; }
[data-palette="dark"] .hero-step:nth-child(4) .hero-step-icon { color: #6FE19A; }

.hero-step-label {
  font-family: var(--mono); font-size: 10.5px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(20,30,55,.55);
}
[data-palette="dark"] .hero-step-label { color: rgba(244,239,227,.65); }
.hero-step-text {
  font-size: 14px; font-weight: 700;
  color: #1A1F2E; margin-top: 4px;
  line-height: 1.25;
  min-height: 2.5em;
}
[data-palette="dark"] .hero-step-text { color: #FAF6EC; }

@media (max-width: 560px) {
  .hero-timeline { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-step-text { min-height: 0; }
}

/* ── Greenfield "no website yet?" CTA ── */
.greenfield {
  margin-top: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--copper) 8%, var(--bg-soft));
  border: 1px dashed color-mix(in oklab, var(--copper) 36%, var(--border-strong));
  font-size: 13px; color: var(--text-soft);
  line-height: 1.4;
}
.greenfield svg { flex: none; color: var(--copper); width: 18px; height: 18px; margin-top: 1px; }
.greenfield strong { color: var(--text); font-weight: 700; }
.greenfield-link {
  color: var(--copper); font-weight: 700;
  border-bottom: 1px solid color-mix(in oklab, var(--copper) 35%, transparent);
  cursor: pointer; background: transparent; border-left: none; border-right: none; border-top: none; padding: 0;
}
.greenfield-link:hover { border-bottom-color: var(--copper); }

/* ── Pricing v2: bottom-aligned CTA + uniform feature column ── */
.price-grid { align-items: stretch; }
.price-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 14px;
  padding: 32px 28px 28px;
}
.price-card > .price-list { margin: 0; }
.price-card .price-cta-slot { display: flex; flex-direction: column; gap: 14px; }
.price-card .btn { width: 100%; }
.price-card .price-title {
  font-size: 20px; font-weight: 800; letter-spacing: -0.012em;
  line-height: 1.25;
  min-height: 2.5em;
  margin: 0;
}
.price-amt {
  min-height: 64px;
  align-items: baseline;
  margin: 4px 0 0;
}
.price-amt .num { font-size: 52px; }
.price-amt.enterprise .num { font-size: 40px; line-height: 1.05; }
@media (max-width: 820px) {
  .price-card .price-title { min-height: 0; }
  .price-amt { min-height: 0; }
}

/* ── Cards: bottom-edge alignment for grids ── */
.why-grid, .quote-grid, .showme-grid, .deliver-grid { align-items: stretch; }
.why-card, .quote-card, .deliver-card, .showme-card { height: 100%; }
.showme-card { justify-content: flex-start; }
.showme-body { display: flex; flex-direction: column; flex: 1; }
.showme-body .showme-link { margin-top: auto; }
.quote-card { min-height: 0; }
.quote-card .quote-src { margin-top: auto; }

/* ── Show-me preview: full graph card ── */
.showme-preview { height: 180px; padding: 0; }
.answer-graph-host { width: 100%; height: 100%; display: block; }
.answer-graph-host svg { display: block; width: 100%; height: 100%; }

/* ── AVS verdict: stack on small screens ── */
@media (max-width: 640px) {
  .avs-verdict { flex-direction: column; align-items: flex-start; gap: 14px; }
  .avs-verdict-num { font-size: 56px; }
  .avs-widget { padding: 22px; }
  .avs-row { flex-direction: column; gap: 10px; }
  .avs-row .btn-primary { width: 100%; height: 48px; }
}

/* ── FAQ keyboard nav + focus ── */
.faq-q { transition: background .12s; padding: 22px 12px 22px 4px; }
.faq-q:focus-visible {
  background: var(--bg-soft);
  outline: none;
  box-shadow: inset 3px 0 0 var(--safety);
  border-radius: 6px;
}
[data-palette="dark"] .faq-q:focus-visible { background: color-mix(in oklab, var(--safety) 10%, var(--bg-soft)); }
.faq-q:hover .plus::before, .faq-q:hover .plus::after { background: var(--copper); }

/* ── Trust strip: any US metro ── */
.trust-strip-inner { gap: 14px 24px; }
@media (max-width: 720px) {
  .trust-strip-inner { font-size: 10.5px; justify-content: flex-start; }
}

/* ── Mobile audit row ── */
@media (max-width: 540px) {
  .audit-row { grid-template-columns: 1fr; gap: 8px; }
  .audit-card { padding: 20px; }
  .audit-foot { font-size: 11.5px; }
}

/* ── Section heads stacked nicer on mobile ── */
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 26px; }
  .hero { padding: 48px 0 64px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-hook { margin-top: 22px; font-size: 18px; }
  .hero-timeline { margin-top: 26px; max-width: 100%; }
  .nav-inner { padding: 12px 16px; gap: 10px; }
  .nav-cta .btn { padding: 9px 13px; font-size: 13px; }
  .nav-status { display: none; }
  .wrap, .wrap-narrow { padding: 0 16px; }
  .cta-band { padding: 28px 22px; gap: 24px; }
  .cta-band-form { padding: 0; }
  .footer { padding: 48px 0 24px; }
  .footer-grid { gap: 24px; }
  .footer-legal { font-size: 11.5px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .price-card { padding: 26px 20px 22px; }
  .price-amt .num { font-size: 44px; }
  .roi-input-card, .roi-output-card { padding: 22px 20px; }
  .roi-big { font-size: 56px; }
  .deliver-card { padding: 20px; }
  .quote-card { padding: 22px; }
  .why-card { padding: 22px 22px 24px; }
}

/* ── AI engines pill row ── */
.engines-row {
  display: inline-flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dim);
}
.engines-row .e-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--text-soft);
}
.engines-row .e-chip .e-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ── "Add-ons" highlight banner inside pricing ── */
.price-list li.bonus {
  background: color-mix(in oklab, var(--copper) 10%, transparent);
  border-radius: 8px;
  padding: 8px 10px;
  margin: 0 -4px;
}
.price-list li.bonus svg { color: var(--copper); }
.price-list li.bonus .first-mo {
  display: inline-block; margin-left: 6px;
  font-family: var(--mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--copper); background: color-mix(in oklab, var(--copper) 18%, transparent);
  padding: 2px 6px; border-radius: 4px; vertical-align: middle;
}

/* ── Force-graph node label readability ── */
.answer-graph-host text { paint-order: stroke; stroke: var(--bg-card); stroke-width: 2.5px; stroke-linejoin: round; }
[data-palette="dark"] .answer-graph-host text { stroke: var(--bg-card); }

/* ── Today badge in hero hook ── */
.today-accent {
  display: inline-block;
  padding: 1px 8px;
  margin-left: 2px;
  background: linear-gradient(95deg, var(--copper) 0%, var(--safety-deep) 100%);
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: -.01em;
}
[data-palette="dark"] .today-accent { color: #FFF8DD; }

/* ════════════════════════════════════════════════════════════════════
   v3 OVERRIDES — pricing rigor, sign-in modal, CTA-band, deliverables
   ════════════════════════════════════════════════════════════════════ */

/* ── Today-is-that-day rect (full inline block style) ── */
.today-rect {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(95deg, var(--copper) 0%, var(--safety-deep) 100%);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
  font-size: 0.92em;
  vertical-align: baseline;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 6px 20px color-mix(in oklab, var(--copper) 26%, transparent);
}
[data-palette="dark"] .today-rect { color: #FFF8DD; }

/* ── Pricing: hard-row alignment so both cards share heads/feet ── */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  display: grid;
  grid-template-rows: 24px 64px 80px 1fr auto;
  gap: 16px;
  padding: 32px 28px 28px;
}
.price-card .price-name { align-self: end; margin: 0; height: 24px; line-height: 24px; }
.price-card .price-title {
  font-size: 19px; font-weight: 800; letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 0;
  display: flex; align-items: center;
  height: 64px;
}
.price-amt {
  margin: 0;
  height: 80px;
  display: flex; align-items: flex-end; gap: 6px;
}
.price-amt .num { font-size: 56px; line-height: .95; }
.price-amt.enterprise .num { font-size: 38px; line-height: 1.05; padding-bottom: 4px; }
.price-card .price-list { margin: 0; }
.price-card .price-cta-slot { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.price-card .btn { width: 100%; }
@media (max-width: 480px) {
  .price-card { grid-template-rows: auto auto auto auto auto; padding: 26px 20px 22px; }
  .price-card .price-title { height: auto; min-height: 0; }
  .price-amt { height: auto; }
  .price-amt .num { font-size: 44px; }
  .price-amt.enterprise .num { font-size: 32px; }
}

/* Compact feature lines + right-aligned first-month-free chip */
.price-list li {
  display: grid; grid-template-columns: 18px 1fr auto; gap: 10px;
  align-items: center;
  font-size: 13.5px; line-height: 1.35;
  padding: 4px 0;
  white-space: nowrap;
}
.price-list li > span:first-of-type { white-space: normal; overflow: hidden; text-overflow: ellipsis; }
.price-list li.bonus {
  background: color-mix(in oklab, var(--copper) 9%, transparent);
  border-radius: 8px;
  padding: 6px 10px;
  margin: 2px -4px;
}
.price-list li.bonus svg { color: var(--copper); }
.price-list li .first-mo {
  display: inline-block;
  font-family: var(--mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--copper);
  background: color-mix(in oklab, var(--copper) 20%, transparent);
  padding: 3px 7px; border-radius: 5px;
  white-space: nowrap;
  margin-left: 0;
}
.price-list li.no { color: var(--text-dim); }
.price-list li.no svg { color: var(--text-light); }
@media (max-width: 540px) {
  .price-list li { font-size: 13px; grid-template-columns: 18px 1fr; }
  .price-list li .first-mo { grid-column: 2; justify-self: start; margin-top: 4px; }
}

.price-foot { padding-top: 14px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-dim); line-height: 1.4; }
.price-foot strong { color: var(--copper); font-weight: 700; }
.price-finepoint {
  margin-top: 8px;
  font-style: italic; font-size: 12px; color: var(--text-dim);
}
.price-finepoint::before { content: '* '; }

/* ── Pricing subtitle: stripe + USDT on own lines ── */
.price-subnote { display: block; margin-top: 6px; color: var(--text-soft); }
.price-subnote strong { color: var(--text); font-weight: 700; }

/* ── Trust strip: 1 line, smaller, justified ── */
.trust-strip-inner {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  font-size: 11px;
  gap: 22px;
}
.trust-strip-inner::-webkit-scrollbar { display: none; }
@media (max-width: 820px) {
  .trust-strip-inner { font-size: 10.5px; gap: 16px; padding: 14px 16px; }
}

/* ── Nav: Sign in button + dark style ── */
.nav-cta { gap: 8px; }
.btn-signin {
  background: var(--text); color: var(--bg);
  border-color: var(--text);
  padding: 11px 18px;
  font-weight: 600;
  min-width: 108px;
}
.btn-signin:hover { background: color-mix(in oklab, var(--text) 86%, var(--bg)); }
[data-palette="dark"] .btn-signin { background: var(--bg-card); color: var(--text); border-color: var(--border-strong); }
[data-palette="dark"] .btn-signin:hover { background: var(--bg-soft); }
.nav-cta .btn-primary { min-width: 108px; padding: 11px 18px; }

/* ── Sign-in modal ── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,12,21,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: modal-in .22s ease-out;
}
.modal-card {
  width: 100%; max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px 24px;
  box-shadow: 0 30px 80px rgba(8,12,21,.35), 0 12px 30px rgba(8,12,21,.18);
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 8px;
  background: transparent; border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dim);
}
.modal-close:hover { background: var(--bg-soft); color: var(--text); }
.modal-h {
  font-size: 22px; font-weight: 800; letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.modal-sub { font-size: 14px; color: var(--text-soft); margin: 0 0 18px; }
.sso-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  font-weight: 600; font-size: 14.5px;
  margin-bottom: 8px;
  transition: background .12s;
}
.sso-btn:hover { background: var(--bg-soft); }
.sso-btn svg { width: 18px; height: 18px; flex: none; }
.sso-divider {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  color: var(--text-dim); letter-spacing: .12em; text-transform: uppercase;
  margin: 14px 0 10px;
}
.sso-divider::before, .sso-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.modal-foot {
  margin-top: 16px;
  font-size: 12px; color: var(--text-dim); text-align: center;
  line-height: 1.5;
}
.modal-foot a { color: var(--text-soft); border-bottom: 1px solid var(--border-strong); }
@keyframes modal-in { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }

/* ── CTA Band: constant height so toggle doesn't reflow ── */
.cta-band {
  min-height: 460px;
  align-items: stretch;
  color-scheme: dark; /* makes native <select> dropdown render in dark mode */
}
.cta-band select option { background: #1B2334; color: #F4EFE3; }
.cta-band-form {
  align-self: stretch;
  display: flex; flex-direction: column;
  gap: 12px;
  min-height: 340px;
}
.cta-band .audit-input, .cta-band .audit-select { font-size: 14.5px; }
.cta-band .audit-select { padding-right: 32px; text-overflow: ellipsis; }

/* CTA left col: anchor tabs at the bottom, equal width */
.cta-band > div:first-child { display: flex; flex-direction: column; justify-content: flex-start; }
.cta-band .cta-tabs {
  margin-top: auto;
  padding-top: 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  max-width: 360px;
}
.cta-band .cta-tabs .btn { width: 100%; padding: 12px 16px; }
.cta-band h2 {
  min-height: calc(2 * 1.1em);
  display: block;
}
.cta-band p:first-of-type {
  min-height: 4.5em; /* fits 3 lines of subtitle so toggle doesn't reflow */
}
@media (max-width: 820px) {
  .cta-band { min-height: 0; }
  .cta-band-form { min-height: 0; }
  .cta-band h2 { min-height: 0; }
  .cta-band p:first-of-type { min-height: 0; }
  .cta-band .cta-tabs { max-width: 100%; }
}

/* ── Showme card title: pre-wrap so embedded <br/> works ── */
.showme-h { white-space: normal; }

/* ── ShowMe preview card height ── */
.showme-preview { height: 200px; }

/* ── Answer graph: bigger label space, room for legend ── */
.answer-graph-host { background:
  radial-gradient(120% 80% at 50% 0%, color-mix(in oklab, var(--safety) 6%, transparent) 0%, transparent 60%),
  var(--bg-soft);
}
.answer-graph-host text { font-feature-settings: 'tnum'; letter-spacing: .02em; }
.answer-graph-host .ag-engine circle { filter: drop-shadow(0 1px 2px rgba(20,30,55,.18)); }
.answer-graph-host .ag-me circle { filter: drop-shadow(0 2px 6px color-mix(in oklab, var(--safety) 38%, transparent)); }

/* ── Section: AI helper agent banner before deliverables can use this ── */
.agent-banner {
  border-radius: 14px;
  background: linear-gradient(95deg, color-mix(in oklab, var(--copper) 10%, var(--bg-soft)), var(--bg-soft));
  border: 1px solid color-mix(in oklab, var(--copper) 25%, var(--border));
  padding: 16px 22px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.agent-banner .agent-icon {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: var(--copper); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.agent-banner .agent-icon svg { width: 22px; height: 22px; }
.agent-banner-text { font-size: 14.5px; line-height: 1.5; color: var(--text-soft); }
.agent-banner-text strong { color: var(--copper); font-weight: 800; }
@media (max-width: 540px) {
  .agent-banner { flex-direction: column; align-items: flex-start; }
}

/* ── Footer brand tagline with sunrise/sunset ── */
.footer-brand p .grad-sunrise,
.footer-brand p .grad-sunset { font-weight: 800; }
.footer-brand p { line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════════
   v4 OVERRIDES — mobile polish (hamburger, drawer, tap targets)
   ════════════════════════════════════════════════════════════════════ */

/* Hide hamburger on desktop, hide desktop nav buttons on mobile */
.hamburger-btn { display: none; }
@media (max-width: 720px) {
  .nav-signin-desktop,
  .nav-audit-desktop { display: none; }
  .hamburger-btn {
    display: inline-flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    transition: background .12s, border-color .12s;
  }
  .hamburger-btn span {
    display: block; width: 18px; height: 2px; border-radius: 1px;
    background: currentColor;
  }
  .hamburger-btn:hover { background: var(--bg-soft); border-color: var(--border-strong); }
  .hamburger-btn:focus-visible {
    outline: 2px solid var(--safety); outline-offset: 3px;
  }
}

/* ── Mobile drawer ────────────────────────────────────────── */
.mobile-drawer-backdrop {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(8, 12, 21, .45);
  backdrop-filter: blur(4px);
  animation: drawer-fade .18s ease-out;
}
.mobile-drawer {
  position: absolute; inset: 0;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 16px 20px 24px;
  animation: drawer-in .22s cubic-bezier(.22, 1, .36, 1);
  overflow-y: auto;
  max-height: 100vh;
}
.mobile-drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.mobile-drawer-close {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-drawer-close:hover { background: var(--bg-soft); color: var(--text); }
.mobile-drawer-links {
  display: flex; flex-direction: column;
  gap: 2px;
  margin-bottom: 22px;
}
.mobile-drawer-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 12px;
  font-size: 17px; font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  text-decoration: none;
  transition: background .12s;
}
.mobile-drawer-links a svg { color: var(--text-dim); transition: transform .15s, color .12s; }
.mobile-drawer-links a:hover,
.mobile-drawer-links a:focus-visible {
  background: var(--bg-soft);
  outline: none;
}
.mobile-drawer-links a:hover svg { color: var(--copper); transform: translateX(2px); }
.mobile-drawer-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.mobile-drawer-actions .btn { width: 100%; }
.mobile-drawer-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-dim);
}
.mobile-drawer-contact {
  color: var(--text-soft);
  font-size: 12.5px;
  border-bottom: 1px solid var(--border);
}

@keyframes drawer-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes drawer-in   { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

/* ── Tap targets ≥44px for FAQ, sliders, roi-knobs ── */
@media (max-width: 720px) {
  .faq-q { padding: 18px 12px 18px 8px; min-height: 56px; }
  .faq-q span:first-child { font-size: 16px; line-height: 1.35; padding-right: 12px; }
  .faq-q .plus { width: 26px; height: 26px; }
  .roi-slider { height: 8px; }
  .roi-slider::-webkit-slider-thumb { width: 26px; height: 26px; }
  .roi-slider::-moz-range-thumb { width: 26px; height: 26px; }
  .modal-card { padding: 22px 20px 18px; max-width: 92vw; }
  .modal-h { font-size: 19px; }
  .sso-btn { padding: 14px 16px; font-size: 15px; min-height: 50px; }
  .nav-inner { padding: 10px 16px; }
  .nav-brand span { font-size: 15px; }
  /* Hero audit card: tighter padding inside, larger touch zones */
  .audit-card { padding: 18px; border-radius: 16px; }
  .audit-input, .audit-select { padding: 13px 14px; font-size: 16px; /* prevents iOS zoom */ }
  .audit-submit { padding: 16px 18px; font-size: 16px; min-height: 52px; }
  .greenfield { padding: 12px; font-size: 12.5px; }
  /* Hero hook breathable on small viewports — full column width so each
     nowrap phrase wraps as a whole unit instead of overflowing. */
  .hero-hook { max-width: 100%; font-size: 17px; }
  .hero-hook .hook-line { margin-bottom: 2px; }
  /* Trust strip — keep single-line, scroll horizontally if too wide */
  .trust-strip-inner { padding: 14px 16px; font-size: 10.5px; }
}

@media (max-width: 480px) {
  /* Even tighter — iPhone SE / Mini */
  .hero { padding: 36px 0 48px; }
  .wordplay-static, .wordplay-rot, .wordplay-dot { font-size: clamp(44px, 13vw, 64px); }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-eyebrow .pill { font-size: 11px; padding: 5px 10px; }
  .hero-hook { font-size: 16.5px; margin-top: 18px; line-height: 1.4; }
  .hero-step { padding: 12px 12px 14px; border-radius: 12px; }
  .hero-step-icon { width: 18px; height: 18px; }
  .hero-step-label { font-size: 10px; }
  .hero-step-text { font-size: 13px; }
  .t-h2 { font-size: 24px !important; line-height: 1.15; }
  .section-eyebrow { font-size: 11px; }
  /* CTA band */
  .cta-band { padding: 24px 18px; border-radius: 18px; }
  .cta-band h2 { font-size: 26px !important; }
  /* Pricing card already shrinks at 480 — also kill the row heights */
  .price-card .price-title { font-size: 17px; min-height: 0; height: auto; }
  /* Pricing list — wrap nicely */
  .price-list li { white-space: normal; }
  /* Quotes / why cards tighten */
  .quote-text { font-size: 16px; }
  .why-num { font-size: clamp(48px, 14vw, 64px); }
  /* AVS verdict */
  .avs-verdict { padding: 18px; }
  .avs-verdict-num { font-size: 48px; }
  /* Deliverables */
  .deliver-card { padding: 18px; }
  /* AnswerGraph: keep proportions on narrow */
  .showme-preview { height: 200px; }
  /* Modal foot smaller */
  .modal-foot { font-size: 11.5px; }
}

@media (max-width: 360px) {
  .nav-brand span { display: none; } /* mark-only at <360px */
  .hero-grid { gap: 28px; }
  .audit-card { padding: 16px; }
  .audit-card .audit-eyebrow { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* Prevent iOS auto-zoom on form fields (font-size ≥ 16px) */
@media (max-width: 540px) {
  input, select, textarea { font-size: 16px !important; }
  .audit-label, .t-mono { font-size: 11px !important; }
}

/* Horizontal scroll guard — long mono strings shouldn't break layout */
.deliver-mono, .price-list li, .gap-engines span { overflow-wrap: anywhere; }

/* Footer columns slightly tighter on mobile */
@media (max-width: 720px) {
  .footer { padding: 40px 0 24px; }
  .footer h4 { font-size: 11px; margin-bottom: 10px; }
  .footer ul a { font-size: 14.5px; }
  .footer-grid { gap: 28px 20px; }
}

/* Sign-in modal full-page on very narrow */
@media (max-width: 380px) {
  .modal-backdrop { padding: 12px; }
  .modal-card { padding: 20px 16px 14px; border-radius: 14px; }
  .sso-btn { padding: 13px 14px; font-size: 14.5px; }
}
