/* ============================================================
   Kioto.ai · AI video marketing for real estate
   Forked from the WeApply4U v11 conversion skeleton
   Deep navy identity · one warm amber accent
   Space Grotesk display · Inter body · JetBrains Mono render cards
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg-dark:    #0a1322;
  --bg-dark-2:  #0e1a2e;
  --panel-dark: #13223a;
  --line-dark:  rgba(255, 255, 255, 0.09);
  --text-dark:  #eef2f7;      /* text on dark */
  --dim-dark:   #97a3b6;      /* muted on dark */

  --white:      #ffffff;
  --bg-light:   #f5f6f8;
  --ink:        #0d1421;
  --ink-soft:   #3b4353;
  --muted:      #687284;
  --line:       #e4e7ec;

  --accent:     #ffb224;      /* warm amber */
  --accent-2:   #f59e0b;
  --accent-ink: #241902;      /* text on accent */
  --good:       #2fbf71;
  --bad:        #e5484d;

  --display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  --r-card: 14px;
  --r-btn:  10px;
  --maxw:   1160px;
  --gutter: 24px;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--accent-ink); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }

/* ==================== PRODUCT DEMO ==================== */
.demo-figure {
  margin: 40px auto 0;
  max-width: 860px;
}
.demo-figure video,
.demo-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--r-card);
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.demo-figure figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--dim-dark);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--r-btn);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 17px 26px;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 24px rgba(255, 178, 36, 0.22);
}
.btn-accent:hover { background: var(--accent-2); }
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.6); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: #1a2942; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-big { padding: 20px 32px; font-size: 17.5px; }

.cta-note {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--dim-dark);
  margin-top: 12px;
}
.cta-note.on-light { color: var(--muted); }

/* ==================== TRUST TOPBAR ==================== */
.topbar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}
.topbar-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 26px;
  padding: 9px var(--gutter);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dim-dark);
}
.topbar-track b { color: var(--accent); font-weight: 500; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar-item::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ==================== NAV ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 14, 19, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line-dark); }
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 2px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.brand em { color: var(--accent); font-style: normal; }
.brand-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim-dark);
  margin-left: 10px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
}
.nav-links a { text-decoration: none; color: var(--dim-dark); transition: color .15s; }
.nav-links a:hover { color: var(--text-dark); }
.nav-cta {
  background: var(--accent);
  color: var(--accent-ink) !important;
  padding: 11px 18px;
  border-radius: var(--r-btn);
  font-weight: 700;
}
.nav-cta:hover { background: var(--accent-2); }
.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute; left: 8px;
  width: 24px; height: 2px;
  background: var(--text-dark);
  transition: transform .2s;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after  { top: 7px;  left: 0; }

/* ==================== HERO ==================== */
.hero {
  background: var(--bg-dark);
  color: var(--text-dark);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -180px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255, 178, 36, 0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 178, 36, 0.3);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero-h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}
.hero-h1 .hl { color: var(--accent); }
.hero-sub {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--dim-dark);
  max-width: 540px;
  margin: 0 0 34px;
}
.hero-sub b { color: var(--text-dark); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-micro {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--dim-dark);
}
.hero-micro span { display: inline-flex; align-items: center; gap: 7px; }
.hero-micro span::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* -------- Hero receipt stack -------- */
.receipt-stack { position: relative; display: grid; gap: 16px; }
.receipt {
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 16px 18px 14px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  border-left: 3px solid var(--accent-2);
}
.receipt-stack .receipt:nth-child(1) { transform: rotate(-1.2deg); }
.receipt-stack .receipt:nth-child(2) { transform: rotate(0.8deg); }
.receipt-stack .receipt:nth-child(3) { transform: rotate(-0.6deg); }
.receipt-top {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 8px; margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.receipt-stamp {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--good);
  border: 1.5px solid var(--good);
  border-radius: 4px;
  padding: 2px 7px;
}
.receipt-role { font-family: var(--body); font-weight: 700; font-size: 14px; letter-spacing: -0.01em; }
.receipt-line { color: var(--ink-soft); }
.receipt-line b { color: var(--ink); font-weight: 600; }
.receipt-foot {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  display: flex; gap: 14px;
  font-size: 10.5px;
  color: var(--muted);
}
.receipt-foot i { font-style: normal; color: var(--good); }
.receipt-caption {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--dim-dark);
  text-align: center;
  margin-top: 4px;
}

/* ==================== SECTION SCAFFOLD ==================== */
.sec { padding: 88px 0; }
.sec-dark { background: var(--bg-dark); color: var(--text-dark); }
.sec-light { background: var(--bg-light); }
.sec-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.sec-dark .sec-label { color: var(--accent); }
.sec-h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  max-width: 720px;
}
.sec-sub {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 44px;
}
.sec-dark .sec-sub { color: var(--dim-dark); }

/* ==================== AGITATE / BIG NUMBERS ==================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px 26px 26px;
}
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 12px;
}
.stat-num sup { font-size: 0.45em; top: -0.85em; }
.stat-title { font-weight: 700; font-size: 16.5px; margin-bottom: 6px; letter-spacing: -0.01em; }
.stat-body { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.stat-src {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.agitate-kicker {
  margin-top: 40px;
  padding: 22px 26px;
  border-left: 3px solid var(--accent-2);
  background: var(--white);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
}
.agitate-kicker b { color: var(--ink); }

/* ==================== HOW IT WORKS ==================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 26px 26px;
  position: relative;
}
.step-num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent-ink);
  background: var(--accent);
  display: inline-block;
  border-radius: 6px;
  padding: 4px 9px;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.step p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.step-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ==================== PROOF-OF-WORK (dark receipts) ==================== */
.pow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 26px;
}
.sec-dark .receipt { box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5); transform: none; }
.pow-note {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--dim-dark);
}
.pow-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.pow-point {
  border: 1px solid var(--line-dark);
  border-radius: var(--r-card);
  padding: 20px 22px;
  background: var(--bg-dark-2);
}
.pow-point h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--text-dark);
}
.pow-point h4::before { content: "✓ "; color: var(--accent); }
.pow-point p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--dim-dark); }

/* ==================== COMPARISON TABLE ==================== */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 780px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 15px 18px;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare thead th {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  background: var(--bg-light);
}
.compare tbody th {
  font-weight: 600;
  color: var(--ink);
  font-size: 13.5px;
  width: 22%;
  background: var(--bg-light);
}
.compare td { color: var(--ink-soft); }
.compare .col-us {
  background: rgba(255, 178, 36, 0.1);
  color: var(--ink);
  font-weight: 600;
}
.compare thead .col-us {
  background: var(--ink);
  color: var(--accent);
}
.compare .yes { color: var(--good); font-weight: 700; }
.compare .no  { color: var(--bad); font-weight: 700; }

/* ==================== PRICING ==================== */
.pricing-head { text-align: center; }
.pricing-head .sec-h2, .pricing-head .sec-sub { margin-left: auto; margin-right: auto; }

/* -------- Billing interval toggle -------- */
.bill-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
}
.bill-opt { color: var(--muted); cursor: pointer; transition: color .15s; }
.bill-opt.on { color: var(--ink); }
.bill-opt .save {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--good);
  background: rgba(47, 191, 113, 0.12);
  border-radius: 999px;
  padding: 3px 9px;
  margin-left: 6px;
}
.bill-switch {
  position: relative;
  width: 50px; height: 28px;
  border-radius: 999px;
  background: #cfd4dd;
  border: 0;
  transition: background .2s;
  flex-shrink: 0;
}
.bill-switch[aria-checked="true"] { background: var(--accent-2); }
.bill-switch .knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform .2s;
}
.bill-switch[aria-checked="true"] .knob { transform: translateX(22px); }

/* -------- Checkout status notes -------- */
.checkout-note {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 14.5px;
  border-radius: var(--r-card);
  padding: 14px 20px;
  display: none;
}
.checkout-note.show { display: block; }
.checkout-note.cancel {
  color: #9a5b00;
  background: #fff5e3;
  border: 1px solid #ffdda3;
}
.checkout-note.error {
  color: var(--bad);
  background: rgba(229, 72, 77, 0.07);
  border: 1px solid rgba(229, 72, 77, 0.3);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--bg-dark);
  color: var(--text-dark);
  border-color: var(--bg-dark);
  box-shadow: 0 24px 60px rgba(11, 14, 19, 0.28);
}
.price-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}
.price-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.price-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 0;
}
.price-amount {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount .price-period {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-left: 8px;
}
.price-card.featured .price-amount .price-period { color: var(--dim-dark); }
.price-final {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 20px;
}
.price-card.featured .price-final { color: var(--dim-dark); }

.price-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 18px 0 0;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  flex-grow: 1;
}
.price-card.featured .price-list { border-top-color: var(--line-dark); color: var(--dim-dark); }
.price-list li { display: flex; gap: 10px; line-height: 1.5; }
.price-list li::before { content: "✓"; color: var(--accent-2); font-weight: 700; flex-shrink: 0; }
.price-card.featured .price-list li::before { color: var(--accent); }
.price-list li b { color: var(--ink); font-weight: 600; }
.price-card.featured .price-list li b { color: var(--text-dark); }

.price-cta {
  width: 100%;
  border: 0;
  border-radius: var(--r-btn);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 20px;
  background: var(--ink);
  color: var(--white);
  transition: background .15s, transform .12s;
}
.price-cta:hover { background: #1a2942; }
.price-cta:active { transform: translateY(1px); }
.price-card.featured .price-cta { background: var(--accent); color: var(--accent-ink); }
.price-card.featured .price-cta:hover { background: var(--accent-2); }
.price-cta:disabled { opacity: 0.6; cursor: wait; }

.pricing-foot {
  margin-top: 34px;
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-foot b { color: var(--ink); }
.pricing-foot .pf-mono {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
}

/* ==================== FOUNDER LETTER ==================== */
.founder-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 44px 46px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(14, 17, 22, 0.05);
}
.founder-card p { font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 18px; }
.founder-card p b { color: var(--ink); }
.founder-sig {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.founder-sig .fs-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.founder-sig .fs-role {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 3px;
}

/* ==================== FAQ ==================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none; border: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-q::after {
  content: "+";
  font-family: var(--mono);
  font-size: 20px;
  color: var(--muted);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--ink); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-item.open .faq-a { max-height: 620px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-a-inner b { color: var(--ink); }

/* ==================== FINAL CTA ==================== */
.final-cta { text-align: center; padding: 96px 0; }
.final-cta .sec-h2 { max-width: 680px; margin-left: auto; margin-right: auto; }
.final-cta .sec-sub { margin-left: auto; margin-right: auto; margin-bottom: 36px; }
.final-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--bg-dark);
  color: var(--dim-dark);
  border-top: 1px solid var(--line-dark);
  padding: 56px 0 90px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .brand { font-size: 17px; margin-bottom: 12px; display: inline-flex; }
.footer-blurb { max-width: 340px; line-height: 1.65; }
.footer h5 {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { text-decoration: none; color: var(--dim-dark); transition: color .15s; }
.footer a:hover { color: var(--text-dark); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}


/* ==================== STICKY MOBILE CTA ==================== */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(11, 14, 19, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-cta .btn { flex: 1; padding: 14px 12px; font-size: 14.5px; }

/* ==================== REVEAL ==================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .receipt-stack { max-width: 480px; }
  .stat-grid, .steps, .pow-grid, .pow-points { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .price-card.featured { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--line-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 14px var(--gutter) 20px;
    gap: 4px;
  }
  .nav-links a { padding: 12px 4px; color: var(--text-dark); }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-mobile-open .nav-links { display: flex; }
  .nav-toggle { display: block; }
  .nav-mobile-open .nav-toggle span { background: transparent; }
  .nav-mobile-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
  .nav-mobile-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 640px) {
  .sec { padding: 64px 0; }
  .hero { padding: 52px 0 64px; }
  .stat-grid, .steps, .pow-grid, .pow-points { grid-template-columns: 1fr; }
  .founder-card { padding: 30px 24px; }
  .footer { padding-bottom: 120px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta { display: flex; }
  .hero-ctas .btn, .final-ctas .btn { width: 100%; }
  .topbar-track { justify-content: flex-start; }
}
