/* BankTheLot — editorial, paper-on-desk aesthetic
   Warm cream background, deep navy type, racing-green accent, bank-like tone.
   Instrument Serif display + Inter Tight body. */

:root {
  /* Warm paper palette — lighter, more refined */
  --bg:           #faf6ec;   /* soft ivory, paper white */
  --bg-2:         #f3eddd;   /* section alt */
  --bg-3:         #ece4ce;   /* card surface */
  --ink:          #1a1a1a;   /* near-black ink */
  --ink-2:        #2e2e2e;
  --muted:        #6a6a6a;
  --rule:         #d9cfb3;   /* hairline rule */
  --rule-soft:    #e4dcc2;

  /* Accents — warmer, less saturated, classic */
  --accent:       #b83423;   /* refined brick red */
  --accent-2:     #972818;   /* hover */
  --accent-3:     #d4a73c;   /* antique gold */
  --accent-3-2:   #b98f2a;
  --accent-ink:   #ffffff;
  --accent-yellow-ink: #2a1d05;
  --danger:       #b83423;
  --warn:         #b87817;
  --good:         #2d6a4f;

  /* "Dark" contrast section — warm espresso, not cold navy */
  --dark:         #1c140e;
  --dark-2:       #2a1d12;
  --dark-rule:    #3a2b1c;
  --dark-ink:     #faf6ec;
  --dark-muted:   #c9bfa7;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  --shadow-paper: 0 1px 0 rgba(19,38,58,.06), 0 12px 32px -16px rgba(19,38,58,.18);
  --shadow-lift:  0 20px 50px -24px rgba(19,38,58,.35);

  --maxw: 1180px;
  --maxw-narrow: 780px;

  --font-display: 'Playfair Display', 'Source Serif 4', Georgia, serif;
  --font-body:    'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle paper grain — a very soft SVG noise underlay.
   Keeps the cream from reading flat/digital. */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.07  0 0 0 0 0.05  0 0 0 0.035 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .15s ease; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.005em;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 700; /* Playfair needs weight to feel editorial */
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; }
h1 em, h2 em { font-style: italic; color: var(--accent); font-weight: inherit; }
h1 em.alt, h2 em.alt { color: var(--accent-3-2); }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
.muted { color: var(--muted); }
.tiny { font-size: .85rem; }
.h-center { text-align: center; margin-bottom: 28px; }
.center { text-align: center; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.narrow { max-width: var(--maxw-narrow); }

.skip {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink); color: var(--bg);
  padding: 8px 14px; border-radius: var(--r-sm);
  font-weight: 600;
}
.skip:focus { top: 12px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 241, 231, .88);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand:hover { color: var(--accent); }
.brand-mark {
  width: 30px; height: 30px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
.wordmark { line-height: 1; font-weight: 700; letter-spacing: -0.015em; }
.wordmark .wm-accent { font-style: italic; color: var(--accent-3-2); font-weight: 500; }
.wordmark .wm-period { color: var(--accent); }
.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px; align-items: center;
}
.primary-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: .94rem;
  text-decoration: none;
  letter-spacing: 0;
  opacity: .78;
  transition: opacity .15s ease, color .15s ease;
}
.primary-nav a:hover { color: var(--accent); opacity: 1; }
.primary-nav a.btn { opacity: 1; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;                /* pill — a signature */
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, color .15s ease, border .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 8px 16px; font-size: .88rem; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 2px 0 rgba(0,0,0,.05), 0 12px 28px -12px rgba(232, 69, 44, .55);
}
.btn-primary:hover {
  background: var(--accent-2); border-color: var(--accent-2); color: #ffffff;
  box-shadow: 0 3px 0 rgba(0,0,0,.06), 0 18px 36px -14px rgba(232, 69, 44, .65);
  transform: translateY(-1px);
}
.btn-accent-yellow {
  background: var(--accent-3);
  color: var(--accent-yellow-ink);
  border-color: var(--accent-3);
  box-shadow: 0 2px 0 rgba(0,0,0,.05), 0 12px 28px -12px rgba(245, 197, 49, .6);
}
.btn-accent-yellow:hover {
  background: var(--accent-3-2); border-color: var(--accent-3-2); color: var(--accent-yellow-ink);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-soft { background: var(--bg-2); border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }
.section-dark { background: var(--dark); color: var(--dark-ink); border-top: 1px solid var(--dark-rule); border-bottom: 1px solid var(--dark-rule); }
.section-dark h2 em, .section-dark h3 em { color: var(--accent-3); }
.section-dark .btn-primary { background: var(--accent-3); color: var(--accent-yellow-ink); border-color: var(--accent-3); box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 12px 28px -12px rgba(245,197,49,.5); }
.section-dark .btn-primary:hover { background: var(--accent-3-2); border-color: var(--accent-3-2); color: var(--accent-yellow-ink); }
.section-dark h2, .section-dark h3 { color: var(--dark-ink); }
.section-dark .muted { color: var(--dark-muted); }
.section-dark .lede { color: var(--dark-muted); }
.section-accent {
  background: var(--bg-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-head .lede { color: var(--muted); font-size: 1.15rem; line-height: 1.5; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 700;
}
.eyebrow::before { content: "§ "; opacity: .7; }

/* ---- Hero ---- */
.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(900px 540px at 92% -20%, rgba(245,197,49,.22), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(232,69,44,.08), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
/* Thin rule under the header, newspaper style */
.hero::before {
  content: "";
  position: absolute;
  left: 28px; right: 28px; top: 28px;
  border-top: 1px solid var(--rule);
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 {
  margin-top: 12px;
}
.hero-copy h1 em {
  font-style: italic; color: var(--accent); font-weight: 400;
}
.hero-copy h1 em.alt {
  color: var(--accent-3-2);
}
.hero-copy .lede {
  font-size: 1.22rem; color: var(--ink-2);
  max-width: 560px;
  line-height: 1.45;
  font-family: var(--font-body);
}
.hero-copy .lede strong { color: var(--ink); font-weight: 600; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .78rem; font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.chip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 20px; }
.trust-row {
  list-style: none; margin: 24px 0 0; padding: 20px 0 0;
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  color: var(--muted); font-size: .9rem;
  border-top: 1px solid var(--rule);
}
.trust-row strong { color: var(--ink); font-weight: 600; }

.hero-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lift);
  background: var(--bg-3);
}
.hero-photo img { display: block; }

/* ---- Trap cards ---- */
.trap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.trap-card {
  background: transparent;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 28px;
}
.trap-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  margin-top: 10px;
  line-height: 1.18;
}
.trap-card h3 em { font-style: italic; color: var(--accent); }
.trap-card p { color: var(--muted); margin: 0; }
.trap-num {
  font-family: var(--font-mono);
  font-weight: 500; font-size: .72rem;
  letter-spacing: .14em;
  color: var(--accent);
}
.trap-foot {
  text-align: center; color: var(--muted);
  margin-top: 36px; font-size: 1.05rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.35;
}
.trap-foot strong { color: var(--ink); font-style: normal; font-family: var(--font-body); font-weight: 600; }

/* ---- Compare table ---- */
.compare-scroll { overflow-x: auto; margin: 0 -8px; padding: 0 8px; }
.compare {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--bg);
  font-size: .95rem;
  font-family: var(--font-body);
}
.compare th, .compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.compare thead th {
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  padding: 12px 18px;
}
.compare tbody tr:last-child td { border-bottom: 2px solid var(--ink); }
.compare tr.us { background: rgba(13,92,58,.07); }
.compare tr.us td { color: var(--ink); font-weight: 500; }
.compare tr.us td:first-child strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; }
.compare td.good { color: var(--good); font-weight: 600; }
.compare td.bad  { color: var(--danger); }
.compare td.mid  { color: var(--warn); }
.tag {
  display: inline-block;
  background: var(--accent); color: var(--accent-ink);
  font-size: .65rem; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
  margin-left: 8px; letter-spacing: .14em;
  text-transform: uppercase;
  vertical-align: middle;
  font-family: var(--font-body);
}

.savings-card {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
}
.sav-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: var(--accent-3);         /* antique gold pops on dark espresso */
  line-height: 1;
  letter-spacing: -0.02em;
}
.sav-meta { display: flex; flex-direction: column; gap: 4px; }
.sav-meta strong { color: var(--bg); font-size: 1.08rem; font-weight: 600; }
.sav-meta span { color: #9fb0c4; font-size: .9rem; }
.savings-card .btn-primary { background: var(--accent-3); color: var(--accent-yellow-ink); border-color: var(--accent-3); }
.savings-card .btn-primary:hover { background: var(--accent-3-2); border-color: var(--accent-3-2); color: var(--accent-yellow-ink); }

/* ---- Feature grid (editorial, image-led) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px 28px;
  margin-top: 10px;
}
.feature {
  grid-column: span 2;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.feature-wide {
  grid-column: span 3;
}
.feature-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--rule);
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
  box-shadow: 0 1px 0 rgba(26, 20, 14, 0.04), 0 14px 28px -20px rgba(26, 20, 14, 0.28);
}
.feature-media-tall {
  aspect-ratio: 4 / 5;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}
.feature:hover .feature-media img {
  transform: scale(1.03);
}
.feature-media::after {
  /* subtle warm wash to unify imagery with ivory palette */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 246, 236, 0) 55%, rgba(28, 20, 14, 0.16) 100%);
  pointer-events: none;
}
.feature-media .feature-ico {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--bg);
  background: var(--accent);
  padding: 8px 12px 6px;
  letter-spacing: 0.01em;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(28, 20, 14, 0.25);
}
.feature-body {
  padding: 0 2px;
}
.feature-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.feature h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.feature-wide h3 {
  font-size: 1.85rem;
}
.feature p {
  color: var(--ink-2);
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.55;
}
.feature-proof {
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  font-size: 0.92rem !important;
  color: var(--muted) !important;
  font-style: italic;
}
.feature-proof strong {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ---- "And a bunch more" secondary grid ---- */
.feature-more {
  margin: 56px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
}
.feature-more li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.feature-more li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
}
.feature-more strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .feature { grid-column: span 2; }
  .feature-wide { grid-column: span 2; }
  .feature-wide .feature-media-tall { aspect-ratio: 1 / 1; }
  .feature-more { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Swap grid ---- */
.swap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.swap-steps { padding-left: 1.2em; }
.swap-steps li {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 6px;
}
.swap-steps li::marker { color: var(--accent); font-family: var(--font-mono); font-size: .85em; }
.swap-steps li strong { color: var(--ink); font-weight: 600; }
.swap-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lift);
}

/* ---- Pricing (lives on dark section) ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-rule);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--dark-ink);
}
.price-card.featured {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  transform: translateY(-8px);
}
.price-card.featured h3 { color: var(--ink); }
.price-card.featured .muted { color: var(--muted); }
.featured-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-body);
  font-size: .66rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}
.price-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 6px;
  line-height: 1;
}
.price-head .muted { font-size: .9rem; }
.price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin: 24px 0 6px;
  border-bottom: 1px solid var(--dark-rule);
  padding-bottom: 18px;
}
.price-card.featured .price-row { border-bottom-color: var(--rule); }
.price-row .now {
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
.price-card.featured .price-row .now { color: var(--accent); }
.price-row .per { color: var(--dark-muted); font-size: .95rem; }
.price-card.featured .price-row .per { color: var(--muted); }
.price-sub { color: var(--dark-muted); margin: 14px 0 0; font-size: .95rem; font-style: italic; }
.price-card.featured .price-sub { color: var(--muted); }
.price-list {
  list-style: none; padding: 0; margin: 20px 0 28px;
  flex: 1;
}
.price-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: .95rem;
  border-bottom: 1px solid var(--dark-rule);
}
.price-card.featured .price-list li { border-bottom-color: var(--rule-soft); color: var(--ink-2); }
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: "→";
  position: absolute; left: 0; top: 10px;
  color: var(--accent); font-weight: 600;
  font-family: var(--font-body);
}
.price-card:not(.featured) .price-list li::before { color: var(--accent-3); }
.pricing-foot {
  margin-top: 36px; text-align: center;
  max-width: 700px; margin-left: auto; margin-right: auto;
  color: var(--dark-muted);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.45;
}
.pricing-foot strong { font-family: var(--font-body); font-style: normal; color: var(--dark-ink); }

/* ---- FAQ ---- */
.faq {
  background: transparent;
  border-top: 1px solid var(--rule);
  padding: 22px 0;
  margin: 0;
}
.faq:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  line-height: 1.2;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  transition: transform .2s ease;
  flex: 0 0 auto;
}
.faq[open] summary::after { content: "–"; }
.faq p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 62ch;
}

/* ---- Lead form ---- */
.lead-form {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-paper);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.form-grid label {
  display: flex; flex-direction: column; gap: 7px;
}
.form-grid label.full { grid-column: 1 / -1; }
.form-grid span {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.form-grid input, .form-grid select, .form-grid textarea {
  background: var(--bg);
  border: none;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  padding: 10px 2px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border .15s ease;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  border-bottom-width: 2.5px;
}
.form-grid textarea { resize: vertical; min-height: 100px; border: 1px solid var(--rule); border-radius: var(--r-sm); padding: 12px 14px; }
.form-grid textarea:focus { border-color: var(--accent); border-width: 1.5px; }
.form-grid select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2313263a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
}
.form-foot { text-align: center; margin-top: 16px; }

/* ---- Thanks page ---- */
.thanks-badge {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 400;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 44px 0 40px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 28px;
  align-items: start;
  color: var(--muted);
  font-size: .9rem;
}
.footer-grid .foot-brand strong {
  color: var(--ink);
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}
.footer-grid a { color: var(--ink-2); text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .trap-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature, .feature-wide { grid-column: span 1; }
  .feature-media, .feature-media-tall { aspect-ratio: 4 / 3; }
  .feature-more { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; padding-top: 24px; }
  .swap-grid { grid-template-columns: 1fr; gap: 40px; }
  .savings-card { grid-template-columns: 1fr; text-align: center; gap: 14px; padding: 26px; }
  .sav-num { font-size: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .price-card.featured { transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .primary-nav ul { gap: 14px; }
  .primary-nav li:nth-child(-n+3) { display: none; }
  .brand { font-size: 1.3rem; }
  .hero { padding: 60px 0 40px; }
}
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .wrap { padding: 0 20px; }
  .nav { padding: 12px 20px; }
  .lead-form { padding: 24px; }
  h1 { font-size: 3rem; line-height: 1; }
  .hero-copy .lede { font-size: 1.05rem; }
  .cta-row .btn { width: 100%; }
  .trust-row { gap: 10px 20px; }
  .faq summary { font-size: 1.1rem; }
  .compare { min-width: 640px; font-size: .85rem; }
  .compare th, .compare td { padding: 10px 12px; }
  .trap-foot { font-size: 1.15rem; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
