/* =============================================================================
   AutoNous Systems — Marketing Site
   Mobile-first. Brand tokens from brand-kit.md / typography.md.
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────────────────────
   1 · Brand tokens
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  /* Palette */
  --true-black:        #000000;
  --obsidian-deep:     #060504;
  --obsidian:          #0a0908;
  --obsidian-elevated: #11100d;
  --bone:              #ece2cd;
  --bone-deep:         #ddd1b6;
  --cream:             #d6c8a8;
  --cream-strong:      #efe6cf;
  --champagne:         #f4e4bc;
  --gold:              #d9b46e;
  --antique-gold:      #a88345;
  --brass-deep:        #6a5028;
  --sub-warm:          #6b5d4a;
  --sub-warm-bone:     rgba(20, 16, 12, 0.66);

  /* Rules / borders */
  --rule-on-dark:      rgba(214, 200, 168, 0.10);
  --rule-on-dark-faint:rgba(214, 200, 168, 0.05);
  --rule-on-light:     rgba(20, 16, 12, 0.12);

  /* Functional aliases */
  --bg:                var(--true-black);
  --bg-elevated:       var(--obsidian-deep);
  --bg-card:           var(--obsidian-elevated);
  --fg:                var(--cream);
  --fg-strong:         var(--cream-strong);
  --fg-subtle:         var(--sub-warm);
  --accent:            var(--gold);
  --accent-hover:      var(--antique-gold);
  --accent-deep:       var(--brass-deep);
  --rule:              var(--rule-on-dark);

  /* Sizing */
  --nav-h-mobile:      60px;
  --nav-h-desk:        76px;
  --mobile-cta-h:      72px;
  --max-content:       1200px;
  --max-prose:         720px;
  --max-narrow:        560px;
  --gutter:            clamp(20px, 5vw, 80px);
  --section-y:         clamp(72px, 11vw, 144px);
  --radius:            3px;
  --radius-lg:         6px;

  /* Type */
  --font-brand: 'Manrope', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Inverse (bone) section override */
.section--bone {
  --bg: var(--bone);
  --bg-elevated: #f0e7d2;
  --bg-card: #ffffff;
  --fg: var(--obsidian);
  --fg-strong: var(--obsidian);
  --fg-subtle: var(--sub-warm-bone);
  --rule: var(--rule-on-light);
  --accent: var(--brass-deep);
  --accent-hover: var(--antique-gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   2 · Reset
   ───────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h-mobile);
}
@media (min-width: 760px) {
  html { scroll-padding-top: var(--nav-h-desk); }
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-brand);
  font-feature-settings: 'kern' on, 'ss01' on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Reserve room at bottom for the sticky mobile CTA bar */
@media (max-width: 759px) {
  body { padding-bottom: calc(var(--mobile-cta-h) + env(safe-area-inset-bottom)); }
}

img, svg { display: block; max-width: 100%; height: auto; }
button { border: none; background: none; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--obsidian); }

/* ─────────────────────────────────────────────────────────────────────────────
   3 · Typography utility classes
   ───────────────────────────────────────────────────────────────────────────── */
.display-1 { font-weight: 500; font-size: clamp(2.125rem, 6vw + 0.5rem, 4.5rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--fg-strong); }
.display-2 { font-weight: 500; font-size: clamp(1.75rem, 4.5vw + 0.5rem, 3.25rem); line-height: 1.08; letter-spacing: -0.018em; color: var(--fg-strong); }
.h1        { font-weight: 500; font-size: clamp(1.625rem, 3vw + 0.5rem, 2.5rem); line-height: 1.14; letter-spacing: -0.015em; color: var(--fg-strong); }
.h2        { font-weight: 500; font-size: clamp(1.375rem, 2vw + 0.5rem, 1.875rem); line-height: 1.2; letter-spacing: -0.012em; color: var(--fg-strong); }
.h3        { font-weight: 600; font-size: clamp(1.125rem, 1vw + 0.5rem, 1.375rem); line-height: 1.3; letter-spacing: -0.005em; color: var(--fg-strong); }
.lead      { font-weight: 400; font-size: clamp(1.0625rem, 0.75vw + 0.875rem, 1.3125rem); line-height: 1.5; color: var(--fg); }
.body      { font-weight: 400; font-size: clamp(1rem, 0.25vw + 0.95rem, 1.0625rem); line-height: 1.6; }
.body-small{ font-weight: 400; font-size: 0.875rem; line-height: 1.55; letter-spacing: 0.005em; }
.caption   { font-weight: 300; font-size: 0.75rem; line-height: 1.5; letter-spacing: 0.01em; color: var(--fg-subtle); }
.eyebrow   {
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}
.numeric   { font-variant-numeric: tabular-nums; }

.text-strong  { color: var(--fg-strong); }
.text-subtle  { color: var(--fg-subtle); }
.text-gold    { color: var(--gold); }
.text-cream   { color: var(--cream); }
.text-center  { text-align: center; }
.text-balance { text-wrap: balance; }

.italic { font-style: italic; }

/* ─────────────────────────────────────────────────────────────────────────────
   4 · Layout primitives
   ───────────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--prose  { max-width: var(--max-prose); }
.container--narrow { max-width: var(--max-narrow); }

.section {
  padding-block: var(--section-y);
  position: relative;
  background: var(--bg);
  color: var(--fg);
}

.section--void     { background: var(--true-black); }
.section--obsidian { background: var(--obsidian-deep); }
.section--bone     { background: var(--bg); }

/* Soft divider between sections */
.section + .section { border-top: 1px solid var(--rule); }

.stack > * + * { margin-top: var(--stack-gap, 24px); }
.stack--tight  { --stack-gap: 12px; }
.stack--loose  { --stack-gap: 36px; }
.stack--xloose { --stack-gap: 64px; }

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cluster-gap, 16px);
  align-items: center;
}

.grid {
  display: grid;
  gap: var(--grid-gap, 24px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   5 · Buttons / CTAs
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 24px;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 120ms var(--ease);
  text-align: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }

.btn--brass {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}
.btn--brass:hover  { background: var(--champagne); border-color: var(--champagne); }
.btn--brass:active { background: var(--antique-gold); border-color: var(--antique-gold); }

.btn--outline {
  background: transparent;
  color: var(--fg-strong);
  border-color: var(--rule-on-dark);
}
.section--bone .btn--outline { border-color: var(--rule-on-light); color: var(--obsidian); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding-inline: 4px;
  min-height: auto;
  border: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.btn--ghost:hover { color: var(--champagne); }

.btn--small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.875rem;
}
.btn--lg {
  min-height: 56px;
  padding: 18px 32px;
  font-size: 1.0625rem;
}
.btn--full { width: 100%; }

/* Phone CTA — used in mobile bar and inline */
.btn--phone {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--phone:hover { background: var(--gold); color: var(--obsidian); }

/* ─────────────────────────────────────────────────────────────────────────────
   6 · Site header (sticky top nav)
   ───────────────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--rule-on-dark-faint);
  height: var(--nav-h-mobile);
}
@media (min-width: 760px) {
  .site-header { height: var(--nav-h-desk); }
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: var(--gutter);
  max-width: var(--max-content);
  margin-inline: auto;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  -webkit-tap-highlight-color: transparent;
}

.brand-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
@media (min-width: 760px) {
  .brand-mark { width: 30px; height: 30px; }
}

.brand-wordmark {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  color: var(--cream-strong);
}
@media (min-width: 760px) {
  .brand-wordmark { font-size: 1.1875rem; letter-spacing: 0.05em; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__links {
  display: none;
}
@media (min-width: 760px) {
  .site-nav__links {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .site-nav__link {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--cream);
    opacity: 0.78;
    transition: opacity 180ms var(--ease), color 180ms var(--ease);
  }
  .site-nav__link:hover { opacity: 1; color: var(--gold); }
  .site-nav__link[aria-current="page"] {
    opacity: 1;
    color: var(--gold);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   7 · Hero
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: clamp(72px, 14vw, 160px) clamp(80px, 12vw, 140px);
  overflow: hidden;
  isolation: isolate;
  background: var(--true-black);
}

/* Atmospheric staging — warm floor reflection + corner smoke */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 18% at 50% 70%, rgba(186, 148, 92, 0.10), transparent 75%),
    radial-gradient(ellipse 32% 12% at 50% 72%, rgba(220, 180, 120, 0.06), transparent 80%);
  filter: blur(4px);
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 18% 30%, rgba(255, 220, 160, 0.025), transparent 70%),
    radial-gradient(ellipse 55% 38% at 82% 60%, rgba(220, 180, 120, 0.020), transparent 72%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.hero__eyebrow { color: var(--gold); opacity: 0.85; }

.hero__headline {
  text-wrap: balance;
  max-width: 920px;
  margin-inline: auto;
}

.hero__subhead {
  max-width: 640px;
  margin-inline: auto;
  color: var(--cream);
  opacity: 0.92;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: clamp(8px, 2vw, 20px);
}

.hero__tagline {
  margin-top: clamp(20px, 4vw, 40px);
  font-style: italic;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--sub-warm);
  opacity: 0.8;
}

/* The "see how it works ↓" scroll link */
.hero__scroll-hint {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--cream);
  opacity: 0.65;
  transition: opacity 200ms var(--ease);
}
.hero__scroll-hint:hover { opacity: 1; }
.hero__scroll-hint::after { content: '↓'; font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   8 · Problem section (stats + pull quote)
   ───────────────────────────────────────────────────────────────────────────── */
.stat-list {
  display: grid;
  gap: 28px;
  margin-block: clamp(32px, 6vw, 56px);
  list-style: none;
}
@media (min-width: 720px) {
  .stat-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.stat {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}

.stat__number {
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.stat__label {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--cream);
  opacity: 0.85;
}

/* Pull quote */
.pull-quote {
  margin: clamp(48px, 8vw, 88px) auto 0;
  max-width: 720px;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
  position: relative;
  border-left: 2px solid var(--gold);
  background:
    linear-gradient(to right, rgba(217, 180, 110, 0.04), transparent 40%);
}

.pull-quote__text {
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.625rem);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--fg-strong);
  font-style: italic;
}

.pull-quote__attr {
  margin-top: 12px;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sub-warm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   9 · Solution / Tier cards
   ───────────────────────────────────────────────────────────────────────────── */
.tier-grid {
  display: grid;
  gap: 24px;
  margin-top: clamp(40px, 6vw, 64px);
}
@media (min-width: 860px) {
  .tier-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  gap: 20px;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}
@media (min-width: 720px) {
  .tier-card { padding: 40px 32px; }
}

.tier-card:hover {
  border-color: rgba(217, 180, 110, 0.25);
  transform: translateY(-2px);
}

.tier-card--featured {
  border-color: rgba(217, 180, 110, 0.3);
  background:
    linear-gradient(180deg, rgba(217, 180, 110, 0.03), transparent 40%),
    var(--bg-card);
}

.tier-card__badge {
  position: absolute;
  top: -1px;
  right: 24px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--obsidian);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  line-height: 1;
}

.tier-card__name {
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.tier-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: -4px;
}

.tier-card__price-main {
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
}

.tier-card__price-suffix {
  font-size: 1rem;
  color: var(--sub-warm);
  font-weight: 400;
}

.tier-card__setup {
  font-size: 0.875rem;
  color: var(--sub-warm);
}

.tier-card__pitch {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--cream);
  font-weight: 500;
}

.tier-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.tier-card__features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.92;
}

.tier-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 1.5px;
  background: var(--gold);
}

.tier-card__best-for {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--sub-warm);
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.tier-card__cta {
  margin-top: auto;
  padding-top: 8px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   10 · How it works (3 steps)
   ───────────────────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  gap: 32px;
  margin-top: clamp(40px, 6vw, 64px);
}
@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  position: relative;
}

.step__number {
  font-family: var(--font-brand);
  font-weight: 300;
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.step__title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--fg-strong);
}

.step__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.88;
}

.steps__caption {
  margin-top: clamp(28px, 5vw, 48px);
  text-align: center;
  font-size: 0.9375rem;
  color: var(--sub-warm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   11 · Why us (3 blocks)
   ───────────────────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  gap: 28px;
  margin-top: clamp(40px, 6vw, 64px);
}
@media (min-width: 760px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.why-block {
  padding-top: 20px;
  border-top: 2px solid var(--gold);
}

.why-block__title {
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.why-block__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.92;
}

/* ─────────────────────────────────────────────────────────────────────────────
   12 · CTA section (Free Audit)
   ───────────────────────────────────────────────────────────────────────────── */
.cta-block {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}

.cta-block__sub {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--sub-warm);
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   13 · FAQ
   ───────────────────────────────────────────────────────────────────────────── */
.faq-list {
  margin-top: clamp(40px, 6vw, 64px);
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  padding-block: clamp(22px, 3vw, 32px);
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child { border-top: 1px solid var(--rule); }

.faq-question {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--fg-strong);
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.88;
}

.faq-answer a {
  color: var(--gold);
  border-bottom: 1px solid rgba(217, 180, 110, 0.4);
  padding-bottom: 1px;
  transition: border-color 180ms var(--ease);
}
.faq-answer a:hover { border-color: var(--gold); }

/* ─────────────────────────────────────────────────────────────────────────────
   14 · Site footer
   ───────────────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--obsidian-deep);
  padding-block: clamp(56px, 8vw, 88px) clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--rule-on-dark-faint);
  position: relative;
}

.site-footer__inner {
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: clamp(32px, 5vw, 48px);
}

@media (min-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
    gap: 64px;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-footer__wordmark .brand-mark { width: 32px; height: 32px; }
.site-footer__wordmark .brand-wordmark {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.site-footer__tagline {
  font-style: italic;
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--sub-warm);
  max-width: 320px;
}

.site-footer__heading {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 16px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  color: var(--cream);
  opacity: 0.78;
  font-size: 0.9375rem;
  transition: opacity 180ms var(--ease), color 180ms var(--ease);
}
.site-footer__links a:hover { opacity: 1; color: var(--gold); }

.site-footer__contact {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.85;
}
.site-footer__contact a {
  color: inherit;
  border-bottom: 1px solid rgba(214, 200, 168, 0.2);
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}
.site-footer__contact a:hover { color: var(--gold); border-color: var(--gold); }

.site-footer__bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--rule-on-dark-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--sub-warm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   15 · Mobile sticky CTA bar
   ───────────────────────────────────────────────────────────────────────────── */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(6, 5, 4, 0.94);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-top: 1px solid rgba(217, 180, 110, 0.18);
}
@media (min-width: 760px) {
  .mobile-cta { display: none; }
}

.mobile-cta__phone {
  flex-shrink: 0;
  width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  transition: background-color 180ms var(--ease), color 180ms var(--ease);
}
.mobile-cta__phone:active { background: var(--gold); color: var(--obsidian); }

.mobile-cta__phone svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mobile-cta__primary {
  flex: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   16 · Pricing page — extras
   ───────────────────────────────────────────────────────────────────────────── */
.pricing-hero {
  padding-block: clamp(80px, 12vw, 140px) clamp(40px, 6vw, 64px);
  text-align: center;
}

.pricing-tier-detailed {
  /* full-bleed detail card on pricing page */
  margin-top: 32px;
}

.honest-list {
  margin-top: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin-inline: auto;
}

.honest-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.88;
}

.honest-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sub-warm);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

.roi-block {
  margin-top: clamp(48px, 7vw, 80px);
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 48px);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  border-left: 2px solid var(--gold);
  max-width: 720px;
  margin-inline: auto;
}

.roi-block__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.roi-block__body {
  font-size: clamp(1.0625rem, 1vw + 0.875rem, 1.25rem);
  line-height: 1.55;
  color: var(--fg-strong);
}

.roi-block__body strong { color: var(--gold); font-weight: 600; }

.roi-block__verdict {
  margin-top: 16px;
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
}

/* ─────────────────────────────────────────────────────────────────────────────
   17 · About page — extras
   ───────────────────────────────────────────────────────────────────────────── */
.story-block {
  max-width: var(--max-prose);
  margin-inline: auto;
}

.story-block p {
  font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.1875rem);
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.94;
}

.story-block p + p { margin-top: 20px; }

.belief-grid {
  display: grid;
  gap: 28px;
  margin-top: clamp(40px, 6vw, 64px);
}
@media (min-width: 760px) {
  .belief-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.belief {
  padding-top: 20px;
  border-top: 1px solid var(--gold);
}

.belief__title {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.belief__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.92;
}

.founder-block {
  max-width: var(--max-prose);
  margin-inline: auto;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 48px);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}

.founder-block__contact {
  margin-top: 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cream);
}

.founder-block__contact a {
  color: var(--gold);
  border-bottom: 1px solid rgba(217, 180, 110, 0.3);
  transition: border-color 180ms var(--ease);
}
.founder-block__contact a:hover { border-color: var(--gold); }

/* ─────────────────────────────────────────────────────────────────────────────
   18 · Audit funnel — GHL embed area
   ───────────────────────────────────────────────────────────────────────────── */
.audit-hero {
  padding-block: clamp(80px, 12vw, 140px) clamp(40px, 6vw, 64px);
  text-align: center;
}

.audit-checklist {
  margin-top: clamp(32px, 5vw, 48px);
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.audit-checklist__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding-block: 14px;
  border-top: 1px solid var(--rule);
}

.audit-checklist__item:last-child {
  border-bottom: 1px solid var(--rule);
}

.audit-checklist__mark {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.625rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.audit-checklist__text strong {
  display: block;
  font-weight: 600;
  color: var(--fg-strong);
  margin-bottom: 4px;
  font-size: 1rem;
}

.audit-checklist__text span {
  display: block;
  font-size: 0.9375rem;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.5;
}

/* GHL form embed wrapper */
.ghl-embed {
  margin-top: clamp(48px, 7vw, 80px);
  max-width: 720px;
  margin-inline: auto;
}

.ghl-embed__shell {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  min-height: 480px;
  position: relative;
}

.ghl-embed__heading {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--fg-strong);
  margin-bottom: 24px;
}

/* Placeholder shown until user pastes their GHL embed code */
.ghl-placeholder {
  border: 1.5px dashed rgba(217, 180, 110, 0.35);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 40px);
  text-align: center;
  background: rgba(217, 180, 110, 0.02);
}

.ghl-placeholder__icon {
  width: 40px;
  height: 40px;
  margin-inline: auto;
  margin-bottom: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(217, 180, 110, 0.08);
  border: 1px solid rgba(217, 180, 110, 0.3);
}

.ghl-placeholder__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ghl-placeholder__title {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ghl-placeholder__hint {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.85;
  max-width: 460px;
  margin-inline: auto;
}

.ghl-placeholder code {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  background: rgba(214, 200, 168, 0.08);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--champagne);
}

/* Trust signals under the form */
.trust-signals {
  margin-top: clamp(28px, 4vw, 40px);
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin-inline: auto;
}

.trust-signal {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--sub-warm);
  padding: 14px 18px;
  background: rgba(214, 200, 168, 0.025);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.trust-signal strong {
  color: var(--cream);
  font-weight: 600;
}

.trust-signal a {
  color: var(--gold);
  border-bottom: 1px solid rgba(217, 180, 110, 0.3);
}
.trust-signal a:hover { border-color: var(--gold); }

/* ─────────────────────────────────────────────────────────────────────────────
   19 · Bilingual badge (pulled out as a callout)
   ───────────────────────────────────────────────────────────────────────────── */
.bilingual-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(217, 180, 110, 0.35);
  border-radius: 999px;
  background: rgba(217, 180, 110, 0.05);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   20 · Animations
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-rise {
  animation: rise 0.9s var(--ease) both;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   21 · Section title helpers
   ───────────────────────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-header--left { text-align: left; margin-inline: 0; }

.section-header__title { text-wrap: balance; }

.section-header__sub {
  color: var(--fg-subtle);
  max-width: 640px;
  margin-inline: auto;
}

.section-header--left .section-header__sub { margin-inline: 0; }

/* ─────────────────────────────────────────────────────────────────────────────
   22 · Skip link (accessibility)
   ───────────────────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--obsidian);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 100;
  transition: top 180ms var(--ease);
}
.skip-link:focus { top: 16px; }
