/* AUTO-GENERATED by scripts/extract-critical-css.js from main.css — do not hand-edit.
 * Regenerate with `node scripts/extract-critical-css.js` after changing any selector in
 * CRITICAL_SELECTORS (see that file) or editing a main.css rule that matches one.
 * Verified in sync by test/critical-css.test.js.
 * main.css remains the single source of truth for these rules. */

:root {
  --clay: #c4593a;
  --clay-dark: #a3452a;
  --clay-light: #faf0ec;
  --clay-mid: #f0d5cb;
  --amber: #c8780a;
  --bark: #2c1f14;
  --soil: #5c4030;
  --dust: #9c8070;
  --linen: #faf6f1;
  --linen-mid: #f3ede5;
  --linen-dark: #e9ddd3;
  --border: #e0d3c8;
  --border-dark: #c8b8a8;
  --white: #ffffff;
  --text-muted: #9c8070;
  --red: #b91c1c;
  --gold: #f59e0b;
  --sev-ana: #cc0000;
  --sev-sev: #c8780a;
  --sev-int: #5c4030;
  --status-success-bg: #f0f7ee;
  --status-success-border: #c8e6c9;
  --status-success-text: #2e7d32;
  --status-error-bg: #fef2f2;
  --status-error-border: #fecaca;
  --status-error-text: #991b1b;
  --font-body: "Plus Jakarta Sans", -apple-system, sans-serif;
  --font-display: "Instrument Serif", "Lora", Georgia, serif;
  --font-serif: "Lora", Georgia, serif;
  --font-mono: "Courier New", Courier, monospace;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --nav-h: 64px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--bark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-h);
}

a {
  color: var(--clay);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--clay-mid);
  text-underline-offset: 2px;
}

a:hover {
  color: var(--clay-dark);
  text-decoration-color: var(--clay-dark);
}

button,
input,
select,
textarea,
.btn,
nav,
.nav-link,
.stat-item__label,
.badge,
.tag,
.chip,
.eyebrow {
  font-family: var(--font-body);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--clay);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.15s;
}

.skip-link:focus {
  top: 0;
}

.nav-links a:focus-visible,
.nav-cta:focus-visible,
.btn:focus-visible,
.pillar-card:focus-visible,
.blog-preview-card:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.footer-links a:focus-visible,
.footer-legal-link:focus-visible {
  outline: 2px solid rgba(250, 247, 242, 0.6);
  outline-offset: 3px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}

.site-nav.is-scrolled {
  box-shadow: 0 2px 16px rgba(44, 31, 20, 0.09);
}

.site-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-logo:hover {
  color: var(--clay);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--soil);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    color 0.15s,
    background-color 0.15s;
}

.nav-links a:hover {
  color: var(--bark);
  background: var(--linen-dark);
}

.nav-links a[aria-current="page"] {
  color: var(--clay);
  font-weight: 600;
  background: var(--clay-light);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--clay);
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
  text-decoration: none;
  transition:
    background-color 0.15s,
    transform 0.15s;
  border: none;
}

.nav-cta:hover {
  background: var(--clay-dark);
}

@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover {
    transform: translateY(-1px);
  }
}

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  color: var(--bark);
  font-size: 1.375rem;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-drawer {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(320px, 85vw);
  z-index: 500;
  background: var(--linen);
  flex-direction: column;
  padding: 1.25rem 1.5rem 2rem;
  overflow-y: auto;
  box-shadow: -4px 0 32px rgba(44, 31, 20, 0.18);
  transform: translateX(100%);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.32s;
  visibility: hidden;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--bark);
  padding: 0.5rem 0.75rem;
  line-height: 1;
}

.mobile-drawer a,
.mobile-drawer__link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bark);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
  text-decoration: none;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.mobile-drawer a:last-of-type {
  border-bottom: none;
}

.mobile-drawer a:hover,
.mobile-drawer__link:hover {
  color: var(--clay);
}

.mobile-drawer__cta {
  display: block;
  background: var(--clay);
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  transition: background 0.15s;
  text-decoration: none;
}

.mobile-drawer__cta:hover {
  background: var(--clay-dark);
}

.mobile-drawer-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.15s var(--ease),
    border-color 0.15s var(--ease),
    color 0.15s var(--ease),
    transform 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
  text-decoration: none;
}

.btn--primary {
  background: var(--clay);
  color: #fff;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 20px rgba(196, 89, 58, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-family: var(--font-body);
}

.btn--primary:hover {
  background: var(--clay-dark);
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(196, 89, 58, 0.35);
  }
}

.btn:active {
  transform: scale(0.97);
}

.btn--terra {
  background: var(--clay);
  color: #fff;
}

.btn--terra:hover {
  background: var(--clay-dark);
}

@media (hover: hover) and (pointer: fine) {
  .btn--terra:hover {
    transform: translateY(-1px);
  }
}

.btn--outline {
  background: transparent;
  color: var(--bark);
  border: 1.5px solid var(--border-dark);
}

.btn--outline:hover {
  border-color: var(--bark);
  background: var(--linen-mid);
}

.btn--dark {
  background: var(--bark);
  color: #fff;
}

.btn--dark:hover {
  background: var(--soil);
}

.btn--white {
  background: #fff;
  color: var(--clay);
  font-weight: 700;
}

.btn--white:hover {
  background: var(--linen);
}

@media (hover: hover) and (pointer: fine) {
  .btn--white:hover {
    transform: translateY(-1px);
  }
}

.btn--small {
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  min-height: 44px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.note-panel a.text-clay:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.note-panel a.text-clay:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
  border-radius: 2px;
}

.disclaimer-block__text a {
  color: var(--clay-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-hero__left {
  text-align: left;
}

.home-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--clay);
}

.home-hero__reassurance {
  font-size: 0.8rem;
  color: var(--dust);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.home-hero__reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.toc-inline nav {
  padding: 0 1.25rem 0.875rem;
}

.toc-inline nav a {
  display: block;
  font-size: 0.875rem;
  color: var(--soil);
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}

.toc-inline nav a:last-child {
  border-bottom: none;
}

.toc-inline nav a:hover {
  color: var(--clay);
}

.card-cta-sidebar .btn {
  display: inline-block;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--clay-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0;
  width: auto;
  text-align: left;
  justify-content: flex-start;
}

.card-cta-sidebar .btn:hover {
  background: none;
  color: var(--clay);
  transform: none;
  box-shadow: none;
}

.article-breadcrumb a {
  color: var(--dust);
  text-decoration: none;
  transition: color 0.15s;
}

.article-breadcrumb a:hover {
  color: var(--clay);
}

.about-prose strong a {
  color: var(--bark);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border-dark);
}

.about-prose strong a:hover {
  color: var(--clay);
  text-decoration-color: var(--clay);
}

.about-prose strong a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
  border-radius: 2px;
}

.about-what dt a {
  color: var(--bark);
  text-decoration: none;
}

.about-what dt a:hover {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-what dt a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-summary a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}

.site-summary a:last-child {
  border-bottom: none;
}

.site-summary a:hover {
  color: var(--clay);
}

.footer-contact-email a {
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-contact-email a:hover {
  color: #fff;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: inline-flex;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-hero {
    text-align: center;
  }

  .home-hero__left {
    text-align: center;
  }

  .home-hero__actions {
    justify-content: center;
  }

  .home-hero__reassurance {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container,
  .container--narrow {
    padding: 0 1.25rem;
  }

  .home-hero {
    padding: 3rem 0;
  }
}

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

.blog-hero .container {
  position: relative;
  z-index: 1;
}

:root {
  --hp-radius: 16px;
  --hp-radius-sm: 10px;
  --hp-radius-xs: 6px;
  --hp-transition: 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}

.home-hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 70% 50% at 65% 35%,
      rgba(196, 89, 58, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 30% at 20% 80%,
      rgba(200, 120, 10, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 80% 60% at 70% 40%,
      rgba(196, 89, 58, 0.07) 0%,
      transparent 65%
    );
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
  z-index: 0;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clay-light);
  color: var(--clay-dark);
  border: 1px solid var(--clay-mid);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.home-hero__dot {
  width: 7px;
  height: 7px;
  background: var(--clay);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: pulse-dot 2.8s ease-in-out infinite;
}

.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  color: var(--bark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.home-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}

.home-hero__sub {
  font-size: 1.05rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--soil);
  line-height: 1.75;
  margin: 0 0 2rem;
  margin-bottom: 2rem;
  max-width: 430px;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.home-hero__actions .btn--outline {
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  padding: 0.25rem 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
}

.home-hero__actions .btn--outline:hover {
  color: var(--clay-dark);
  background: none;
  text-decoration-thickness: 2px;
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.78rem;
  color: var(--dust);
}

.home-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.home-hero__meta .check {
  color: var(--clay);
  font-weight: 700;
  font-size: 0.85rem;
}

.home-hero__price-note {
  margin-top: 0.65rem;
  font-size: 0.79rem;
  color: var(--dust);
}

.home-hero__price-note strong {
  color: var(--soil);
  font-weight: 700;
}

.home-hero__card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-section {
  padding: 5rem 0;
}

.hp-section--alt {
  padding: 5rem 0;
  background: var(--linen-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hp-section--alt + .hp-section--alt {
  border-top: none;
}

.hp-section--dark {
  background: var(--bark);
}

.hp-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.875rem;
  font-family: var(--font-body);
}

.hp-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.hp-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}

.hp-header {
  margin-bottom: 3.25rem;
}

.hp-header--center {
  text-align: center;
}

.hp-header--center .hp-subtext {
  margin: 0 auto;
}

.trust-metric__link {
  display: inline-block;
  padding: 0.6rem 0.25rem;
  margin: -0.6rem -0.25rem;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

.trust-metric__link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.preview-lang-note a {
  color: rgba(250, 247, 242, 0.58);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .home-hero {
    padding: 3rem 0 2.5rem;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-hero__card-wrap {
    order: -1;
  }

  .hp-section {
    padding: 3.5rem 0;
  }

  .hp-section--alt {
    padding: 3.5rem 0;
  }

  .home-hero__sub {
    font-size: 0.97rem;
  }
}

@media (max-width: 540px) {
  .home-hero__title {
    font-size: 2rem;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero__actions .btn--primary {
    width: 100%;
    text-align: center;
  }

  .home-hero__actions .btn--outline {
    background: none !important;
    border: none !important;
    padding: 0.25rem 0;
    color: var(--clay);
    font-size: 0.88rem;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

.pricing-card--founder .btn--outline {
  color: #faf7f2;
  border-color: rgba(250, 247, 242, 0.4);
}

.pricing-card--founder .btn--outline:hover {
  border-color: #faf7f2;
  background: rgba(250, 247, 242, 0.1);
}

.founder-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 2.25rem;
  background: var(--bark, #2c1f14);
  border-radius: 16px;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .founder-teaser {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.founder-teaser__quote {
  font-family: "Lora", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #faf7f2;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.founder-teaser__context {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.55);
  margin: 0;
}

.founder-teaser__context a {
  color: var(--amber, #c8780a);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.founder-teaser__meta {
  text-align: right;
  white-space: nowrap;
}

.founder-teaser__city {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.38);
  letter-spacing: 0.04em;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .trust-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-metric {
  padding: 1.1rem 1rem;
  text-align: center;
  border-right: 1.5px solid rgba(0, 0, 0, 0.07);
}

.trust-metric:last-child {
  border-right: none;
}

.trust-metric__num {
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bark, #2c1f14);
  line-height: 1.2;
}

.trust-metric__num em {
  font-style: normal;
  font-size: 0.85em;
  opacity: 0.7;
}

.trust-metric__label {
  font-size: 0.75rem;
  color: rgba(44, 31, 20, 0.55);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.home-hero--video {
  position: relative;
  background: #1a110a;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.home-hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(20, 12, 6, 0.88) 0%,
    rgba(20, 12, 6, 0.72) 42%,
    rgba(20, 12, 6, 0.28) 72%,
    rgba(20, 12, 6, 0.1) 100%
  );
}

.home-hero__video-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 120% 60% at 50% 110%,
    rgba(20, 12, 6, 0.55) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.home-hero__video-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.home-hero__video-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
  padding: 7rem 0 5rem;
}

.home-hero__eyebrow--video {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
  margin-bottom: 1.25rem;
}

.home-hero__eyebrow--video .home-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber, #c8780a);
  flex-shrink: 0;
}

.home-hero__title--video {
  font-family: "Instrument Serif", "Lora", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.12;
  color: #faf7f2;
  margin: 0 0 1.1rem;
  font-weight: 400;
}

.home-hero__title--video em {
  font-style: italic;
  color: var(--amber, #c8780a);
}

.home-hero__sub--video {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.78);
  max-width: 520px;
  margin: 0 0 2rem;
}

.home-hero__actions--video {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 1.75rem;
}

.btn--hero-primary {
  background: var(--clay, #c4593a);
  color: #fff;
  border: 2px solid var(--clay, #c4593a);
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.18s,
    border-color 0.18s;
  white-space: nowrap;
}

.btn--hero-primary:hover {
  background: #c9672f;
  border-color: #c9672f;
}

.home-hero__secondary-cta {
  margin: 0;
  padding: 0.85rem 0.25rem;
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.5);
  font-weight: 400;
}

.home-hero__secondary-link {
  display: inline-block;
  padding: 0.75rem 0.5rem;
  margin: -0.75rem -0.5rem;
  color: rgba(250, 247, 242, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(250, 247, 242, 0.3);
  transition:
    color 0.18s,
    text-decoration-color 0.18s;
  white-space: nowrap;
}

.home-hero__secondary-link:hover {
  color: rgba(250, 247, 242, 0.9);
  text-decoration-color: rgba(250, 247, 242, 0.6);
}

.home-hero__trust--video {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-hero__trust--video li {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.6);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.home-hero__trust--video li .check {
  color: var(--amber, #c8780a);
  font-weight: 700;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.45;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll-cue span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #faf7f2;
}

.hero-scroll-cue svg {
  display: block;
}

@media (max-width: 860px) {
  .home-hero--video {
    min-height: auto;
  }

  .home-hero__video-overlay {
    background: linear-gradient(
      180deg,
      rgba(20, 12, 6, 0.82) 0%,
      rgba(20, 12, 6, 0.55) 60%,
      rgba(20, 12, 6, 0.8) 100%
    );
  }

  .home-hero__video-inner {
    grid-template-columns: 1fr;
    padding: 5.5rem 0 3rem;
    gap: 1.75rem;
    min-height: 100svh;
  }

  .home-hero__title--video {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .home-hero__sub--video {
    font-size: 0.95rem;
  }

  .home-hero__actions--video {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--hero-primary {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .home-hero__secondary-cta {
    text-align: center;
  }

  .hero-scroll-cue {
    display: none;
  }
}

.hp-header--tight {
  margin-bottom: 2rem;
}

.hp-section--padded {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hp-section--email-cap {
  padding: 3rem 0;
}

body.blog-index {
  --bark: #2c1f14;
  --clay: #c4593a;
  --clay-dk: #a34530;
  --linen: #f7f4ef;
  --linen-dk: #ede8df;
  --amber: #e8a640;
  --white: #ffffff;
  --text: #2c1f14;
  --text-2: #5a4535;
  --text-3: #8a7060;
  --border: rgba(44, 31, 20, 0.1);
  --shadow-sm:
    0 1px 3px rgba(44, 31, 20, 0.08), 0 4px 12px rgba(44, 31, 20, 0.06);
  --shadow-md:
    0 4px 16px rgba(44, 31, 20, 0.1), 0 12px 40px rgba(44, 31, 20, 0.08);
  --shadow-lg:
    0 8px 32px rgba(44, 31, 20, 0.12), 0 24px 64px rgba(44, 31, 20, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --serif: "Lora", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
}

.bi-product-cta__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.bi-product-cta__links a:hover {
  color: var(--clay);
  border-color: var(--clay);
}

.bi-final-cta__note a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

@media (prefers-reduced-motion: no-preference) {
  html.bi-anim-ready .bi-fade {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.5s ease,
      transform 0.5s ease;
    transition-delay: calc(var(--bi-delay, 0) * 60ms);
  }

  html.bi-anim-ready .bi-fade--visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-block a {
  color: var(--clay);
  font-weight: 600;
  transition: color 0.15s;
}

.contact-block a:hover {
  color: var(--clay-dark);
}

@media (prefers-reduced-motion: reduce) {
  .preview-card,
  .mobile-drawer-backdrop {
    transition-duration: 0.15s !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--bark);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.hero--with-image .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero--with-image .container {
    display: block;
  }
}

.review-block__text a { color: var(--clay-dark); text-decoration: underline; text-underline-offset: 2px; }

.sources-list a { font-weight: 600; }

.author-box__name a { color: var(--bark); text-decoration: none; }

.author-box__name a:hover { color: var(--clay); }

.source-list a { color: var(--bark); text-decoration: underline; text-decoration-color: var(--border); }

.source-list a:hover { color: var(--clay); }

.mobile-drawer__logo { font-family: var(--font-display); font-size: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }

.hero--ambient .container { position: relative; z-index: 1; }

.tool-compare-card .btn { display: block; width: 100%; text-align: center; box-sizing: border-box; }

--status-error-* tokens (matching the existing
   .callout--green/.callout--red palette already used sitewide,
   instead of a third slightly-different red/green pair).
   ================================================================ */
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.25rem 2.25rem 2.5rem; margin-bottom: 1.5rem; }

.btn.is-loading .contact-btn-spinner { display: inline-block; }

.btn.is-loading .contact-btn-label { opacity: 0.75; }

.contact-alt a { color: var(--clay); text-decoration: underline; text-underline-offset: 2px; }

.contact-alt a:hover { color: var(--clay-dark); }

.tool-card__name a { color: inherit; text-decoration: none; }

.tool-card__name a:hover { color: #b86b3b; }

.btn--ghost-light { border: 2px solid rgba(245, 237, 228, 0.35); color: #f5ede4; background: transparent; padding: 0.65rem 1.4rem; border-radius: 100vmax; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: border-color 0.2s, background 0.2s; }

.btn--ghost-light:hover { border-color: #f5ede4; background: rgba(245, 237, 228, 0.1); }

.disclaimer-section h2 a { color: inherit; }

.toc a { color: var(--clay); transition: color 0.15s; }

.toc a:hover { color: var(--clay-dark); }
