
/*
  COLOR STRATEGY — ThetaSmith Paper Edition (day)
  ─────────────────────────────────────
  Background:  #FBF0E3  — almost white, 1% indigo tint (less harsh than pure white)
  Surfaces:    #F5E8D3  — very light indigo-gray for cards / alternating sections
  Brand:       #8C5A2B  — same electric indigo as v4 (works equally well on light)
  CTA button:  #8C5A2B bg, white text  — primary action on light bg
  Text:        #29241E  — near-black, warm-neutral (not pure #000)
  Data:        #166534 (gain) / #B91C1C (loss) — slightly darker for light-bg readability
  App window:  stays DARK — intentional contrast, shows the product as a tool
  Final CTA:   dark section island at bottom — visual break, anchors the page
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #FBF0E3;
  color: #29241E;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  --indigo:     #8C5A2B;
  --indigo-dim: #754A22;
  --indigo-lt:  #D9A441;
  --indigo-sub: rgba(140,90,43,0.08);
  --indigo-bd:  rgba(140,90,43,0.25);
  --indigo-glow:rgba(175,120,88,0.16);

  --gain:    #166534;
  --loss:    #B91C1C;
  --warn:    #B45309;
  --gain-bg: rgba(22,101,52,0.08);
  --loss-bg: rgba(185,28,28,0.08);

  --bg:   #FBF0E3;
  --s1:   #F5E8D3;
  --s2:   #EEDDC2;
  --s3:   #E5D2B8;

  --dark:    #1B1815;
  --dark-s:  #201C17;
  --dark-r:  #262019;
  --dark-br: rgba(233,223,209,0.10);
  --dark-br2:rgba(233,223,209,0.16);

  --br:   rgba(146,111,55,0.20);
  --br2:  rgba(146,111,55,0.34);

  --t1: #29241E;
  --t2: #5C5348;
  --t3: #6E6355;

  --shadow-sm: 0 1px 3px rgba(90,66,35,0.06), 0 1px 2px rgba(90,66,35,0.04);
  --shadow-md: 0 4px 12px rgba(90,66,35,0.09), 0 2px 4px rgba(90,66,35,0.04);
  --shadow-lg: 0 16px 48px rgba(90,66,35,0.11), 0 4px 12px rgba(90,66,35,0.06);

  --mono: 'JetBrains Mono', monospace;
  --max:  1120px;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.mono  { font-family: var(--mono); }
.gain  { color: var(--gain); }
.loss  { color: var(--loss); }

/* ════════════════════════════
   NAV — sticky, white
════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,240,227,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--br);
  transition: box-shadow 0.2s;
}
nav.raised { box-shadow: 0 1px 12px rgba(146,111,55,0.20); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  height: 60px; display: flex; align-items: center;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; font-size: 17px; font-weight: 700;
  color: var(--t1); letter-spacing: -0.025em; margin-right: 40px;
}
.nav-mark {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; list-style: none; flex: 1; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--t2);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: var(--t1); }
.nav-right { display: flex; gap: 8px; align-items: center; }
.nav-login {
  font-size: 13px; font-weight: 500; color: var(--t2);
  text-decoration: none; padding: 7px 12px; transition: color 0.15s;
}
.nav-login:hover { color: var(--t1); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none; border: none;
  transition: all 0.15s ease; white-space: nowrap;
}
.btn-indigo {
  background: var(--indigo); color: #FFF8ED;
  box-shadow: 0 1px 2px rgba(140,90,43,0.3);
}
.btn-indigo:hover {
  background: var(--indigo-dim);
  box-shadow: 0 4px 16px rgba(140,90,43,0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--t2);
  border: 1px solid var(--br2);
}
.btn-outline:hover { background: var(--s1); color: var(--t1); border-color: var(--br2); }
.btn-dark {
  background: var(--dark); color: #FFF8ED;
}
.btn-dark:hover {
  background: #262019;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
.btn-white {
  background: #FFF8ED; color: var(--dark);
  box-shadow: 0 1px 3px rgba(146,111,55,0.34);
}
.btn-white:hover { background: #F5E8D3; transform: translateY(-1px); }
.btn-lg { padding: 13px 26px; font-size: 15px; border-radius: 10px; }

/* ── Section labels ── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 14px;
}
h2.sec-h {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; color: var(--t1); margin-bottom: 16px;
}
p.sec-sub {
  font-size: 17px; color: var(--t2);
  line-height: 1.7; max-width: 540px;
}

/* ── Indigo pill ── */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500;
  padding: 5px 13px; border-radius: 999px;
  border: 1px solid var(--indigo-bd);
  background: var(--indigo-sub); color: var(--indigo);
  letter-spacing: 0.01em;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); flex-shrink: 0; }
.pill .arr { color: var(--indigo-lt); font-size: 11px; }

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
  background: #FBF0E3;
}
/* Very subtle indigo radial glow at top-center */
.hero::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(175,120,88,0.14) 0%, transparent 65%);
  pointer-events: none;
}
/* Blueprint grid, very faint */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(140,90,43,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,90,43,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  pointer-events: none;
}

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

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

.hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800; line-height: 1.04;
  letter-spacing: -0.04em; color: var(--t1);
  max-width: 820px; margin: 0 auto 22px;
}
.hero h1 .hl { color: var(--indigo); }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--t2);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.65;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 16px;
}
.hero-trust { font-size: 12px; color: var(--t3); margin-bottom: 20px; }
.hero-trust b { color: var(--t2); font-weight: 500; }

/* ════════════════════════════
   NUMBERS BAND
════════════════════════════ */
.numbers-band {
  padding: 72px 0; background: #FFF8ED;
  border-bottom: 1px solid var(--br);
}
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.num-val {
  font-family: var(--mono); font-size: 44px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; color: var(--t1);
}
.num-label { font-size: 14px; color: var(--t2); }
.num-sub   { font-size: 12px; color: var(--t3); margin-top: 4px; }

/* ════════════════════════════
   FEATURES — BENTO
════════════════════════════ */
section.features { padding: 120px 0; background: var(--s1); }

.bento {
  display: grid; grid-template-columns: repeat(12,1fr);
  grid-auto-rows: auto; gap: 12px; margin-top: 64px;
}
.bc {
  position: relative; border-radius: 12px;
  border: 1px solid var(--br); background: #FFF8ED;
  padding: 28px; overflow: visible;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.bc:hover { box-shadow: var(--shadow-md); border-color: var(--indigo-bd); }

.bc.c4 { grid-column: span 4; }
.bc.c5 { grid-column: span 5; }
.bc.c6 { grid-column: span 6; }
.bc.c7 { grid-column: span 7; }
.bc.r2 { grid-row: span 2; }

.bc-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: var(--indigo-sub); border: 1px solid var(--indigo-bd);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--indigo);
}
.bc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.bc h3 { font-size: 15px; font-weight: 700; margin-bottom: 0; color: var(--t1); line-height: 1.3; }
.bc p  { font-size: 13px; color: var(--t2); line-height: 1.6; }
.bc-list { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.bc-list li { font-size: 12.5px; color: var(--t2); padding-left: 16px; position: relative; line-height: 1.4; }
.bc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--indigo); font-weight: 700; font-size: 11px; }

.bc-main {
  background: linear-gradient(140deg, #FBF2E2 0%, #F6E8CF 100%);
  border-color: var(--indigo-bd);
  overflow: hidden;
}
.bc-main .bc-icon { background: var(--indigo-sub); }
.bc-mini-chart { position:absolute; bottom:0; right:0; width:50%; height:65%; opacity:0.4; }

.bc-mini-stats { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-top:10px; }
.bc-ms { background: rgba(140,90,43,0.06); border-radius:6px; padding:8px; }
.bc-ms .v { font-family:var(--mono); font-size:16px; font-weight:700; }
.bc-ms .l { font-size:9px; color:var(--t3); text-transform:uppercase; margin-top:2px; }

.mini-t { width:100%; border-collapse:collapse; margin-top:10px; }
.mini-t th { font-size:9px; text-transform:uppercase; color:var(--t3); padding:4px 6px; border-bottom:1px solid var(--br); letter-spacing:.06em; }
.mini-t td { font-size:11px; padding:5px 6px; font-family:var(--mono); color:var(--t2); border-bottom:1px solid rgba(146,111,55,0.08); }
.mini-t td:first-child { color:var(--t1); font-family:inherit; font-size:11px; font-weight:500; }

.pro-b { position:absolute; top:18px; right:18px; font-size:10px; font-weight:700; padding:3px 9px; border-radius:999px; background:var(--indigo-sub); color:var(--indigo); border:1px solid var(--indigo-bd); letter-spacing:.06em; text-transform:uppercase; }

/* ════════════════════════════
   HOW IT WORKS
════════════════════════════ */
section.how { padding: 120px 0; background: #FFF8ED; }

.how-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; margin-top: 64px;
}
.how-step {
  background: var(--s1); border: 1px solid var(--br);
  border-radius: 12px; padding: 36px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.how-step:hover { border-color: var(--indigo-bd); box-shadow: var(--shadow-md); }

.how-n {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.how-n-badge {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--indigo-sub); border: 1px solid var(--indigo-bd);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--indigo); flex-shrink: 0;
}
.how-n-label { font-size: 11px; font-weight: 600; color: var(--t3); letter-spacing: 0.06em; text-transform: uppercase; }
.how-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--t1); }
.how-step p  { font-size: 14px; color: var(--t2); line-height: 1.75; }
.how-detail  { margin-top: 20px; display:flex; flex-direction:column; gap:7px; }
.how-detail span { font-size:12px; color:var(--t3); display:flex; align-items:baseline; gap:7px; padding-left:14px; position:relative; }
.how-detail span::before { content:'✓'; position:absolute; left:0; color:var(--indigo); font-weight:700; font-size:10px; }
.how-detail span::before { content:'→'; color:var(--indigo); }

/* ════════════════════════════
   PRICING
════════════════════════════ */
/* ════════════════════════════
   FOUNDER
════════════════════════════ */
section.founder { padding: 100px 0; background: #FFF8ED; border-top: 1px solid var(--br); border-bottom: 1px solid var(--br); }
.founder-inner { max-width: 720px; margin: 0 auto; }
.founder-quote { position: relative; }
.founder-mark { font-size: 80px; line-height: 1; color: var(--indigo); opacity: 0.15; font-family: Georgia, serif; position: absolute; top: -20px; left: -20px; }
.founder-quote p { font-size: 17px; line-height: 1.8; color: var(--t1); margin-bottom: 20px; padding-left: 16px; border-left: 3px solid var(--indigo); }
.founder-sig { display: flex; align-items: center; gap: 16px; margin-top: 36px; padding-left: 16px; }
.founder-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--indigo); color: #FFF8ED; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; flex-shrink: 0; }
.founder-name { font-size: 14px; font-weight: 700; color: var(--t1); }
.founder-role { font-size: 12px; color: var(--t3); margin-top: 2px; }

section.pricing { padding: 120px 0; background: var(--s1); }
section.pricing .container { text-align: center; }

.billing-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFF8ED; border: 1px solid var(--br2);
  border-radius: 10px; padding: 7px 18px; margin: 40px auto;
  font-size: 13px; color: var(--t2);
  box-shadow: var(--shadow-sm);
}
.toggle-pill {
  width: 38px; height: 22px; background: #C9B99F;
  border-radius: 11px; position: relative; cursor: pointer; flex-shrink: 0;
  transition: background .2s;
}
.toggle-pill.annual { background: var(--indigo); }
.toggle-pill::after {
  content:''; position:absolute;
  width:16px; height:16px; background:#FFF8ED;
  border-radius:50%; top:3px; left:3px;
  transition: left .2s;
}
.toggle-pill.annual::after { left: 19px; }
.save-chip {
  font-size:11px; font-weight:700;
  padding:2px 9px; border-radius:999px;
  background: var(--gain-bg); color:var(--gain);
  border:1px solid rgba(22,101,52,0.2);
}
.currency-switch {
  display: inline-flex; align-items: center;
  background: #FFF8ED; border: 1px solid var(--br2);
  border-radius: 10px; padding: 4px; margin-left: 10px;
  box-shadow: var(--shadow-sm); gap: 2px;
}
.currency-switch button {
  border: none; background: transparent; cursor: pointer;
  font-size: 12px; font-weight: 700; padding: 4px 10px;
  border-radius: 7px; color: var(--t3); transition: all .15s;
}
.currency-switch button.active {
  background: var(--indigo); color: #FFF8ED;
}

.pricing-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; text-align: left;
}
.p-card {
  border: 1px solid var(--br); border-radius: 14px;
  background: #FFF8ED; padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  position: relative; display: flex; flex-direction: column;
  transition: box-shadow 0.2s;
}
.p-card:hover { box-shadow: var(--shadow-md); }
.p-card.featured {
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo), var(--shadow-md);
}
.p-card.featured::before {
  content: 'Most popular';
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background: var(--indigo); color: #FFF8ED;
  font-size:11px; font-weight:700;
  padding:4px 18px; border-radius:999px;
  letter-spacing:0.05em; white-space:nowrap;
}
.p-tier { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--t3); margin-bottom:4px; }
.p-desc { font-size:12px; color:var(--t3); margin-bottom:14px; }
.p-price { font-family:'Inter',sans-serif; font-size:44px; font-weight:700; color:var(--t1); letter-spacing:-.03em; line-height:1; }
.p-price sup { font-size:20px; vertical-align:top; margin-top:8px; margin-right:1px; font-weight:500; font-family:'Inter',sans-serif; }
.p-cadence { font-size:13px; color:var(--t3); margin-top:6px; margin-bottom:28px; }
.p-div { height:1px; background:var(--br); margin-bottom:16px; }
.p-list { list-style:none; display:flex; flex-direction:column; gap:0; flex:1; margin-bottom:24px; }
.p-list li { font-size:12.5px; color:var(--t2); display:flex; justify-content:space-between; align-items:center; padding:7px 0; border-bottom:1px solid var(--br); }
.pi-label { color:var(--t2); }
.pi-val { font-weight:600; color:var(--t1); }
.pi-val.on  { color:#166534; font-size:14px; }
.pi-val.off { color:#6E6355; font-size:14px; }
.pi-val.unlimited { color:#8C5A2B; }
.p-cta { display:block; text-align:center; }

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
section.testi { padding: 120px 0; background: #FFF8ED; }

.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 64px;
}
.t-card {
  border: 1px solid var(--br); border-radius: 12px;
  background: #FFF8ED; padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.t-card:hover { box-shadow: var(--shadow-md); border-color: var(--indigo-bd); }
.t-stars { font-size: 13px; letter-spacing: 2px; color: var(--warn); }
.t-q { font-size: 14px; color: var(--t2); line-height: 1.7; flex: 1; }
.t-q em { color: var(--t1); font-style: normal; font-weight: 600; }
.t-author { display:flex; align-items:center; gap:12px; }
.t-av {
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; color:#FFF8ED; flex-shrink:0;
}
.t-name { font-size:13px; font-weight:600; color:var(--t1); }
.t-role { font-size:11px; color:var(--t3); }

/* ════════════════════════════
   COVERAGE
════════════════════════════ */
section.coverage { padding: 120px 0; background: #FFF8ED; }
.cov-layout {
  display: flex; gap: 36px; margin-top: 40px; align-items: flex-start;
}
.cov-left {
  flex-shrink: 0; width: 148px; display: flex; flex-direction: column; gap: 8px;
}
.cov-left-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--t3); margin-bottom: 2px;
}
.cov-mode {
  width: 100%; padding: 11px 16px; text-align: left;
  border: 1px solid var(--br); border-radius: 10px;
  font-size: 13px; font-weight: 600; background: #FFF8ED; color: var(--t2);
  cursor: pointer; transition: all .15s; line-height: 1.3;
}
.cov-mode:hover { border-color: var(--indigo); color: var(--indigo); }
.cov-mode.active { background: var(--indigo); color: #FFF8ED; border-color: var(--indigo); }
.cov-right { flex: 1; min-width: 0; }
.cov-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px;
}
.cov-tab {
  padding: 7px 18px; border-radius: 20px; border: 1px solid var(--br);
  font-size: 13px; font-weight: 500; color: var(--t2);
  cursor: pointer; background: #FFF8ED; transition: all .15s;
}
.cov-tab:hover { border-color: var(--indigo); color: var(--indigo); }
.cov-tab.active { background: var(--indigo); color: #FFF8ED; border-color: var(--indigo); }
.cov-panel { display: none; }
.cov-panel.active { display: block; }
.cov-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
}
.cov-table thead th {
  padding: 10px 16px; text-align: left;
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--t3);
  border-bottom: 1px solid var(--br);
}
.cov-table tbody tr {
  border-bottom: 1px solid #F2E3CC;
  transition: background .12s;
}
.cov-table tbody tr:hover { background: #F7EBD8; }
.cov-table td { padding: 12px 16px; color: var(--t1); vertical-align: middle; }
.cov-table td:first-child { font-weight: 500; }
.cov-badge {
  display: inline-block; padding: 2px 9px; border-radius: 99px;
  font-size: 11px; font-weight: 600;
}
.cov-badge.cfd { background: #F3E3CC; color: #8C5A2B; }
.cov-badge.us  { background: #E9EFE0; color: #166534; }
.cov-tz-row {
  display: flex; align-items: center; gap: 6px;
  justify-content: flex-end; margin-bottom: 8px;
  font-size: 12px; color: var(--t3);
}
.cov-tz-btn {
  padding: 3px 10px; border-radius: 6px; border: 1px solid var(--br);
  font-size: 11px; font-weight: 600; cursor: pointer;
  background: #FFF8ED; color: var(--t2); transition: all .15s;
}
.cov-tz-btn.active { background: var(--indigo); color: #FFF8ED; border-color: var(--indigo); }
.cov-freq { display: flex; gap: 4px; flex-wrap: wrap; }
.cov-freq span {
  padding: 2px 7px; border-radius: 4px; font-size: 11px;
  background: var(--s1); color: var(--t2); font-weight: 500;
}
.cov-since { color: var(--t3); font-size: 13px; }
.cov-expiry { display: flex; flex-direction: column; gap: 4px; }
.cov-expiry-row { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.cov-expiry-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--t3); width: 52px; flex-shrink: 0;
}
.cov-expiry-days { display: flex; gap: 3px; flex-wrap: wrap; }
.cov-spec { vertical-align: top; white-space: nowrap; }
.cov-spec-link { display: inline; font-size: 11px; font-weight: 500; color: var(--indigo); text-decoration: none; opacity: .75; }
.cov-spec-link:hover { opacity: 1; text-decoration: underline; }

/* ════════════════════════════
   FAQ
════════════════════════════ */
section.faq { padding: 120px 0; background: var(--s1); }
.faq-list { max-width: 680px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--br); background: #FFF8ED; }
.faq-item:first-child { border-top: 1px solid var(--br); border-radius: 12px 12px 0 0; }
.faq-item:last-child  { border-radius: 0 0 12px 12px; }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding: 18px 22px; cursor:pointer;
  font-size:15px; font-weight:500; color:var(--t1);
  user-select:none;
}
.faq-q:hover { color: var(--indigo); }
.faq-arr { color: var(--t3); font-size:18px; transition:transform .2s; }
.faq-item.open .faq-arr { transform:rotate(45deg); color: var(--indigo); }
.faq-a {
  font-size:14px; color:var(--t2); line-height:1.7;
  max-height:0; overflow:hidden;
  transition:max-height .25s ease, padding .2s;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height:200px; padding-bottom:18px; }

/* ════════════════════════════
   FINAL CTA — dark island
════════════════════════════ */
.final-cta {
  padding: 120px 0;
  background: var(--dark);
  position: relative; overflow: hidden;
}
/* indigo glow inside dark section */
.final-cta::before {
  content:''; position:absolute;
  width: 700px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(140,90,43,0.25) 0%, transparent 65%);
  top: -150px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
/* blueprint grid inside */
.final-cta::after {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(217,164,65,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,164,65,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.final-cta .container { position:relative; z-index:1; text-align:center; }
.final-cta h2 {
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  color: #FFF8ED; margin-bottom: 16px;
}
.final-cta h2 .hl { color: var(--indigo-lt); }
.final-cta p {
  font-size:18px; color:rgba(233,223,209,0.62);
  margin: 0 auto 40px; max-width:440px; line-height:1.65;
}
.final-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.cta-micro { font-size:12px; color:rgba(233,223,209,0.35); margin-top:16px; }

/* ════════════════════════════
   FOOTER — light
════════════════════════════ */
footer { border-top: 1px solid var(--br); padding: 60px 0 32px; background: #FFF8ED; }
.footer-top { display:grid; grid-template-columns:280px 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand .f-logo { display:flex; align-items:center; gap:8px; text-decoration:none; color:var(--t1); font-weight:700; font-size:16px; letter-spacing:-.025em; margin-bottom:14px; }
.footer-brand p { font-size:13px; color:var(--t3); line-height:1.7; }
.footer-col h4 { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--t3); margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col a { font-size:13px; color:var(--t2); text-decoration:none; transition:color .15s; }
.footer-col a:hover { color:var(--indigo); }
.footer-bottom {
  border-top:1px solid var(--br); padding-top:28px;
  display:flex; align-items:center; justify-content:space-between;
  font-size:12px; color:var(--t3);
}
.footer-bottom a { color:var(--t3); text-decoration:none; }
.footer-status { display:flex; align-items:center; gap:6px; }
.f-dot { width:6px; height:6px; border-radius:50%; background:var(--gain); }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
/* ════════════════════════════
   HAMBURGER + MOBILE MENU
════════════════════════════ */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; margin-left: auto; flex-direction: column; gap: 5px;
  z-index: 200;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--t1);
  border-radius: 2px; transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(251,240,227,0.98); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px 28px; z-index: 99;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mm-link {
  font-size: 16px; font-weight: 500; color: var(--t2);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--br); transition: color 0.15s;
}
.mm-link:hover { color: var(--indigo); }
.mm-divider { height: 1px; background: var(--br2); margin: 8px 0; }

@media (max-width:900px) {
  .bento .bc { grid-column: span 12 !important; grid-row: span 1 !important; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); gap:24px; }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .cov-layout { flex-direction: column; }
  .cov-left { width: 100%; flex-direction: row; }
}
@media (max-width:600px) {
  .hero { padding: 80px 0 60px; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}


/* ════════════════════════════
   THETASMITH PAPER EDITION LAYER
   Georgia display, claret = editorial only (never buttons),
   bronze = action, terracotta = the mark itself.
════════════════════════════ */
:root { --claret: #8E2244; --terra: #AF7858; --straw: #D9A441; }

.hero h1, h2.sec-h, .final-cta h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; letter-spacing: -0.015em;
}
.nav-logo, .footer-brand .f-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px; font-weight: 700; letter-spacing: -0.01em;
}
.eyebrow { color: var(--claret); }
.hero h1 .hl { color: var(--claret); }
.final-cta h2 .hl { color: var(--straw); }
.founder-quote p { font-family: Georgia, 'Times New Roman', serif; font-size: 18px; }
.founder-quote p { border-left-color: var(--claret); }
.founder-mark { color: var(--claret); opacity: 0.25; }
.founder-avatar { background: var(--terra); }
.how-n-badge { color: var(--claret); background: rgba(142,34,68,0.07); border-color: rgba(142,34,68,0.2); }

/* crisper, print-like edges */
.btn { border-radius: 4px; }
.btn-lg { border-radius: 5px; }
.bc, .how-step, .p-card, .t-card { border-radius: 8px; }
.faq-item:first-child { border-radius: 8px 8px 0 0; }
.faq-item:last-child { border-radius: 0 0 8px 8px; }
.billing-toggle, .currency-switch { border-radius: 6px; }
.cov-mode { border-radius: 6px; }

/* evening island: straw accent instead of bronze glow */
.final-cta::before {
  background: radial-gradient(ellipse, rgba(217,164,65,0.14) 0%, transparent 65%);
}
.btn-white { background: #FBF0E3; color: #29241E; }
.btn-white:hover { background: #F5E8D3; }
