/* ===========================================================
   RUNDOWN — Landing page
   Brand: Field Green / Clay / Chalk / Flash Yellow
   =========================================================== */

:root {
  --green: #0B4D3C;
  --green-2: #0E5C48;
  --green-3: #083A2D;
  --clay: #C4603C;
  --clay-2: #A8502F;
  --chalk: #F5F1E8;
  --chalk-2: #EDE7D6;
  --yellow: #F4C430;
  --yellow-2: #E0B021;
  --ink: #0F1311;
  --ink-2: #2B3330;
  --muted: #6B7571;
  --line: rgba(15, 19, 17, 0.1);

  --r: 12px;
  --r-lg: 20px;

  --shadow: 0 8px 28px rgba(11, 77, 60, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 77, 60, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--clay); }

/* ============ DISPLAY TYPE ============ */
.display, .display-md {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}
.display { font-size: clamp(44px, 7vw, 84px); }
.display-md { font-size: clamp(32px, 5vw, 56px); letter-spacing: 0.02em; }

.display.light, .display-md.light { color: var(--chalk); }

.eyebrow, .section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 12px;
}
.preview-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--green-3);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-right: 8px;
  box-shadow: 0 2px 6px rgba(244, 196, 48, 0.35);
}
.hero-preview-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(245, 241, 232, 0.85);
  line-height: 1.5;
  max-width: 540px;
  padding: 10px 14px;
  background: rgba(4, 22, 16, 0.4);
  border-left: 3px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.hero-preview-note strong { color: var(--yellow); }
.section-eyebrow.gold { color: var(--yellow); }
.section-eyebrow.light { color: var(--yellow); }

/* ============ NAV ============ */
.nav {
  background: var(--chalk);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: inline-flex;
  line-height: 0;
}
.logo-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}
.nav-cta {
  background: var(--green);
  color: var(--chalk) !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.15s ease;
}
.nav-cta:hover { background: var(--green-2); transform: translateY(-1px); }

.nav-play {
  color: var(--clay) !important;
  font-weight: 700;
  padding: 8px 4px;
  transition: color 0.15s ease;
}
.nav-play:hover { color: var(--green) !important; }

.hero-secondary-cta {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(245, 241, 232, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.btn-ghost {
  color: var(--yellow) !important;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(244, 196, 48, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease;
}
.btn-ghost:hover { text-decoration-color: var(--yellow); }
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============ HERO (photo background) ============ */
.hero {
  padding: 96px 0 72px;
  background: #072a1f;
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Pin subjects to the LEFT/CENTER of viewport so the phone carousel on the right
     overlays blurred chain-link/equipment context, not the daughter's face. */
  background: url('assets/hero.jpg') 20% center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}
/* No scrim, no blur — the image stands on its own.
   Readability comes from multi-layer text-shadow on hero copy. */
.hero-inner {
  position: relative;
  z-index: 10;
}
.hero-copy .display {
  color: var(--chalk);
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(0, 0, 0, 0.55);
}
.hero-copy .lede {
  color: var(--chalk);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55;
  max-width: 540px;
  margin: 22px 0 28px;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.95),
    0 0 14px rgba(0, 0, 0, 0.7);
}
.hero-copy .eyebrow {
  color: var(--yellow);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 0 10px rgba(0, 0, 0, 0.6);
}
.hero-copy .hero-sub {
  color: var(--chalk);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 0 10px rgba(0, 0, 0, 0.6);
}
.hero-copy .hero-sub strong { color: var(--yellow); }
.hero-copy .hero-secondary-cta {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 0 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 880px) {
  .hero {
    min-height: 560px;
    padding: 72px 0 48px;
  }
  .hero::before {
    background-position: center 30%;
  }
}
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}
.hero-copy {
  max-width: 640px;
}
.hero-copy .eyebrow { margin-bottom: 18px; }
/* NOTE: .hero-copy .lede color is defined above (scrim-based, chalk color).
   Old ink-2 override removed — was causing the grey-text bug. */
.hero-sub {
  margin-top: 18px;
  font-size: 14px;
}
.hero-sub strong { color: var(--clay); }

/* ============ WAITLIST FORM ============ */
.waitlist-form { margin-top: 8px; max-width: 560px; }
.wl-row {
  display: flex;
  gap: 10px;
}
.wl-row input[type=email] {
  flex: 1;
  padding: 16px 18px;
  font-size: 16px;
  border: 2px solid var(--line);
  background: #fff;
  border-radius: var(--r);
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s;
}
.wl-row input[type=email]:focus {
  outline: none;
  border-color: var(--green);
}
.wl-meta {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.chip-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.chip-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip-radio span {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all 0.15s;
}
.chip-radio input:checked + span {
  background: var(--green);
  color: var(--chalk);
  border-color: var(--green);
}
.chip-radio.light span {
  background: rgba(245, 241, 232, 0.1);
  border-color: rgba(245, 241, 232, 0.3);
  color: var(--chalk);
}
.chip-radio.light input:checked + span {
  background: var(--yellow);
  color: var(--green-3);
  border-color: var(--yellow);
}
.wl-status {
  margin-top: 10px;
  font-size: 14px;
  min-height: 20px;
  font-weight: 600;
}
.wl-status.ok { color: var(--green); }
.wl-status.err { color: #c02424; }

/* ============ BUTTONS ============ */
.btn-primary, .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--chalk);
  box-shadow: 0 4px 14px rgba(11, 77, 60, 0.3);
}
.btn-primary:hover {
  background: var(--green-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11, 77, 60, 0.35);
}
.btn-gold {
  background: var(--yellow);
  color: var(--green-3);
  box-shadow: 0 4px 14px rgba(244, 196, 48, 0.4);
}
.btn-gold:hover {
  background: var(--yellow-2);
  transform: translateY(-1px);
}

/* ============ HERO VISUAL (PHONE) ============ */
.hero-visual { display: flex; justify-content: center; }
.phone-frame {
  width: 300px;
  aspect-ratio: 9 / 19;
  background: var(--ink);
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--chalk);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-header {
  background: var(--green);
  color: var(--chalk);
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
}
.phone-team { opacity: 0.9; }
.phone-score { font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.phone-flame { color: var(--yellow); font-weight: 600; }
.phone-field { background: #3e6a2f; }
.phone-prompt { padding: 12px 14px; }
.phone-tag {
  display: inline-block;
  background: var(--chalk-2);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 8px;
}
.phone-q {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}
.phone-opts { display: flex; flex-direction: column; gap: 6px; }
.phone-opt {
  background: #fff;
  padding: 9px 11px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
}
.phone-opt.correct {
  background: #F0FDF4;
  border-color: #22C55E;
  color: #166534;
}

/* ============ SECTIONS ============ */
.section {
  padding: 96px 0;
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
}
.section-chalk { background: var(--chalk-2); }
.section-dark {
  background: var(--green);
  color: var(--chalk);
}
.section-dark h2,
.section-dark h3,
.section-dark p:not(.section-eyebrow) { color: var(--chalk); }
.section-clay { background: var(--clay); color: var(--chalk); }
.section-clay h2,
.section-clay h3,
.section-clay p:not(.section-eyebrow) { color: var(--chalk); }

/* ============ PROBLEM GRID ============ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--clay);
}
.problem-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 8px;
}
.problem-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.3;
  color: var(--green);
}
.problem-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
}
.step {
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--yellow);
  color: var(--green-3);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--chalk);
  margin: 0 0 8px;
  line-height: 1.1;
}
.step p {
  margin: 0;
  font-size: 15px;
  color: rgba(245, 241, 232, 0.85);
  line-height: 1.55;
}

/* ============ FEATURES ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature {
  padding: 28px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--chalk);
  color: var(--green);
  border-radius: 14px;
  margin-bottom: 14px;
  transition: all 0.2s ease;
}
.feature:hover .feature-icon {
  background: var(--green);
  color: var(--yellow);
  transform: translateY(-2px) rotate(-3deg);
}
.feature h3 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 17px;
}
.feature p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ============ FOUNDERS SECTION ============ */
.founders { max-width: 800px; }
.founders-lede {
  font-size: 19px;
  line-height: 1.5;
  margin: 22px 0;
  color: var(--chalk);
  opacity: 0.95;
}
.founders-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
@media (max-width: 640px) {
  .founders-perks { grid-template-columns: 1fr; }
}
.founders-perks li {
  padding-left: 26px;
  position: relative;
  color: var(--chalk);
  font-size: 15px;
  line-height: 1.5;
}
.founders-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 800;
  font-size: 18px;
}

/* ============ PRICING ============ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 1000px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .price-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.price-card.price-featured {
  border-color: var(--green);
  transform: scale(1.03);
  background: linear-gradient(180deg, #fff 0%, var(--chalk) 100%);
  position: relative;
}
.price-card.price-featured::after {
  content: "Most popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--yellow);
  color: var(--green-3);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.price-amt {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
}
.price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--green);
  line-height: 1;
}
.price-per {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}
.price-card li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.price-card li:last-child { border-bottom: none; }
.price-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.price-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 32px;
}

/* ============ FAQ ============ */
.faq {
  margin-top: 40px;
  max-width: 820px;
}
.faq details {
  background: #fff;
  border-radius: var(--r);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 22px;
  font-weight: 300;
  color: var(--clay);
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ CTA CENTER ============ */
.cta-center {
  text-align: center;
  max-width: 700px;
}
.cta-center h2 { margin-bottom: 12px; }
.cta-sub {
  font-size: 17px;
  color: rgba(245, 241, 232, 0.9);
  margin: 0 0 28px;
}
.waitlist-form-bottom { margin: 0 auto; }

/* ============ FOOTER ============ */
.footer {
  background: var(--green-3);
  color: rgba(245, 241, 232, 0.7);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-brand .logo-word { color: var(--chalk); font-size: 20px; }
.foot-tag {
  display: block;
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.foot-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links a {
  color: rgba(245, 241, 232, 0.8);
  font-size: 14px;
  font-weight: 500;
}
.foot-links a:hover { color: var(--yellow); }
.foot-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-socials a {
  color: rgba(245, 241, 232, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}
.foot-socials a:hover {
  color: var(--green-3);
  background-color: var(--yellow);
  transform: translateY(-1px);
}
.foot-socials svg { width: 20px; height: 20px; display: block; }
.foot-legal {
  font-size: 12px;
  opacity: 0.7;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
}

/* ============ WHERE RUNDOWN LIVES SECTION ============ */
.section-lives {
  background: var(--chalk-2);
}
.lives-lede {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 20px 0 40px;
}
.lives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 820px) {
  .lives-grid { grid-template-columns: 1fr; gap: 22px; }
}
.lives-card {
  margin: 0;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lives-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.lives-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
@media (max-width: 560px) {
  .lives-card img { height: 240px; }
}
.lives-card figcaption {
  padding: 18px 22px 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  border-top: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, var(--yellow) 0%, var(--clay) 100%) border-box;
}

/* ============ SEE IT IN ACTION (preview section) ============ */
.section-preview {
  background: var(--green);
  color: var(--chalk);
  text-align: center;
}
.section-preview .section-eyebrow { color: var(--yellow); }
.section-preview h2 { color: var(--chalk); margin-bottom: 44px; }
.preview-wrap {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

/* ============ CAROUSEL v2 (fade only, phone stays still, arrows + dots) ============ */
.carousel {
  position: relative;
  width: 300px;
  margin: 0 auto;
  outline: none;
}
.carousel-track {
  position: relative;
  width: 100%;
  min-height: 600px; /* lock height so no jump between slides */
}
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.carousel-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Arrow controls */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clay);
  background: rgba(245, 241, 232, 0.92);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  padding: 0;
}
.carousel-arrow:hover {
  background: var(--yellow);
  color: var(--green-3);
  transform: translateY(-50%) scale(1.05);
}
.carousel-arrow:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }
@media (max-width: 640px) {
  .carousel-prev { left: 6px; }
  .carousel-next { right: 6px; }
  .carousel-arrow { width: 38px; height: 38px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.cdot {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.55);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.cdot:hover { background: rgba(245, 241, 232, 0.8); }
.cdot.active {
  background: var(--yellow);
  width: 26px;
  border-radius: 4px;
}
.carousel-labels {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cl {
  color: rgba(245, 241, 232, 0.75);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  transition: color 0.25s ease;
}
.cl.active { color: var(--yellow); }

@media (prefers-reduced-motion: reduce) {
  .carousel-slide { transition: none; }
}

/* ============ PHONE: RESULTS SLIDE ============ */
.phone-results {
  background: var(--chalk);
}
.phone-results-body {
  padding: 16px 14px;
  text-align: center;
}
.phone-stars {
  color: var(--yellow);
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 4px;
}
.phone-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--green);
  margin: 4px 0 2px;
}
.phone-sub {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}
.phone-achieves {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.phone-badge {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: var(--green);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.phone-board {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(11,77,60,0.1);
}
.phone-board-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--clay);
  margin-bottom: 6px;
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 11px;
  border-bottom: 1px solid rgba(11,77,60,0.06);
}
.phone-row:last-child { border-bottom: none; }
.pr-rank {
  width: 18px; height: 18px;
  background: var(--yellow);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}
.phone-row:nth-child(3) .pr-rank { background: #D1D5DB; }
.phone-row:nth-child(4) .pr-rank { background: #F0B070; }
.pr-name { flex: 1; color: var(--ink); font-weight: 700; }
.pr-pos {
  background: var(--green);
  color: var(--chalk);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
}
.pr-sc { color: var(--clay); font-weight: 800; font-variant-numeric: tabular-nums; }

/* ============ FOUNDER BLOCK (replaces fake quotes) ============ */
.founder-block {
  max-width: 780px;
  margin: 36px auto 32px;
  text-align: left;
  padding: 28px 30px;
  background: #fff;
  border-radius: var(--r-lg);
  border-left: 4px solid var(--clay);
  box-shadow: var(--shadow);
}
.founder-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 500;
}
.founder-pullquote {
  margin: 20px 0 18px;
  padding: 12px 16px;
  border-left: 3px solid var(--yellow);
  background: rgba(244, 196, 48, 0.1);
  border-radius: 0 8px 8px 0;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--green);
  line-height: 1.25;
}
.founder-pullquote em { font-style: normal; }
.founder-note {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.founder-note a { color: var(--clay); font-weight: 700; }

/* ============ STAT BAND ============ */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding: 24px;
  background: var(--green);
  color: var(--chalk);
  border-radius: var(--r-lg);
}
@media (max-width: 640px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.stat-block { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--yellow);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 12px;
  color: rgba(245, 241, 232, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 4px;
}

/* ============ LEGAL PAGES ============ */
.legal-body { background: var(--chalk); }
.legal-page {
  padding: 64px 0 96px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-page .eyebrow { color: var(--clay); }
.legal-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--green);
  margin: 0 0 8px;
  text-transform: uppercase;
}
.legal-meta {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 28px;
}
.legal-notice {
  background: #FFF8E5;
  border-left: 4px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 36px;
}
.legal-page h2 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  margin: 36px 0 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 77, 60, 0.1);
  scroll-margin-top: 80px;
}
.legal-page h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-page p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.legal-page ul {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
  padding-left: 22px;
  margin: 0 0 14px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page code {
  font-family: 'JetBrains Mono', Menlo, monospace;
  font-size: 13px;
  background: rgba(11, 77, 60, 0.08);
  color: var(--green);
  padding: 2px 6px;
  border-radius: 4px;
}
.legal-page a {
  color: var(--clay);
  font-weight: 600;
}
.legal-page a:hover { color: var(--green); }
.legal-table-wrap {
  overflow-x: auto;
  margin: 12px 0 20px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.legal-table th {
  background: var(--green);
  color: var(--chalk);
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
}
.legal-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(11, 77, 60, 0.1);
  color: var(--ink-2);
  vertical-align: top;
}
.legal-footer-link {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(11, 77, 60, 0.15);
}
.legal-footer-link a {
  color: var(--green);
  font-weight: 700;
}

/* ============ PROOF / TESTIMONIAL SECTION ============ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .proof-grid { grid-template-columns: 1fr; }
}
.quote-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin: 0;
  position: relative;
  border-left: 4px solid var(--clay);
}
.quote-card::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: 'Bebas Neue', serif;
  font-size: 70px;
  color: var(--clay);
  opacity: 0.18;
  line-height: 1;
}
.quote-card blockquote {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  font-style: italic;
}
.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.quote-name {
  font-weight: 800;
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quote-role {
  color: var(--muted);
}
.proof-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 32px;
}
.proof-note a {
  color: var(--clay);
  font-weight: 700;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* ============ RESPONSIVE TWEAKS ============ */
@media (max-width: 640px) {
  .wl-row { flex-direction: column; }
  .btn-primary, .btn-gold { width: 100%; }
  .phone-frame { width: 240px; transform: rotate(-2deg); }
  .price-card.price-featured { transform: none; }
}
