/* ====================================================================
   Sellhand — dark premium + electric accent
   ==================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          hsl(240 10% 6%);
  --bg-raised:   hsl(240 8% 10%);
  --bg-raised-2: hsl(240 8% 14%);
  --bg-nav:      hsla(240, 10%, 6%, .82);
  --text:        hsl(0 0% 97%);
  --text-dim:    hsl(240 6% 78%);
  --muted:       hsl(240 5% 62%);
  --border:      hsl(240 8% 20%);
  --border-soft: hsl(240 8% 16%);

  --primary:      hsl(24 96% 55%);
  --primary-hi:   hsl(24 96% 62%);
  --primary-ink:  hsl(20 40% 10%);
  --reward:       hsl(84 90% 60%);
  --reward-ink:   hsl(90 60% 10%);
  --danger:       hsl(2 80% 62%);

  --radius-sm: .625rem;
  --radius:    1rem;
  --radius-lg: 1.5rem;
  --pill:      999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow:    0 8px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 70px rgba(0,0,0,.55);
  --glow:      0 0 0 1px hsla(24,96%,55%,.35), 0 0 40px hsla(24,96%,55%,.28);

  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: .18s;
  --dur: .5s;

  color-scheme: dark;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 500px at 15% -10%, hsla(255,60%,55%,.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, hsla(24,90%,50%,.10), transparent 60%);
  background-repeat: no-repeat;
  color: var(--text-dim);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif; color: var(--text); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.tnum { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--primary-hi);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Buttons ──
   One glowing/pulsing CTA per viewport rule (Hick's law): only .btn-glow
   carries the pulse; every other button is plain so attention has one
   obvious target at a time. */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 24px;
  border-radius: var(--radius);
  font-size: .92rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn:focus-visible { outline: 2px solid var(--reward); outline-offset: 2px; }

/* Body-sized CTA on a fill: dark ink on the orange fill for contrast, per
   the accessibility constraint (orange text-on-dark only passes for large
   headline text, never small button labels). */
.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 6px 20px hsla(24,96%,55%,.25);
}
.btn-primary:hover { background: var(--primary-hi); transform: translateY(-1px); box-shadow: 0 10px 28px hsla(24,96%,55%,.35); }

.btn-glow { animation: btn-pulse 2.6s ease-in-out infinite; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 6px 20px hsla(24,96%,55%,.25), 0 0 0 0 hsla(24,96%,55%,.4); }
  50% { box-shadow: 0 6px 24px hsla(24,96%,55%,.4), 0 0 0 10px hsla(24,96%,55%,0); }
}
@media (prefers-reduced-motion: reduce) { .btn-glow { animation: none; } }

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary-hi); }

.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; animation: none !important; }

/* ── Language switcher ── */
.lang-switch {
  display: inline-flex; gap: 2px;
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--pill); padding: 3px;
}
.lang-btn {
  border: none; background: transparent; cursor: pointer;
  padding: 5px 12px; border-radius: var(--pill);
  font-size: .74rem; font-weight: 700; letter-spacing: .02em;
  color: var(--muted); transition: all .15s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--bg-raised-2); color: var(--text); box-shadow: var(--shadow-sm); }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; flex-shrink: 0; }
.logo img { width: 36px; height: 36px; border-radius: 8px; }
.logo .name { color: var(--text); }
.logo .name em { color: var(--primary); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links > li > a { font-size: .87rem; font-weight: 500; color: var(--muted); transition: color .15s; }
.nav-links > li > a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-size: .87rem; font-weight: 500; color: var(--muted);
  padding: 7px 10px; margin: -7px -10px; border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.nav-dropdown-trigger svg { transition: transform .15s; }
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger { color: var(--text); background: var(--bg-raised); }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  display: none;
  position: absolute; top: calc(100% + 14px); left: 0;
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 22px; z-index: 150;
  grid-template-columns: max-content; gap: 22px;
  width: max-content; max-width: 90vw;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel { display: grid; }
.ndd-cols { display: flex; align-items: flex-start; gap: 18px; }
.ndd-col { display: flex; flex-direction: column; min-width: 210px; }
.ndd-group-label { font-size: .72rem; font-weight: 500; color: var(--muted); padding: 0 10px; margin-bottom: 8px; }
.nav-dropdown-item ~ .ndd-group-label { margin-top: 20px; }
.nav-dropdown-item { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: var(--radius-sm); transition: background .15s; }
.nav-dropdown-item:hover { background: var(--bg-raised-2); }
.ndi-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary-hi); display: flex; align-items: center; justify-content: center; }
.ndi-title { font-size: .85rem; font-weight: 600; color: var(--text); white-space: nowrap; }
.ndi-badge { font-size: .66rem; font-weight: 600; color: var(--muted); background: var(--bg-raised-2); border-radius: var(--pill); padding: 3px 9px; margin-left: 2px; white-space: nowrap; }
.nav-dropdown-item.is-phase2 .ndi-icon, .nav-dropdown-item.is-phase2 .ndi-title { opacity: .5; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 600; color: var(--text-dim); padding: 6px 4px; white-space: nowrap; }
.nav-phone:hover { color: var(--primary-hi); }

/* ══════════════════════════════ HERO / CALCULATOR ══════════════════════════════ */
.hero { padding: 60px 0 40px; text-align: center; position: relative; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.12;
  max-width: 780px; margin: 0 auto 16px; color: var(--text);
}
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: 0 auto 40px; }

.calc-card {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-raised), var(--bg-raised-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow-lg);
  text-align: left;
}
.calc-sliders { display: flex; flex-direction: column; gap: 22px; margin-bottom: 8px; }
.calc-row { display: flex; flex-direction: column; gap: 8px; }
.calc-row-top { display: flex; justify-content: space-between; align-items: baseline; font-size: .88rem; }
.calc-row-label { color: var(--text-dim); font-weight: 500; }
.calc-row-value { color: var(--text); font-weight: 700; font-size: .95rem; }

/* Track painted at 6px via background-clip so it stays visually thin, but
   the input's own hit-testable box is padded out to a 26px-tall touch
   target (WCAG 2.5.8 AA wants >=24px — the visible track alone measured
   only 6px, making the slider hard to drag on a phone). */
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; padding: 10px 0; box-sizing: content-box;
  background-clip: content-box;
  border-radius: var(--pill);
  background: var(--border-soft);
  outline: none; cursor: pointer;
  accent-color: var(--primary);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--bg-raised);
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
  cursor: pointer; transition: transform var(--dur-fast) var(--ease-out);
}
input[type="range"]::-webkit-slider-thumb:hover,
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--bg-raised);
  box-shadow: 0 2px 8px rgba(0,0,0,.4); cursor: pointer;
}
input[type="range"]:focus-visible { outline: 2px solid var(--reward); outline-offset: 4px; }

.calc-output {
  margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--border-soft);
  text-align: center;
}
.calc-output-figure {
  font-size: clamp(2.4rem, 7vw, 3.6rem); font-weight: 700; letter-spacing: -.02em;
  color: var(--reward); line-height: 1;
}
.calc-output-label { font-size: .9rem; color: var(--muted); margin-top: 8px; }
.calc-math {
  font-size: .76rem; color: var(--muted); margin-top: 16px; line-height: 1.6;
}
.calc-math a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 2px; }
.calc-cta-row { margin-top: 22px; display: flex; justify-content: center; }

/* count-up flash on value change */
.count-flash { animation: count-flash .5s var(--ease-out); }
@keyframes count-flash { 0% { text-shadow: 0 0 24px hsla(84,90%,60%,.7); } 100% { text-shadow: none; } }
@media (prefers-reduced-motion: reduce) { .count-flash { animation: none; } }

@media (max-width: 640px) {
  .calc-card { padding: 26px 18px; }
}

/* ══════════════════════════════ LOSS TICKER ══════════════════════════════ */
.ticker-strip { padding: 44px 0 0; text-align: center; }
.ticker-box {
  max-width: 640px; margin: 0 auto;
  border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 18px 22px; background: hsla(240,8%,10%,.5);
}
.ticker-label { font-size: .8rem; color: var(--muted); margin-bottom: 6px; }
.ticker-figure { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700; color: var(--text); }
.ticker-figure .cur { color: var(--muted); font-weight: 500; font-size: .7em; }
.ticker-disclaimer { font-size: .68rem; color: var(--muted); opacity: .7; margin-top: 6px; }

/* ══════════════════════════════ REPORT TOOL ══════════════════════════════ */
.report-section { padding: 80px 0; }
.report-top { text-align: center; max-width: 620px; margin: 0 auto 36px; }
.report-top h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 12px; }
.report-top p { color: var(--muted); }

.report-input-row {
  display: flex; justify-content: center; align-items: stretch;
  gap: 10px; max-width: 560px; margin: 0 auto 8px; flex-wrap: wrap;
}
.report-input {
  flex: 1 1 260px; min-width: 0;
  font-family: inherit; font-size: .95rem; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--pill);
  background: var(--bg-raised); color: var(--text);
}
.report-input::placeholder { color: var(--muted); }
.report-input:focus { outline: none; border-color: var(--primary); }

.report-card {
  max-width: 560px; margin: 28px auto 0;
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 28px; text-align: left;
}
.rc-top { display: flex; align-items: center; gap: 22px; margin-bottom: 18px; }
.rc-gauge { position: relative; width: 84px; height: 84px; flex-shrink: 0; }
.rc-gauge svg { transform: rotate(-90deg); }
.rc-gauge-track { fill: none; stroke: var(--border-soft); stroke-width: 8; }
.rc-gauge-value { fill: none; stroke: var(--reward); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 226; stroke-dashoffset: 226; transition: stroke-dashoffset 1.1s var(--ease-out); }
.rc-gauge-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--text); }
.rc-restaurant { display: flex; flex-direction: column; gap: 2px; }
.rc-name { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.rc-rating { font-size: .85rem; color: var(--muted); }
.rc-rank-row { font-size: .92rem; color: var(--text-dim); margin-bottom: 14px; }
.rc-rank-row .rc-rank { font-weight: 800; color: var(--primary-hi); font-size: 1.1rem; }
.rc-vs { font-size: .86rem; color: var(--muted); margin-bottom: 16px; }
.rc-vs strong { color: var(--text); }
.rc-notice {
  background: hsla(24,96%,55%,.08); border: 1px solid hsla(24,96%,55%,.25);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 14px;
}
.rc-notice-label { font-size: 1rem; font-weight: 800; color: var(--primary-hi); }
.rc-notice-sub { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.rc-issues { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0 0 18px; }
.rc-issues li { font-size: .86rem; color: var(--text-dim); display: flex; align-items: flex-start; gap: 8px; }
.rc-issues li::before { content: '!'; color: var(--primary); font-weight: 800; flex-shrink: 0; }

.form-status.error { color: var(--danger); font-size: .84rem; margin-top: 8px; text-align: center; }
.form-hidden { display: none !important; }

/* ══════════════════════════════ HOW IT WORKS (timeline) ══════════════════════════════ */
.how { padding: 80px 0; }
.how-top { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.how-top h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 12px; }
.how-top p { color: var(--muted); }

.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 28px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--border), transparent);
}
.tl-item { position: relative; padding-left: 76px; margin-bottom: 44px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: 20px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px hsla(24,96%,55%,.15);
}
.tl-time { font-size: .78rem; font-weight: 700; color: var(--primary-hi); letter-spacing: .04em; margin-bottom: 6px; }
.tl-item h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.tl-item p { color: var(--muted); font-size: .92rem; max-width: 520px; }
.how-cta-row { display: flex; justify-content: center; margin-top: 48px; }

/* ══════════════════════════════ FEATURES ══════════════════════════════ */
.features { padding: 80px 0; }
.features-top { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.features-top h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 12px; }
.features-top p { color: var(--muted); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-raised); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 20px;
}
.feat-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: hsla(24,96%,55%,.12); color: var(--primary-hi);
  display: flex; align-items: center; justify-content: center;
}
.feat-item.is-phase2 { opacity: .55; }
.feat-copy h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feat-copy p { font-size: .84rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════ PRICING ══════════════════════════════ */
.pricing { padding: 80px 0; }
.pricing-top { text-align: center; max-width: 620px; margin: 0 auto 12px; }
.pricing-top h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 12px; }
.pricing-top p { color: var(--muted); }
.pricing-anchor {
  max-width: 560px; margin: 20px auto 0; text-align: center;
  font-size: .86rem; color: var(--reward); background: hsla(84,90%,60%,.08);
  border: 1px solid hsla(84,90%,60%,.25); border-radius: var(--radius-sm); padding: 12px 18px;
}
.plans-note { text-align: center; font-size: .82rem; color: var(--muted); margin: 28px 0 20px; }
.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 720px; margin: 0 auto; }
.plan-card {
  background: var(--bg-raised); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 30px;
}
.plan-name { font-size: .84rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--primary-hi); margin-bottom: 10px; }
.plan-desc { font-size: .88rem; color: var(--muted); margin-bottom: 20px; min-height: 42px; }
.plan-price { font-size: 2.1rem; font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.plan-per { font-size: .95rem; font-weight: 500; color: var(--muted); }
.plan-fine { font-size: .8rem; color: var(--muted); margin-top: 6px; }
.pricing-cta-row { display: flex; justify-content: center; margin: 32px 0 56px; }

.included { max-width: 780px; margin: 0 auto; }
.included h3 { text-align: center; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.inc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 32px; }
.inc-row.is-phase2 { opacity: .6; }
.inc-name { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--text); flex-wrap: wrap; }
.inc-check { color: var(--reward); font-weight: 800; }
.inc-desc { font-size: .8rem; color: var(--muted); margin-top: 3px; margin-left: 22px; }
.phase2-inline { font-size: .66rem; font-weight: 700; color: var(--muted); background: var(--bg-raised-2); border-radius: var(--pill); padding: 2px 8px; }

.assure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 56px auto 0; }
.assure-card { background: var(--bg-raised); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 22px; }
.assure-title { font-size: .92rem; font-weight: 700; color: var(--text); margin: 8px 0 4px; }
.assure-desc { font-size: .8rem; color: var(--muted); }

@media (max-width: 700px) {
  .plans-grid, .inc-list, .assure-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════ FOUNDER NOTE ══════════════════════════════ */
.founder { padding: 80px 0; }
.founder-inner {
  display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start;
  max-width: 980px; margin: 0 auto;
}
.founder-inner--no-photo { grid-template-columns: 1fr; max-width: 720px; text-align: center; }
.founder-inner--no-photo .founder-copy p { margin-left: auto; margin-right: auto; }
.founder-photo-wrap { text-align: center; position: sticky; top: 100px; }
.founder-photo {
  width: 180px; height: 180px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px;
  border: 2px solid var(--border); background: var(--bg-raised-2);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-name { font-size: 1rem; font-weight: 700; color: var(--text); }
.founder-role { font-size: .82rem; color: var(--muted); }
.founder-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: 20px; }
.founder-copy p { color: var(--text-dim); margin-bottom: 16px; max-width: 620px; }
.founder-guarantee {
  display: flex; align-items: center; gap: 14px; margin-top: 24px; margin-bottom: 24px;
  background: hsla(84,90%,60%,.08); border: 1px solid hsla(84,90%,60%,.25);
  border-radius: var(--radius); padding: 16px 20px;
}
.founder-guarantee-icon { color: var(--reward); flex-shrink: 0; }
.founder-guarantee-title { font-size: .9rem; font-weight: 700; color: var(--text); }
.founder-guarantee-desc { font-size: .8rem; color: var(--muted); margin-top: 2px; }

@media (max-width: 800px) {
  .founder-inner { grid-template-columns: 1fr; text-align: center; }
  .founder-photo-wrap { position: static; }
  .founder-copy p { margin-left: auto; margin-right: auto; }
}

/* ══════════════════════════════ FAQ ══════════════════════════════ */
.faq { padding: 80px 0; }
.faq-top { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.faq-top h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); font-weight: 700; letter-spacing: -.03em; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-raised); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 28px 18px 0;
  font-size: .96rem; font-weight: 600; color: var(--text);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 16px;
  font-size: 1.3rem; color: var(--primary-hi); font-weight: 400;
  transition: transform var(--dur-fast);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 20px; color: var(--muted); font-size: .88rem; line-height: 1.6; max-width: 640px; }

/* ══════════════════════════════ DEMO FORM ══════════════════════════════ */
.demo-section { padding: 80px 0 100px; }
.demo-top { text-align: center; max-width: 560px; margin: 0 auto 20px; }
.demo-top h2 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: 12px; }
.demo-top p { color: var(--muted); }

.demo-progress { display: flex; justify-content: center; align-items: center; gap: 8px; max-width: 420px; margin: 0 auto 36px; }
.dp-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.dp-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-raised); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .74rem; font-weight: 700; color: var(--muted); transition: all var(--dur-fast); }
.dp-step.active .dp-dot { border-color: var(--primary); color: var(--primary-hi); background: hsla(24,96%,55%,.12); }
.dp-step.done .dp-dot { background: var(--reward); border-color: var(--reward); color: var(--reward-ink); }
.dp-label { font-size: .68rem; color: var(--muted); text-align: center; }
.dp-line { flex: 0 0 40px; height: 1.5px; background: var(--border); margin-top: -22px; }

.demo-form {
  max-width: 640px; margin: 0 auto;
  background: var(--bg-raised); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow);
}
.form-honeypot { position: absolute; left: -9999px; top: -9999px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .8rem; font-weight: 600; color: var(--text-dim); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: .92rem; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); }
.form-submit-row { display: flex; justify-content: center; margin-top: 10px; }

.form-success {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--bg-raised); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 48px 32px; box-shadow: var(--shadow);
}
.success-check {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 20px;
  background: hsla(84,90%,60%,.12); border: 2px solid var(--reward);
  display: flex; align-items: center; justify-content: center;
  animation: success-spring .6s var(--ease-out);
}
.success-check svg { stroke: var(--reward); }
@keyframes success-spring { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .success-check { animation: none; } }
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-success p { color: var(--muted); }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .demo-form { padding: 24px 18px; }
  .dp-line { flex-basis: 24px; }
}

/* ══════════════════════════════ FOOTER ══════════════════════════════ */
footer { border-top: 1px solid var(--border-soft); padding: 40px 0; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.foot-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--text); }
.foot-logo img { width: 28px; height: 28px; border-radius: 6px; }
.foot-logo span em { color: var(--primary); font-style: normal; }
.foot-links { display: flex; align-items: center; gap: 22px; list-style: none; flex-wrap: wrap; }
.foot-links a { font-size: .84rem; color: var(--muted); transition: color .15s; }
.foot-links a:hover { color: var(--text); }
.foot-copy { font-size: .78rem; color: var(--muted); width: 100%; text-align: center; margin-top: 12px; }

/* ══════════════════════════════ RESPONSIVE / MOBILE NAV ══════════════════════════════ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-phone-text { display: none; }
}

@media (max-width: 640px) {
  /* Mobile CTA lives in .mobile-cta-bar instead — keeps the nav from
     overflowing on narrow screens (no horizontal scroll anywhere). */
  .nav-phone, .nav-actions .btn-ghost, .nav-actions .btn-primary { display: none; }
  .nav-inner { height: 56px; }
  .logo { font-size: 1rem; }
  .logo img { width: 30px; height: 30px; }
}

@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; }
}

/* Sticky mobile CTA — accessible one-tap path to the demo form on small
   screens where the nav CTA scrolls out of view. */
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: hsla(240,10%,6%,.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-soft);
}
.mobile-cta-bar .btn { width: 100%; }
@media (max-width: 640px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
}
