/* EQUAL PATH Foundation — site styles
   Palette: D-final brand (Midnight / Teal→Violet→Coral / Gold / Cream) */
:root {
  --cream: #FFF7EC;
  --cream-deep: #F5E6D3;
  --paper: #FFFCF7;
  --midnight: #1A1446;
  --teal: #00C2B2;
  --teal-soft: #33D1C4;
  --teal-mist: #E6FAF8;
  --teal-deep: #007A70;
  --violet: #7B5CFF;
  --violet-soft: #9B84FF;
  --coral: #FF5A6E;
  --coral-soft: #FF8A97;
  --coral-mist: #FFE8EB;
  --ink: #1A1446;
  --ink-soft: #3D3566;
  --muted: #5C5478;
  --gold: #FFB23F;
  --gold-soft: #FFE6B8;
  --white: #ffffff;
  --shadow: rgba(26, 20, 70, 0.10);
  --radius: 16px;
  --max: 1080px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", Times, serif;
  --grad: linear-gradient(135deg, #00C2B2 0%, #7B5CFF 50%, #FF5A6E 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); }
a:hover { color: var(--violet); }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--midnight); color: white; padding: 0.6rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgba(0,194,178,0.12);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--teal-deep);
}
.brand img { width: 104px; height: 104px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.brand-text strong span { color: var(--coral); }
.brand-text small {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.nav-toggle {
  display: none;
  background: var(--teal-mist);
  border: 1.5px solid rgba(0,194,178,0.25);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  color: var(--teal-deep);
  font-weight: 700;
  cursor: pointer;
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.15rem 0.2rem;
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: var(--teal-mist);
  color: var(--teal-deep);
}
.site-nav a.nav-cta {
  background: var(--teal);
  color: white;
  margin-left: 0.25rem;
}
.site-nav a.nav-cta:hover { background: var(--teal-deep); color: white; }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.25rem 0; }
.section-tight { padding: 2.25rem 0; }
.chapter-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--teal-deep);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.55rem, 3vw, 2rem); margin: 0 0 0.85rem; }
h3 { font-size: 1.2rem; color: var(--teal); margin: 1.1rem 0 0.5rem; }
.lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  max-width: 42rem;
}
p { color: var(--ink-soft); margin: 0 0 1rem; }
.muted { color: var(--muted); font-size: 0.92rem; }

/* Hero — D-final midnight (brochure-cover aligned) */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 92% 8%, rgba(255,90,110,0.28) 0%, transparent 42%),
    radial-gradient(ellipse at 8% 88%, rgba(0,194,178,0.26) 0%, transparent 48%),
    radial-gradient(ellipse at 55% 45%, rgba(123,92,255,0.22) 0%, transparent 52%),
    linear-gradient(165deg, #1A1446 0%, #241A5C 42%, #1A1446 100%);
  padding: 3.75rem 0 3.25rem;
  border-bottom: none;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background: var(--grad);
  z-index: 1;
}
.hero::before { top: 0; }
.hero::after { bottom: 0; }
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: var(--cream); }
.hero h1 span { color: var(--coral-soft); }
.hero .muted { color: rgba(255,247,236,0.72) !important; }
.hero .taglines .t1 { color: var(--teal-soft); }
.hero .taglines .t2 { color: var(--gold); }
.hero .badge {
  background: rgba(26,20,70,0.55);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hero .badge .dot { background: var(--coral); }
.hero .welcome-card {
  background: var(--cream);
  border: 1px solid rgba(255,247,236,0.2);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.hero .welcome-card .welcome-label { color: var(--teal-deep); }
.hero .btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,247,236,0.45);
}
.hero .btn-secondary:hover {
  background: rgba(255,247,236,0.1);
  color: var(--cream);
}
.hero-logo { margin: 0 auto; max-width: 380px; filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35)); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--white);
  border: 1.5px solid var(--coral-soft);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 1rem;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.taglines .t1 {
  font-size: 1.25rem; color: var(--teal); font-weight: 600; margin-bottom: 0.25rem;
}
.taglines .t2 {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--ink-soft); margin-bottom: 1.25rem;
}
.welcome-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid rgba(0,194,178,0.1);
  margin: 1.25rem 0 1.5rem;
  max-width: 36rem;
}
.welcome-card .welcome-label {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral); font-weight: 700; margin-bottom: 0.4rem;
}
.welcome-card p { margin: 0; color: var(--ink); }
/* hero-logo size set in midnight hero block */
.reach-pills { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-top: 1rem; }
.pill {
  background: var(--teal); color: white;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  font-size: 0.75rem; letter-spacing: 0.06em; font-weight: 600;
}
.pill.coral { background: var(--coral); }

/* Buttons */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.5rem; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-deep); color: white; }
.btn-secondary {
  background: transparent; color: var(--teal-deep);
  border-color: var(--teal);
}
.btn-secondary:hover { background: var(--teal-mist); color: var(--teal-deep); }
.btn-coral { background: var(--coral); color: white; }
.btn-coral:hover { background: #c96850; color: white; }

/* Cards / callouts */
.pull-quote {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--teal-deep);
  line-height: 1.45;
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
  border-left: 4px solid var(--coral);
  background: var(--coral-mist);
  border-radius: 0 12px 12px 0;
}
.callout {
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin: 1.1rem 0;
}
.callout-teal { background: var(--teal-mist); border: 1.5px solid rgba(0,194,178,0.25); }
.callout-coral { background: var(--coral-mist); border: 1.5px solid rgba(224,122,95,0.3); }
.callout-gold { background: var(--gold-soft); border: 1.5px solid rgba(201,160,90,0.4); }
.callout-label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 0.4rem;
}
.callout-teal .callout-label { color: var(--teal); }
.callout-coral .callout-label { color: var(--coral); }
.callout-gold .callout-label { color: #8a6a2e; }
.callout p:last-child { margin-bottom: 0; }
.footnote { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; line-height: 1.4; }

/* Remembrance */
.remember-hero {
  background: linear-gradient(135deg, var(--midnight) 0%, #2A2460 55%, var(--violet) 100%);
  color: white;
  border-radius: 20px;
  padding: 1.75rem 1.75rem;
  margin-bottom: 1.25rem;
}
.remember-hero .chapter-label { color: var(--coral-soft); }
.remember-hero h2 { color: white; }
.remember-hero p { color: rgba(255,255,255,0.9); }
.remember-list { display: grid; gap: 0.85rem; }
.remember-item {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: var(--paper); border-radius: 12px;
  padding: 1rem 1.1rem; border-left: 4px solid var(--teal);
}
.remember-item.warm { border-left-color: var(--coral); }
.remember-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-mist); color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.remember-item.warm .remember-icon { background: var(--coral-mist); color: var(--coral); }
.remember-item strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }
.remember-item span { font-size: 0.95rem; color: var(--ink-soft); }

/* Psych */
.psych-box {
  background: linear-gradient(145deg, #fff 0%, var(--teal-mist) 100%);
  border: 2px solid var(--teal);
  border-radius: 18px;
  padding: 1.5rem;
  position: relative;
}
.psych-box .sticker {
  position: absolute; top: -0.7rem; right: 1.25rem;
  background: var(--coral); color: white;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 999px;
}
.psych-box .insight { color: var(--ink); font-weight: 500; }

/* Dual track */
.track-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.25rem 0;
}
.track-card { border-radius: 16px; padding: 1.4rem; }
.track-card.a {
  background: linear-gradient(160deg, #fff5f3 0%, #fde8e2 100%);
  border: 2px solid var(--coral-soft);
}
.track-card.b {
  background: linear-gradient(160deg, #f0fafa 0%, #dceeee 100%);
  border: 2px solid rgba(0,194,178,0.3);
}
.track-pill {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  padding: 0.25rem 0.7rem; border-radius: 999px; margin-bottom: 0.6rem;
}
.track-card.a .track-pill { background: var(--coral); color: white; }
.track-card.b .track-pill { background: var(--teal); color: white; }
.track-card h3 { margin-top: 0; color: var(--ink); }
.track-card ul { margin: 0.4rem 0 0 1.1rem; color: var(--ink-soft); }
.track-card li { margin-bottom: 0.35rem; }

.pillar-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 1.25rem;
}
.pillar {
  text-align: center; background: var(--cream); border-radius: 14px;
  padding: 1rem 0.75rem; border: 1px solid rgba(0,194,178,0.12);
  border-bottom: 3px solid var(--teal);
}
.pillar:nth-child(odd) { border-bottom-color: var(--coral); }
.pillar strong { display: block; font-size: 0.95rem; color: var(--teal-deep); margin-bottom: 0.25rem; }
.pillar span { font-size: 0.8rem; color: var(--muted); }

/* Journey */
.journey {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem;
}
.journey-stop {
  border-radius: 14px; padding: 1.15rem; background: var(--paper);
  border: 1.5px solid var(--cream-deep); box-shadow: 0 2px 8px var(--shadow);
}
.journey-stop .abbr {
  display: inline-block; background: var(--teal); color: white;
  font-weight: 700; font-size: 0.85rem; padding: 0.3rem 0.65rem;
  border-radius: 8px; margin-bottom: 0.55rem; letter-spacing: 0.04em;
}
.journey-stop:nth-child(2) .abbr { background: var(--coral); }
.journey-stop:nth-child(3) .abbr { background: #5a8a6a; }
.journey-stop:nth-child(4) .abbr { background: #8a6a9a; }
.journey-stop strong {
  display: block; font-family: var(--serif); font-size: 1.05rem;
  color: var(--ink); margin-bottom: 0.3rem;
}
.journey-stop span { font-size: 0.92rem; color: var(--ink-soft); }

/* Spotlight */
.spotlight-banner {
  background: linear-gradient(120deg, var(--teal-mist) 0%, var(--cream) 60%, var(--coral-mist) 100%);
  border-radius: 18px; padding: 1.5rem; border: 1.5px solid rgba(0,194,178,0.2);
}
.dignity-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 1.1rem 0;
}
.dignity-card {
  background: var(--paper); border-radius: 12px; padding: 1.1rem;
  border: 1px solid rgba(0,194,178,0.12);
}
.dignity-card strong { display: block; color: var(--teal-deep); margin-bottom: 0.35rem; }
.dignity-card span { font-size: 0.95rem; color: var(--ink-soft); }

/* Timeline */
.timeline { margin: 1rem 0; }
.time-row {
  display: grid; grid-template-columns: 6.5rem 1fr; gap: 0.85rem;
  padding: 0.65rem 0.9rem; border-radius: 8px; margin-bottom: 0.3rem; align-items: center;
}
.time-row:nth-child(odd) { background: var(--teal-mist); }
.time-row:nth-child(even) { background: var(--cream); }
.time-row .t { font-weight: 700; color: var(--teal-deep); font-size: 0.92rem; }
.time-row .d { color: var(--ink-soft); font-size: 0.95rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(165deg, var(--midnight) 0%, #2A2460 50%, var(--teal-deep) 100%);
  color: white; padding: 3rem 0;
}
.cta-band h2 { color: white; }
.cta-band .chapter-label { color: var(--coral-soft); }
.cta-band p, .cta-band .lead { color: rgba(255,255,255,0.92); }
.action-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin: 1.25rem 0;
}
.action-card {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 14px; padding: 1.25rem; text-align: center;
}
.action-card strong { display: block; color: var(--gold-soft); margin: 0.4rem 0; }
.action-card span { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.cta-band .btn-primary { background: var(--coral); }
.cta-band .btn-primary:hover { background: #c96850; }
.cta-band .btn-secondary { border-color: rgba(255,255,255,0.5); color: white; }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.12); color: white; }

/* Page hero (inner pages) */
.page-hero {
  background:
    linear-gradient(90deg, #00C2B2, #7B5CFF, #FF5A6E) top / 100% 4px no-repeat,
    linear-gradient(175deg, #FFF7EC 0%, var(--cream) 100%);
  padding: 2.75rem 0 2rem;
  border-bottom: 1px solid rgba(26,20,70,0.08);
}
.letter {
  background: var(--paper);
  border: 1px solid rgba(0,194,178,0.12);
  border-radius: 18px;
  padding: 1.75rem 1.75rem;
  box-shadow: 0 4px 20px var(--shadow);
  max-width: 44rem;
}
.letter .placeholder {
  background: var(--gold-soft);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  color: #8a6a2e;
}

/* Forms */
.form {
  background: var(--paper);
  border: 1px solid rgba(0,194,178,0.12);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 36rem;
}
.form label { display: block; font-weight: 600; color: var(--teal-deep); margin: 0.85rem 0 0.35rem; }
.form input, .form textarea, .form select {
  width: 100%; padding: 0.7rem 0.85rem;
  border: 1.5px solid rgba(0,194,178,0.25);
  border-radius: 10px; font: inherit; background: white; color: var(--ink);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.35rem; }
.form-note {
  background: var(--gold-soft); border-radius: 10px; padding: 0.85rem 1rem;
  font-size: 0.9rem; margin-bottom: 1rem; color: var(--ink);
}

/* Crisis / footer */
.crisis-bar {
  background: var(--coral-mist);
  border-top: 2px solid var(--coral-soft);
  border-bottom: 2px solid var(--coral-soft);
  padding: 1rem 0;
}
.crisis-bar strong { color: var(--coral); }
.crisis-bar a { color: var(--teal-deep); font-weight: 700; }
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.85);
  padding: 2.5rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem;
}
.site-footer h3 {
  color: var(--gold-soft); font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin: 0 0 0.75rem; font-family: var(--font);
}
.site-footer a { color: rgba(255,255,255,0.9); text-decoration: none; }
.site-footer a:hover { color: white; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.footer-brand img { width: 72px; height: 72px; }

/* Utility */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gap-card {
  border-radius: 14px; padding: 1.2rem; background: var(--paper);
  border: 1.5px solid rgba(0,194,178,0.15); box-shadow: 0 2px 10px var(--shadow);
}
.gap-card .num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--coral); color: white;
  font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 0.7rem;
}
.gap-card h3 { margin-top: 0; font-size: 1.05rem; color: var(--teal-deep); }
.story-band {
  background: var(--cream); border-radius: 16px; padding: 1.25rem; margin: 1rem 0;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

@media (max-width: 860px) {
  .hero-grid, .track-row, .journey, .dignity-grid, .footer-grid,
  .action-grid, .card-grid-3, .pillar-row {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    width: 100%;
  }
  .site-nav.is-open { display: block; }
  .header-inner { flex-wrap: wrap; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 0.5rem 0 0.25rem; }
  .site-nav a.nav-cta { margin-left: 0; text-align: center; }
  .time-row { grid-template-columns: 5rem 1fr; }
  .hero { padding: 2.25rem 0 2rem; }
}

@media (max-width: 860px) {
  .hero-grid .hero-logo { order: -1; max-width: 280px; margin-bottom: 0.5rem; }
  .hero-grid { gap: 1.25rem; }
}

/* =====================================================================
   2026-09 refresh: help strip, hero motion, Watch section, facts strip,
   typography polish, scroll reveal (respects reduced motion)
   ===================================================================== */
h2 { color: var(--midnight); letter-spacing: -0.01em; }
.chapter-label::before {
  content: ""; display: inline-block; width: 1.6rem; height: 3px; border-radius: 3px;
  background: var(--grad); vertical-align: middle; margin-right: 0.55rem; transform: translateY(-2px);
}
.btn { transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26,20,70,0.18); }
.btn-gold { background: var(--gold); color: var(--midnight); }
.btn-gold:hover { background: #ffc466; color: var(--midnight); }
.grad-text {
  background: linear-gradient(90deg, #00C2B2, #7B5CFF 55%, #FF5A6E);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .grad-text { background: linear-gradient(90deg, #33D1C4, #9B84FF 55%, #FF8A97); -webkit-background-clip: text; background-clip: text; }

/* Help strip (all pages) */
.help-strip {
  background: var(--midnight); color: var(--cream); font-size: 0.85rem;
  text-align: center; padding: 0.4rem 1rem; line-height: 1.4;
}
.help-strip strong { color: var(--gold); }
.help-strip a { color: var(--teal-soft); font-weight: 700; text-decoration: none; }
.help-strip a:hover { color: white; text-decoration: underline; }

/* Hero refresh */
.hero { padding: 4.5rem 0 4rem; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.01em; }
.hero .eyebrow {
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.8rem; font-weight: 700;
  color: var(--teal-soft); margin: 0 0 0.5rem;
}
.hero .taglines .t1 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--cream); font-weight: 700; }
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-orbs span {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45;
  animation: orb 18s ease-in-out infinite alternate;
}
.hero-orbs span:nth-child(1) { width: 340px; height: 340px; background: #00C2B2; left: -80px; top: 55%; }
.hero-orbs span:nth-child(2) { width: 300px; height: 300px; background: #7B5CFF; left: 45%; top: -120px; animation-delay: -6s; }
.hero-orbs span:nth-child(3) { width: 260px; height: 260px; background: #FF5A6E; right: -60px; bottom: -80px; animation-delay: -12s; }
@keyframes orb { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,-30px) scale(1.15); } }
.hero-logo img { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Watch section */
.watch {
  position: relative; color: var(--cream); padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(0,194,178,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 100%, rgba(255,90,110,0.16) 0%, transparent 45%),
    linear-gradient(180deg, #1A1446 0%, #211959 100%);
}
.watch-head { max-width: 46rem; margin-bottom: 1.75rem; }
.watch .chapter-label { color: var(--gold); }
.watch h2 { color: var(--cream); font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.watch .lead { color: rgba(255,247,236,0.85); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.video-card {
  margin: 0; background: rgba(255,247,236,0.06); border: 1px solid rgba(255,247,236,0.14);
  border-radius: 20px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transition: transform 0.2s, border-color 0.2s;
}
.video-card:hover { transform: translateY(-3px); border-color: rgba(255,178,63,0.55); }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #0f0b2e; }
.video-frame::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--grad); z-index: 1; }
.video-frame video { width: 100%; height: 100%; display: block; object-fit: contain; background: #0f0b2e; }
.video-card figcaption { padding: 1rem 1.2rem 1.25rem; display: grid; gap: 0.2rem; }
.video-card figcaption strong { font-family: var(--serif); font-size: 1.35rem; color: var(--cream); }
.video-card figcaption span { color: rgba(255,247,236,0.8); font-size: 0.95rem; }
.video-card figcaption .video-tag {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--teal-soft);
}
.watch-foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem; margin-top: 1.4rem; }
.watch-foot p { margin: 0; color: rgba(255,247,236,0.85); font-size: 0.92rem; }
.watch-foot a { color: var(--teal-soft); font-weight: 700; }
.watch-foot a:hover { color: white; }
.watch-help strong { color: var(--gold); }

/* Facts strip */
.facts-strip { background: var(--paper); padding: 2.5rem 0 2rem; border-bottom: 1px solid rgba(26,20,70,0.08); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.fact {
  background: white; border-radius: 16px; padding: 1.2rem 1.1rem; box-shadow: 0 4px 18px var(--shadow);
  border-top: 4px solid var(--gold);
}
.fact:nth-child(2) { border-top-color: var(--teal); }
.fact:nth-child(3) { border-top-color: var(--coral); }
.fact:nth-child(4) { border-top-color: var(--violet); }
.fact-num { font-family: var(--serif); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.3rem); color: #c27c0e; line-height: 1.1; }
.fact-num.teal { color: var(--teal-deep); }
.fact-num.coral { color: #d93a50; }
.fact-num.violet { color: #5a3ee0; }
.fact-label { color: var(--ink); font-weight: 500; font-size: 0.95rem; margin: 0.35rem 0 0.5rem; }
.fact-src { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.02em; }
.facts-note { margin: 1rem 0 0; font-size: 0.85rem; color: var(--muted); }

/* Sources page */
.source-list { display: grid; gap: 1rem; margin: 1.25rem 0; }
.source-item { background: var(--paper); border-radius: 14px; padding: 1.1rem 1.25rem; border-left: 4px solid var(--teal); box-shadow: 0 2px 10px var(--shadow); }
.source-item:nth-child(even) { border-left-color: var(--coral); }
.source-item h3 { margin: 0 0 0.3rem; color: var(--midnight); font-size: 1.08rem; }
.source-item .meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; }
.source-item ul { margin: 0.25rem 0 0.5rem 1.1rem; color: var(--ink-soft); font-size: 0.95rem; }
.source-item a { word-break: break-word; }

/* Scroll reveal */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-orbs span, .hero-logo img { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .video-card:hover { transform: none; }
}

@media (max-width: 860px) {
  .video-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 2.75rem 0 2.5rem; }
}
@media (max-width: 599px) {
  .video-frame { aspect-ratio: 9 / 16; max-height: 82vh; margin: 0 auto; }
  .video-card { max-width: 440px; margin: 0 auto; width: 100%; }
  .fact-grid { grid-template-columns: 1fr; }
  .watch { padding: 2.5rem 0 2.25rem; }
  .watch-foot { flex-direction: column; }
  .help-strip { font-size: 0.8rem; }
}
#watch, [id] { scroll-margin-top: 120px; }

/* =====================================================================
   Mission page (mission.html) — 2026-09
   ===================================================================== */
.m-hero { padding: 4rem 0 3.5rem; }
.m-hero .wrap { max-width: 900px; }
.m-h1 { font-size: clamp(2.2rem, 5.6vw, 3.6rem) !important; margin-bottom: 1rem; }
.m-mission {
  color: var(--cream); font-size: clamp(1.08rem, 2.1vw, 1.3rem); line-height: 1.55;
  max-width: 44rem; margin-bottom: 1.1rem;
}
.m-mission strong { color: var(--gold); }
.m-cta-row { margin-top: 0.25rem; }
.m-soon { opacity: 0.85; }
.m-soon-tag {
  display: inline-block; margin-left: 0.35rem; font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; background: rgba(255,247,236,0.16); padding: 0.1rem 0.45rem; border-radius: 999px;
}
.m-hero-note { color: rgba(255,247,236,0.72); font-size: 0.88rem; margin: 0.9rem 0 0; max-width: 40rem; }

.m-jump { background: var(--paper); border-bottom: 1px solid rgba(26,20,70,0.08); }
.m-jump .wrap {
  display: flex; gap: 0.4rem; overflow-x: auto; padding-top: 0.6rem; padding-bottom: 0.6rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.m-jump a {
  flex: 0 0 auto; text-decoration: none; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft);
  padding: 0.35rem 0.75rem; border-radius: 999px; border: 1.5px solid rgba(0,194,178,0.25); background: white;
}
.m-jump a:hover { background: var(--teal-mist); color: var(--teal-deep); }

.m-problem { padding: 3rem 0 2.5rem; }
.m-fact-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1.25rem; }
.m-fact-grid .fact:nth-child(2) { border-top-color: var(--coral); }
.m-fact-grid .fact:nth-child(3) { border-top-color: var(--violet); }

.m-pillars { margin-top: 1.25rem; }
.gap-card .num.m-teal { background: var(--teal-deep); }
.gap-card .num.m-violet { background: var(--violet); }
.m-subhead { color: var(--midnight); margin-top: 2rem; font-size: 1.25rem; }
.m-aims { list-style: none; padding: 0; margin: 0.5rem 0 0; display: grid; gap: 0.6rem; }
.m-aims li {
  background: white; border-radius: 12px; padding: 0.85rem 1rem 0.85rem 2.6rem; position: relative;
  color: var(--ink-soft); box-shadow: 0 2px 10px var(--shadow);
}
.m-aims li::before {
  content: "→"; position: absolute; left: 1rem; top: 0.85rem; color: var(--coral); font-weight: 700;
}
.m-aims strong { color: var(--midnight); }

.m-diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.25rem; }
.m-diff {
  background: white; border-radius: 16px; padding: 1.25rem; box-shadow: 0 4px 18px var(--shadow);
  border-top: 4px solid var(--teal);
}
.m-diff:nth-child(2) { border-top-color: var(--coral); }
.m-diff:nth-child(3) { border-top-color: var(--violet); }
.m-diff:nth-child(4) { border-top-color: var(--gold); }
.m-diff h3 { color: var(--midnight); margin-top: 0.6rem; }
.m-diff p { font-size: 0.95rem; margin: 0; }
.m-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: var(--teal-mist); color: var(--teal-deep);
}
.m-icon.coral { background: var(--coral-mist); color: #d93a50; }
.m-icon.violet { background: #EEEAFF; color: #5a3ee0; }
.m-icon.gold { background: var(--gold-soft); color: #9a5f00; }

.m-steps { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.m-steps li {
  display: flex; gap: 1rem; align-items: flex-start; background: var(--paper); border-radius: 16px;
  padding: 1.15rem 1.2rem; border: 1.5px solid var(--cream-deep); box-shadow: 0 2px 8px var(--shadow);
}
.m-step-n {
  font-family: var(--serif); font-weight: 700; font-size: 1.6rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; flex-shrink: 0;
}
.m-steps strong { display: block; color: var(--midnight); font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.25rem; }
.m-steps li > div > span { color: var(--ink-soft); font-size: 0.95rem; }

.m-serve { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin-top: 1.1rem; }
.m-serve-item { background: white; border-radius: 14px; padding: 1rem 1.1rem; border-left: 4px solid var(--teal); }
.m-serve-item:nth-child(even) { border-left-color: var(--coral); }
.m-serve-item strong { display: block; color: var(--midnight); }
.m-serve-item span { font-size: 0.92rem; color: var(--ink-soft); }

.m-culture { padding: 3.5rem 0; }
.m-culture h3 { color: var(--teal-soft); }
.m-culture p { color: rgba(255,247,236,0.85); }
.m-culture-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: start; }
.m-list-light { color: rgba(255,247,236,0.88); padding-left: 1.1rem; margin: 0; }
.m-list-light li { margin-bottom: 0.45rem; }
.m-list-light strong { color: var(--gold); }
.m-culture-card {
  background: rgba(255,247,236,0.07); border: 1px solid rgba(255,247,236,0.18); border-radius: 20px;
  padding: 1.4rem 1.4rem 1.5rem; position: relative; overflow: hidden;
}
.m-culture-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--grad); }
.m-culture-card h3 { margin-top: 0.3rem; }
.m-culture-card ul { color: rgba(255,247,236,0.88); padding-left: 1.1rem; margin: 0 0 1rem; font-size: 0.95rem; }
.m-culture-card li { margin-bottom: 0.35rem; }

.m-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1.25rem 0 0.5rem; }
.m-tier {
  background: white; border-radius: 18px; padding: 1.25rem; box-shadow: 0 4px 18px var(--shadow);
  border: 1.5px solid rgba(26,20,70,0.06); display: flex; flex-direction: column;
}
.m-tier h3 { color: var(--midnight); margin: 0.55rem 0 0.2rem; }
.m-tier-price { font-weight: 700; color: var(--teal-deep); font-size: 0.95rem; margin-bottom: 0.6rem; }
.m-tier ul { padding-left: 1.05rem; margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.m-tier li { margin-bottom: 0.3rem; }
.m-tier-tag {
  align-self: flex-start; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 999px; background: var(--gold); color: var(--midnight);
}
.m-tier-tag.teal { background: var(--teal); color: white; }
.m-tier-tag.violet { background: var(--violet); color: white; }
.m-tier-tag.coral { background: var(--coral); color: white; }
.m-tier-feature { background: linear-gradient(160deg, #1A1446 0%, #2A2460 100%); border: none; }
.m-tier-feature h3 { color: var(--cream); }
.m-tier-feature .m-tier-price { color: var(--gold); }
.m-tier-feature ul { color: rgba(255,247,236,0.88); }

.m-event {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 1.75rem; align-items: center;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255,90,110,0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 5% 95%, rgba(0,194,178,0.3) 0%, transparent 50%),
    linear-gradient(150deg, #1A1446 0%, #2A1C6E 60%, #1A1446 100%);
  border-radius: 24px; padding: 2rem 2rem; color: var(--cream); position: relative; overflow: hidden;
}
.m-event::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--grad); }
.m-event .chapter-label { color: var(--gold); }
.m-event h2 { color: var(--cream); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.2rem; letter-spacing: 0.02em; }
.m-event-sub { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--teal-soft); margin-bottom: 0.9rem; }
.m-event p { color: rgba(255,247,236,0.88); }
.m-event-meta { font-size: 0.9rem; }
.m-event-meta strong { color: var(--gold); }
.m-on-dark { color: var(--cream) !important; border-color: rgba(255,247,236,0.5) !important; }
.m-on-dark:hover { background: rgba(255,247,236,0.1) !important; }
.m-event-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.m-event-list li {
  background: rgba(255,247,236,0.08); border: 1px solid rgba(255,247,236,0.16); border-radius: 12px;
  padding: 0.6rem 0.85rem; font-weight: 600; font-size: 0.95rem; display: flex; gap: 0.6rem; align-items: center;
}
.m-event-list span { color: var(--gold); width: 1.2rem; text-align: center; }

.m-founder { background: white; box-shadow: 0 4px 18px var(--shadow); border-left: 4px solid var(--violet); }

.m-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.m-trust-grid .callout { margin: 0; }
.m-tight { margin: 0 0 0.5rem; padding-left: 1.1rem; color: var(--ink-soft); }
.m-tight li { margin-bottom: 0.3rem; }
.m-contact-line { margin-top: 1.25rem; font-size: 0.95rem; }
.m-contact-line a { color: var(--gold-soft); font-weight: 700; word-break: break-word; }
.m-contact-line a:hover { color: white; }

/* Home → mission teaser */
.home-mission {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; justify-content: space-between;
  background: linear-gradient(120deg, var(--teal-mist) 0%, var(--cream) 55%, var(--coral-mist) 100%);
  border: 1.5px solid rgba(0,194,178,0.2); border-radius: 18px; padding: 1.4rem 1.5rem;
}
.home-mission h2 { margin: 0 0 0.3rem; font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.home-mission p { margin: 0; max-width: 40rem; }

@media (max-width: 960px) {
  .m-diff-grid, .m-tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .m-culture-grid, .m-event, .m-trust-grid, .m-steps { grid-template-columns: 1fr; }
  .m-serve { grid-template-columns: 1fr 1fr; }
  .m-fact-grid { grid-template-columns: 1fr; }
  .m-hero { padding: 2.75rem 0 2.5rem; }
}
@media (max-width: 599px) {
  .m-diff-grid, .m-tiers, .m-serve { grid-template-columns: 1fr; }
  .m-event { padding: 1.5rem 1.25rem 1.75rem; }
  .m-cta-row .btn { flex: 1 1 100%; text-align: center; }
  .home-mission .btn { width: 100%; text-align: center; }
}
