:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fff9f0;
  --text: #1e1b18;
  --muted: #5b5047;
  --line: rgba(30, 27, 24, 0.12);
  --accent: #c24f2d;
  --accent-deep: #942f14;
  --accent-soft: rgba(194, 79, 45, 0.12);
  --shadow: 0 24px 60px rgba(45, 29, 15, 0.10);
  --max: 1160px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(194, 79, 45, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(65, 93, 83, 0.16), transparent 26%),
    linear-gradient(180deg, #fcf7ef 0%, var(--bg) 100%);
  line-height: 1.5;
}
a { color: inherit; }
.site-shell { min-height: 100vh; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 232, 0.88);
  border-bottom: 1px solid var(--line);
}
.topbar-inner, .section-inner, .footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.brand-mark { font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.brand-name { font-size: 1.25rem; font-weight: 700; }
.nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--muted); }
.nav .cta-link { color: var(--surface-strong); }
.hero, .section, .legal { padding: 76px 0; }
.hero-grid, .split-grid, .cards, .proof-grid, .steps, .tiers, .policy-grid { display: grid; gap: 24px; }
.hero-grid, .split-grid { grid-template-columns: 1.3fr 0.9fr; align-items: start; }
.eyebrow {
  display: inline-block; padding: 8px 12px; border-radius: 999px; background: var(--accent-soft);
  color: var(--accent-deep); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.06; margin: 0 0 16px; }
h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); letter-spacing: -0.04em; max-width: 12ch; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.04em; }
h3 { font-size: 1.2rem; }
p, li { color: var(--muted); }
.lede { font-size: 1.2rem; max-width: 58ch; }
.cluster { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.cta, .cta-secondary, .pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px;
  padding: 14px 22px; text-decoration: none; font-weight: 700; border: 1px solid transparent;
}
.cta { background: var(--accent); color: #fff8f3; box-shadow: var(--shadow); }
.cta-secondary { background: transparent; color: var(--text); border-color: var(--line); }
.cta-disabled { opacity: 0.58; cursor: not-allowed; }
.hero-card, .card, .proof-card, .step, .tier, .policy-card, .legal-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: var(--shadow);
}
.hero-card ul, .card ul, .proof-card ul, .legal-card ul { padding-left: 20px; }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.proof-grid, .policy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px;
}
.muted-note, .mini-note { color: var(--muted); font-size: 0.95rem; }
.quote { font-size: 1.15rem; color: var(--text); margin: 0; }
.footer { padding: 40px 0 64px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.page-head { max-width: 72ch; margin-bottom: 28px; }
.price-callout { font-size: 1.5rem; color: var(--text); }
.faq-grid, .video-grid, .form-grid { display: grid; gap: 24px; }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-card, .video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.video-card video {
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #111;
}
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 700; color: var(--text); }
.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.96);
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input[type="file"] { padding: 12px 16px; }
.field-full { grid-column: 1 / -1; }
.form-note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}
.stat-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 0;
}
.pill {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--text);
}
@media (max-width: 980px) {
  .hero-grid, .split-grid, .cards, .proof-grid, .steps, .tiers, .policy-grid, .faq-grid, .video-grid, .form-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
}
@media (max-width: 680px) {
  .topbar-inner { align-items: start; flex-direction: column; }
  h1 { max-width: none; }
}
