/* ============================================================
   v11 - Video bolt-on for South Bay law firms.
   Forked from v10. Inter-only type, cream/dark palette preserved.
   ============================================================ */

:root {
  --bg: #FAFAF7;
  --bg-soft: #F3F1EB;
  --bg-card: #FFFFFF;
  --bg-dark: #0E0E0E;
  --bg-dark-2: #1A1A18;
  --ink: #111111;
  --ink-2: #2E2E2E;
  --muted: #585858;
  --muted-2: #8A8A8A;
  --on-dark: #F6F2E8;
  --on-dark-muted: #A39E92;
  --hairline: #E6E3DC;
  --hairline-strong: #CEC8B9;
  --accent: #8F6424;
  --accent-hover: #6F4B15;
  --accent-soft: #F5EDD8;
  --danger-soft: #F7E6DE;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04), 0 2px 4px rgba(17, 17, 17, 0.03);
  --shadow-md: 0 2px 6px rgba(17, 17, 17, 0.05), 0 12px 28px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 4px 10px rgba(17, 17, 17, 0.06), 0 24px 56px rgba(17, 17, 17, 0.12);
  --fs-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-accent: 'Instrument Serif', Georgia, serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--fs-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.link:hover { color: var(--ink); }

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 22px;
}
@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

p { margin: 0; }

/* ========== Type ========== */

h1, h2, h3 {
  font-family: var(--fs-body);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.032em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.038em;
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.75rem, 4.2vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.muted-serif {
  font-family: var(--fs-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -0.01em;
  display: block;
  margin-top: 0.12em;
  font-size: 0.88em;
}

.accent { color: var(--accent); }

.eyebrow,
.section-eyebrow {
  font-family: var(--fs-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  display: inline-block;
}
.eyebrow-light { color: var(--on-dark); }

.section-title { margin-bottom: 40px; max-width: 26ch; }

.lede {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.55;
  margin-top: 24px;
}
.lede strong { color: var(--ink); font-weight: 600; }
@media (max-width: 640px) { .lede { max-width: 38ch; } }

.lede-alt {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
  margin-top: 12px;
}

.micro {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.micro-light { color: var(--muted-2); }

/* ========== Buttons ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--fs-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
  min-height: 44px;
  line-height: 1.1;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 13.5px;
  min-height: 40px;
}
.btn-lg {
  padding: 16px 26px;
  font-size: 16px;
  min-height: 52px;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(143, 100, 36, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.18s var(--ease);
  font-weight: 400;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 14px;
}

/* ========== Header ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
  min-height: 64px;
}

.preview-back {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
}
.preview-back:hover { color: var(--ink); }

.logo {
  font-family: var(--fs-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.028em;
  color: var(--ink);
  flex-shrink: 0;
  white-space: nowrap;
}
.logo-dot { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.nav > a:not(.btn) { color: var(--ink-2); font-weight: 500; }
.nav > a:not(.btn):hover { color: var(--accent); }
.nav .btn { margin-left: 4px; }

@media (max-width: 820px) {
  .preview-back { display: none; }
  .nav a:not(.btn) { display: none; }
}

@media (max-width: 420px) {
  .logo { font-size: 16px; }
  .nav .btn-sm { padding: 9px 14px; font-size: 13px; }
}

/* ========== Hero ========== */

.hero {
  padding: clamp(64px, 11vw, 132px) 0 clamp(80px, 13vw, 148px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(143, 100, 36, 0.07), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(143, 100, 36, 0.04), transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 860px;
}

.hero h1 {
  margin-top: 4px;
  margin-bottom: 0;
}

.hero .accent {
  color: var(--accent);
  position: relative;
}

/* ========== Sections ========== */

.section {
  padding-block: clamp(72px, 11vw, 132px);
  position: relative;
}

.section-soft { background: var(--bg-soft); }

.section-dark {
  background: var(--bg-dark);
  color: var(--on-dark);
}
.section-dark h2,
.section-dark h3 { color: var(--on-dark); }
.section-dark p { color: var(--on-dark-muted); }
.section-dark .muted-serif { color: var(--on-dark-muted); }
.section-dark .section-eyebrow { color: var(--accent-soft); opacity: 0.85; }

/* ========== At a glance strip ========== */

.at-a-glance {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding-block: clamp(28px, 4vw, 40px);
}

.glance-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 820px) { .glance-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); } }
@media (max-width: 480px) { .glance-grid { grid-template-columns: 1fr; } }

.glance-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 18px;
  gap: 4px;
  position: relative;
  background: var(--bg);
}
@media (min-width: 821px) {
  .glance-chip + .glance-chip::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: var(--hairline);
  }
}

.glance-num {
  font-family: var(--fs-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.4vw, 2.25rem);
  letter-spacing: -0.035em;
  color: var(--accent);
  line-height: 1;
}
.glance-num-sm { font-size: clamp(1.2rem, 2.2vw, 1.5rem); letter-spacing: -0.022em; line-height: 1.05; }

.glance-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
  letter-spacing: -0.005em;
  max-width: 22ch;
}

/* ========== 90-day rollout ========== */

.section-rollout { background: var(--bg-soft); }

.rollout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
@media (max-width: 900px) { .rollout-grid { grid-template-columns: 1fr; } }

.rollout-phase {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.rollout-phase:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.rollout-phase-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.rollout-phase-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  width: fit-content;
}

.rollout-phase h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.rollout-phase ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.rollout-phase li {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.rollout-phase li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.rollout-phase-active li::before { opacity: 1; }

/* ========== Proof stats ========== */

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  margin-bottom: 12px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 720px) { .proof-stats { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; } }

.proof-stat { display: flex; flex-direction: column; gap: 6px; }

.proof-stat-num {
  font-family: var(--fs-body);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
}

.proof-stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 32ch;
}

.proof-video-wrap {
  margin-top: 36px;
  margin-bottom: 24px;
  max-width: 320px;
}

.proof-video-facade {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  box-shadow: var(--shadow-md);
  background: var(--bg-dark-2);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.proof-video-facade:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.proof-video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proof-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.78);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--on-dark);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: transform 0.2s var(--ease);
}
.proof-video-facade:hover .proof-video-play { transform: translate(-50%, -50%) scale(1.08); }

.proof-video-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark);
  letter-spacing: -0.005em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ========== Compliance trust pillar ========== */

.section-compliance {
  padding-block: clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.compliance-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  max-width: 900px;
}
@media (max-width: 680px) {
  .compliance-inner { grid-template-columns: 1fr; gap: 20px; }
}

.compliance-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--hairline-strong);
}

.compliance-body h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  letter-spacing: -0.028em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.compliance-body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
}

.compliance-body .section-eyebrow { margin-bottom: 14px; }

/* ========== Why video bolt-on ========== */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
@media (max-width: 820px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.compare-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.compare-then { background: var(--bg-card); }
.compare-now { background: var(--bg-card); border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }

.compare-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 22px;
}
.compare-then .compare-tag { background: var(--danger-soft); color: #8A3B1A; }
.compare-now .compare-tag { background: var(--accent-soft); color: var(--accent-hover); }

.compare-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
}

.compare-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ========== How it works ========== */

.steps {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.steps li {
  background: var(--bg-card);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 26px;
  align-items: start;
  transition: background 0.2s var(--ease);
}
.steps li:hover { background: var(--bg-soft); }

.step-num {
  font-family: var(--fs-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.step-body h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.step-body p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 56ch;
}

/* ========== Pricing ========== */

.price-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(246, 242, 232, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  max-width: 780px;
  margin: 0;
}

.price-top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.price-tag {
  background: var(--accent);
  color: var(--on-dark);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 6px;
  flex-shrink: 0;
}

.price-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(246, 242, 232, 0.1);
  margin-bottom: 24px;
}
@media (max-width: 620px) {
  .price-split { grid-template-columns: 1fr; gap: 20px; }
}

.price-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-col-ongoing { border-left: 1px solid rgba(246, 242, 232, 0.12); padding-left: 28px; }
@media (max-width: 620px) { .price-col-ongoing { border-left: none; padding-left: 0; border-top: 1px solid rgba(246, 242, 232, 0.12); padding-top: 20px; } }

.price-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.price-label-founder {
  color: var(--accent);
}

.price-amount {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--on-dark);
  line-height: 1;
  margin: 6px 0 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.price-amount-accent {
  color: var(--accent);
}

.price-unit {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--on-dark-muted);
}

.price-note {
  font-size: 13.5px;
  color: var(--on-dark-muted);
  line-height: 1.55;
  max-width: 32ch;
}

.price-note strong {
  color: var(--on-dark);
  font-weight: 600;
}

.price-intro {
  font-size: 15px;
  color: var(--on-dark);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}

.price-inc {
  list-style: none;
  padding: 0 0 26px;
  margin: 0 0 24px;
  border-bottom: 1px solid rgba(246, 242, 232, 0.1);
  display: grid;
  gap: 14px;
}

.price-inc li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--on-dark);
}

.price-inc li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background-color: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path fill='none' stroke='%23F6F2E8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M4.5 9.5l3 3 6.5-6.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.price-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.section-dark .btn-primary {
  background: var(--on-dark);
  color: var(--bg-dark);
  border-color: var(--on-dark);
}
.section-dark .btn-primary:hover {
  background: var(--accent);
  color: var(--on-dark);
  border-color: var(--accent);
}

/* ========== Proof ========== */

.proof-inner {
  max-width: 820px;
}

/* ========== FAQ ========== */

.faq-list {
  margin-top: 16px;
  border-top: 1px solid var(--hairline-strong);
  max-width: 820px;
}

.faq-list details {
  border-bottom: 1px solid var(--hairline-strong);
  padding: 22px 0;
}

.faq-list summary {
  font-family: var(--fs-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "";
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23111' stroke-width='1.8' stroke-linecap='round' d='M4 8h8M8 4v8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.faq-list details[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%238F6424' stroke-width='2' stroke-linecap='round' d='M4 8h8'/></svg>");
  background-color: var(--accent-soft);
  border-color: var(--accent);
}

.faq-list details p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 64ch;
}

/* ========== Final CTA ========== */

.section-final {
  background: var(--bg-dark);
  color: var(--on-dark);
  padding-block: clamp(96px, 13vw, 160px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(143, 100, 36, 0.2), transparent 55%),
    radial-gradient(circle at 78% 80%, rgba(143, 100, 36, 0.1), transparent 55%);
  pointer-events: none;
}

.finale { position: relative; max-width: 720px; margin-inline: auto; }

.section-final h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--on-dark);
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}

.section-final p {
  color: var(--on-dark-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 58ch;
  margin-inline: auto;
}

.section-final .btn-primary {
  background: var(--accent);
  color: var(--on-dark);
  border-color: var(--accent);
}
.section-final .btn-primary:hover {
  background: var(--on-dark);
  color: var(--bg-dark);
  border-color: var(--on-dark);
}

.section-final .micro {
  margin-top: 22px;
  color: var(--on-dark-muted);
}

.finale-email {
  margin-top: 26px;
  font-size: 15px;
  color: var(--on-dark-muted);
}
.finale-email .link {
  color: var(--accent-soft);
  border-color: rgba(245, 237, 216, 0.4);
  font-weight: 600;
}
.section-final .link { color: var(--accent-soft); border-color: rgba(245, 237, 216, 0.4); }

/* ========== Footer ========== */

.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg);
  padding-block: 48px 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr auto;
  gap: 32px;
  align-items: start;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
}

.footer-tag {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 38ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}
.footer-nav a { color: var(--ink-2); font-weight: 500; }
.footer-nav a:hover { color: var(--accent); }

.copyright { font-size: 12.5px; color: var(--muted); }

/* ========== Accessibility ========== */

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

a.btn:focus-visible { outline-offset: 3px; }

/* ========== v12 additions ========== */

/* Desaturated "status quo" compare card */
.compare-then {
  background: #F1EFEA;
  filter: grayscale(0.55) saturate(0.5);
  opacity: 0.9;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: none;
}
.compare-then h3,
.compare-then p { color: #5C5853; }
.compare-then .compare-tag {
  background: rgba(0, 0, 0, 0.06);
  color: #6B6864;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Emphasize "what I ship" card */
.compare-now {
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-md);
}

/* v12 Pricing — lighter treatment, matches cream palette */
.section-pricing {
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.price-card-single {
  max-width: 680px;
  margin: 40px auto 0;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.price-headline {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}

.price-card-single .price-amount {
  font-family: var(--fs-body);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 4.25rem);
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin: 0 0 10px 0;
}

.price-card-single .price-unit {
  font-weight: 600;
  font-size: 0.45em;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 8px;
}

.price-card-single .price-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.price-card-single .price-intro {
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px 0;
}

.price-card-single .price-inc {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  gap: 12px;
}

.price-card-single .price-inc li {
  display: block;
  padding-left: 28px;
  position: relative;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.price-card-single .price-inc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 9.5l3 3 7-7' stroke='%23FFF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.price-card-single .price-cta {
  text-align: center;
  padding-top: 10px;
}

/* v12: center proof + FAQ blocks on desktop */
.proof-inner,
.faq-list {
  margin-inline: auto;
}

.proof-inner .section-eyebrow,
.proof-inner .section-title,
.proof-inner .lede-alt {
  text-align: center;
}

.proof-inner .lede-alt {
  margin-inline: auto;
  max-width: 62ch;
}

.proof-video-wrap {
  margin-inline: auto;
}

.proof-inner .cta-row {
  justify-content: center;
}

/* FAQ heading block centered, questions/answers remain left-aligned for readability */
#faq .section-eyebrow,
#faq .section-title {
  text-align: center;
}

/* v12: local-page cross-link under hero lede */
.eyebrow-local {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}
.eyebrow-local a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 1px;
}
.eyebrow-local a:hover {
  color: var(--accent-hover);
  border-bottom-style: solid;
}
