/* ==========================================================================
   BLAZAR™ — Light design system
   Signature sage #7C8670 · cream paper · charcoal type
   ========================================================================== */

:root {
  --bg-0: #f7f5f0;
  --bg-1: #ffffff;
  --bg-2: #f0eee7;
  --bg-3: #e7e4db;
  --bg-glass: rgba(247, 245, 240, 0.88);
  --line: rgba(44, 47, 42, 0.1);
  --line-strong: rgba(124, 134, 112, 0.45);
  --text: #1f221e;
  --text-soft: #3d423c;
  --muted: #5c6359;
  --faint: #6b7266;
  --sage: #7c8670;
  --sage-2: #6a7460;
  --sage-3: #9aa38a;
  --sage-btn: #5e6954; /* darker sage for white label AA contrast */
  --sage-soft: rgba(124, 134, 112, 0.12);
  --charcoal: #2c2f2a;
  --cream: #f7f5f0;
  --white: #ffffff;
  --emerald: #3d8b6e;
  --amber: #b8860b;
  --rose: #c45c6a;
  --shadow: 0 18px 50px rgba(44, 47, 42, 0.08);
  --shadow-sage: 0 12px 36px rgba(124, 134, 112, 0.22);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --max: 1180px;
  --nav-h: 72px;
  --font: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "SF Mono", "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: light; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--sage-2); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--charcoal); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  color: var(--charcoal);
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
::selection { background: rgba(124, 134, 112, 0.28); color: var(--charcoal); }

.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 85% -10%, rgba(124, 134, 112, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 5% 20%, rgba(124, 134, 112, 0.08), transparent 50%),
    linear-gradient(180deg, #faf8f3 0%, #f7f5f0 45%, #f0eee7 100%);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.is-solid {
  background: var(--bg-glass);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 24px rgba(44,47,42,0.04);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  text-decoration: none !important;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--line), 0 4px 12px rgba(44,47,42,0.06);
  background: #fff;
  display: grid;
  place-items: center;
}
.brand-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.05; }
.brand-text strong {
  font-size: 1.12rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--charcoal);
}
.brand-text span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-2);
  font-weight: 600;
}
.hide-sm { display: inline-flex; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 0.8rem;
  border-radius: var(--r-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--charcoal);
  background: var(--sage-soft);
}
.nav-actions { display: flex; align-items: center; gap: 0.55rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-1);
  color: var(--charcoal);
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--r-pill);
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .2s var(--ease), filter .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--sage-btn) 0%, #4f5848 100%);
  box-shadow: var(--shadow-sage);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary {
  color: var(--charcoal) !important;
  background: var(--bg-1);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(44,47,42,0.04);
}
.btn-secondary:hover {
  border-color: var(--line-strong);
  background: var(--sage-soft);
}
.btn-lg { padding: 1rem 1.55rem; font-size: 1rem; }
.btn-sm { padding: 0.65rem 1rem; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-2);
  margin-bottom: 1.1rem;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-soft);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--bg-1);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 500;
}
.chip-good { color: var(--emerald); border-color: rgba(61, 139, 110, 0.25); background: rgba(61, 139, 110, 0.08); }
.chip-bad { color: var(--rose); border-color: rgba(196, 92, 106, 0.25); background: rgba(196, 92, 106, 0.06); text-decoration: line-through; opacity: 0.9; }
.chip-keep { color: var(--sage-2); border-color: rgba(124, 134, 112, 0.35); background: var(--sage-soft); }

.display {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--charcoal);
}
.display .grad {
  background: linear-gradient(115deg, var(--charcoal) 10%, var(--sage) 55%, var(--sage-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.65;
}
.h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 0.75rem;
}
.h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.sub {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.section { padding: 5.25rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-head { margin-bottom: 2.25rem; max-width: 42rem; }

/* Hero */
.hero {
  padding: 4.25rem 0 3.25rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
}
.hero-copy .lead { margin: 1.15rem 0 1.75rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  color: var(--faint);
  font-size: 0.88rem;
}
.trust-line strong { color: var(--text-soft); font-weight: 600; }
.hero-panel {
  position: relative;
}
.hero-panel-inner {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: calc(var(--r-lg) + 8px);
  box-shadow: var(--shadow);
  padding: 2.75rem 2rem 2rem;
  text-align: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.hero-logo {
  width: min(200px, 46vw);
  height: auto;
  margin-bottom: 0.75rem;
}
.hero-word {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  margin-top: 0.25rem;
}
.hero-tag {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 16rem;
  line-height: 1.45;
  margin: 0.35rem 0 1.25rem !important;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: min(100%, 320px);
  margin-top: 0.5rem;
}
.hero-stats div {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.75rem;
  text-align: left;
}
.hero-stats small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.hero-stats strong {
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 700;
}
.hero-stats div:last-child strong { color: var(--sage-2); }

.strip {
  border-block: 1px solid var(--line);
  background: var(--bg-1);
  padding: 1.25rem 0;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  color: var(--faint);
  font-size: 0.88rem;
}
.strip-items { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.45rem 1.4rem;
  box-shadow: 0 1px 2px rgba(44,47,42,0.03);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card-static:hover { transform: none; box-shadow: 0 1px 2px rgba(44,47,42,0.03); border-color: var(--line); }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--sage-soft);
  border: 1px solid rgba(124, 134, 112, 0.22);
  font-size: 1.25rem;
}
.card p { color: var(--muted); font-size: 0.95rem; }
.card .meta {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--sage-2);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.module {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 1.15rem;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(44,47,42,0.03);
}
.module:nth-child(even) { grid-template-columns: 1.05fr 0.95fr; }
.module:nth-child(even) .module-copy { order: 2; }
.module:nth-child(even) .module-panel { order: 1; }
.module-copy { padding: 2rem 2.1rem; }
.module-copy p { color: var(--muted); margin: 0.75rem 0 1.1rem; }
.module-copy ul { list-style: none; display: grid; gap: 0.55rem; }
.module-copy li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.module-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}
.module-panel {
  min-height: 280px;
  background:
    radial-gradient(circle at 25% 30%, rgba(124,134,112,0.18), transparent 42%),
    linear-gradient(160deg, #f4f2ec, #ebe8df);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border-left: 1px solid var(--line);
}
.module:nth-child(even) .module-panel { border-left: 0; border-right: 1px solid var(--line); }

.os-shell {
  width: min(100%, 420px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.os-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.os-dots { display: flex; gap: 6px; }
.os-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
  background: #c5c8bf;
}
.os-dots i:nth-child(1) { background: #e07a70; }
.os-dots i:nth-child(2) { background: #e0b060; }
.os-dots i:nth-child(3) { background: #7c8670; }
.os-title {
  margin-left: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.os-body { display: grid; grid-template-columns: 120px 1fr; min-height: 210px; }
.os-side {
  border-right: 1px solid var(--line);
  padding: 0.75rem 0.55rem;
  background: rgba(124,134,112,0.04);
}
.os-side div {
  width: 100%;
  text-align: left;
  color: var(--muted);
  font-size: 0.72rem;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  margin-bottom: 0.2rem;
}
.os-side div.active {
  background: var(--sage-soft);
  color: var(--sage-2);
  border: 1px solid rgba(124, 134, 112, 0.25);
  font-weight: 600;
}
.os-main { padding: 0.85rem; }
.os-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid transparent;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}
.os-row.active {
  border-color: rgba(124, 134, 112, 0.3);
  background: var(--sage-soft);
}
.os-row .tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--sage-2);
}
.os-row .ok { color: var(--emerald); font-weight: 600; }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-1);
  box-shadow: 0 1px 2px rgba(44,47,42,0.03);
}
.compare-table th,
.compare-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.94rem;
}
.compare-table th {
  background: var(--bg-2);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td:first-child { color: var(--text-soft); font-weight: 500; }
.compare-table .price { font-variant-numeric: tabular-nums; white-space: nowrap; }
.compare-table .old { color: var(--rose); }
.compare-table .new { color: var(--sage-2); font-weight: 700; }
.savings-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}
.savings-stat {
  background: linear-gradient(145deg, rgba(124,134,112,0.14), rgba(124,134,112,0.05));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sage);
}
.savings-stat .num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--sage-2);
  margin: 0.5rem 0 0.75rem;
}
.savings-stat p { color: var(--muted); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 1px 2px rgba(44,47,42,0.03);
}
.price-card.featured {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 80% 0%, rgba(124,134,112,0.12), transparent 45%),
    var(--bg-1);
  box-shadow: var(--shadow-sage);
  transform: translateY(-6px);
}
.price-flag {
  position: absolute;
  top: -12px;
  right: 1.1rem;
  background: var(--sage);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-pill);
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.price-card .blurb { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; min-height: 2.8em; }
.price-card .amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}
.price-card .amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.price-card .note { color: var(--faint); font-size: 0.82rem; margin-bottom: 1.2rem; }
.price-card ul { list-style: none; margin: 0 0 1.5rem; flex: 1; }
.price-card li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.35rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(44,47,42,0.05);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--bg-1);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  color: var(--sage);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

.form-shell {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}
.form-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.form-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0.85rem 0 0.35rem;
}
.form-card label:first-of-type { margin-top: 0; }
.form-card .req { color: var(--sage); }
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.8rem 0.9rem;
  color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: rgba(124, 134, 112, 0.55);
  box-shadow: 0 0 0 3px var(--sage-soft);
}
.form-card textarea { min-height: 110px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  min-height: 1.4em;
  margin-top: 0.85rem;
  font-size: 0.92rem;
}
.form-status.ok { color: var(--emerald); }
.form-status.err { color: var(--rose); }
.form-fine {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--faint);
}
.checklist {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--text-soft);
}
.checklist .mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--sage-soft);
  border: 1px solid rgba(124, 134, 112, 0.28);
  color: var(--sage-2);
  font-weight: 800;
  font-size: 0.85rem;
}

.page-hero { padding: 3.75rem 0 2rem; }
.page-hero .lead { margin-top: 1rem; }

.prose { max-width: 44rem; color: var(--muted); }
.prose h2 { color: var(--charcoal); font-size: 1.45rem; margin: 2.2rem 0 0.75rem; }
.prose h3 { color: var(--charcoal); font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.prose p { margin: 0 0 1rem; }
.prose ul, .prose ol { padding-left: 1.2rem; margin: 0 0 1rem; }
.prose li { margin: 0.35rem 0; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.cta-band {
  margin: 1rem 0 0;
  padding: 2.75rem;
  border-radius: calc(var(--r-lg) + 4px);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 15% 20%, rgba(124,134,112,0.16), transparent 40%),
    linear-gradient(145deg, #fff, #f4f2ec);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); max-width: 18ch; }
.cta-band p { color: var(--muted); max-width: 36ch; margin-top: 0.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--bg-1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--charcoal);
}
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.footer h4 {
  color: var(--charcoal);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.footer ul { list-style: none; display: grid; gap: 0.45rem; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--charcoal); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--faint);
}
.legal-note {
  max-width: 52rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--faint);
  line-height: 1.5;
}

.reveal { opacity: 1; transform: none; }
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.js-ready .reveal.in {
  opacity: 1;
  transform: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--sage);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: var(--r-sm);
  text-decoration: none !important;
}
.skip-link:focus { top: 1rem; }
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
.btn:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(247, 245, 240, 0.98);
  backdrop-filter: blur(16px);
  z-index: 90;
  padding: 1.25rem 1.25rem 2rem;
  overflow: auto;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block;
  padding: 0.95rem 0.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 1.05rem;
  text-decoration: none;
}
.mobile-panel .btn { margin-top: 1.25rem; width: 100%; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.center { text-align: center; }
.center .sub, .center .lead { margin-inline: auto; }
.stack { display: grid; gap: 1rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }

@media (max-width: 980px) {
  .hero,
  .module,
  .module:nth-child(even),
  .savings-hero,
  .form-shell,
  .footer-grid { grid-template-columns: 1fr; }
  .module:nth-child(even) .module-copy,
  .module:nth-child(even) .module-panel { order: initial; }
  .module-panel,
  .module:nth-child(even) .module-panel {
    border: 0;
    border-top: 1px solid var(--line);
  }
  .grid-3, .grid-4, .price-grid, .steps { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .nav-links, .nav-actions .hide-sm { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-panel-inner { min-height: 360px; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 1.5rem, var(--max)); }
  .grid-2, .grid-3, .grid-4, .price-grid, .steps, .form-row { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .cta-band { padding: 1.75rem; }
  .hero { padding-top: 2.5rem; }
  .display { font-size: clamp(2.1rem, 10vw, 2.7rem); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}
