/* ===========================================================
   HUMAN / KIND - Shared Stylesheet
   Brand colours, typography, layout, components.
   =========================================================== */

/* ====== Design Tokens ====== */
:root {
  --coral: #f56b4f;
  --slate: #354044;
  --white: #ffffff;
  --grey: #F7F6F3;
  --slate-soft: rgba(53, 64, 68, 0.08);
  --slate-line: rgba(53, 64, 68, 0.12);
}

/* ====== Reset ====== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  color: var(--slate);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====== Typography ====== */
.display {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ====== Layout ====== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

.section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

.section-head {
  margin-bottom: 64px;
  max-width: 800px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--slate);
  margin-bottom: 24px;
}

.section-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 640px;
}

/* ====== Theme variants ====== */
.theme-dark {
  background: var(--slate);
  color: var(--white);
}

.theme-dark .section-title { color: var(--white); }
.theme-dark .section-lead { color: var(--white); opacity: 0.85; }

.theme-light {
  background: var(--grey);
}

/* ====== Navigation ====== */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--slate-line);
  padding: 20px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--slate);
  text-decoration: none;
}

.logo .slash {
  color: var(--coral);
  margin: 0 4px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--coral); }

.nav-links a.active { color: var(--coral); }

/* Nav CTA - higher specificity to override .nav-links a colour rules */
.nav-links a.nav-cta,
.nav-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--slate);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a.nav-cta:hover,
.nav-cta:hover {
  background: var(--coral);
  color: var(--white);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px 32px;
    gap: 24px;
    border-bottom: 1px solid var(--slate-line);
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { width: 100%; text-align: center; }
}

/* ====== Buttons ====== */
.btn {
  display: inline-block;
  padding: 18px 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--slate);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--slate);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--coral);
}

.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 2px solid var(--slate);
}

.btn-outline:hover {
  background: var(--slate);
  color: var(--white);
}

.btn-large {
  padding: 22px 56px;
  font-size: 15px;
  letter-spacing: 0.15em;
}

/* ====== Footer ====== */
footer.site-footer {
  background: var(--slate);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--coral);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--white);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--coral);
}

.footer-brand .logo {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 320px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ====== Reveal animation ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ====== Reveal variants for cinematic moments ====== */
.reveal-slow {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.6s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================================
   HOME PAGE STYLES
   =========================================================== */

/* ====== Home Hero ====== */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  width: 100%;
  align-items: center;
}

.home-hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-hero-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--coral);
}

.home-hero-title {
  font-size: clamp(64px, 11vw, 200px);
  color: var(--slate);
  line-height: 0.88;
  margin-bottom: 48px;
}

.home-hero-title .accent { color: var(--coral); }

.home-hero-title .line {
  display: block;
  overflow: hidden;
}

.home-hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-hero-title.animate .line span { transform: translateY(0); }

.home-hero-title.animate .line:nth-child(1) span { transition-delay: 0.1s; }
.home-hero-title.animate .line:nth-child(2) span { transition-delay: 0.3s; }
.home-hero-title.animate .line:nth-child(3) span { transition-delay: 0.5s; }

.home-hero-sub {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: end;
  border-top: 1px solid var(--slate-line);
  padding-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.9s, transform 1s ease 0.9s;
}

.home-hero.animate .home-hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-sub-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

.home-hero-sub-body {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 640px;
}

@media (max-width: 900px) {
  .home-hero { min-height: auto; padding: 80px 0 64px; }
  .home-hero-sub {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ====== Stats Counter Section ====== */
.stats {
  background: var(--slate);
  color: var(--white);
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-intro {
  margin-bottom: 80px;
  max-width: 720px;
}

.stats-intro .eyebrow { margin-bottom: 24px; }

.stats-intro h2 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
  padding: 56px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 96px);
  color: var(--coral);
  line-height: 0.9;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.stat-number .unit {
  font-size: 0.5em;
  color: var(--white);
  margin-left: 4px;
}

.stat-label {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .stat:last-child { border-bottom: none; }
}

/* ====== Failure Modes Section (the standard responses) ====== */
.failure-modes {
  background: var(--white);
  padding: 140px 0;
}

.failure-modes-head {
  margin-bottom: 80px;
  max-width: 800px;
}

.failure-modes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.failure-mode {
  display: grid;
  grid-template-columns: 100px 1fr 1.2fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--slate-line);
  align-items: start;
  transition: padding 0.4s ease;
}

.failure-mode:last-child { border-bottom: 1px solid var(--slate-line); }

.failure-mode:hover { padding: 56px 0; }

.failure-mode-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--coral);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.failure-mode-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--slate);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.failure-mode-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
}

.failure-mode-body strong {
  color: var(--coral);
  font-weight: 600;
}

@media (max-width: 900px) {
  .failure-mode {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
  .failure-mode:hover { padding: 32px 0; }
}

/* ====== Four Conditions Interactive ====== */
.conditions {
  background: var(--grey);
  padding: 140px 0;
  position: relative;
}

.conditions-head {
  margin-bottom: 80px;
  max-width: 800px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.conditions-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--slate-line);
  border-bottom: 1px solid var(--slate-line);
}

.condition-tab {
  padding: 32px 0;
  border-bottom: 1px solid var(--slate-line);
  cursor: pointer;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: padding-left 0.3s ease;
}

.condition-tab:last-child { border-bottom: none; }

.condition-tab:hover { padding-left: 16px; }

.condition-tab-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--coral);
  opacity: 0.4;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.condition-tab.active .condition-tab-num { opacity: 1; }

.condition-tab-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--slate);
  letter-spacing: 0.02em;
  line-height: 1;
}

.condition-tab.active .condition-tab-name { color: var(--coral); }

.condition-tab-arrow {
  font-size: 24px;
  color: var(--slate);
  opacity: 0.3;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.condition-tab.active .condition-tab-arrow {
  opacity: 1;
  color: var(--coral);
  transform: translateX(8px);
}

.condition-content {
  background: var(--white);
  padding: 56px;
  min-height: 480px;
  position: relative;
  border-left: 4px solid var(--coral);
}

.condition-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.condition-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.condition-panel-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}

.condition-panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--slate);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.condition-panel-quote {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: 32px;
  font-weight: 500;
}

.condition-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-line);
}

.condition-panel-block h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.condition-panel-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 1100px) {
  .conditions-grid { grid-template-columns: 1fr; gap: 32px; }
  .condition-content { padding: 40px; min-height: auto; }
  .condition-panel-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ====== Both Tracks Section ====== */
.tracks {
  background: var(--slate);
  color: var(--white);
  padding: 0;
}

.tracks-intro {
  padding: 120px 0 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tracks-intro .eyebrow { margin-bottom: 24px; }

.tracks-intro h2 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  margin-bottom: 24px;
}

.tracks-intro p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--white);
  opacity: 0.85;
}

.tracks-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.track {
  padding: 80px 56px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.track:last-child { border-right: none; }

.track-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--coral);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.track-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.track-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 32px;
}

.track-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.track-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
}

@media (max-width: 900px) {
  .tracks-split { grid-template-columns: 1fr; }
  .track { padding: 56px 32px; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .track:last-child { border-bottom: none; }
}

/* ====== Programmes Preview ====== */
.programmes-preview {
  background: var(--white);
  padding: 140px 0;
}

.programmes-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.programmes-head-left .section-title { margin-bottom: 0; }

.programmes-head-right p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
}

.programmes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.programme-card {
  background: var(--grey);
  padding: 48px 40px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
  cursor: pointer;
}

.programme-card:hover {
  transform: translateY(-8px);
  background: var(--slate);
  color: var(--white);
}

.programme-card:hover .programme-card-num,
.programme-card:hover .programme-card-arrow {
  color: var(--coral);
}

.programme-card:hover .programme-card-title {
  color: var(--white);
}

.programme-card:hover .programme-card-body {
  color: var(--white);
  opacity: 0.85;
}

.programme-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--coral);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  display: block;
}

.programme-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--slate);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.programme-card-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 32px;
  transition: color 0.4s ease, opacity 0.4s ease;
}

.programme-card-arrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.programme-card:hover .programme-card-arrow { gap: 16px; }

@media (max-width: 900px) {
  .programmes-head { grid-template-columns: 1fr; gap: 24px; }
  .programmes-cards { grid-template-columns: 1fr; }
}

/* ====== Evidence Section ====== */
.evidence {
  background: var(--grey);
  padding: 120px 0;
}

.evidence-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.evidence-head .eyebrow { margin-bottom: 24px; }

.evidence-head h2 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--slate);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--slate-line);
  border-bottom: 1px solid var(--slate-line);
}

.evidence-item {
  padding: 40px 32px;
  border-right: 1px solid var(--slate-line);
}

.evidence-item:nth-child(3n) { border-right: none; }
.evidence-item:nth-child(n+4) { border-top: 1px solid var(--slate-line); }

.evidence-source {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--coral);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.evidence-detail {
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate);
  opacity: 0.75;
}

@media (max-width: 900px) {
  .evidence-grid { grid-template-columns: 1fr 1fr; }
  .evidence-item:nth-child(3n) { border-right: 1px solid var(--slate-line); }
  .evidence-item:nth-child(2n) { border-right: none; }
  .evidence-item:nth-child(n+3) { border-top: 1px solid var(--slate-line); }
}

@media (max-width: 600px) {
  .evidence-grid { grid-template-columns: 1fr; }
  .evidence-item { border-right: none !important; border-top: 1px solid var(--slate-line); }
  .evidence-item:first-child { border-top: none; }
}

/* ====== Home CTA ====== */
.home-cta {
  background: var(--white);
  padding: 180px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 32px;
}

.home-cta-title {
  font-size: clamp(64px, 9vw, 144px);
  color: var(--slate);
  line-height: 0.88;
  margin-bottom: 48px;
}

.home-cta-title .accent { color: var(--coral); }

.home-cta-body {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 56px;
}

.home-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================================================
   VISUAL MOMENTS - Bridge sections that break the rhythm
   =========================================================== */

/* Bridge 1: Coral full-bleed moment between Pain and Problem */
.bridge-coral {
  background: var(--coral);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.bridge-coral::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 5%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 30vw, 480px);
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.bridge-coral-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.bridge-coral-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bridge-coral-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--white);
  opacity: 0.7;
}

.bridge-coral-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 112px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.01em;
  max-width: 1100px;
}

.bridge-coral-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--slate);
}

@media (max-width: 768px) {
  .bridge-coral { padding: 80px 0; }
  .bridge-coral::before { font-size: 200px; top: -30px; }
}

/* Bridge 2: Framework pull quote moment inside Purpose */
.framework-quote {
  background: var(--slate);
  color: var(--white);
  padding: 120px 48px;
  margin: 80px 0;
  position: relative;
  border-left: 6px solid var(--coral);
}

.framework-quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.framework-quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 1000px;
  margin-bottom: 32px;
}

.framework-quote-text .accent { color: var(--coral); }

.framework-quote-attribution {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 16px;
}

.framework-quote-attribution::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--white);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .framework-quote { padding: 64px 32px; margin: 48px 0; }
  .framework-quote-mark { font-size: 80px; }
}

/* Bridge 3: Pre-CTA punctum */
.cta-runway {
  background: var(--slate);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.cta-runway-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 1000px;
  margin: 0 auto;
}

.cta-runway-text .accent { color: var(--coral); }

/* ===========================================================
   HOME V2 - Pain, Problem, Premise, Purpose, People, Proof
   =========================================================== */

/* ====== Pain (Hero v2) ====== */
.pain {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.pain-grid {
  width: 100%;
}

.pain-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pain-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--coral);
}

.pain-title {
  font-size: clamp(44px, 7vw, 120px);
  color: var(--slate);
  line-height: 0.92;
  margin-bottom: 32px;
  letter-spacing: 0.005em;
}

.pain-title .accent { color: var(--coral); font-style: normal; }

.pain-title .line {
  display: block;
  overflow: hidden;
}

.pain-title .line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pain-title.animate .line span { transform: translateY(0); }

.pain-title.animate .line:nth-child(1) span { transition-delay: 0.1s; }
.pain-title.animate .line:nth-child(2) span { transition-delay: 0.3s; }

/* Hero subtitle */
.pain-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--coral);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 56px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.7s, transform 1s ease 0.7s;
}

.pain.animate .pain-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.pain-sub {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--slate-line);
  padding-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 1s, transform 1s ease 1s;
}

.pain.animate .pain-sub {
  opacity: 1;
  transform: translateY(0);
}

.pain-sub-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  padding-top: 6px;
}

.pain-sub-body p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 640px;
}

.pain-sub-body p + p { margin-top: 16px; }

@media (max-width: 900px) {
  .pain { min-height: auto; padding: 80px 0 64px; }
  .pain-sub {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ====== Problem (combined diagnosis + girls) ====== */
.problem {
  background: var(--slate);
  color: var(--white);
  padding: 0;
}

.problem-intro {
  padding: 120px 0 80px;
}

.problem-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.problem-intro h2 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 32px;
}

.problem-intro p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
  max-width: 640px;
}

.problem-intro p + p { margin-top: 20px; }

.problem-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.problem-stat {
  padding: 56px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.problem-stat:last-child { border-right: none; }

.problem-stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  color: var(--coral);
  line-height: 0.9;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.problem-stat-number .unit {
  font-size: 0.5em;
  color: var(--white);
  margin-left: 4px;
}

.problem-stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  opacity: 0.85;
}

@media (max-width: 900px) {
  .problem-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .problem-stats { grid-template-columns: repeat(2, 1fr); }
  .problem-stat:nth-child(2) { border-right: none; }
  .problem-stat:nth-child(1), .problem-stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
}

@media (max-width: 600px) {
  .problem-stats { grid-template-columns: 1fr; }
  .problem-stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .problem-stat:last-child { border-bottom: none; }
}

/* Problem - failure modes inside it */
.problem-failures {
  padding: 100px 0 60px;
}

.problem-failures-head {
  margin-bottom: 56px;
  max-width: 800px;
}

.problem-failures-head .eyebrow { margin-bottom: 24px; }

.problem-failures-head h3 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
}

.problem-failures-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
  max-width: 640px;
}

.problem-failure-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.problem-failure {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  align-items: start;
  transition: padding 0.3s ease;
}

.problem-failure:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }

.problem-failure:hover { padding: 48px 0; }

.problem-failure-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--coral);
  line-height: 0.9;
}

.problem-failure-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.problem-failure-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
}

.problem-failure-body strong {
  color: var(--coral);
  font-weight: 600;
  opacity: 1;
}

@media (max-width: 900px) {
  .problem-failure {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .problem-failure:hover { padding: 28px 0; }
}

/* Problem - girls */
.problem-girls {
  padding: 60px 0 120px;
}

.problem-girls-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 64px;
}

.problem-girls h3 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.problem-girls .eyebrow { margin-bottom: 24px; }

.problem-girls-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 32px;
}

.girls-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.girls-impact-item {
  border-left: 2px solid var(--coral);
  padding-left: 20px;
}

.girls-impact-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--coral);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.girls-impact-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--white);
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 900px) {
  .problem-girls-grid { grid-template-columns: 1fr; gap: 24px; padding-top: 48px; }
  .girls-impact-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ====== Premise (three product lines + parallel tracks) ====== */
.premise {
  background: var(--white);
  padding: 140px 0;
}

.premise-head {
  margin-bottom: 80px;
  max-width: 800px;
}

.premise-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 120px;
}

.premise-product {
  background: var(--grey);
  padding: 56px 40px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.premise-product:hover {
  transform: translateY(-8px);
  background: var(--slate);
  color: var(--white);
}

.premise-product-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--coral);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  display: block;
}

.premise-product-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--slate);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}

.premise-product:hover .premise-product-title { color: var(--white); }

.premise-product-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 32px;
  transition: color 0.4s ease, opacity 0.4s ease;
}

.premise-product:hover .premise-product-body {
  color: var(--white);
  opacity: 0.9;
}

.premise-product-detail {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.6;
  margin-bottom: 24px;
  transition: color 0.4s ease, opacity 0.4s ease;
}

.premise-product:hover .premise-product-detail {
  color: var(--coral);
  opacity: 1;
}

.premise-product-arrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.premise-product:hover .premise-product-arrow { gap: 16px; }

/* Premise - parallel tracks */
.premise-tracks {
  border-top: 1px solid var(--slate-line);
  padding-top: 100px;
}

.premise-tracks-head {
  margin-bottom: 64px;
  max-width: 800px;
}

.premise-tracks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.premise-track {
  padding: 48px;
  background: var(--grey);
  border-top: 4px solid var(--coral);
}

.premise-track-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--coral);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.premise-track h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--slate);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.premise-track p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 900px) {
  .premise-products { grid-template-columns: 1fr; }
  .premise-tracks-grid { grid-template-columns: 1fr; }
}

/* ====== Purpose (framework + why this works) ====== */
.purpose {
  background: var(--grey);
  padding: 140px 0;
}

.purpose-head {
  margin-bottom: 80px;
  max-width: 800px;
}

/* Conditions interactive (reused from earlier - already in stylesheet) */

.purpose-pillars {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 1px solid var(--slate-line);
}

.purpose-pillars-head {
  margin-bottom: 56px;
  max-width: 800px;
}

.purpose-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--slate-line);
  border-bottom: 1px solid var(--slate-line);
}

.purpose-pillar {
  padding: 48px 32px;
  border-right: 1px solid var(--slate-line);
}

.purpose-pillar:last-child { border-right: none; }

.purpose-pillar-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--coral);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.purpose-pillar h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--slate);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.purpose-pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 900px) {
  .purpose-pillars-grid { grid-template-columns: 1fr; }
  .purpose-pillar { border-right: none; border-bottom: 1px solid var(--slate-line); }
  .purpose-pillar:last-child { border-bottom: none; }
}

/* ====== People ====== */
.people {
  background: var(--white);
  padding: 140px 0;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.people-left .section-eyebrow { margin-bottom: 24px; }

.people-left h2 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--slate);
  line-height: 1;
  margin-bottom: 32px;
}

.people-left p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 16px;
}

.people-attributes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.people-attribute {
  padding: 32px 0;
  border-top: 1px solid var(--slate-line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

.people-attribute:last-child { border-bottom: 1px solid var(--slate-line); }

.people-attribute-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--coral);
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.people-attribute h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--slate);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.people-attribute p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  opacity: 0.85;
}

.people-settings {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--slate-line);
}

.people-settings h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--slate);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.people-settings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.people-setting {
  padding: 20px;
  background: var(--grey);
  text-align: center;
}

.people-setting-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--slate);
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .people-grid { grid-template-columns: 1fr; gap: 48px; }
  .people-settings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .people-attribute { grid-template-columns: 60px 1fr; gap: 16px; }
  .people-settings-grid { grid-template-columns: 1fr; }
}
