/* ==========================================================================
   Design tokens — ported 1:1 from the React project's Tailwind theme
   ========================================================================== */

:root {
  --radius: 1rem;
  --radius-sm: 0.75rem;
  --radius-md: 0.875rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.75rem;
  --radius-4xl: 2rem;

  --background: oklch(0.985 0.003 106);
  --foreground: oklch(0.24 0.004 285);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.24 0.004 285);
  --primary: oklch(0.845 0.142 88);
  --primary-foreground: oklch(0.24 0.004 285);
  --secondary: oklch(1 0 0);
  --secondary-foreground: oklch(0.24 0.004 285);
  --muted: oklch(0.965 0.004 106);
  --muted-foreground: oklch(0.53 0 0);
  --accent: oklch(0.57 0.19 27.5);
  --accent-foreground: oklch(0.99 0 0);
  --border: oklch(0.936 0 0);
  --ring: oklch(0.845 0.142 88);
  --ink: oklch(0.19 0.004 285);
  --gold: oklch(0.845 0.142 88);
  --gold-soft: oklch(0.94 0.06 92);
  --ember: oklch(0.57 0.19 27.5);
  --ember-soft: oklch(0.97 0.025 27.5);

  --gradient-warm: linear-gradient(135deg, color-mix(in oklab, var(--gold) 22%, transparent), transparent 60%);
  --gradient-gold: linear-gradient(120deg, var(--gold), oklch(0.92 0.09 96));
  --hero-gradient: var(--gradient-warm);
  --shadow-card: 0 1px 2px oklch(0.24 0.004 285 / 0.04), 0 12px 32px -12px oklch(0.24 0.004 285 / 0.12);
  --shadow-lift: 0 2px 4px oklch(0.24 0.004 285 / 0.05), 0 28px 60px -24px oklch(0.24 0.004 285 / 0.22);
  --shadow-glow: 0 0 0 1px color-mix(in oklab, var(--gold) 40%, transparent), 0 18px 50px -18px color-mix(in oklab, var(--gold) 70%, transparent);

  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid var(--border);
}

* {
  margin: 0;
}

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

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  font-size: inherit;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  padding: 0;
}

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

ul,
ol {
  list-style: none;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--foreground);
}

.strong-foreground {
  color: var(--foreground);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .photo-strip {
    overflow-x: auto;
  }

  .photo-strip-track {
    transform: none;
  }
}

/* ==========================================================================
   Text effects
   ========================================================================== */

.red-text {
  background: linear-gradient(100deg, oklch(0.5 0.19 27.5), var(--ember));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.gold-text {
  background: linear-gradient(100deg, oklch(0.78 0.15 76), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

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

.btn {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease-out;
  height: 2.75rem;
  padding: 0.75rem 1.25rem;
}

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

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  pointer-events: none;
}

.btn-default {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

.btn-default:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-outline {
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  background: var(--secondary);
  color: var(--accent);
  box-shadow: var(--shadow-card);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--accent) 60%, transparent);
  background: var(--ember-soft);
}

.btn-ghost {
  color: var(--muted-foreground);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--muted);
  color: var(--foreground);
}

.btn-lg {
  height: 3.5rem;
  border-radius: var(--radius-2xl);
  padding: 0 1.75rem;
  font-size: 1rem;
}

.btn-icon-size {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  padding: 0;
}

.header-cta {
  height: 3rem;
  border-radius: var(--radius-xl);
  padding: 0 1.5rem;
}

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

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  transition: all 300ms ease;
  background: transparent;
}

.site-header.scrolled {
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px);
}

.site-header-inner {
  margin-inline: auto;
  display: flex;
  height: 5rem;
  max-width: 80rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.25rem;
}

.site-logo-img {
  height: 2.5rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.nav-link:hover {
  color: var(--foreground);
}

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

.nav-mobile {
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile-link {
  display: block;
  border-bottom: 1px solid var(--border);
  padding-block: 1rem;
  font-weight: 600;
}

.nav-mobile-cta {
  margin-top: 1.25rem;
  width: 100%;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.section {
  padding: 5rem 1.25rem;
}

.section-muted {
  background: var(--muted);
}

.section-ink {
  background: var(--ink);
  color: var(--background);
}

.container {
  margin-inline: auto;
  max-width: 80rem;
}

.container-narrow {
  margin-inline: auto;
  max-width: 64rem;
}

.container-faq {
  margin-inline: auto;
  max-width: 48rem;
}

.container-final {
  margin-inline: auto;
  max-width: 56rem;
}

.section-heading {
  max-width: 48rem;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  margin-bottom: 1rem;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ember);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.08;
  color: var(--foreground);
}

.section-title-light {
  color: var(--background);
}

.section-sub {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.section-cta-center {
  margin-top: 2.5rem;
  text-align: center;
}

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

.hero {
  background-color: var(--background);
  background-image: var(--hero-gradient);
  padding: 0 1.25rem 4rem;
  padding-top: 7rem;
}

.hero-inner {
  margin-inline: auto;
  display: grid;
  max-width: 80rem;
  align-items: center;
  gap: 3rem;
}

.hero-pill {
  margin-bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--ember) 20%, transparent);
  background: var(--ember-soft);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ember);
}

.hero-pill-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: var(--ember);
}

.hero-title {
  max-width: 48rem;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.05;
}

.hero-lede {
  margin-top: 1.75rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: var(--muted-foreground);
}

.hero-note {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-fineprint {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-stats {
  margin-top: 2.25rem;
  display: grid;
  max-width: 42rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.hero-stat {
  border-left: 2px solid var(--ember);
  padding-left: 1rem;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.hero-stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: var(--muted-foreground);
}

.hero-badge-wrap {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 540px;
}

.hero-badge-card {
  display: flex;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-lift);
}

.hero-badge-img {
  height: auto;
  max-height: 100%;
  width: 100%;
  object-fit: contain;
}

.hero-recognition-card {
  margin: -1.5rem auto 0;
  display: flex;
  width: 86%;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
}

.hero-recognition-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ember);
}

.hero-recognition-text {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-recognition-icon {
  height: 1.75rem;
  width: 1.75rem;
  color: var(--gold);
}

@keyframes badge-glow {

  0%,
  100% {
    filter: drop-shadow(0 12px 24px color-mix(in oklab, var(--gold) 10%, transparent));
  }

  50% {
    filter: drop-shadow(0 18px 34px color-mix(in oklab, var(--gold) 26%, transparent));
  }
}

.badge-glow {
  animation: badge-glow 5s ease-in-out infinite;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card-soft {
  background: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-soft:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--gold) 42%, var(--border));
  box-shadow: var(--shadow-lift);
}

.card-soft-dark {
  background: var(--ink);
  color: var(--background);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.card-desc {
  margin-top: 0.75rem;
  line-height: 1.75rem;
  color: var(--muted-foreground);
}

.card-desc-dark {
  color: color-mix(in oklab, var(--background) 70%, transparent);
}

.icon-chip {
  display: flex;
  height: 64px;
  width: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ember-soft);
  border: 1px solid color-mix(in oklab, var(--ember) 20%, transparent);
  color: var(--ember);
}

.icon-chip-spacing {
  margin-bottom: 1.5rem;
}

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

.proof-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

/* ==========================================================================
   Why it matters
   ========================================================================== */

.why-grid {
  margin-inline: auto;
  max-width: 80rem;
  display: grid;
  gap: 3.5rem;
}

.why-sticky {}

.why-sub {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: var(--muted-foreground);
}

.outcomes-grid {
  display: grid;
  gap: 1.25rem;
}

.outcome-icon {
  margin-bottom: 1.5rem;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
}

.outcome-icon-ember {
  background: var(--ember-soft);
  color: var(--ember);
}

.outcome-icon-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* ==========================================================================
   Difference / comparison
   ========================================================================== */

.compare-grid {
  margin-top: 3rem;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklab, var(--background) 10%, transparent);
}

.compare-col {
  padding: 1.75rem;
}

.compare-col-typical {
  background: color-mix(in oklab, var(--background) 5%, transparent);
}

.compare-col-gmi {
  background: var(--card);
  color: var(--card-foreground);
}

.compare-col-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.compare-col-title-muted {
  color: color-mix(in oklab, var(--background) 60%, transparent);
}

.compare-col-title-ember {
  color: var(--ember);
}

.compare-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.compare-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid;
}

.compare-item-typical {
  border-color: color-mix(in oklab, var(--background) 10%, transparent);
  color: color-mix(in oklab, var(--background) 60%, transparent);
}

.compare-item-gmi {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-color: var(--border);
  font-weight: 600;
}

.compare-check {
  color: var(--ember);
  flex-shrink: 0;
}

.compare-footnote {
  margin-top: 2rem;
  text-align: center;
  font-weight: 600;
  color: color-mix(in oklab, var(--background) 80%, transparent);
}

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

.steps-grid {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}

.steps-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 1.75rem;
  display: none;
  height: 1px;
  background: var(--border);
}

.step {
  position: relative;
  background: var(--background);
  padding-top: 0.25rem;
}

.step-number {
  position: relative;
  z-index: 10;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: var(--ember);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-foreground);
  box-shadow: var(--shadow-card);
}

.step-title {
  margin-top: 1.5rem;
}

.how-it-works-cta {
  margin-top: 3rem;
}

/* ==========================================================================
   Social proof
   ========================================================================== */

.testimonials-grid {
  margin: 2.5rem auto 0;
  display: grid;
  max-width: 64rem;
  gap: 1.25rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-quote-icon {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--ember);
}

.testimonial-quote {
  margin-top: 1.25rem;
  flex: 1 1 auto;
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--foreground);
}

.testimonial-attribution {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-role {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.photo-strip-wrap {
  margin-top: 3.5rem;
}

.photo-strip-label {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ember);
}

@keyframes photo-strip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.photo-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding-block: 0.5rem 1.25rem;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.photo-strip-track {
  display: flex;
  width: max-content;
  animation: photo-strip-scroll 54s linear infinite;
  will-change: transform;
}

.photo-strip:hover .photo-strip-track,
.photo-strip:focus-within .photo-strip-track {
  animation-play-state: paused;
}

.photo-strip-set {
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
  padding-right: 1rem;
}

.photo-strip-card {
  width: clamp(13rem, 20vw, 18rem);
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.photo-strip-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.orgs-wrap {
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.orgs-title {
  margin-inline: auto;
  max-width: 56rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.25;
}

.orgs-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.org-card {
  display: flex;
  height: 6rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 300ms ease;
}

.org-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.org-card-img {
  max-height: 3.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.orgs-footnote {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   Risk reversal
   ========================================================================== */

.risk-grid {
  margin-inline: auto;
  max-width: 80rem;
  display: grid;
  gap: 3rem;
}

.risk-lede {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: var(--muted-foreground);
}

.risk-sub {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
}

.risk-cta {
  margin-top: 2rem;
}

.insights-grid {
  display: grid;
  gap: 1rem;
}

.insight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.insight-icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
}

.insight-icon svg {
  width: 1rem;
  height: 1rem;
}

.insight-icon-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.insight-icon-ember {
  background: var(--ember);
  color: var(--accent-foreground);
}

.insight-label {
  font-weight: 600;
}

/* ==========================================================================
   Next step
   ========================================================================== */

.next-step-grid {
  margin-inline: auto;
  max-width: 72rem;
  display: grid;
  gap: 2.5rem;
}

.next-step-lede {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  line-height: 2rem;
  color: var(--muted-foreground);
}

.next-step-note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.next-step-card {
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-lift);
}

.checklist {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checklist-icon {
  margin-top: 0.125rem;
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--ember-soft);
}

.checklist-icon svg {
  color: var(--ember);
}

.next-step-cta {
  margin-top: 2rem;
  width: 100%;
}

.next-step-footnote {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

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

.accordion {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding-inline: 1.5rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.accordion-chevron {
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 200ms;
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 250ms ease;
}

.accordion-content-inner {
  padding-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--muted-foreground);
}

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

.final-cta {
  text-align: center;
}

.final-cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.final-cta-title {
  margin-top: 1.25rem;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.08;
}

.final-cta-sub {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: color-mix(in oklab, var(--background) 65%, transparent);
}

.final-cta-actions {
  margin-top: 2.25rem;
}

.final-cta-footnote {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--background) 60%, transparent);
}

.mobile-sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 30;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 95%, transparent);
  padding: 0.75rem;
  backdrop-filter: blur(8px);
}

.mobile-sticky-cta-btn {
  width: 100%;
}

.site-footer {
  border-top: 1px solid color-mix(in oklab, var(--background) 10%, transparent);
  background: var(--ink);
  padding: 2.5rem 1.25rem 6rem;
  text-align: center;
  font-size: 0.875rem;
  color: color-mix(in oklab, var(--background) 55%, transparent);
}

.site-footer-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

.reveal-widthbox {
  max-width: 700px;
  margin: auto;
}

.faq__note {
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
  background: color-mix(in oklab, var(--accent) 5%, transparent);
  padding: 1.5rem;
  text-align: center;

}

.faq__note-kicker {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ==========================================================================
   Responsive breakpoints (sm 640px / md 768px / lg 1024px)
   ========================================================================== */

@media (min-width: 640px) {
  .site-header-inner {
    padding-inline: 2rem;
  }

  .hero {
    padding-inline: 2rem;
  }

  .section {
    padding-inline: 2rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-lede {
    font-size: 1.25rem;
  }

  .hero-note {
    font-size: 1.125rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-stat-value {
    font-size: 1.5rem;
  }

  .hero-badge-card {
    padding: 3rem;
  }

  .hero-recognition-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .final-cta-title {
    font-size: 3rem;
  }

  .compare-col {
    padding: 2.5rem;
  }

  .org-card {
    height: 7rem;
  }

  .orgs-title {
    font-size: 2.25rem;
  }

  .next-step-card {
    padding: 2.5rem;
  }

  .accordion-trigger {
    font-size: 1.125rem;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orgs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .hero {
    padding-bottom: 5rem;
    padding-top: 8rem;
  }

  .hero-title {
    font-size: 64px;
  }

  .section {
    padding-block: 7rem;
  }

  .why-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .why-sticky {
    position: sticky;
    top: 8rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-line {
    display: block;
  }

  .risk-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

  .next-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .orgs-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}