/* ═══════════════════════════════════════════════
   RANGE LANDING PAGE — STYLES
   Mobile-first responsive design
   ═══════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────── */
:root {
  /* Brand Colours — LOCKED (RANGE_CLAUDE.md Section 3) */
  --color-primary:    #83E0D1;
  --color-bg:         #0F1923;
  --color-surface:    #131F2B;
  --color-text:       #E8ECF1;
  --color-amber:      #FBBF24;

  /* Derived */
  --color-primary-hover: #9AE8DC;
  --color-text-muted: rgba(232, 236, 241, 0.6);
  --color-border:     rgba(131, 224, 209, 0.1);
  --color-border-hover: rgba(131, 224, 209, 0.25);
  --color-surface-hover: #182733;
  --shadow-card:      0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 48px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);

  /* Typography — LOCKED (RANGE_CLAUDE.md Section 4) */
  --font-heading:   'Manrope', sans-serif;
  --font-body:      'Manrope', sans-serif;

  /* Spacing */
  --section-pad:    80px;
  --section-pad-lg: 120px;

  /* Max widths */
  --max-width:      1200px;
  --max-narrow:     680px;

  /* Transitions */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* Subtle noise grain overlay for warmth and depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

/* ─── Password Gate ─────────────────────────── */
.gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gate--hidden {
  display: none;
}

.gate__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(131, 224, 209, 0.06) 0%, rgba(131, 224, 209, 0.02) 40%, transparent 70%);
  pointer-events: none;
}

.gate__content {
  text-align: center;
  max-width: 400px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  animation: gateReveal 0.8s var(--ease-out) both;
}

@keyframes gateReveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gate__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.gate__wordmark-text {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-text);
  line-height: 1;
}

.gate__wordmark-dots {
  display: flex;
  gap: 5px;
}

.gate__wordmark-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.gate__wordmark-dot--1 { background: var(--color-primary); }
.gate__wordmark-dot--2 { background: var(--color-text); }
.gate__wordmark-dot--3 { background: var(--color-amber); }

.gate__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px 28px;
}

.gate__message {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.gate__input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  outline: none;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gate__input:focus {
  border-color: rgba(131, 224, 209, 0.35);
  box-shadow: 0 0 0 3px rgba(131, 224, 209, 0.08);
}

.gate__error {
  font-size: 14px;
  color: var(--color-amber);
  margin-top: 16px;
}

.gate__error--hidden {
  display: none;
}

.gate__footer {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 28px;
  letter-spacing: 0.02em;
  opacity: 0.6;
}

/* Lock site content until authenticated */
.site-content--locked {
  display: none;
}

/* ─── Sticky Navigation ──────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.site-nav.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  background: rgba(15, 25, 35, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(131, 224, 209, 0.06);
}

.site-nav__brand {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-text);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.site-nav__brand:hover {
  opacity: 1;
  color: var(--color-text);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__link:hover {
  color: var(--color-text);
  background: rgba(232, 236, 241, 0.06);
}

.site-nav__link--cta {
  color: var(--color-bg);
  background: var(--color-primary);
  font-weight: 700;
  padding: 6px 16px;
}

.site-nav__link--cta:hover {
  background: var(--color-primary-hover);
  color: var(--color-bg);
}

@media (max-width: 480px) {
  .site-nav__inner {
    padding: 0 16px;
    height: 48px;
  }

  .site-nav__links {
    gap: 4px;
  }

  .site-nav__link {
    font-size: 12px;
    padding: 5px 8px;
  }

  .site-nav__link--cta {
    padding: 5px 12px;
  }
}


/* ─── Layout ────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ─── Brand Wordmark ────────────────────────── */
.wordmark {
  position: fixed;
  top: 28px;
  left: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
  opacity: 0.85;
}

.wordmark:hover {
  opacity: 1;
}

.wordmark.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.wordmark__text {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  line-height: 1;
}

.wordmark__dots {
  display: flex;
  gap: 6px;
  margin-top: 1px;
}

.wordmark__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.wordmark__dot--1 { background: var(--color-primary); }
.wordmark__dot--2 { background: var(--color-text); }
.wordmark__dot--3 { background: var(--color-amber); }

/* ─── Button ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 16px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  text-align: center;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  box-shadow: 0 2px 16px rgba(131, 224, 209, 0.2);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--primary:hover::after {
  opacity: 1;
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(131, 224, 209, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(154, 213, 201, 0.2);
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

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

/* ─── Scroll Reveal Animation ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Opacity-only reveal for ambassador cards */
.reveal--fade {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}

.reveal--fade.is-visible {
  opacity: 1;
}


/* ═══════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 769px) {
  .hero {
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    min-height: auto;
  }
}

/* Network SVG background */
.hero__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
}

/* Simplified network for mobile */
.hero__network-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
  display: none;
}

.hero__node {
  animation: pulse-soft 4s ease-in-out infinite;
}

/* Atmospheric glow orbs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(131, 224, 209, 0.12) 0%, transparent 70%);
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__glow--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.04) 0%, transparent 60%);
  top: 70%;
  right: 20%;
}

.hero__glow--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(131, 224, 209, 0.08) 0%, transparent 70%);
  bottom: 10%;
  left: 15%;
}

/* Conversation bubbles */
.hero__bubble {
  position: absolute;
  border-radius: 16px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
  z-index: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__bubble--green {
  background: rgba(131, 224, 209, 0.08);
  border: 1px solid rgba(131, 224, 209, 0.15);
  color: rgba(131, 224, 209, 0.85);
}

.hero__bubble--amber {
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.12);
  color: rgba(251, 191, 36, 0.85);
}

.hero__bubble--surface {
  background: rgba(19, 31, 43, 0.8);
  border: 1px solid rgba(232, 236, 241, 0.08);
  color: rgba(232, 236, 241, 0.6);
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  background: rgba(251, 191, 36, 0.1);
  color: var(--color-amber);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 24px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  animation: fade-in 1s ease-out 0.3s both;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(42px, 8vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  position: relative;
  animation: fade-in-up 0.8s ease-out 0.5s both;
}

.hero__headline em {
  font-style: normal;
  color: var(--color-primary);
}

.hero__subheadline {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.65;
  animation: fade-in-up 0.8s ease-out 0.7s both;
}

.hero__qualifier {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 44px;
  animation: fade-in-up 0.8s ease-out 0.9s both;
}

.hero .btn {
  font-size: 18px;
  padding: 18px 44px;
  animation: fade-in-up 0.8s ease-out 1.1s both;
}

/* Social proof strip */
.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  animation: fade-in-up 0.8s ease-out 1.4s both;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-bg);
}

.hero__avatar + .hero__avatar {
  margin-left: -10px;
}

.hero__social-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
  opacity: 0.7;
}

.hero__stat {
  color: var(--color-text);
  font-weight: 700;
}

/* Hero social proof — stack on small screens */
@media (max-width: 480px) {
  .hero__social-proof {
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
  }

  .hero__social-text {
    font-size: 12px;
  }
}

/* Hide decorative hero elements on smaller screens */
@media (max-width: 1199px) {
  .hero__bubble { display: none; }
  .hero__network { display: none; }
  .hero__network-mobile { display: block; }
}

/* Kill expensive effects on mobile for performance */
@media (max-width: 768px) {
  .hero__glow,
  .solution__glow,
  .podcast__glow,
  .signup__glow {
    display: none;
  }

  /* Hide animated SVG icons — SMIL animations can't be paused */
  .problem-card__icon,
  .pillar-card__icon-wrap {
    display: none;
  }

  /* Reclaim the spacing */
  .problem-card__headline {
    margin-top: 0;
  }

  /* Kill the noise grain overlay — feTurbulence is very expensive on mobile */
  body::before {
    display: none;
  }
}

/* Simplified animations on mobile — fade only, no vertical movement */
@media (max-width: 768px) {
  .reveal {
    opacity: 0;
    transform: none;
    transition: opacity 0.6s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4,
  .reveal-delay-5,
  .reveal-delay-6 {
    transition-delay: 0s;
  }
}


/* ═══════════════════════════════════════════════
   SECTION 2: PROBLEM AGITATION (2×2 card grid)
   ═══════════════════════════════════════════════ */
.problems {
  padding: 40px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}

.problems__intro {
  text-align: center;
  margin-bottom: 40px;
}

.problems__eyebrow {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
}

.problems::before {
  display: none;
}

.problems__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

.problem-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px 28px;
  cursor: pointer;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.problem-card:hover,
.problem-card:focus-visible {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

/* Accent bar — left edge glow */
.problem-card__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, transparent 100%);
  opacity: 0.25;
  transition: opacity 0.4s ease;
}

.problem-card:hover .problem-card__accent-bar {
  opacity: 1;
}

/* Amber accent variant */
.problem-card--amber .problem-card__accent-bar {
  background: linear-gradient(180deg, var(--color-amber) 0%, transparent 100%);
}

.problem-card--amber .problem-card__number {
  color: var(--color-amber);
}

/* Hero card — full width with pull quote */
.problem-card--hero {
  border-color: rgba(251, 191, 36, 0.12);
}

.problem-card--hero .problem-card__accent-bar {
  opacity: 0.5;
}

.problem-card__icon {
  margin-bottom: 20px;
  height: 56px;
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease-out);
}

.problem-card:hover .problem-card__icon {
  transform: scale(1.08);
}

.problem-card__number {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 12px;
  opacity: 0.7;
}

.problem-card__headline {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0;
  letter-spacing: -0.01em;
  transition: margin-bottom 0.3s ease;
}

.problem-card__body {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.65;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.4s var(--ease-out), opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.problem-card__body > span {
  min-height: 0;
  overflow: hidden;
}

/* Pull quote — always visible as social proof */
.problem-card__pull-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--color-primary);
  opacity: 0.6;
  margin-top: 16px;
  padding-left: 16px;
  border-left: 2px solid rgba(131, 224, 209, 0.35);
  line-height: 1.6;
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  transition: opacity 0.3s ease 0.1s;
}

.problem-card__pull-quote > span {
  min-height: 0;
  overflow: hidden;
}

.problem-card__pull-quote--amber {
  color: var(--color-amber);
  border-left-color: rgba(251, 191, 36, 0.35);
}

/* Reveal body on hover / focus / touch */
.problem-card:hover .problem-card__headline,
.problem-card:focus-within .problem-card__headline {
  margin-bottom: 4px;
}

.problem-card:hover .problem-card__body,
.problem-card:focus-within .problem-card__body {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 12px;
}

.problem-card:hover .problem-card__pull-quote,
.problem-card:focus-within .problem-card__pull-quote {
  opacity: 0.8;
}


/* ═══════════════════════════════════════════════
   SECTION 3: FOUNDER
   ═══════════════════════════════════════════════ */
.founder {
  padding: var(--section-pad-lg) 0;
  background: var(--color-surface);
  position: relative;
}

.founder::before,
.founder::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

.founder::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface));
}

.founder::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg), var(--color-surface));
}

/* Mobile: single column, bio first then photo + quotes */
.founder__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.founder__right {
  order: 1;
}

.founder__left {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.founder__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid rgba(154, 213, 201, 0.25);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 60px rgba(154, 213, 201, 0.12), 0 0 120px rgba(154, 213, 201, 0.06);
}

.founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder__right {
  text-align: center;
}

.founder__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.founder__body {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.founder__body strong {
  color: var(--color-text);
  font-weight: 500;
}

.founder__body--muted {
  font-size: 15px;
  color: rgba(169, 183, 189, 0.5);
  font-style: italic;
  margin-top: 8px;
}

/* Credential pills */
.founder__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.founder__cred {
  display: inline-block;
  padding: 5px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text);
  background: rgba(154, 213, 201, 0.08);
  border: 1px solid rgba(154, 213, 201, 0.15);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}

.founder__cred:hover {
  background: rgba(154, 213, 201, 0.14);
  border-color: rgba(154, 213, 201, 0.3);
}

/* Works list */
.founder__works {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.founder__works li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.founder__works li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

/* Testimonial quote */
.founder__quote + .founder__quote {
  margin-top: 16px;
}

.founder__quote {
  margin: 0;
  padding: 20px 24px;
  border-left: 3px solid var(--color-primary);
  background: rgba(154, 213, 201, 0.04);
  border-radius: 0 8px 8px 0;
}

.founder__quote p {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 10px;
}

.founder__quote cite {
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  color: rgba(169, 183, 189, 0.6);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════
   SECTION 4: SOLUTION
   ═══════════════════════════════════════════════ */
.solution {
  padding: var(--section-pad-lg) 0;
  padding-top: calc(var(--section-pad-lg) + 40px);
  position: relative;
  overflow: hidden;
}

.solution::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.025) 0%, transparent 70%);
  pointer-events: none;
}

.solution::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(131, 224, 209, 0.025) 0%, transparent 70%);
  pointer-events: none;
}

.solution__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 30%;
  left: -5%;
  background: radial-gradient(circle, rgba(131, 224, 209, 0.03) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.solution__intro {
  text-align: center;
  margin-bottom: 72px;
}

.solution__intro-lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 12px;
}

.solution__intro-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.solution__intro-body {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.solution__intro-stat {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-top: 20px;
  opacity: 0.6;
}

/* Pillar cards */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.pillar-card:hover,
.pillar-card:focus-within {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* Top accent line on cards */
.pillar-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.pillar-card:hover .pillar-card__accent,
.pillar-card:focus-within .pillar-card__accent {
  opacity: 1;
}

.pillar-card__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-out);
  border: 1px solid rgba(131, 224, 209, 0.08);
}

.pillar-card:hover .pillar-card__icon-wrap {
  transform: scale(1.08);
}

/* Vault — green tint */
.pillar-card:nth-child(1) .pillar-card__icon-wrap {
  background: rgba(131, 224, 209, 0.1);
}

/* Radar — amber tint */
.pillar-card:nth-child(2) .pillar-card__icon-wrap {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.08);
}

/* Squad — green tint */
.pillar-card:nth-child(3) .pillar-card__icon-wrap {
  background: rgba(131, 224, 209, 0.1);
}

/* Radar card amber accent override */
.pillar-card:nth-child(2) .pillar-card__accent {
  background: linear-gradient(90deg, var(--color-amber) 0%, transparent 100%);
}

.pillar-card__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 20px;
  opacity: 0.6;
}

.pillar-card__heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.pillar-card__heading-sub {
  font-weight: 400;
  color: var(--color-text-muted);
}

.pillar-card__body {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.pillar-card__body:last-child {
  margin-bottom: 0;
}

.pillar-card__body--muted {
  font-size: 15px;
  color: rgba(169, 183, 189, 0.55);
  font-style: italic;
}

/* Feature tags */
.pillar-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pillar-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 100px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pillar-tag--green {
  background: rgba(131, 224, 209, 0.12);
  color: #83E0D1;
  border: 1px solid rgba(131, 224, 209, 0.22);
}

.pillar-tag--amber {
  background: rgba(251, 191, 36, 0.10);
  color: #FBBF24;
  border: 1px solid rgba(251, 191, 36, 0.20);
}

/* Vault resource pills */
.pillar-card__vault-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(131, 224, 209, 0.06);
}

.vault-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 4px 10px;
  background: rgba(131, 224, 209, 0.04);
  border: 1px solid rgba(131, 224, 209, 0.08);
  border-radius: 100px;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* Stagger tags on hover */
.pillar-card:hover .pillar-tag:nth-child(1) { transform: translateY(-1px); }
.pillar-card:hover .pillar-tag:nth-child(2) { transform: translateY(-2px); transition-delay: 0.03s; }
.pillar-card:hover .pillar-tag:nth-child(3) { transform: translateY(-1px); transition-delay: 0.06s; }
.pillar-card:hover .pillar-tag:nth-child(4) { transform: translateY(-2px); transition-delay: 0.09s; }
.pillar-card:hover .pillar-tag:nth-child(5) { transform: translateY(-1px); transition-delay: 0.12s; }
.pillar-card:hover .pillar-tag:nth-child(6) { transform: translateY(-2px); transition-delay: 0.15s; }

/* Expandable body */
.pillar-card__expand {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.5s var(--ease-out), opacity 0.4s ease 0.1s;
}

.pillar-card__expand-inner {
  min-height: 0;
  overflow: hidden;
}

.pillar-card:hover .pillar-card__expand,
.pillar-card:focus-within .pillar-card__expand,
.pillar-card.is-expanded .pillar-card__expand {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* Read more indicator */
.pillar-card__more {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 6px 12px;
  background: rgba(131, 224, 209, 0.06);
  border: 1px solid rgba(131, 224, 209, 0.12);
  border-radius: 20px;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.pillar-card__more::after {
  content: '↓';
  display: inline-block;
  animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.pillar-card:hover .pillar-card__more,
.pillar-card:focus-within .pillar-card__more,
.pillar-card.is-expanded .pillar-card__more {
  opacity: 0;
}

/* Radar sweep animation */
@media (prefers-reduced-motion: no-preference) {
  .pillar-icon--radar line {
    transform-origin: 32px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pillar-icon--radar line animateTransform,
  .pillar-icon--squad line animate,
  .pillar-icon--vault circle animate {
    display: none;
  }
}


/* ═══════════════════════════════════════════════
   SECTION 5: AMBASSADORS (standalone)
   ═══════════════════════════════════════════════ */
.ambassadors {
  padding: var(--section-pad) 0;
  background: var(--color-surface);
  position: relative;
}

.ambassadors::before,
.ambassadors::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

.ambassadors::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface));
}

.ambassadors::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg), var(--color-surface));
}

.ambassadors__intro {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.ambassadors__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

.tools__cta {
  text-align: center;
  margin-top: 56px;
  margin-bottom: 20px;
}

.ambassadors__cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
}

/* Ambassadors grid — photo-first layout */
.ambassadors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.ambassadors__eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  opacity: 0.7;
}

.ambassador-card {
  text-align: left;
}

.ambassador-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid rgba(131, 224, 209, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ambassador-card:hover .ambassador-card__photo {
  border-color: rgba(131, 224, 209, 0.3);
  box-shadow: 0 8px 32px rgba(131, 224, 209, 0.08);
}

.ambassador-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambassador-card__quote {
  font-size: 15px;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 14px;
}

.ambassador-card__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ambassador-card__link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ambassador-card__link:hover {
  color: var(--color-primary-hover);
}

.ambassador-card__title {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.ambassador-card__company {
  font-size: 12px;
  color: var(--color-amber);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* Desktop: 3-column grid, last row centred */
@media (min-width: 769px) {
  .ambassadors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
  }

  .ambassador-card {
    width: 100%;
    max-width: 100%;
  }

  /* 6 cards fill a clean 3×2 grid — no offset needed */
}


/* ═══════════════════════════════════════════════
   SECTION 6: TOOLS SHOWCASE
   ═══════════════════════════════════════════════ */
.tools {
  padding: var(--section-pad-lg) 0;
}

.tools__intro {
  margin-bottom: 48px;
}

.tools__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.tools__body {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.65;
}

.tools__body--muted {
  font-size: 15px;
  color: rgba(169, 183, 189, 0.5);
  font-style: italic;
  margin-top: 12px;
}

/* Tools grid */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.tool-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  box-shadow: var(--shadow-card);
}

.tool-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.tool-card__screenshot {
  background: linear-gradient(160deg, #151a2c 0%, #1e2640 50%, #1a2235 100%);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

/* macOS-style window dots */
.tool-card__window-bar {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 6px;
}

.tool-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(94, 123, 143, 0.25);
}

.tool-card__dot:nth-child(1) { background: #FF5F57; opacity: 0.6; }
.tool-card__dot:nth-child(2) { background: #FFBD2E; opacity: 0.6; }
.tool-card__dot:nth-child(3) { background: #28CA42; opacity: 0.6; }

/* Distinct gradient backgrounds per tool card */
.tool-card:nth-child(1) .tool-card__screenshot {
  background: linear-gradient(160deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
}

.tool-card:nth-child(2) .tool-card__screenshot {
  background: linear-gradient(160deg, #1a1c2c 0%, #2a2845 50%, #1e1a35 100%);
}

.tool-card:nth-child(3) .tool-card__screenshot {
  background: linear-gradient(160deg, #1c2333 0%, #243046 50%, #1a2538 100%);
}

.tool-card__placeholder-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  opacity: 0.35;
}

.tool-card__prototype-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.tool-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  padding: 24px 24px 8px;
}

.tool-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 0 24px 24px;
}

.tool-card--coming-soon {
  opacity: 0.4;
  border-style: dashed;
}

.tool-card--coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}

/* Interactive tool card — spans full width */

.tool-card--interactive .tool-card__screenshot {
  background: linear-gradient(180deg, #0F1923 0%, #131F2B 100%);
  height: auto;
  min-height: auto;
  max-height: none;
  padding: 0;
  overflow: visible;
}

.tool-card--interactive {
  grid-column: 1 / -1;
  overflow: visible;
}

.tool-card--interactive:hover {
  transform: none;
}

/* ─── Stakeholder Coach Widget ─── */
.coach {
  padding: 24px;
  font-family: var(--font-body);
}

.coach__header {
  margin-bottom: 20px;
}

.coach__label {
  font-family: monospace;
  font-size: 10px;
  color: rgba(131, 224, 209, 0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.coach__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0 0 8px;
}

.coach__accent {
  color: var(--color-primary);
}

.coach__subtitle {
  font-size: 13px;
  color: rgba(232, 236, 241, 0.4);
  line-height: 1.5;
  margin: 0;
}

.coach__stakeholders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.coach__stake {
  background: #131F2B;
  border: 1px solid rgba(232, 236, 241, 0.06);
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.coach__stake::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #83E0D1, transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.coach__stake:hover {
  border-color: rgba(131, 224, 209, 0.15);
  background: rgba(131, 224, 209, 0.04);
}

.coach__stake.is-active {
  border-color: rgba(131, 224, 209, 0.25);
  background: rgba(131, 224, 209, 0.06);
}

.coach__stake.is-active::before {
  opacity: 1;
}

.coach__stake-icon {
  color: rgba(131, 224, 209, 0.25);
  transition: color 0.2s ease;
}

.coach__stake.is-active .coach__stake-icon {
  color: #83E0D1;
}

.coach__stake-role {
  font-size: 13px;
  font-weight: 600;
  color: rgba(232, 236, 241, 0.65);
  transition: color 0.2s ease;
}

.coach__stake.is-active .coach__stake-role {
  color: var(--color-text);
}

.coach__stake-quote {
  font-size: 12px;
  color: rgba(232, 236, 241, 0.25);
  font-style: italic;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.coach__stake.is-active .coach__stake-quote {
  color: rgba(232, 236, 241, 0.5);
}

.coach__detail {
  min-height: 60px;
}

.coach__empty {
  text-align: center;
  padding: 32px 16px;
  font-family: monospace;
  font-size: 12px;
  color: rgba(232, 236, 241, 0.12);
  letter-spacing: 0.04em;
}

.coach__real-interest {
  background: #131F2B;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 16px;
  border-left: 3px solid var(--color-amber);
  animation: coachFadeUp 0.35s ease forwards;
}

.coach__real-interest-label {
  font-family: monospace;
  font-size: 10px;
  color: rgba(251, 191, 36, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.coach__real-interest-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
  font-weight: 500;
}

.coach__objection {
  border-left: 2px solid rgba(131, 224, 209, 0.2);
  padding-left: 16px;
  margin-bottom: 12px;
  animation: coachFadeUp 0.35s ease forwards;
}

.coach__objection-header {
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.coach__objection-said {
  font-size: 14px;
  color: var(--color-text);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 4px;
}

.coach__objection-protecting {
  font-family: monospace;
  font-size: 10px;
  color: rgba(131, 224, 209, 0.35);
}

.coach__objection-toggle {
  color: rgba(232, 236, 241, 0.25);
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.coach__objection.is-open .coach__objection-toggle {
  color: #83E0D1;
  transform: rotate(45deg);
}

.coach__objection-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.coach__objection.is-open .coach__objection-body {
  grid-template-rows: 1fr;
}

.coach__objection-body-inner {
  min-height: 0;
  overflow: hidden;
}

.coach__response-box {
  background: rgba(131, 224, 209, 0.04);
  border: 1px solid rgba(131, 224, 209, 0.1);
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.coach__proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.coach__proof-box {
  background: rgba(251, 191, 36, 0.04);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 6px;
  padding: 12px 14px;
}

.coach__concession-box {
  background: rgba(232, 236, 241, 0.02);
  border: 1px solid rgba(232, 236, 241, 0.08);
  border-radius: 6px;
  padding: 12px 14px;
}

.coach__pill {
  font-family: monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
}

.coach__pill--green {
  background: rgba(131, 224, 209, 0.1);
  color: #83E0D1;
  border: 1px solid rgba(131, 224, 209, 0.2);
}

.coach__pill--amber {
  background: rgba(251, 191, 36, 0.1);
  color: #FBBF24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.coach__pill--muted {
  background: rgba(232, 236, 241, 0.05);
  color: rgba(232, 236, 241, 0.5);
  border: 1px solid rgba(232, 236, 241, 0.1);
}

.coach__detail-text {
  font-size: 13px;
  color: rgba(232, 236, 241, 0.65);
  line-height: 1.6;
}

@keyframes coachFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .coach__stakeholders {
    grid-template-columns: 1fr;
  }
  .coach__proof-grid {
    grid-template-columns: 1fr;
  }
}


/* ─── Merit Matrix Builder Widget ───────────────── */
.mmb {
  padding: 24px;
  font-family: var(--font-body);
  color: var(--color-text);
}

.mmb__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(131, 224, 209, 0.1);
  margin-bottom: 0;
}

.mmb__header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mmb__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(131, 224, 209, 0.12), rgba(251, 191, 36, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-primary);
}

.mmb__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--color-text);
}

.mmb__subtitle {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 4px 0 0;
  line-height: 1.4;
}

.mmb__badge {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--color-text-muted);
  border: 1px solid rgba(131, 224, 209, 0.1);
}

.mmb__badge-brand {
  color: var(--color-primary);
  font-weight: 600;
}

.mmb__controls {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid rgba(131, 224, 209, 0.1);
  background: var(--color-surface);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.mmb__control-group--budget { flex: 1 1 220px; min-width: 200px; }
.mmb__control-group--dist { flex: 1 1 260px; min-width: 200px; }

.mmb__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}

.mmb__slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mmb__slider {
  flex: 1;
  accent-color: var(--color-primary);
  height: 4px;
  cursor: pointer;
}

.mmb__budget-value {
  font-weight: 700;
  font-size: 22px;
  color: var(--color-primary);
  min-width: 60px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.mmb__dist-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mmb__dist-btn {
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid rgba(131, 224, 209, 0.1);
  background: transparent;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.15s ease;
}

.mmb__dist-btn--active {
  border-color: rgba(131, 224, 209, 0.3);
  background: rgba(131, 224, 209, 0.12);
  color: var(--color-primary);
  font-weight: 600;
}

.mmb__dist-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 6px;
  opacity: 0.7;
}

.mmb__matrix-wrap {
  padding: 24px 0;
  overflow-x: auto;
}

.mmb__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  table-layout: fixed;
}

.mmb__table th {
  font-size: 10px;
  color: var(--color-text-muted);
  font-weight: 500;
  text-align: center;
  padding: 0 0 8px 0;
  white-space: pre-line;
  line-height: 1.4;
  vertical-align: bottom;
}

.mmb__table th:first-child {
  width: 100px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mmb__perf-label {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 8px;
  vertical-align: middle;
}

.mmb__perf-label--top { color: var(--color-primary); }
.mmb__perf-label--bottom { color: var(--color-text-muted); }

.mmb__cell {
  text-align: center;
  padding: 14px 8px;
  border-radius: 6px;
  cursor: default;
  transition: all 0.15s ease;
  position: relative;
}

.mmb__cell:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(131, 224, 209, 0.25);
}

.mmb__cell-val {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.mmb__cell-val--zero {
  font-size: 13px;
  color: rgba(232, 236, 241, 0.25);
}

.mmb__cell-val--normal {
  font-size: 18px;
  color: var(--color-text);
}

.mmb__cell-val--high {
  font-size: 18px;
  color: #FBBF24;
}

.mmb__axis-label {
  text-align: center;
  margin-top: 10px;
  font-size: 10px;
  color: var(--color-text-muted);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mmb__summary {
  margin: 0;
  padding: 16px 20px;
  background: var(--color-surface);
  border-radius: 10px;
  border: 1px solid rgba(131, 224, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.mmb__summary-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mmb__summary-metric-label {
  font-size: 10px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.mmb__summary-metric-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.mmb__summary-divider {
  width: 1px;
  height: 32px;
  background: rgba(131, 224, 209, 0.1);
}

.mmb__summary-status {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
}

.mmb__summary-status--ok {
  color: var(--color-primary);
  background: rgba(131, 224, 209, 0.12);
}

.mmb__summary-status--warn {
  color: #FBBF24;
  background: rgba(251, 191, 36, 0.12);
}

.mmb__flags-toggle {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  padding: 16px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mmb__flags-toggle-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.mmb__flags-toggle-arrow--open {
  transform: rotate(90deg);
}

.mmb__flags-list {
  padding: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mmb__flag {
  display: flex;
  align-items: flex-start;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid;
}

.mmb__flag--alert { background: rgba(239, 68, 68, 0.12); border-color: rgba(239, 68, 68, 0.15); }
.mmb__flag--warn  { background: rgba(251, 191, 36, 0.12); border-color: rgba(251, 191, 36, 0.15); }
.mmb__flag--ok    { background: rgba(131, 224, 209, 0.12); border-color: rgba(131, 224, 209, 0.15); }
.mmb__flag--info  { background: var(--color-surface); border-color: rgba(131, 224, 209, 0.1); }

.mmb__flag-dot {
  margin-right: 8px;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1.5;
}

.mmb__flag-dot--alert { color: #EF4444; }
.mmb__flag-dot--warn  { color: #FBBF24; }
.mmb__flag-dot--ok    { color: var(--color-primary); }
.mmb__flag-dot--info  { color: var(--color-text-muted); }

.mmb__flag-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text);
  opacity: 0.9;
}

.mmb__footer {
  padding-top: 16px;
  border-top: 1px solid rgba(131, 224, 209, 0.1);
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.mmb__footer-brand {
  color: var(--color-primary);
  font-weight: 600;
  opacity: 1;
}

@media (max-width: 600px) {
  .mmb { padding: 16px; }
  .mmb__controls { flex-direction: column; gap: 16px; margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
  .mmb__header { flex-direction: column; align-items: flex-start; }
  .mmb__badge { align-self: flex-start; }
  .mmb__table th:first-child { width: 72px; }
  .mmb__table th, .mmb__perf-label { font-size: 9px; }
  .mmb__perf-label { padding: 8px 4px; }
  .mmb__cell { padding: 10px 4px; }
  .mmb__cell-val--normal, .mmb__cell-val--high { font-size: 15px; }
  .mmb__budget-value { font-size: 18px; }
  .mmb__summary { flex-direction: column; align-items: flex-start; padding: 14px 16px; }
  .mmb__summary-metrics { gap: 16px; }
  .mmb__summary-divider { display: none; }
  .mmb__summary-metric-value { font-size: 16px; }
  .mmb__dist-btn { padding: 6px 10px; font-size: 11px; }
  .mmb__matrix-wrap { padding: 16px 0; }
  .mmb__table { border-spacing: 2px; }
}

@media (max-width: 380px) {
  .mmb { padding: 12px; }
  .mmb__controls { margin: 0 -12px; padding-left: 12px; padding-right: 12px; }
  .mmb__table th:first-child { width: 60px; }
  .mmb__table th, .mmb__perf-label { font-size: 8px; }
  .mmb__cell { padding: 8px 2px; }
  .mmb__cell-val--normal, .mmb__cell-val--high { font-size: 13px; }
  .mmb__summary-metrics { flex-direction: column; gap: 8px; }
}

/* ─── Pay Range Builder Widget ────────────────── */
.prb {
  padding: 24px;
  font-family: var(--font-body);
  color: var(--color-text);
}

.prb__header { margin-bottom: 20px; }

.prb__label {
  font-family: monospace;
  font-size: 10px;
  color: rgba(131, 224, 209, 0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.prb__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

.prb__accent { color: var(--color-primary); }

.prb__subtitle {
  font-size: 13px;
  color: rgba(232, 236, 241, 0.4);
  margin-top: 10px;
  line-height: 1.6;
}

.prb__families {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.prb__family {
  background: #131F2B;
  border: 1px solid rgba(232, 236, 241, 0.06);
  border-radius: 8px;
  padding: 14px 12px;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.prb__family.is-active {
  background: rgba(131, 224, 209, 0.06);
  border-color: rgba(131, 224, 209, 0.25);
}

.prb__family-bar {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #83E0D1, rgba(131, 224, 209, 0));
}

.prb__family.is-active .prb__family-bar { display: block; }

.prb__family-icon {
  color: rgba(131, 224, 209, 0.2);
  transition: color 0.2s;
}

.prb__family.is-active .prb__family-icon { color: var(--color-primary); }

.prb__family-name {
  font-size: 11px;
  font-weight: 500;
  margin-top: 8px;
  color: rgba(232, 236, 241, 0.4);
  line-height: 1.3;
  transition: color 0.2s;
}

.prb__family.is-active .prb__family-name { color: var(--color-text); }

/* Legend */
.prb__legend {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-family: monospace;
  font-size: 10px;
  color: rgba(232, 236, 241, 0.25);
}

.prb__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.prb__legend-bar {
  width: 20px; height: 10px;
  background: rgba(131, 224, 209, 0.12);
  border: 1px solid rgba(131, 224, 209, 0.2);
  border-radius: 2px;
}

.prb__legend-mid {
  width: 2px; height: 12px;
  background: rgba(131, 224, 209, 0.4);
  border-radius: 1px;
}

.prb__legend-p25 {
  width: 7px; height: 7px;
  background: #60A5FA;
  border-radius: 50%;
}

.prb__legend-p75 {
  width: 7px; height: 7px;
  background: #C084FC;
  border-radius: 50%;
}

.prb__legend-p50 {
  width: 7px; height: 7px;
  background: #FBBF24;
  transform: rotate(45deg);
  border-radius: 1px;
}

/* Range bars */
.prb__bar-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 236, 241, 0.04);
  cursor: pointer;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.prb__bar-row.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.prb__bar-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prb__bar-code {
  font-family: monospace;
  font-size: 12px;
  font-weight: 600;
  color: rgba(131, 224, 209, 0.5);
  width: 32px;
  transition: color 0.2s;
}

.prb__bar-row.is-selected .prb__bar-code { color: var(--color-primary); }

.prb__bar-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(232, 236, 241, 0.55);
  width: 90px;
  transition: color 0.2s;
}

.prb__bar-row.is-selected .prb__bar-title { color: var(--color-text); }

.prb__bar-track {
  flex: 1;
  position: relative;
  height: 28px;
}

.prb__bar-range {
  position: absolute;
  top: 4px; height: 20px;
  background: linear-gradient(90deg, rgba(131,224,209,0.06) 0%, rgba(131,224,209,0.12) 50%, rgba(131,224,209,0.06) 100%);
  border: 1px solid rgba(131,224,209,0.1);
  border-radius: 4px;
  transition: all 0.25s ease;
}

.prb__bar-row.is-selected .prb__bar-range {
  background: linear-gradient(90deg, rgba(131,224,209,0.15) 0%, rgba(131,224,209,0.25) 50%, rgba(131,224,209,0.15) 100%);
  border-color: rgba(131,224,209,0.3);
}

.prb__bar-midpoint {
  position: absolute;
  top: 2px; height: 24px; width: 2px;
  background: rgba(131,224,209,0.3);
  border-radius: 1px;
  transition: background 0.25s ease;
}

.prb__bar-row.is-selected .prb__bar-midpoint { background: var(--color-primary); }

.prb__bar-p25 {
  position: absolute;
  top: 9px; width: 6px; height: 6px;
  background: #60A5FA;
  border-radius: 50%;
  transform: translateX(-3px);
  opacity: 0.35;
  transition: opacity 0.25s ease;
}

.prb__bar-p75 {
  position: absolute;
  top: 9px; width: 6px; height: 6px;
  background: #C084FC;
  border-radius: 50%;
  transform: translateX(-3px);
  opacity: 0.35;
  transition: opacity 0.25s ease;
}

.prb__bar-row.is-selected .prb__bar-p25 { opacity: 0.9; }
.prb__bar-row.is-selected .prb__bar-p75 { opacity: 0.9; }

.prb__bar-p50 {
  position: absolute;
  top: 8px; width: 8px; height: 8px;
  background: #FBBF24;
  transform: translateX(-4px) rotate(45deg);
  border-radius: 1px;
  opacity: 0.4;
  transition: opacity 0.25s ease;
}

.prb__bar-row.is-selected .prb__bar-p50 { opacity: 1; }

.prb__bar-mid-label {
  font-family: monospace;
  font-size: 11px;
  color: rgba(232,236,241,0.3);
  width: 70px;
  text-align: right;
}

/* Detail panel */
.prb__level-detail {
  background: #131F2B;
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 8px;
  border-left: 3px solid var(--color-primary);
  animation: coachFadeUp 0.35s ease forwards;
}

.prb__level-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.prb__level-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.prb__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232,236,241,0.04);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.prb__stat {
  background: #0F1923;
  padding: 14px 16px;
  text-align: center;
}

.prb__stat-label {
  font-family: monospace;
  font-size: 10px;
  color: rgba(232,236,241,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.prb__stat-label--highlight { color: rgba(251,191,36,0.5); }

.prb__stat-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  font-family: monospace;
  margin-bottom: 4px;
}

.prb__stat-value--highlight { color: #FBBF24; }

.prb__stat-sub {
  font-family: monospace;
  font-size: 10px;
  color: rgba(232,236,241,0.25);
}

.prb__flags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: monospace;
  font-size: 11px;
}

.prb__flag--warn { color: #FBBF24; }
.prb__flag--error { color: #EF4444; }

.prb__prompt {
  text-align: center;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: coachFadeUp 0.5s ease forwards;
}

.prb__prompt-line {
  width: 20px; height: 1px;
}

.prb__prompt-line--left {
  background: linear-gradient(90deg, transparent, rgba(131,224,209,0.3));
}

.prb__prompt-line--right {
  background: linear-gradient(90deg, rgba(131,224,209,0.3), transparent);
}

.prb__prompt-text {
  font-family: monospace;
  font-size: 11px;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.prb__footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(232,236,241,0.04);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: monospace;
  font-size: 10px;
  color: rgba(232,236,241,0.12);
  letter-spacing: 0.06em;
}

.prb__footer span:last-child {
  text-align: right;
  max-width: 380px;
  line-height: 1.5;
  color: rgba(232,236,241,0.15);
}

@media (max-width: 480px) {
  .prb__families { grid-template-columns: repeat(2, 1fr); }
  .prb__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .prb__bar-title { width: 60px; font-size: 11px; }
  .prb__bar-mid-label { display: none; }
}


/* ═══════════════════════════════════════════════
   SECTION: COMPANY LOGOS
   ═══════════════════════════════════════════════ */
.logos {
  padding: 56px 0;
}

.logos__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
  opacity: 0.4;
}

.logos__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}

.logos__item {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  opacity: 0.3;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════
   SECTION: PODCAST
   ═══════════════════════════════════════════════ */
.podcast {
  padding: var(--section-pad-lg) 0;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.podcast::before,
.podcast::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

.podcast::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface));
}

.podcast::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg), var(--color-surface));
}

/* Atmospheric amber glow */
.podcast__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 20%;
  right: -5%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.03) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.podcast__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

.podcast__intro {
  text-align: center;
}

.podcast__badge {
  display: inline-block;
  background: rgba(251, 191, 36, 0.1);
  color: var(--color-amber);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.podcast__cover {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.podcast__heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.podcast__body {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* Guest lineup */
.podcast__lineup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.podcast__lineup-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 4px;
}

.podcast__guest {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(15, 25, 35, 0.5);
  border: 1px solid rgba(131, 224, 209, 0.06);
  border-radius: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.podcast__guest:hover {
  border-color: rgba(131, 224, 209, 0.12);
  background: rgba(15, 25, 35, 0.8);
}

.podcast__guest-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(131, 224, 209, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(131, 224, 209, 0.05);
}

.podcast__guest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast__guest-initials {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0.5;
}

.podcast__guest-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.podcast__guest-title {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.podcast__badge--coming-soon {
  background: rgba(131, 224, 209, 0.1);
  color: var(--color-primary);
}

.podcast__more-guests {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0.5;
  text-align: center;
  margin-top: 8px;
}

/* Desktop: side-by-side layout */
@media (min-width: 769px) {
  .podcast__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }

  .podcast__intro {
    flex: 0 0 280px;
    text-align: left;
    position: sticky;
    top: 120px;
  }

  .podcast__cover {
    margin: 0 0 24px;
  }

  .podcast__body {
    margin: 0;
  }

  .podcast__lineup {
    flex: 1;
  }
}


/* ═══════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════ */
.faq {
  padding: var(--section-pad-lg) 0;
  background: var(--color-surface);
  position: relative;
}

.faq::before,
.faq::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

.faq::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface));
}

.faq::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg), var(--color-surface));
}

.faq__intro {
  text-align: center;
  margin-bottom: 48px;
}

.faq__eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.faq__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
}

.faq__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, border-left-color 0.3s ease;
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
  border-color: rgba(131, 224, 209, 0.15);
  border-left: 2px solid var(--color-primary);
}

.faq__item.is-open {
  border-color: rgba(131, 224, 209, 0.15);
  border-left: 2px solid var(--color-primary);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  gap: 16px;
  user-select: none;
}

.faq__toggle {
  font-size: 20px;
  color: var(--color-primary);
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
  flex-shrink: 0;
}

.faq__question[aria-expanded="true"] .faq__toggle {
  transform: rotate(45deg);
  opacity: 0.8;
}

.faq__item.is-open .faq__toggle {
  color: var(--color-primary);
  transform: rotate(45deg);
  opacity: 0.8;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s var(--ease-out), opacity 0.25s ease;
  opacity: 0;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq__answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px 20px;
}

.faq__answer-text {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-top: 14px;
}

.faq__answer-text strong {
  color: var(--color-text);
  font-weight: 600;
}

.faq__answer-text a {
  color: var(--color-primary);
}

.faq__answer-text a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════
   SECTION: SOCIAL PROOF
   ═══════════════════════════════════════════════ */
.social-proof {
  padding: var(--section-pad) 0;
  position: relative;
}

.social-proof__intro {
  text-align: center;
  margin-bottom: 40px;
}

.social-proof__eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  opacity: 0.7;
}

.social-proof__heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.social-proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.social-proof__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.social-proof__img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 769px) {
  .social-proof__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}


/* ═══════════════════════════════════════════════
   SECTION 9: SIGN-UP FORM
   ═══════════════════════════════════════════════ */
.signup {
  padding: var(--section-pad-lg) 0;
  background: var(--color-surface);
  position: relative;
}

.signup::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface));
}

.signup__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(131, 224, 209, 0.04) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

.signup__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.signup__subtext {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.signup__step--hidden {
  display: none;
}

/* Form elements */
.signup-form {
  margin-top: 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(154, 213, 201, 0.5);
  box-shadow: 0 0 0 3px rgba(154, 213, 201, 0.1);
  background: #1a2036;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-hint {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
  opacity: 0.7;
}

/* Checkbox */
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(94, 123, 143, 0.35);
  border-radius: 5px;
  background: var(--color-surface);
  cursor: pointer;
  position: relative;
  top: 2px;
  transition: all 0.2s ease;
}

.form-checkbox:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid var(--color-bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-label--checkbox {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
  cursor: pointer;
}

.signup-form .btn {
  margin-top: 8px;
}

/* Email validation */
.form-email-error {
  font-size: 13px;
  color: #FBBF24;
  margin-top: 6px;
}
.form-email-error--hidden {
  display: none;
}

/* Vendor domain block */
.form-vendor-block {
  margin-top: 10px;
  padding: 14px 16px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
}
.form-vendor-block--hidden {
  display: none;
}
.form-vendor-block__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #F87171;
  margin-bottom: 6px;
}
.form-vendor-block__body {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.form-vendor-block__body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-personal-toggle {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 13px;
  padding: 0;
  margin-top: 6px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(232, 236, 241, 0.25);
  text-underline-offset: 3px;
  transition: color 0.2s;
  display: none;
}
.form-personal-toggle--visible {
  display: inline-block;
}
.form-personal-toggle:hover {
  color: var(--color-text);
}

.form-personal-reason {
  margin-top: 8px;
}
.form-personal-reason--hidden {
  display: none;
}

/* Two-column form row */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Radio option cards */
.form-options {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.form-option {
  cursor: pointer;
}
.form-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-option__box {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(232, 236, 241, 0.1);
  border-radius: 8px;
  background: rgba(19, 31, 43, 0.5);
  transition: border-color 0.2s, background 0.2s;
}
.form-option input:checked + .form-option__box {
  border-color: rgba(154, 213, 201, 0.5);
  background: rgba(154, 213, 201, 0.06);
}
.form-option:hover .form-option__box {
  border-color: rgba(232, 236, 241, 0.2);
}
.form-option__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}
.form-option__desc {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Checkbox list for multi-select */
.form-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid rgba(232, 236, 241, 0.2);
  border-radius: 4px;
  background: transparent;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.form-check input[type="checkbox"]:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #0F1923;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-check__label {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Hint text inline */
.form-hint-inline {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Hidden "Other" text input */
.form-input--other {
  margin-top: 10px;
}
.form-input--hidden {
  display: none;
}

/* ─── Multi-Step Form ──────────────────────── */
.form-stepped__progress {
  position: relative;
  height: 3px;
  background: rgba(131, 224, 209, 0.15);
  border-radius: 2px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.form-stepped__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.4s var(--ease-out);
}

.form-stepped__progress-label {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 13px;
  color: var(--color-text-muted);
  opacity: 0.6;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.form-stepped__question {
  animation: stepFadeIn 0.35s var(--ease-out);
}

.form-stepped__question--hidden {
  display: none;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-stepped__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(131, 224, 209, 0.06);
}

.form-stepped__back {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.form-stepped__back:hover {
  color: var(--color-text);
}

.form-stepped__back--hidden {
  visibility: hidden;
}

.form-stepped__submit--hidden {
  display: none;
}

/* Dimmed state for max-2 checkbox enforcement */
.form-check.is-maxed {
  opacity: 0.3;
  pointer-events: none;
}

.form-check.is-maxed input:checked + .form-check__label {
  opacity: 1;
}

/* ─── Tool Card Spacing ────────────────────── */
.tool-card--interactive + .tool-card--interactive {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(131, 224, 209, 0.06);
}

@media (max-width: 768px) {
  .tool-card--interactive + .tool-card--interactive {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

/* ─── Confirmation Animation ───────────────── */
.confirmation {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 480px;
  margin: 0 auto;
  animation: confirmFadeIn 0.5s 0.2s var(--ease-out) both;
}

@keyframes confirmFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.confirmation__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
}

.confirmation__check {
  width: 100%;
  height: 100%;
}

.confirmation__circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: circleIn 0.6s 0.3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.confirmation__tick {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: tickIn 0.4s 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes circleIn {
  to { stroke-dashoffset: 0; }
}

@keyframes tickIn {
  to { stroke-dashoffset: 0; }
}

.confirmation__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.confirmation__body {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.confirmation__cta {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 500;
  margin-top: 1.5rem;
  letter-spacing: 0.01em;
}


/* ═══════════════════════════════════════════════
   SECTION 10: FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta {
  padding: var(--section-pad-lg) 0;
  padding-top: calc(var(--section-pad-lg) + 20px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta__glow {
  position: absolute;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 224, 209, 0.1) 0%, rgba(251, 191, 36, 0.03) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(80px);
}

.final-cta__headline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  position: relative;
}

.final-cta__headline em {
  font-style: normal;
  color: var(--color-primary);
}

.final-cta__body {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  line-height: 1.6;
  position: relative;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn {
  font-size: 18px;
  padding: 20px 48px;
  position: relative;
}


/* ═══════════════════════════════════════════════
   FLOATING APPLY BUTTON
   ═══════════════════════════════════════════════ */
.floating-apply {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.floating-apply.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-apply__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-bg);
  background: var(--color-primary);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(131, 224, 209, 0.25), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-apply__btn:hover {
  background: var(--color-primary-hover);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(131, 224, 209, 0.3), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-apply__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .floating-apply {
    bottom: 20px;
    right: 20px;
  }
  .floating-apply__btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}


/* ═══════════════════════════════════════════════
   LOGOS STRIP
   ═══════════════════════════════════════════════ */
.logos {
  padding: 48px 0 64px;
  text-align: center;
}

.logos__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  opacity: 0.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.logos__strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
}

.logos__item {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  opacity: 0.25;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.logos__item:hover {
  opacity: 0.45;
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(94, 123, 143, 0.08);
}

.footer__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.footer__wordmark-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-text);
  opacity: 0.4;
  line-height: 1;
}

.footer__wordmark-dots {
  display: flex;
  gap: 4px;
}

.footer__wordmark-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.footer__wordmark-dot--1 { background: var(--color-primary); opacity: 0.4; }
.footer__wordmark-dot--2 { background: var(--color-text); opacity: 0.3; }
.footer__wordmark-dot--3 { background: var(--color-amber); opacity: 0.35; }

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer__link {
  font-size: 13px;
  color: var(--color-text-muted);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer__link:hover {
  opacity: 0.8;
  color: var(--color-text);
}

.footer__copy {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  opacity: 0.35;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (768px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 768px) {

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

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

  .problem-card--hero {
    grid-column: 1 / -1;
  }

  .founder__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }

  .founder__left {
    order: 1;
    position: sticky;
    top: 120px;
    min-width: 240px;
  }

  .founder__right {
    order: 2;
    text-align: left;
  }

  .founder__credentials {
    justify-content: flex-start;
  }

  .founder__photo {
    width: 200px;
    height: 200px;
  }

  .hero__glow--1 {
    width: 700px;
    height: 700px;
  }

  .hero__glow--2 {
    width: 700px;
    height: 700px;
  }

  .logos__strip {
    gap: 24px 64px;
  }

  .logos__item {
    font-size: 18px;
  }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — DESKTOP (1024px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 1024px) {

  :root {
    --section-pad: 100px;
    --section-pad-lg: 160px;
  }

  .container {
    padding: 0 48px;
  }

  .pillars {
    flex-direction: row;
    gap: 20px;
  }

  .pillar-card {
    flex: 1;
    padding: 44px 32px;
  }

  .hero__glow--1 {
    width: 900px;
    height: 900px;
  }

  .problem-card {
    padding: 36px 32px;
  }

  .founder__photo {
    width: 220px;
    height: 220px;
  }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — WIDE (1200px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 1200px) {

  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .final-cta__glow {
    width: 900px;
    height: 600px;
  }
}


/* ═══════════════════════════════════════════════
   ACCESSIBILITY & UTILITIES
   ═══════════════════════════════════════════════ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-checkbox:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
