/* ============================================================
   Jackaroo Digital — styles.css
   Hand-authored plain CSS. Mobile-first; breakpoints at 640/768/1024px.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bedrock:  #0E2724;
  --ironbark: #1B3A36;
  --gum:      #6E7A3F;
  --gumdeep:  #525B2D;
  --ocean:    #2D6562;
  --rust:     #B5532A;
  --ember:    #D86A2D;
  --ochre:    #C18A2C;
  --sand:     #EFE3C8;
  --bone:     #F7F0DC;
  --cream:    #FAF5E7;
  --ink:      #0B1311;
  --dust:     #A89878;

  --font-display: 'Oswald', sans-serif;
  --font-sans:    'Manrope', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bone);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
input { font: inherit; color: inherit; }
[hidden] { display: none !important; }
::selection { background: var(--ember); color: var(--cream); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: rgba(14, 39, 36, 0.33); border-radius: 6px; }
::-webkit-scrollbar-track { background: transparent; }

/* ---------- Type helpers ---------- */
.mono { font-family: var(--font-mono); }
.text-rust { color: var(--rust); }
.text-ochre { color: var(--ochre); font-weight: 600; }
.text-cream { color: var(--cream); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ---------- Noscript fallback ---------- */
.noscript-fallback {
  max-width: 720px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--cream);
  border: 2px solid var(--bedrock);
}
.noscript-fallback h1 { font-family: var(--font-display); text-transform: uppercase; font-size: 2rem; margin: 0 0 1rem; }
.noscript-fallback ul { list-style: disc; padding-left: 1.25rem; }
.noscript-fallback a { color: var(--rust); }

/* ============================================================
   Reusable patterns
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.halftone {
  background-image: radial-gradient(circle at center, currentColor 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.halftone-fine {
  background-image: radial-gradient(circle at center, currentColor 0.8px, transparent 1px);
  background-size: 8px 8px;
}
.topo {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}

.hr-cream { height: 1px; background: rgba(247, 240, 220, 0.15); margin: 1.5rem 0; }

/* Tick dot pulse */
@keyframes tickFlash { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.tick-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gum);
  border-radius: 50%;
  animation: tickFlash 1.4s ease-in-out infinite;
}

/* Slow spin */
@keyframes slowSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.slow-spin { animation: slowSpin 30s linear infinite; }

/* Pulse ring on CTA */
@keyframes pulseRing {
  0%   { box-shadow: 0 6px 0 0 var(--bedrock), 0 0 0 0 rgba(216, 106, 45, 0.55); }
  70%  { box-shadow: 0 6px 0 0 var(--bedrock), 0 0 0 18px rgba(216, 106, 45, 0); }
  100% { box-shadow: 0 6px 0 0 var(--bedrock), 0 0 0 0 rgba(216, 106, 45, 0); }
}
.btn--pulse { animation: pulseRing 2.2s ease-out infinite; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
@media (min-width: 768px) { .btn { font-size: 1rem; } }
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

.btn--rust {
  background: var(--rust);
  color: var(--cream);
  box-shadow: 0 6px 0 0 var(--bedrock);
}
.btn--rust:hover { background: var(--ember); box-shadow: 0 4px 0 0 var(--bedrock); }

.btn--bedrock {
  background: var(--bedrock);
  color: var(--cream);
  box-shadow: 0 6px 0 0 #000;
}
.btn--bedrock:hover { background: var(--ironbark); box-shadow: 0 4px 0 0 #000; }

.btn--ghost {
  border: 1px solid rgba(11, 19, 17, 0.3);
  color: var(--bedrock);
}
.btn--ghost:hover { background: var(--bedrock); color: var(--cream); }
.btn--ghost-dark {
  border: 1px solid rgba(247, 240, 220, 0.3);
  color: var(--cream);
}
.btn--ghost-dark:hover { background: var(--cream); color: var(--bedrock); }
.btn--ghost-cream {
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn--ghost-cream:hover { background: var(--cream); color: var(--rust); transform: translateY(-2px); }

.btn--large {
  font-size: 1.05rem;
  padding: 1.1rem 1.75rem;
}
@media (min-width: 768px) { .btn--large { font-size: 1.25rem; } }

.btn--xl {
  font-size: 1.4rem;
  padding: 1.35rem 2rem;
}
@media (min-width: 768px) { .btn--xl { font-size: 1.85rem; padding: 1.5rem 2.5rem; } }

/* ============================================================
   Logo
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: stretch;
  gap: 0.75rem;
  height: 44px;
}
.logo__hat { height: 100%; width: auto; }
.logo__words {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 0.85;
}
.logo__primary {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.6rem;
  color: var(--bedrock);
}
.logo__secondary {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: var(--rust);
}
.logo--dark .logo__primary { color: var(--cream); }
.logo--at-top .logo__primary { color: var(--cream); }

/* ============================================================
   Section header (reusable)
   ============================================================ */
.section-header { max-width: 48rem; }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--cream);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
}
.section-header--light .section-title,
.section-title--light { color: var(--bedrock); }
.section-header--dark .section-title { color: var(--cream); }
.section-kicker {
  margin-top: 1.25rem;
  font-size: 1rem;
  max-width: 36rem;
  color: rgba(247, 240, 220, 0.75);
}
@media (min-width: 768px) { .section-kicker { font-size: 1.125rem; } }
.section-kicker--light, .section-header--light .section-kicker { color: rgba(11, 19, 17, 0.7); }
.section-kicker--dark, .section-header--dark .section-kicker { color: rgba(247, 240, 220, 0.75); }

/* ============================================================
   NAV / HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  transition: background .2s ease, border-color .2s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--bone);
  border-bottom-color: rgba(11, 19, 17, 0.1);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .nav-bar { height: 80px; } }
.logo-link { display: inline-flex; align-items: center; }

/* When transparent (not scrolled), the wordmark is on bedrock — show it cream */
.site-header:not(.is-scrolled):not(.is-menu-open) .logo .logo__primary { color: var(--cream); }

.nav { display: none; }
@media (min-width: 1024px) { .nav { display: block; } }
.nav__list { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--cream);
  transition: color .2s ease;
}
@media (min-width: 768px) { .nav__link { font-size: 1.05rem; } }
.nav__link:hover,
.nav__link:focus-visible { color: var(--rust); }
.site-header.is-scrolled .nav__link:hover,
.site-header.is-scrolled .nav__link:focus-visible { color: var(--rust); }
.site-header.is-scrolled .nav__link { color: var(--bedrock); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) { .nav-actions { gap: 1.25rem; } }
.nav-socials {
  display: none;
  align-items: center;
  gap: 0.75rem;
  color: rgba(247, 240, 220, 0.8);
}
@media (min-width: 1024px) { .nav-socials { display: flex; } }
.site-header.is-scrolled .nav-socials { color: rgba(11, 19, 17, 0.7); }
.nav-socials a {
  display: inline-flex;
  transition: color .2s ease, transform .2s ease;
}
.nav-socials a:hover,
.nav-socials a:focus-visible {
  color: var(--rust);
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-flex;
  padding: 0.5rem;
  color: var(--cream);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.site-header.is-scrolled .nav-toggle,
.site-header.is-menu-open .nav-toggle { color: var(--bedrock); }
.nav-toggle .nav-toggle__open { display: none; }
.site-header.is-menu-open .nav-toggle .nav-toggle__closed { display: none; }
.site-header.is-menu-open .nav-toggle .nav-toggle__open { display: inline; }

.nav-mobile {
  background: var(--bone);
  border-top: 1px solid rgba(11, 19, 17, 0.1);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }
.nav-mobile__link {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bedrock);
  padding: 0.25rem 0;
  transition: color .2s ease, padding-left .2s ease;
}
.nav-mobile__link:hover,
.nav-mobile__link:focus-visible {
  color: var(--rust);
  padding-left: 0.25rem;
}
.nav-mobile__socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(11, 19, 17, 0.1);
  color: rgba(11, 19, 17, 0.7);
}
.nav-mobile__socials a {
  display: inline-flex;
  transition: color .2s ease, transform .2s ease;
}
.nav-mobile__socials a:hover,
.nav-mobile__socials a:focus-visible {
  color: var(--rust);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 7rem 0 4rem;
  background: var(--bedrock);
  color: var(--cream);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: 9rem 0 6rem; }
}
.hero__topo, .hero__halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__topo { opacity: 0.5; }
.hero__topo { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>"); background-size: 800px 800px; }
.hero__halftone {
  inset: auto 0 0 0;
  height: 10rem;
  color: var(--ochre);
  opacity: 0.15;
  background-image: radial-gradient(circle at center, currentColor 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 7fr 5fr; gap: 3rem; align-items: start; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 1024px) { .hero__title { font-size: 5.5rem; } }
@media (min-width: 1280px) { .hero__title { font-size: 6rem; } }
.hero__title-underline {
  position: relative;
  display: inline-block;
}
.hero__title-underline svg {
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
}

.hero__lede {
  margin-top: 2rem;
  font-size: 1.05rem;
  max-width: 40rem;
  color: rgba(247, 240, 220, 0.8);
  line-height: 1.65;
}
@media (min-width: 768px) { .hero__lede { font-size: 1.2rem; } }

.hero__cta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Hero media */
.hero__media { position: relative; display: flex; justify-content: center; align-items: center; min-height: 320px; }
.hero__stamp {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero__stamp-ring,
.hero__stamp-inner {
  position: absolute;
  border-radius: 50%;
}
.hero__stamp-ring {
  width: 420px; height: 420px;
  border: 2px solid rgba(193, 138, 44, 0.25);
}
@media (min-width: 768px) { .hero__stamp-ring { width: 520px; height: 520px; } }
.hero__stamp-inner {
  width: 360px; height: 360px;
  border: 1px solid rgba(193, 138, 44, 0.15);
}
@media (min-width: 768px) { .hero__stamp-inner { width: 460px; height: 460px; } }
.hero__stamp-text {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero__glow {
  position: absolute;
  width: 320px; height: 320px;
  background: rgba(181, 83, 42, 0.2);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
@media (min-width: 768px) { .hero__glow { width: 400px; height: 400px; } }
.hero__rider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* Hero stats */
.hero__stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(247, 240, 220, 0.1);
  border: 1px solid rgba(247, 240, 220, 0.1);
}
@media (min-width: 768px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); margin-top: 6rem; }
}
.hero__stat {
  background: var(--bedrock);
  padding: 1.5rem;
}
@media (min-width: 768px) { .hero__stat { padding: 2rem; } }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--ochre);
  line-height: 1;
}
@media (min-width: 768px) { .hero__stat-num { font-size: 3rem; } }
.hero__stat-label {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.6);
}

/* ============================================================
   USP MARQUEE
   ============================================================ */
.usp-bar {
  background: var(--bedrock);
  border-top: 1px solid rgba(247, 240, 220, 0.1);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .usp-bar { padding: 3rem 0; } }
.usp-bar__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 768px) { .usp-bar__fade { width: 8rem; } }
.usp-bar__fade--left { left: 0; background: linear-gradient(to right, var(--bedrock), transparent); }
.usp-bar__fade--right { right: 0; background: linear-gradient(to left, var(--bedrock), transparent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.usp-bar__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
@media (min-width: 768px) { .usp-bar__track { gap: 4rem; } }
.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  color: var(--cream);
}
@media (min-width: 768px) { .usp-bar__item { gap: 1.25rem; } }
.usp-bar__item span:last-child {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) { .usp-bar__item span:last-child { font-size: 1.5rem; } }
.usp-bar__icon {
  width: 2.25rem; height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
}
@media (min-width: 768px) { .usp-bar__icon { width: 2.75rem; height: 2.75rem; } }

/* ============================================================
   PROBLEM (Comparison)
   ============================================================ */
.problem {
  position: relative;
  background: var(--sand);
  color: var(--bedrock);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .problem { padding: 7rem 0; } }
.problem__topo {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}
.problem .container { position: relative; }
.problem__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .problem__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.problem-card {
  background: var(--bone);
  border: 2px solid rgba(14, 39, 36, 0.15);
  padding: 2rem;
  color: var(--bedrock);
}
@media (min-width: 768px) { .problem-card { padding: 2.5rem; } }
.problem-card--dark {
  background: var(--bedrock);
  color: var(--cream);
  border-color: var(--bedrock);
  box-shadow: 12px 12px 0 0 var(--rust);
}

.problem-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.problem-card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (min-width: 768px) { .problem-card__title { font-size: 1.875rem; } }
.problem-card__badge {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.problem-card__badge--cross {
  background: rgba(14, 39, 36, 0.05);
  color: rgba(14, 39, 36, 0.4);
}
.problem-card__badge--check { background: var(--rust); color: white; }

.problem-card__list > li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(14, 39, 36, 0.1);
}
.problem-card--dark .problem-card__list > li { border-bottom-color: rgba(247, 240, 220, 0.1); }
.problem-card__list > li:last-child { border-bottom: 0; }
.problem-card__num {
  width: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(14, 39, 36, 0.4);
  margin-top: 0.25rem;
}
.problem-card__num--ochre { color: var(--ochre); }
.problem-card__icon {
  flex-shrink: 0;
  width: 1.25rem; height: 1.25rem;
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.problem-card__icon--cross {
  border: 1px solid rgba(14, 39, 36, 0.3);
  color: rgba(14, 39, 36, 0.6);
}
.problem-card__icon--check {
  background: var(--gum);
  border: 1px solid var(--gum);
}
.problem-card__item-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.problem-card__item-desc {
  font-size: 0.875rem;
  color: rgba(14, 39, 36, 0.65);
  margin-top: 0.1rem;
}
.problem-card--dark .problem-card__item-desc { color: rgba(247, 240, 220, 0.7); }

.problem-card__foot {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(14, 39, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.problem-card__foot--dark { border-top-color: rgba(247, 240, 220, 0.15); }
.problem-card__foot-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 39, 36, 0.5);
}
.problem-card__foot-label--ochre { color: var(--ochre); }
.problem-card__foot-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
}
.problem-card__foot-value--muted { color: rgba(14, 39, 36, 0.4); }
.problem-card__foot-value--ochre { color: var(--ochre); }

.problem__multiplier {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .problem__multiplier { flex-direction: row; justify-content: center; gap: 2.5rem; }
}
.problem__multiplier-left,
.problem__multiplier-right {
  color: rgba(14, 39, 36, 0.6);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
@media (min-width: 768px) {
  .problem__multiplier-left { text-align: right; }
  .problem__multiplier-right { text-align: left; }
}
.problem__multiplier-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--rust);
  font-size: 4.5rem;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .problem__multiplier-num { font-size: 6rem; } }

/* ============================================================
   FRAMEWORK TIMELINE
   ============================================================ */
.framework {
  position: relative;
  background: var(--bedrock);
  color: var(--cream);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .framework { padding: 7rem 0; } }
.framework__topo {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}
.framework .container { position: relative; }
.framework__list {
  margin-top: 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) { .framework__list { gap: 3rem; } }
.framework__track {
  position: absolute;
  top: 0; bottom: 0;
  width: 4px;
  background: var(--rust);
  left: 1.5rem;
  display: none;
}
@media (min-width: 768px) { .framework__track { display: block; left: 2.5rem; } }
@media (min-width: 1024px) { .framework__track { left: 50%; transform: translateX(-50%); } }

.framework__step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .framework__step { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.framework__dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--rust);
  border: 4px solid var(--bedrock);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .framework__dot { left: 1rem; }
}
@media (min-width: 1024px) {
  .framework__dot { left: 50%; transform: translateX(-50%); }
}

.framework__text { padding-left: 4rem; }
@media (min-width: 768px) { .framework__text { padding-left: 5rem; } }
@media (min-width: 1024px) {
  .framework__text { padding-left: 0; }
  .framework__text--left { padding-right: 4rem; text-align: right; }
  .framework__step--right .framework__text--right { grid-column-start: 2; padding-left: 4rem; }
}

.framework__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .framework__text--left .framework__meta { justify-content: flex-end; }
}
.framework__stage {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
}
.framework__rule { width: 2rem; height: 1px; background: rgba(193, 138, 44, 0.6); }
.framework__stat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.5);
}

.framework__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 2.25rem;
}
@media (min-width: 768px) { .framework__title { font-size: 3rem; } }
.framework__sub {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ochre);
}
.framework__desc {
  margin-top: 1rem;
  color: rgba(247, 240, 220, 0.75);
  font-size: 1rem;
  line-height: 1.65;
}
@media (min-width: 768px) { .framework__desc { font-size: 1.125rem; } }
.framework__bullets {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1.5rem;
}
@media (min-width: 640px) { .framework__bullets { grid-template-columns: 1fr 1fr; } }
.framework__bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(247, 240, 220, 0.7);
}
.framework__bullets li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--rust);
}
@media (min-width: 1024px) {
  .framework__text--left .framework__bullets li { flex-direction: row-reverse; }
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc-section {
  background: var(--bone);
  padding: 5rem 0;
  position: relative;
}
@media (min-width: 768px) { .calc-section { padding: 7rem 0; } }
.calc-section .section-title { font-size: clamp(2.25rem, 6vw, 3.75rem); }

.calc {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bedrock);
  color: var(--cream);
  border: 1px solid rgba(193, 138, 44, 0.3);
}
@media (min-width: 1024px) {
  .calc { grid-template-columns: 3fr 2fr; }
}
.calc__inputs {
  padding: 2rem;
  border-right: 1px solid rgba(247, 240, 220, 0.1);
}
@media (min-width: 768px) { .calc__inputs { padding: 2.5rem; } }
.calc__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .calc__title { font-size: 2.25rem; } }
.calc__subtitle {
  color: rgba(247, 240, 220, 0.7);
  font-size: 0.875rem;
  max-width: 28rem;
  margin-bottom: 2.5rem;
}
.calc__field { margin-bottom: 2rem; }
.calc__field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.calc__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.8);
}
.calc__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ochre);
}
.calc__value-unit {
  margin-left: 0.25rem;
  color: rgba(247, 240, 220, 0.4);
  font-size: 0.875rem;
}
.calc__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(247, 240, 220, 0.4);
}
.calc__benchmark {
  margin-top: 2.5rem;
  padding: 1rem;
  border: 1px solid rgba(247, 240, 220, 0.15);
  background: rgba(27, 58, 54, 0.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.7);
}

.calc__output {
  position: relative;
  padding: 2rem;
  background: var(--rust);
  color: var(--cream);
  overflow: hidden;
}
@media (min-width: 768px) { .calc__output { padding: 2.5rem; } }
.calc__output-halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--cream);
  opacity: 0.1;
  background-image: radial-gradient(circle at center, currentColor 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.calc__output-rings {
  position: absolute;
  right: -3rem;
  top: -3rem;
  pointer-events: none;
}
.calc__output-rings > div {
  width: 12rem;
  height: 12rem;
  border: 2px solid rgba(247, 240, 220, 0.15);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
.calc__output-rings > div:nth-child(2) {
  width: 8rem;
  height: 8rem;
  right: 1.5rem;
  top: 1.5rem;
  border-color: rgba(247, 240, 220, 0.2);
}
.calc__output-body { position: relative; }
.calc__output-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.8);
  margin-bottom: 0.5rem;
}
.calc__output-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .calc__output-headline { font-size: 3.75rem; } }
.calc__output-sub {
  color: rgba(247, 240, 220, 0.8);
  font-size: 0.875rem;
}
.calc__output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.calc__output-small-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.7);
}
.calc__output-small-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

/* Calc form */
.calc-form, .calc-form__success {
  background: rgba(14, 39, 36, 0.95);
  margin: 1.5rem -2rem -2rem;
  padding: 2rem 2rem;
}
@media (min-width: 768px) {
  .calc-form, .calc-form__success { margin: 1.5rem -2.5rem -2.5rem; padding: 2rem 2.5rem; }
}
.calc-form__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.calc-form__subtitle {
  color: rgba(247, 240, 220, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.calc-form__fields { display: flex; flex-direction: column; gap: 0.75rem; }
.calc-form__field input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(247, 240, 220, 0.25);
  padding: 0.625rem 0;
  color: var(--cream);
  font-size: 0.875rem;
  outline: none;
}
.calc-form__field input::placeholder { color: rgba(247, 240, 220, 0.3); }
.calc-form__field input:focus { border-bottom-color: var(--ochre); }
.calc-form__field--error input { border-bottom-color: var(--ember); }
.calc-form__error {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ember);
  margin-top: 0.25rem;
}
.calc-form__submit {
  margin-top: 1.5rem;
  width: 100%;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.25rem;
  box-shadow: 0 5px 0 0 #000;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.calc-form__submit:hover { background: var(--ember); transform: translateY(-2px); box-shadow: 0 3px 0 0 #000; }
.calc-form__note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(247, 240, 220, 0.4);
  margin-top: 0.75rem;
  text-align: center;
}
.calc-form__success {
  text-align: center;
}
.calc-form__success-icon {
  width: 3rem; height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gum);
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-form__success-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.calc-form__success-text {
  color: rgba(247, 240, 220, 0.7);
  font-size: 0.875rem;
}

/* Range input */
input[type=range].rust-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(14, 39, 36, 0.1);
  border-radius: 999px;
  outline: none;
}
input[type=range].rust-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  background: var(--rust);
  border: 3px solid var(--cream);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
input[type=range].rust-range::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--rust);
  border: 3px solid var(--cream);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
/* dark thumb track within calc */
.calc__inputs input[type=range].rust-range { background: rgba(247, 240, 220, 0.1); }

/* ============================================================
   CASE CARDS
   ============================================================ */
.cases {
  background: var(--bone);
  color: var(--bedrock);
  padding: 5rem 0;
}
@media (min-width: 768px) { .cases { padding: 7rem 0; } }
.cases__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .cases__grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
.case-card {
  background: var(--cream);
  border: 2px solid rgba(14, 39, 36, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--rust);
  box-shadow: 8px 8px 0 0 var(--bedrock);
}
.case-card__body {
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-card__industry {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.case-card__headline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 1.5rem;
}
@media (min-width: 768px) { .case-card__headline { font-size: 1.875rem; } }
.case-card__quote {
  margin-top: 1rem;
  color: rgba(14, 39, 36, 0.75);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
}
.case-card__person {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(14, 39, 36, 0.1);
}
.case-card__avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--ochre));
  color: var(--cream);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-card__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.case-card__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14, 39, 36, 0.6);
}
.case-card__metrics {
  margin: 1.25rem -1.75rem -1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--bedrock);
  color: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.case-card__metric-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ochre);
}
@media (min-width: 768px) { .case-card__metric-value { font-size: 1.875rem; } }
.case-card__metric-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.6);
  margin-top: 0.25rem;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  position: relative;
  background: var(--sand);
  color: var(--bedrock);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .pricing { padding: 7rem 0; } }
.pricing__topo {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}
.pricing .container { position: relative; }
.pricing__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
.tier {
  position: relative;
  background: var(--cream);
  color: var(--bedrock);
  border: 2px solid rgba(14, 39, 36, 0.2);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) { .tier { padding: 2rem; } }
.tier--featured {
  background: var(--bedrock);
  color: var(--cream);
  border-color: var(--bedrock);
  box-shadow: 12px 12px 0 0 var(--rust);
}
.tier__badge {
  position: absolute;
  top: -0.75rem; right: 2rem;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
}
.tier__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 2.25rem;
}
.tier__sub {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rust);
}
.tier__sub--ochre { color: var(--ochre); }
.tier__ideal {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 39, 36, 0.6);
}
.tier__ideal--dark { color: rgba(247, 240, 220, 0.6); }
.tier__price-block {
  margin: 1.75rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(14, 39, 36, 0.15);
  border-bottom: 1px solid rgba(14, 39, 36, 0.15);
}
.tier__price-block--dark {
  border-top-color: rgba(247, 240, 220, 0.15);
  border-bottom-color: rgba(247, 240, 220, 0.15);
}
.tier__from {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.tier__from--ochre { color: var(--ochre); }
.tier__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .tier__price { font-size: 3rem; } }
.tier__currency {
  font-size: 1rem;
  font-family: var(--font-sans);
  margin-left: 0.5rem;
  color: rgba(14, 39, 36, 0.6);
}
.tier__currency--dark { color: rgba(247, 240, 220, 0.6); }
.tier__period {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(14, 39, 36, 0.6);
}
.tier__period--dark { color: rgba(247, 240, 220, 0.6); }
.tier__features { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.tier__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 15px;
}
.tier__check, .tier__cross {
  margin-top: 0.1rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tier__check { background: var(--gum); }
.tier__cross { border: 1px solid currentColor; opacity: 0.4; }
.tier__feature--excluded {
  text-decoration: line-through;
  color: rgba(14, 39, 36, 0.4);
}
.tier__feature--excluded-dark { color: rgba(247, 240, 220, 0.4); }
.tier__cta { width: 100%; justify-content: center; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { background: var(--bone); padding: 5rem 0; }
@media (min-width: 768px) { .guarantee { padding: 7rem 0; } }
.guarantee__container { max-width: 72rem; }
.guarantee__card {
  position: relative;
  background: var(--cream);
  border: 6px solid var(--bedrock);
  color: var(--bedrock);
  padding: 2.5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .guarantee__card { padding: 4rem; } }
.guarantee__corners::before,
.guarantee__corners::after,
.guarantee__card::before,
.guarantee__card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: currentColor;
}
.guarantee__card::before { top: 0; left: 0; border-top: 1.5px solid; border-left: 1.5px solid; }
.guarantee__card::after  { top: 0; right: 0; border-top: 1.5px solid; border-right: 1.5px solid; }
.guarantee__corners::before { bottom: 0; left: 0; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.guarantee__corners::after  { bottom: 0; right: 0; border-bottom: 1.5px solid; border-right: 1.5px solid; }

.guarantee__stamp {
  position: absolute;
  right: -2rem;
  top: -2rem;
  opacity: 0.07;
  pointer-events: none;
}
.guarantee__inner { position: relative; }
.guarantee__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 2.25rem;
  max-width: 56rem;
}
@media (min-width: 768px) { .guarantee__title { font-size: 3rem; } }
@media (min-width: 1024px) { .guarantee__title { font-size: 3.75rem; } }
.guarantee__lede {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(14, 39, 36, 0.75);
  line-height: 1.6;
  max-width: 48rem;
}
.guarantee__points {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .guarantee__points { grid-template-columns: 1fr 1fr 1fr; } }
.guarantee__point { border-left: 2px solid var(--rust); padding-left: 1rem; }
.guarantee__point-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
}
@media (min-width: 768px) { .guarantee__point-title { font-size: 1.5rem; } }
.guarantee__point-desc {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: rgba(14, 39, 36, 0.7);
}
@media (min-width: 768px) { .guarantee__point-desc { font-size: 1.125rem; } }

.guarantee__inner > .btn { margin-top: 2.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  background: var(--bedrock);
  color: var(--cream);
  padding: 5rem 0;
}
@media (min-width: 768px) { .faq { padding: 7rem 0; } }
.faq__topo {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}
.faq__container { position: relative; max-width: 64rem; }
.faq__list {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(247, 240, 220, 0.15);
}
.faq__item {
  border-bottom: 1px solid rgba(247, 240, 220, 0.15);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .faq__item summary { padding: 1.5rem 0; } }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary > :nth-child(1),
.faq__item summary > :nth-child(2) { display: inline-block; }
.faq__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--rust);
  margin-right: 1.5rem;
  vertical-align: top;
}
.faq__q {
  flex: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  transition: color .15s;
}
@media (min-width: 768px) { .faq__q { font-size: 1.5rem; } }
.faq__item summary:hover .faq__q { color: var(--ochre); }
.faq__icon {
  flex-shrink: 0;
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(247, 240, 220, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 2.5rem 1.5rem 2.5rem;
  color: rgba(247, 240, 220, 0.75);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 56rem;
}
@media (min-width: 768px) { .faq__a { font-size: 1.125rem; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  background: var(--rust);
  color: var(--cream);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .final-cta { padding: 7rem 0; } }
.final-cta__halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--bedrock);
  opacity: 0.1;
  background-image: radial-gradient(circle at center, currentColor 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.final-cta__circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(247, 240, 220, 0.15);
}
.final-cta__circle--bl {
  left: -5rem; bottom: -5rem;
  width: 20rem; height: 20rem;
}
.final-cta__circle--tr {
  right: -8rem; top: -8rem;
  width: 24rem; height: 24rem;
  border-color: rgba(247, 240, 220, 0.1);
}
.final-cta__inner { position: relative; text-align: center; max-width: 64rem; }
.final-cta__title {
  display: inline-block;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: clamp(1.875rem, 7vw, 4.5rem);
}
.final-cta__scribble {
  display: inline-block;
  white-space: nowrap;
  margin-left: 0.75rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'><path d='M2 8 Q 50 2 100 7 T 198 6' stroke='%23B5532A' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 10px;
  padding-bottom: 8px;
}
@media (min-width: 640px) { .final-cta__scribble { margin-left: 1.5rem; } }
@media (min-width: 768px) { .final-cta__scribble { margin-left: 2.5rem; } }
@media (min-width: 1024px) { .final-cta__scribble { margin-left: 3.5rem; } }

.final-cta__lede {
  margin-top: 2rem;
  color: rgba(247, 240, 220, 0.85);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .final-cta__lede { font-size: 1.25rem; } }
.final-cta__buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.final-cta__badge {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  color: var(--cream);
}
@media (min-width: 768px) { .final-cta__badge { font-size: 1.5rem; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247, 240, 220, 0.7);
  padding: 4rem 0 2rem;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 240, 220, 0.1);
}
@media (min-width: 768px) {
  .site-footer__top { grid-template-columns: 4fr 4fr 4fr; }
}
.site-footer__socials {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-footer__socials a:hover { color: var(--rust); }
.site-footer__heading {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1rem;
}
.site-footer__list { display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.875rem; }
.site-footer__list a:hover { color: var(--rust); }
.site-footer__list li { display: flex; align-items: center; gap: 0.75rem; }
.site-footer__key {
  width: 3rem;
  color: rgba(247, 240, 220, 0.4);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-footer__bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.4);
}
@media (min-width: 768px) {
  .site-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.site-footer__legal a:hover { color: var(--rust); }
.site-footer__status { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   STICKY BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.sticky-cta.is-shown { transform: translateY(0); pointer-events: auto; }
.sticky-cta__inner {
  background: var(--bedrock);
  color: var(--cream);
  border-top: 2px solid var(--rust);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sticky-cta__inner { padding: 1rem 2rem; }
}
.sticky-cta__text { flex: 1; }
.sticky-cta__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) { .sticky-cta__title { font-size: 1.125rem; } }
.sticky-cta__sub {
  display: none;
  color: rgba(247, 240, 220, 0.6);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
@media (min-width: 768px) { .sticky-cta__sub { display: block; } }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 17, 0.78);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 56rem;
  background: var(--bone);
  color: var(--bedrock);
  border: 1px solid var(--bedrock);
  max-height: 92vh;
  overflow-y: auto;
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(14, 39, 36, 0.15);
  background: var(--bedrock);
  color: var(--cream);
}
@media (min-width: 768px) { .modal__head { padding: 1.5rem; } }
.modal__head-left { display: flex; align-items: center; gap: 1rem; }
.modal__divider {
  display: none;
  width: 1px; height: 1.5rem;
  background: rgba(247, 240, 220, 0.2);
}
@media (min-width: 768px) { .modal__divider { display: inline-block; } }
.modal__head-meta {
  display: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.7);
}
@media (min-width: 768px) { .modal__head-meta { display: inline-block; } }
.modal__close {
  color: rgba(247, 240, 220, 0.7);
  font-size: 1.5rem;
  line-height: 1;
  width: 2rem; height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover { color: var(--cream); }

.modal__progress {
  display: flex;
  border-bottom: 1px solid rgba(14, 39, 36, 0.15);
}
.modal__step-pill {
  flex: 1;
  padding: 0.75rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-right: 1px solid rgba(14, 39, 36, 0.15);
  background: var(--bone);
}
@media (min-width: 768px) { .modal__step-pill { padding: 0.75rem 1.25rem; } }
.modal__step-pill:last-child { border-right: 0; }
.modal__step-pill.is-active { background: var(--rust); color: var(--cream); }
.modal__step-pill.is-done { background: rgba(110, 122, 63, 0.2); }
.modal__step-pill-num {
  width: 1.5rem; height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(14, 39, 36, 0.1);
  color: rgba(14, 39, 36, 0.6);
}
.modal__step-pill.is-active .modal__step-pill-num { background: var(--cream); color: var(--rust); }
.modal__step-pill.is-done .modal__step-pill-num { background: var(--gum); color: var(--cream); }
.modal__step-pill-label {
  display: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .modal__step-pill-label { display: inline-block; } }

.modal__body { padding: 1.5rem; }
@media (min-width: 768px) { .modal__body { padding: 2.5rem; } }
.modal__step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--rust);
  margin-bottom: 0.75rem;
}
.modal__step-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .modal__step-title { font-size: 2.25rem; } }
.modal__step-lede { color: rgba(14, 39, 36, 0.65); margin-bottom: 2rem; }

.modal__group { margin-bottom: 2rem; }
.modal__group:last-child { margin-bottom: 0; }
.modal__group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.modal__option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .modal__option-grid--two  { grid-template-columns: 1fr 1fr; }
  .modal__option-grid--four { grid-template-columns: repeat(4, 1fr); }
}
.modal__option-grid--four { grid-template-columns: 1fr 1fr; gap: 0.5rem; }

.modal__option {
  text-align: left;
  padding: 1.25rem;
  border: 2px solid rgba(14, 39, 36, 0.15);
  transition: border-color .15s, background .15s;
}
.modal__option:hover { border-color: rgba(14, 39, 36, 0.4); }
.modal__option.is-selected { border-color: var(--rust); background: rgba(181, 83, 42, 0.05); }
.modal__option-title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; }
.modal__option-sub { font-size: 0.875rem; color: rgba(14, 39, 36, 0.65); margin-top: 0.25rem; }

.modal__pill {
  padding: 0.75rem;
  border: 2px solid rgba(14, 39, 36, 0.15);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.875rem;
}
.modal__pill:hover { border-color: rgba(14, 39, 36, 0.4); }
.modal__pill.is-selected { border-color: var(--rust); background: var(--rust); color: var(--cream); }

.modal__check {
  text-align: left;
  padding: 1rem;
  border: 2px solid rgba(14, 39, 36, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.modal__check:hover { border-color: rgba(14, 39, 36, 0.4); }
.modal__check.is-selected { border-color: var(--rust); background: rgba(181, 83, 42, 0.05); }
.modal__check-box {
  width: 1.25rem; height: 1.25rem;
  border: 2px solid rgba(14, 39, 36, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.75rem;
}
.modal__check.is-selected .modal__check-box {
  background: var(--rust);
  border-color: var(--rust);
}
.modal__check.is-selected .modal__check-box::after {
  content: "✓";
  color: var(--cream);
  font-size: 0.875rem;
}

.modal__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .modal__fields { grid-template-columns: 1fr 1fr; } }
.modal__field--full { grid-column: 1 / -1; }
.modal__field-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 39, 36, 0.7);
  margin-bottom: 0.5rem;
}
.modal__field input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(14, 39, 36, 0.25);
  padding: 0.625rem 0;
  color: var(--bedrock);
  outline: none;
}
.modal__field input:focus { border-bottom-color: var(--rust); }
.modal__field input::placeholder { color: rgba(14, 39, 36, 0.3); }
.modal__field--error input { border-bottom-color: var(--rust); }

.modal__error {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--rust);
  margin-top: 0.5rem;
}

.modal__slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) { .modal__slots { grid-template-columns: repeat(3, 1fr); } }
.modal__slot {
  padding: 1rem;
  border: 2px solid rgba(14, 39, 36, 0.15);
  text-align: left;
  transition: border-color .15s, background .15s, color .15s;
}
.modal__slot:hover { border-color: rgba(14, 39, 36, 0.4); }
.modal__slot.is-selected { border-color: var(--rust); background: var(--rust); color: var(--cream); }
.modal__slot-day {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.modal__slot-time { font-family: var(--font-display); font-size: 1.25rem; margin-top: 0.25rem; }

.modal__step--success { text-align: center; padding: 2rem 0; }
.modal__success-icon {
  width: 4rem; height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gum);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__success-text { color: rgba(14, 39, 36, 0.7); max-width: 28rem; margin: 0 auto 0.5rem; }
.modal__success-ref { font-family: var(--font-mono); font-size: 11px; color: rgba(14, 39, 36, 0.5); margin-top: 1.5rem; }

.modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-top: 1px solid rgba(14, 39, 36, 0.15);
  background: var(--bone);
}
@media (min-width: 768px) { .modal__foot { padding: 1.5rem; } }
.modal__back {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  color: rgba(14, 39, 36, 0.7);
}
.modal__back:hover { color: var(--bedrock); }
.modal__foot--success { justify-content: center; }

/* ============================================================
   Jackaroo Digital — styles.css
   Hand-authored plain CSS. Mobile-first; breakpoints at 640/768/1024px.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bedrock:  #0E2724;
  --ironbark: #1B3A36;
  --gum:      #6E7A3F;
  --gumdeep:  #525B2D;
  --ocean:    #2D6562;
  --rust:     #B5532A;
  --ember:    #D86A2D;
  --ochre:    #C18A2C;
  --sand:     #EFE3C8;
  --bone:     #F7F0DC;
  --cream:    #FAF5E7;
  --ink:      #0B1311;
  --dust:     #A89878;

  --font-display: 'Oswald', sans-serif;
  --font-sans:    'Manrope', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bone);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
input { font: inherit; color: inherit; }
[hidden] { display: none !important; }
::selection { background: var(--ember); color: var(--cream); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: rgba(14, 39, 36, 0.33); border-radius: 6px; }
::-webkit-scrollbar-track { background: transparent; }

/* ---------- Type helpers ---------- */
.mono { font-family: var(--font-mono); }
.text-rust { color: var(--rust); }
.text-ochre { color: var(--ochre); font-weight: 600; }
.text-cream { color: var(--cream); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ---------- Noscript fallback ---------- */
.noscript-fallback {
  max-width: 720px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--cream);
  border: 2px solid var(--bedrock);
}
.noscript-fallback h1 { font-family: var(--font-display); text-transform: uppercase; font-size: 2rem; margin: 0 0 1rem; }
.noscript-fallback ul { list-style: disc; padding-left: 1.25rem; }
.noscript-fallback a { color: var(--rust); }

/* ============================================================
   Reusable patterns
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.halftone {
  background-image: radial-gradient(circle at center, currentColor 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.halftone-fine {
  background-image: radial-gradient(circle at center, currentColor 0.8px, transparent 1px);
  background-size: 8px 8px;
}
.topo {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}

.hr-cream { height: 1px; background: rgba(247, 240, 220, 0.15); margin: 1.5rem 0; }

/* Tick dot pulse */
@keyframes tickFlash { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.tick-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gum);
  border-radius: 50%;
  animation: tickFlash 1.4s ease-in-out infinite;
}

/* Slow spin */
@keyframes slowSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.slow-spin { animation: slowSpin 30s linear infinite; }

/* Pulse ring on CTA */
@keyframes pulseRing {
  0%   { box-shadow: 0 6px 0 0 var(--bedrock), 0 0 0 0 rgba(216, 106, 45, 0.55); }
  70%  { box-shadow: 0 6px 0 0 var(--bedrock), 0 0 0 18px rgba(216, 106, 45, 0); }
  100% { box-shadow: 0 6px 0 0 var(--bedrock), 0 0 0 0 rgba(216, 106, 45, 0); }
}
.btn--pulse { animation: pulseRing 2.2s ease-out infinite; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
@media (min-width: 768px) { .btn { font-size: 1rem; } }
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

.btn--rust {
  background: var(--rust);
  color: var(--cream);
  box-shadow: 0 6px 0 0 var(--bedrock);
}
.btn--rust:hover { background: var(--ember); box-shadow: 0 4px 0 0 var(--bedrock); }

.btn--bedrock {
  background: var(--bedrock);
  color: var(--cream);
  box-shadow: 0 6px 0 0 #000;
}
.btn--bedrock:hover { background: var(--ironbark); box-shadow: 0 4px 0 0 #000; }

.btn--ghost {
  border: 1px solid rgba(11, 19, 17, 0.3);
  color: var(--bedrock);
}
.btn--ghost:hover { background: var(--bedrock); color: var(--cream); }
.btn--ghost-dark {
  border: 1px solid rgba(247, 240, 220, 0.3);
  color: var(--cream);
}
.btn--ghost-dark:hover { background: var(--cream); color: var(--bedrock); }
.btn--ghost-cream {
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn--ghost-cream:hover { background: var(--cream); color: var(--rust); transform: translateY(-2px); }

.btn--large {
  font-size: 1.05rem;
  padding: 1.1rem 1.75rem;
}
@media (min-width: 768px) { .btn--large { font-size: 1.25rem; } }

.btn--xl {
  font-size: 1.4rem;
  padding: 1.35rem 2rem;
}
@media (min-width: 768px) { .btn--xl { font-size: 1.85rem; padding: 1.5rem 2.5rem; } }

/* ============================================================
   Logo
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: stretch;
  gap: 0.75rem;
  height: 44px;
}
.logo__hat { height: 100%; width: auto; }
.logo__words {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 0.85;
}
.logo__primary {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.6rem;
  color: var(--bedrock);
}
.logo__secondary {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: var(--rust);
}
.logo--dark .logo__primary { color: var(--cream); }
.logo--at-top .logo__primary { color: var(--cream); }

/* ============================================================
   Section header (reusable)
   ============================================================ */
.section-header { max-width: 48rem; }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--cream);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
}
.section-header--light .section-title,
.section-title--light { color: var(--bedrock); }
.section-header--dark .section-title { color: var(--cream); }
.section-kicker {
  margin-top: 1.25rem;
  font-size: 1rem;
  max-width: 36rem;
  color: rgba(247, 240, 220, 0.75);
}
@media (min-width: 768px) { .section-kicker { font-size: 1.125rem; } }
.section-kicker--light, .section-header--light .section-kicker { color: rgba(11, 19, 17, 0.7); }
.section-kicker--dark, .section-header--dark .section-kicker { color: rgba(247, 240, 220, 0.75); }

/* ============================================================
   NAV / HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  transition: background .2s ease, border-color .2s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--bone);
  border-bottom-color: rgba(11, 19, 17, 0.1);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .nav-bar { height: 80px; } }
.logo-link { display: inline-flex; align-items: center; }

/* When transparent (not scrolled), the wordmark is on bedrock — show it cream */
.site-header:not(.is-scrolled):not(.is-menu-open) .logo .logo__primary { color: var(--cream); }

.nav { display: none; }
@media (min-width: 1024px) { .nav { display: block; } }
.nav__list { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--cream);
  transition: color .2s ease;
}
@media (min-width: 768px) { .nav__link { font-size: 1.05rem; } }
.nav__link:hover,
.nav__link:focus-visible { color: var(--rust); }
.site-header.is-scrolled .nav__link:hover,
.site-header.is-scrolled .nav__link:focus-visible { color: var(--rust); }
.site-header.is-scrolled .nav__link { color: var(--bedrock); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) { .nav-actions { gap: 1.25rem; } }
@media (max-width: 640px) {
  .nav-bar .logo { height: 36px; gap: 0.5rem; }
  .nav-bar .logo__primary { font-size: 1.15rem; }
  .nav-bar .logo__secondary { font-size: 0.7rem; letter-spacing: 0.14em; }
  .nav-actions { gap: 0.5rem; }
  .nav-actions > .btn--rust { padding: 0.5rem 0.75rem; font-size: 0.7rem; gap: 0.4rem; }
  .nav-actions > .btn--rust svg { width: 11px; height: 11px; }
}
.nav-socials {
  display: none;
  align-items: center;
  gap: 0.75rem;
  color: rgba(247, 240, 220, 0.8);
}
@media (min-width: 1024px) { .nav-socials { display: flex; } }
.site-header.is-scrolled .nav-socials { color: rgba(11, 19, 17, 0.7); }
.nav-socials a {
  display: inline-flex;
  transition: color .2s ease, transform .2s ease;
}
.nav-socials a:hover,
.nav-socials a:focus-visible {
  color: var(--rust);
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-flex;
  padding: 0.5rem;
  color: var(--cream);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.site-header.is-scrolled .nav-toggle,
.site-header.is-menu-open .nav-toggle { color: var(--bedrock); }
.nav-toggle .nav-toggle__open { display: none; }
.site-header.is-menu-open .nav-toggle .nav-toggle__closed { display: none; }
.site-header.is-menu-open .nav-toggle .nav-toggle__open { display: inline; }

.nav-mobile {
  background: var(--bone);
  border-top: 1px solid rgba(11, 19, 17, 0.1);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }
.nav-mobile__link {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bedrock);
  padding: 0.25rem 0;
  transition: color .2s ease, padding-left .2s ease;
}
.nav-mobile__link:hover,
.nav-mobile__link:focus-visible {
  color: var(--rust);
  padding-left: 0.25rem;
}
.nav-mobile__socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(11, 19, 17, 0.1);
  color: rgba(11, 19, 17, 0.7);
}
.nav-mobile__socials a {
  display: inline-flex;
  transition: color .2s ease, transform .2s ease;
}
.nav-mobile__socials a:hover,
.nav-mobile__socials a:focus-visible {
  color: var(--rust);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 7rem 0 4rem;
  background: var(--bedrock);
  color: var(--cream);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: 9rem 0 6rem; }
}
.hero__topo, .hero__halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__topo { opacity: 0.5; }
.hero__topo { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>"); background-size: 800px 800px; }
.hero__halftone {
  inset: auto 0 0 0;
  height: 10rem;
  color: var(--ochre);
  opacity: 0.15;
  background-image: radial-gradient(circle at center, currentColor 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 7fr 5fr; gap: 3rem; align-items: start; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 1024px) { .hero__title { font-size: 5.5rem; } }
@media (min-width: 1280px) { .hero__title { font-size: 6rem; } }
.hero__title-underline {
  position: relative;
  display: inline-block;
}
.hero__title-underline svg {
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
}

.hero__lede {
  margin-top: 2rem;
  font-size: 1.05rem;
  max-width: 40rem;
  color: rgba(247, 240, 220, 0.8);
  line-height: 1.65;
}
@media (min-width: 768px) { .hero__lede { font-size: 1.2rem; } }

.hero__cta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Hero media */
.hero__media { position: relative; display: flex; justify-content: center; align-items: center; min-height: 320px; }
.hero__stamp {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero__stamp-ring,
.hero__stamp-inner {
  position: absolute;
  border-radius: 50%;
}
.hero__stamp-ring {
  width: 420px; height: 420px;
  border: 2px solid rgba(193, 138, 44, 0.25);
}
@media (min-width: 768px) { .hero__stamp-ring { width: 520px; height: 520px; } }
.hero__stamp-inner {
  width: 360px; height: 360px;
  border: 1px solid rgba(193, 138, 44, 0.15);
}
@media (min-width: 768px) { .hero__stamp-inner { width: 460px; height: 460px; } }
.hero__stamp-text {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero__glow {
  position: absolute;
  width: 320px; height: 320px;
  background: rgba(181, 83, 42, 0.2);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
@media (min-width: 768px) { .hero__glow { width: 400px; height: 400px; } }
.hero__rider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* Hero stats */
.hero__stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(247, 240, 220, 0.1);
  border: 1px solid rgba(247, 240, 220, 0.1);
}
@media (min-width: 768px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); margin-top: 6rem; }
}
.hero__stat {
  background: var(--bedrock);
  padding: 1.5rem;
}
@media (min-width: 768px) { .hero__stat { padding: 2rem; } }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--ochre);
  line-height: 1;
}
@media (min-width: 768px) { .hero__stat-num { font-size: 3rem; } }
.hero__stat-label {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.6);
}

/* ============================================================
   USP MARQUEE
   ============================================================ */
.usp-bar {
  background: var(--bedrock);
  border-top: 1px solid rgba(247, 240, 220, 0.1);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .usp-bar { padding: 3rem 0; } }
.usp-bar__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 768px) { .usp-bar__fade { width: 8rem; } }
.usp-bar__fade--left { left: 0; background: linear-gradient(to right, var(--bedrock), transparent); }
.usp-bar__fade--right { right: 0; background: linear-gradient(to left, var(--bedrock), transparent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.usp-bar__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
@media (min-width: 768px) { .usp-bar__track { gap: 4rem; } }
.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  color: var(--cream);
}
@media (min-width: 768px) { .usp-bar__item { gap: 1.25rem; } }
.usp-bar__item span:last-child {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) { .usp-bar__item span:last-child { font-size: 1.5rem; } }
.usp-bar__icon {
  width: 2.25rem; height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
}
@media (min-width: 768px) { .usp-bar__icon { width: 2.75rem; height: 2.75rem; } }

/* ============================================================
   PROBLEM (Comparison)
   ============================================================ */
.problem {
  position: relative;
  background: var(--sand);
  color: var(--bedrock);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .problem { padding: 7rem 0; } }
.problem__topo {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}
.problem .container { position: relative; }
.problem__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .problem__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.problem-card {
  background: var(--bone);
  border: 2px solid rgba(14, 39, 36, 0.15);
  padding: 2rem;
  color: var(--bedrock);
}
@media (min-width: 768px) { .problem-card { padding: 2.5rem; } }
.problem-card--dark {
  background: var(--bedrock);
  color: var(--cream);
  border-color: var(--bedrock);
  box-shadow: 12px 12px 0 0 var(--rust);
}

.problem-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.problem-card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (min-width: 768px) { .problem-card__title { font-size: 1.875rem; } }
.problem-card__badge {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.problem-card__badge--cross {
  background: rgba(14, 39, 36, 0.05);
  color: rgba(14, 39, 36, 0.4);
}
.problem-card__badge--check { background: var(--rust); color: white; }

.problem-card__list > li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(14, 39, 36, 0.1);
}
.problem-card--dark .problem-card__list > li { border-bottom-color: rgba(247, 240, 220, 0.1); }
.problem-card__list > li:last-child { border-bottom: 0; }
.problem-card__num {
  width: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(14, 39, 36, 0.4);
  margin-top: 0.25rem;
}
.problem-card__num--ochre { color: var(--ochre); }
.problem-card__icon {
  flex-shrink: 0;
  width: 1.25rem; height: 1.25rem;
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.problem-card__icon--cross {
  border: 1px solid rgba(14, 39, 36, 0.3);
  color: rgba(14, 39, 36, 0.6);
}
.problem-card__icon--check {
  background: var(--gum);
  border: 1px solid var(--gum);
}
.problem-card__item-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.problem-card__item-desc {
  font-size: 0.875rem;
  color: rgba(14, 39, 36, 0.65);
  margin-top: 0.1rem;
}
.problem-card--dark .problem-card__item-desc { color: rgba(247, 240, 220, 0.7); }

.problem-card__foot {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(14, 39, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.problem-card__foot--dark { border-top-color: rgba(247, 240, 220, 0.15); }
.problem-card__foot-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 39, 36, 0.5);
}
.problem-card__foot-label--ochre { color: var(--ochre); }
.problem-card__foot-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
}
.problem-card__foot-value--muted { color: rgba(14, 39, 36, 0.4); }
.problem-card__foot-value--ochre { color: var(--ochre); }

.problem__multiplier {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .problem__multiplier { flex-direction: row; justify-content: center; gap: 2.5rem; }
}
.problem__multiplier-left,
.problem__multiplier-right {
  color: rgba(14, 39, 36, 0.6);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
@media (min-width: 768px) {
  .problem__multiplier-left { text-align: right; }
  .problem__multiplier-right { text-align: left; }
}
.problem__multiplier-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--rust);
  font-size: 4.5rem;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .problem__multiplier-num { font-size: 6rem; } }

/* ============================================================
   FRAMEWORK TIMELINE
   ============================================================ */
.framework {
  position: relative;
  background: var(--bedrock);
  color: var(--cream);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .framework { padding: 7rem 0; } }
.framework__topo {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}
.framework .container { position: relative; }
.framework__list {
  margin-top: 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) { .framework__list { gap: 3rem; } }
.framework__track {
  position: absolute;
  top: 0; bottom: 0;
  width: 4px;
  background: var(--rust);
  left: 1.5rem;
  display: none;
}
@media (min-width: 768px) { .framework__track { display: block; left: 2.5rem; } }
@media (min-width: 1024px) { .framework__track { left: 50%; transform: translateX(-50%); } }

.framework__step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .framework__step { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.framework__dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--rust);
  border: 4px solid var(--bedrock);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .framework__dot { left: 1rem; }
}
@media (min-width: 1024px) {
  .framework__dot { left: 50%; transform: translateX(-50%); }
}

.framework__text { padding-left: 4rem; }
@media (min-width: 768px) { .framework__text { padding-left: 5rem; } }
@media (min-width: 1024px) {
  .framework__text { padding-left: 0; }
  .framework__text--left { padding-right: 4rem; text-align: right; }
  .framework__step--right .framework__text--right { grid-column-start: 2; padding-left: 4rem; }
}

.framework__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .framework__text--left .framework__meta { justify-content: flex-end; }
}
.framework__stage {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
}
.framework__rule { width: 2rem; height: 1px; background: rgba(193, 138, 44, 0.6); }
.framework__stat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.5);
}

.framework__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 2.25rem;
}
@media (min-width: 768px) { .framework__title { font-size: 3rem; } }
.framework__sub {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ochre);
}
.framework__desc {
  margin-top: 1rem;
  color: rgba(247, 240, 220, 0.75);
  font-size: 1rem;
  line-height: 1.65;
}
@media (min-width: 768px) { .framework__desc { font-size: 1.125rem; } }
.framework__bullets {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1.5rem;
}
@media (min-width: 640px) { .framework__bullets { grid-template-columns: 1fr 1fr; } }
.framework__bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(247, 240, 220, 0.7);
}
.framework__bullets li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--rust);
}
@media (min-width: 1024px) {
  .framework__text--left .framework__bullets li { flex-direction: row-reverse; }
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc-section {
  background: var(--bone);
  padding: 5rem 0;
  position: relative;
}
@media (min-width: 768px) { .calc-section { padding: 7rem 0; } }
.calc-section .section-title { font-size: clamp(2.25rem, 6vw, 3.75rem); }

.calc {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bedrock);
  color: var(--cream);
  border: 1px solid rgba(193, 138, 44, 0.3);
}
@media (min-width: 1024px) {
  .calc { grid-template-columns: 3fr 2fr; }
}
.calc__inputs {
  padding: 2rem;
  border-right: 1px solid rgba(247, 240, 220, 0.1);
}
@media (min-width: 768px) { .calc__inputs { padding: 2.5rem; } }
.calc__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .calc__title { font-size: 2.25rem; } }
.calc__subtitle {
  color: rgba(247, 240, 220, 0.7);
  font-size: 0.875rem;
  max-width: 28rem;
  margin-bottom: 2.5rem;
}
.calc__field { margin-bottom: 2rem; }
.calc__field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.calc__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.8);
}
.calc__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ochre);
}
.calc__value-unit {
  margin-left: 0.25rem;
  color: rgba(247, 240, 220, 0.4);
  font-size: 0.875rem;
}
.calc__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(247, 240, 220, 0.4);
}
.calc__benchmark {
  margin-top: 2.5rem;
  padding: 1rem;
  border: 1px solid rgba(247, 240, 220, 0.15);
  background: rgba(27, 58, 54, 0.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.7);
}

.calc__output {
  position: relative;
  padding: 2rem;
  background: var(--rust);
  color: var(--cream);
  overflow: hidden;
}
@media (min-width: 768px) { .calc__output { padding: 2.5rem; } }
.calc__output-halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--cream);
  opacity: 0.1;
  background-image: radial-gradient(circle at center, currentColor 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.calc__output-rings {
  position: absolute;
  right: -3rem;
  top: -3rem;
  pointer-events: none;
}
.calc__output-rings > div {
  width: 12rem;
  height: 12rem;
  border: 2px solid rgba(247, 240, 220, 0.15);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
.calc__output-rings > div:nth-child(2) {
  width: 8rem;
  height: 8rem;
  right: 1.5rem;
  top: 1.5rem;
  border-color: rgba(247, 240, 220, 0.2);
}
.calc__output-body { position: relative; }
.calc__output-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.8);
  margin-bottom: 0.5rem;
}
.calc__output-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .calc__output-headline { font-size: 3.75rem; } }
.calc__output-sub {
  color: rgba(247, 240, 220, 0.8);
  font-size: 0.875rem;
}
.calc__output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.calc__output-small-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.7);
}
.calc__output-small-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

/* Calc form */
.calc-form, .calc-form__success {
  background: rgba(14, 39, 36, 0.95);
  margin: 1.5rem -2rem -2rem;
  padding: 2rem 2rem;
}
@media (min-width: 768px) {
  .calc-form, .calc-form__success { margin: 1.5rem -2.5rem -2.5rem; padding: 2rem 2.5rem; }
}
.calc-form__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.calc-form__subtitle {
  color: rgba(247, 240, 220, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.calc-form__fields { display: flex; flex-direction: column; gap: 0.75rem; }
.calc-form__field input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(247, 240, 220, 0.25);
  padding: 0.625rem 0;
  color: var(--cream);
  font-size: 0.875rem;
  outline: none;
}
.calc-form__field input::placeholder { color: rgba(247, 240, 220, 0.3); }
.calc-form__field input:focus { border-bottom-color: var(--ochre); }
.calc-form__field--error input { border-bottom-color: var(--ember); }
.calc-form__error {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ember);
  margin-top: 0.25rem;
}
.calc-form__submit {
  margin-top: 1.5rem;
  width: 100%;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.25rem;
  box-shadow: 0 5px 0 0 #000;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.calc-form__submit:hover { background: var(--ember); transform: translateY(-2px); box-shadow: 0 3px 0 0 #000; }
.calc-form__note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(247, 240, 220, 0.4);
  margin-top: 0.75rem;
  text-align: center;
}
.calc-form__success {
  text-align: center;
}
.calc-form__success-icon {
  width: 3rem; height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gum);
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-form__success-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.calc-form__success-text {
  color: rgba(247, 240, 220, 0.7);
  font-size: 0.875rem;
}

/* Range input */
input[type=range].rust-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(14, 39, 36, 0.1);
  border-radius: 999px;
  outline: none;
}
input[type=range].rust-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  background: var(--rust);
  border: 3px solid var(--cream);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
input[type=range].rust-range::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--rust);
  border: 3px solid var(--cream);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
/* dark thumb track within calc */
.calc__inputs input[type=range].rust-range { background: rgba(247, 240, 220, 0.1); }

/* ============================================================
   CASE CARDS
   ============================================================ */
.cases {
  background: var(--bone);
  color: var(--bedrock);
  padding: 5rem 0;
}
@media (min-width: 768px) { .cases { padding: 7rem 0; } }
.cases__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .cases__grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
.case-card {
  background: var(--cream);
  border: 2px solid rgba(14, 39, 36, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--rust);
  box-shadow: 8px 8px 0 0 var(--bedrock);
}
.case-card__body {
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-card__industry {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.case-card__headline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 1.5rem;
}
@media (min-width: 768px) { .case-card__headline { font-size: 1.875rem; } }
.case-card__quote {
  margin-top: 1rem;
  color: rgba(14, 39, 36, 0.75);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
}
.case-card__person {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(14, 39, 36, 0.1);
}
.case-card__avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--ochre));
  color: var(--cream);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-card__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.case-card__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14, 39, 36, 0.6);
}
.case-card__metrics {
  margin: 1.25rem -1.75rem -1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--bedrock);
  color: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.case-card__metric-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ochre);
}
@media (min-width: 768px) { .case-card__metric-value { font-size: 1.875rem; } }
.case-card__metric-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.6);
  margin-top: 0.25rem;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  position: relative;
  background: var(--sand);
  color: var(--bedrock);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .pricing { padding: 7rem 0; } }
.pricing__topo {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}
.pricing .container { position: relative; }
.pricing__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
.tier {
  position: relative;
  background: var(--cream);
  color: var(--bedrock);
  border: 2px solid rgba(14, 39, 36, 0.2);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) { .tier { padding: 2rem; } }
.tier--featured {
  background: var(--bedrock);
  color: var(--cream);
  border-color: var(--bedrock);
  box-shadow: 12px 12px 0 0 var(--rust);
}
.tier__badge {
  position: absolute;
  top: -0.75rem; right: 2rem;
  background: var(--rust);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
}
.tier__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 2.25rem;
}
.tier__sub {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rust);
}
.tier__sub--ochre { color: var(--ochre); }
.tier__ideal {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 39, 36, 0.6);
}
.tier__ideal--dark { color: rgba(247, 240, 220, 0.6); }
.tier__price-block {
  margin: 1.75rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(14, 39, 36, 0.15);
  border-bottom: 1px solid rgba(14, 39, 36, 0.15);
}
.tier__price-block--dark {
  border-top-color: rgba(247, 240, 220, 0.15);
  border-bottom-color: rgba(247, 240, 220, 0.15);
}
.tier__from {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.tier__from--ochre { color: var(--ochre); }
.tier__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .tier__price { font-size: 3rem; } }
.tier__currency {
  font-size: 1rem;
  font-family: var(--font-sans);
  margin-left: 0.5rem;
  color: rgba(14, 39, 36, 0.6);
}
.tier__currency--dark { color: rgba(247, 240, 220, 0.6); }
.tier__period {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(14, 39, 36, 0.6);
}
.tier__period--dark { color: rgba(247, 240, 220, 0.6); }
.tier__features { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.tier__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 15px;
}
.tier__check, .tier__cross {
  margin-top: 0.1rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tier__check { background: var(--gum); }
.tier__cross { border: 1px solid currentColor; opacity: 0.4; }
.tier__feature--excluded {
  text-decoration: line-through;
  color: rgba(14, 39, 36, 0.4);
}
.tier__feature--excluded-dark { color: rgba(247, 240, 220, 0.4); }
.tier__cta { width: 100%; justify-content: center; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { background: var(--bone); padding: 5rem 0; }
@media (min-width: 768px) { .guarantee { padding: 7rem 0; } }
.guarantee__container { max-width: 72rem; }
.guarantee__card {
  position: relative;
  background: var(--cream);
  border: 6px solid var(--bedrock);
  color: var(--bedrock);
  padding: 2.5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .guarantee__card { padding: 4rem; } }
.guarantee__corners::before,
.guarantee__corners::after,
.guarantee__card::before,
.guarantee__card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: currentColor;
}
.guarantee__card::before { top: 0; left: 0; border-top: 1.5px solid; border-left: 1.5px solid; }
.guarantee__card::after  { top: 0; right: 0; border-top: 1.5px solid; border-right: 1.5px solid; }
.guarantee__corners::before { bottom: 0; left: 0; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.guarantee__corners::after  { bottom: 0; right: 0; border-bottom: 1.5px solid; border-right: 1.5px solid; }

.guarantee__stamp {
  position: absolute;
  right: -2rem;
  top: -2rem;
  opacity: 0.07;
  pointer-events: none;
}
.guarantee__inner { position: relative; }
.guarantee__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 2.25rem;
  max-width: 56rem;
}
@media (min-width: 768px) { .guarantee__title { font-size: 3rem; } }
@media (min-width: 1024px) { .guarantee__title { font-size: 3.75rem; } }
.guarantee__lede {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(14, 39, 36, 0.75);
  line-height: 1.6;
  max-width: 48rem;
}
.guarantee__points {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .guarantee__points { grid-template-columns: 1fr 1fr 1fr; } }
.guarantee__point { border-left: 2px solid var(--rust); padding-left: 1rem; }
.guarantee__point-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
}
@media (min-width: 768px) { .guarantee__point-title { font-size: 1.5rem; } }
.guarantee__point-desc {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: rgba(14, 39, 36, 0.7);
}
@media (min-width: 768px) { .guarantee__point-desc { font-size: 1.125rem; } }

.guarantee__inner > .btn { margin-top: 2.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  background: var(--bedrock);
  color: var(--cream);
  padding: 5rem 0;
}
@media (min-width: 768px) { .faq { padding: 7rem 0; } }
.faq__topo {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%23C18A2C' stroke-width='0.8' opacity='0.18'><path d='M -50 200 Q 150 120 300 200 T 650 200'/><path d='M -50 260 Q 150 180 300 260 T 650 260'/><path d='M -50 320 Q 150 240 300 320 T 650 320'/><path d='M -50 380 Q 150 300 300 380 T 650 380'/><path d='M -50 440 Q 150 360 300 440 T 650 440'/></svg>");
  background-size: 800px 800px;
}
.faq__container { position: relative; max-width: 64rem; }
.faq__list {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(247, 240, 220, 0.15);
}
.faq__item {
  border-bottom: 1px solid rgba(247, 240, 220, 0.15);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .faq__item summary { padding: 1.5rem 0; } }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary > :nth-child(1),
.faq__item summary > :nth-child(2) { display: inline-block; }
.faq__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--rust);
  margin-right: 1.5rem;
  vertical-align: top;
}
.faq__q {
  flex: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  transition: color .15s;
}
@media (min-width: 768px) { .faq__q { font-size: 1.5rem; } }
.faq__item summary:hover .faq__q { color: var(--ochre); }
.faq__icon {
  flex-shrink: 0;
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(247, 240, 220, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 2.5rem 1.5rem 2.5rem;
  color: rgba(247, 240, 220, 0.75);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 56rem;
}
@media (min-width: 768px) { .faq__a { font-size: 1.125rem; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  background: var(--rust);
  color: var(--cream);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .final-cta { padding: 7rem 0; } }
.final-cta__halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--bedrock);
  opacity: 0.1;
  background-image: radial-gradient(circle at center, currentColor 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.final-cta__circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(247, 240, 220, 0.15);
}
.final-cta__circle--bl {
  left: -5rem; bottom: -5rem;
  width: 20rem; height: 20rem;
}
.final-cta__circle--tr {
  right: -8rem; top: -8rem;
  width: 24rem; height: 24rem;
  border-color: rgba(247, 240, 220, 0.1);
}
.final-cta__inner { position: relative; text-align: center; max-width: 64rem; }
.final-cta__title {
  display: inline-block;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: clamp(1.875rem, 7vw, 4.5rem);
}
.final-cta__scribble {
  display: inline-block;
  white-space: nowrap;
  margin-left: 0.75rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'><path d='M2 8 Q 50 2 100 7 T 198 6' stroke='%23B5532A' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 10px;
  padding-bottom: 8px;
}
@media (min-width: 640px) { .final-cta__scribble { margin-left: 1.5rem; } }
@media (min-width: 768px) { .final-cta__scribble { margin-left: 2.5rem; } }
@media (min-width: 1024px) { .final-cta__scribble { margin-left: 3.5rem; } }

.final-cta__lede {
  margin-top: 2rem;
  color: rgba(247, 240, 220, 0.85);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .final-cta__lede { font-size: 1.25rem; } }
.final-cta__buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.final-cta__badge {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  color: var(--cream);
}
@media (min-width: 768px) { .final-cta__badge { font-size: 1.5rem; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247, 240, 220, 0.7);
  padding: 4rem 0 2rem;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 240, 220, 0.1);
}
@media (min-width: 768px) {
  .site-footer__top { grid-template-columns: 4fr 4fr 4fr; }
}
.site-footer__socials {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-footer__socials a:hover { color: var(--rust); }
.site-footer__heading {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1rem;
}
.site-footer__list { display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.875rem; }
.site-footer__list a:hover { color: var(--rust); }
.site-footer__list li { display: flex; align-items: center; gap: 0.75rem; }
.site-footer__key {
  width: 3rem;
  color: rgba(247, 240, 220, 0.4);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-footer__bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.4);
}
@media (min-width: 768px) {
  .site-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.site-footer__legal a:hover { color: var(--rust); }
.site-footer__status { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   STICKY BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.sticky-cta.is-shown { transform: translateY(0); pointer-events: auto; }
.sticky-cta__inner {
  background: var(--bedrock);
  color: var(--cream);
  border-top: 2px solid var(--rust);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sticky-cta__inner { padding: 1rem 2rem; }
}
.sticky-cta__text { flex: 1; }
.sticky-cta__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) { .sticky-cta__title { font-size: 1.125rem; } }
.sticky-cta__sub {
  display: none;
  color: rgba(247, 240, 220, 0.6);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
@media (min-width: 768px) { .sticky-cta__sub { display: block; } }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 17, 0.78);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 56rem;
  background: var(--bone);
  color: var(--bedrock);
  border: 1px solid var(--bedrock);
  max-height: 92vh;
  overflow-y: auto;
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(14, 39, 36, 0.15);
  background: var(--bedrock);
  color: var(--cream);
}
@media (min-width: 768px) { .modal__head { padding: 1.5rem; } }
.modal__head-left { display: flex; align-items: center; gap: 1rem; }
.modal__divider {
  display: none;
  width: 1px; height: 1.5rem;
  background: rgba(247, 240, 220, 0.2);
}
@media (min-width: 768px) { .modal__divider { display: inline-block; } }
.modal__head-meta {
  display: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.7);
}
@media (min-width: 768px) { .modal__head-meta { display: inline-block; } }
.modal__close {
  color: rgba(247, 240, 220, 0.7);
  font-size: 1.5rem;
  line-height: 1;
  width: 2rem; height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover { color: var(--cream); }

.modal__progress {
  display: flex;
  border-bottom: 1px solid rgba(14, 39, 36, 0.15);
}
.modal__step-pill {
  flex: 1;
  padding: 0.75rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-right: 1px solid rgba(14, 39, 36, 0.15);
  background: var(--bone);
}
@media (min-width: 768px) { .modal__step-pill { padding: 0.75rem 1.25rem; justify-content: flex-start; } }
.modal__step-pill:last-child { border-right: 0; }
.modal__step-pill.is-active { background: var(--rust); color: var(--cream); }
.modal__step-pill.is-done { background: rgba(110, 122, 63, 0.2); }
.modal__step-pill-num {
  width: 1.5rem; height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(14, 39, 36, 0.1);
  color: rgba(14, 39, 36, 0.6);
}
.modal__step-pill.is-active .modal__step-pill-num { background: var(--cream); color: var(--rust); }
.modal__step-pill.is-done .modal__step-pill-num { background: var(--gum); color: var(--cream); }
.modal__step-pill-label {
  display: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .modal__step-pill-label { display: inline-block; } }

.modal__body { padding: 1.5rem; }
@media (min-width: 768px) { .modal__body { padding: 2.5rem; } }
.modal__step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--rust);
  margin-bottom: 0.75rem;
}
.modal__step-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .modal__step-title { font-size: 2.25rem; } }
.modal__step-lede { color: rgba(14, 39, 36, 0.65); margin-bottom: 2rem; }

.modal__group { margin-bottom: 2rem; }
.modal__group:last-child { margin-bottom: 0; }
.modal__group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.modal__option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .modal__option-grid--two  { grid-template-columns: 1fr 1fr; }
  .modal__option-grid--four { grid-template-columns: repeat(4, 1fr); }
}
.modal__option-grid--four { grid-template-columns: 1fr 1fr; gap: 0.5rem; }

.modal__option {
  text-align: left;
  padding: 1.25rem;
  border: 2px solid rgba(14, 39, 36, 0.15);
  transition: border-color .15s, background .15s;
}
.modal__option:hover { border-color: rgba(14, 39, 36, 0.4); }
.modal__option.is-selected { border-color: var(--rust); background: rgba(181, 83, 42, 0.05); }
.modal__option-title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; }
.modal__option-sub { font-size: 0.875rem; color: rgba(14, 39, 36, 0.65); margin-top: 0.25rem; }

.modal__pill {
  padding: 0.75rem;
  border: 2px solid rgba(14, 39, 36, 0.15);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.875rem;
}
.modal__pill:hover { border-color: rgba(14, 39, 36, 0.4); }
.modal__pill.is-selected { border-color: var(--rust); background: var(--rust); color: var(--cream); }

.modal__check {
  text-align: left;
  padding: 1rem;
  border: 2px solid rgba(14, 39, 36, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.modal__check:hover { border-color: rgba(14, 39, 36, 0.4); }
.modal__check.is-selected { border-color: var(--rust); background: rgba(181, 83, 42, 0.05); }
.modal__check-box {
  width: 1.25rem; height: 1.25rem;
  border: 2px solid rgba(14, 39, 36, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.75rem;
}
.modal__check.is-selected .modal__check-box {
  background: var(--rust);
  border-color: var(--rust);
}
.modal__check.is-selected .modal__check-box::after {
  content: "✓";
  color: var(--cream);
  font-size: 0.875rem;
}

.modal__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .modal__fields { grid-template-columns: 1fr 1fr; } }
.modal__field--full { grid-column: 1 / -1; }
.modal__field-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 39, 36, 0.7);
  margin-bottom: 0.5rem;
}
.modal__field input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(14, 39, 36, 0.25);
  padding: 0.625rem 0;
  color: var(--bedrock);
  outline: none;
}
.modal__field input:focus { border-bottom-color: var(--rust); }
.modal__field input::placeholder { color: rgba(14, 39, 36, 0.3); }
.modal__field--error input { border-bottom-color: var(--rust); }

.modal__error {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--rust);
  margin-top: 0.5rem;
}

.modal__slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) { .modal__slots { grid-template-columns: repeat(3, 1fr); } }
.modal__slot {
  padding: 1rem;
  border: 2px solid rgba(14, 39, 36, 0.15);
  text-align: left;
  transition: border-color .15s, background .15s, color .15s;
}
.modal__slot:hover { border-color: rgba(14, 39, 36, 0.4); }
.modal__slot.is-selected { border-color: var(--rust); background: var(--rust); color: var(--cream); }
.modal__slot-day {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.modal__slot-time { font-family: var(--font-display); font-size: 1.25rem; margin-top: 0.25rem; }

.modal__step--success { text-align: center; padding: 2rem 0; }
.modal__success-icon {
  width: 4rem; height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gum);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__success-text { color: rgba(14, 39, 36, 0.7); max-width: 28rem; margin: 0 auto 0.5rem; }
.modal__success-ref { font-family: var(--font-mono); font-size: 11px; color: rgba(14, 39, 36, 0.5); margin-top: 1.5rem; }

.modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-top: 1px solid rgba(14, 39, 36, 0.15);
  background: var(--bone);
}
@media (min-width: 768px) { .modal__foot { padding: 1.5rem; } }
.modal__back {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  color: rgba(14, 39, 36, 0.7);
}
.modal__back:hover { color: var(--bedrock); }
.modal__foot--success { justify-content: center; }
