:root {
  /* Backgrounds */
  --ink: #0c0b0a;
  --slate: #1a1816;
  --warm-dark: #231f1c;
  --chalk: #f4f0eb;
  --mist: #8a7d86;
  --rose: #e8429a;
  --dawn: #f5c340;
  --lavender: #b899c8;
  --white: #ffffff;
  --rule: rgba(244, 240, 235, 0.1);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-slow: 1.1s;
  --dur-mid: 0.7s;
  --dur-fast: 0.4s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--chalk);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.75;
  overflow-x: clip;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100000;
  background: var(--dawn);
  color: var(--ink);
  padding: 10px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 16px;
}

/* ============================================================
   AMBIENT BACKGROUND FIELD
   ============================================================ */
.ambient {
  position: fixed;
  inset: -90px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
  perspective: 1200px;
  background: linear-gradient(135deg, #0c0b0a 0%, #0c0b0a 20%, #0c0b0a, #0c0b0a) fixed;
  animation: ambientShift 20s linear infinite;
}

@keyframes ambientShift {
  0%, 100% { background-position: 0% 0%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

/* Animated gradient background overlay */
.ambient::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 40%, rgba(245, 195, 64, 0.08), transparent 70%),
              radial-gradient(circle at 70% 80%, rgba(232, 66, 154, 0.06), transparent 70%),
              linear-gradient(45deg, rgba(244, 240, 235, 0.03), rgba(244, 240, 235, 0.00));
  animation: ambientGradient 24s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

@keyframes ambientGradient {
  0%, 100% { transform: translateX(-2%) translateY(-2%) scale(1); }
  33% { transform: translateX(2%) translateY(4%) scale(1.02); }
  66% { transform: translateX(-1%) translateY(3%) scale(0.98); }
}

.ambient__grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(to right, rgba(244, 240, 235, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 240, 235, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 0%, transparent 75%);
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.ambient__glow--gold {
  top: -10%;
  left: -8%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(245, 195, 64, 0.07) 0%, transparent 70%);
  animation: driftGold 26s ease-in-out infinite;
}

.ambient__glow--rose {
  bottom: -12%;
  right: -10%;
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, rgba(232, 66, 154, 0.06) 0%, transparent 70%);
  animation: driftRose 32s ease-in-out infinite;
}

@keyframes driftGold {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8vw, 6vh) scale(1.1); }
  66% { transform: translate(-4vw, 10vh) scale(0.95); }
}

@keyframes driftRose {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-7vw, -5vh) scale(1.05); }
  66% { transform: translate(5vw, -9vh) scale(1.12); }
}

/* Slow aurora sweep — a wide, soft band that drifts across the canvas */
.ambient__aurora {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background:
    conic-gradient(
      from 180deg at 50% 50%,
      transparent 0deg,
      rgba(245, 195, 64, 0.05) 60deg,
      transparent 140deg,
      rgba(232, 66, 154, 0.045) 240deg,
      transparent 320deg
    );
  filter: blur(60px);
  opacity: 0.8;
  animation: auroraSpin 48s linear infinite;
  mix-blend-mode: screen;
}

@keyframes auroraSpin {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.12); }
  to { transform: rotate(360deg) scale(1); }
}

/* Rotating horizon ring — abstracts the logo's arc, drawn as a tilted
   3D disc spinning slowly in space */
.ambient__ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(70vw, 900px);
  height: min(70vw, 900px);
  border: 1px solid rgba(245, 195, 64, 0.07);
  border-radius: 50%;
  border-top-color: rgba(245, 195, 64, 0.18);
  transform: rotateX(64deg) rotateZ(0deg);
  transform-style: preserve-3d;
  animation: ringSpin 70s linear infinite;
}

@keyframes ringSpin {
  from { transform: rotateX(64deg) rotateZ(0deg); }
  to { transform: rotateX(64deg) rotateZ(360deg); }
}

.ambient__shape {
  position: absolute;
  border: 1px solid rgba(244, 240, 235, 0.05);
  border-radius: 50%;
}

.ambient__shape--1 {
  width: 280px;
  height: 280px;
  top: 18%;
  right: 12%;
  border-color: rgba(184, 153, 200, 0.10);
  animation: floatShape 22s ease-in-out infinite;
}

.ambient__shape--2 {
  width: 160px;
  height: 160px;
  bottom: 22%;
  left: 8%;
  border-color: rgba(245, 195, 64, 0.08);
  animation: floatShape 28s ease-in-out infinite reverse;
}

.ambient__shape--3 {
  width: 96px;
  height: 96px;
  top: 55%;
  left: 46%;
  border-color: rgba(232, 66, 154, 0.07);
  animation: floatShape 19s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-40px) translateX(20px) rotate(12deg); }
}

.ambient__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Dramatic, scroll-linked lighting beam */
.lighting {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background: radial-gradient(60vw 60vw at 50% 32%, rgba(245, 195, 64, 0.05), transparent 70%);
  will-change: background, transform;
  mix-blend-mode: screen;
}

/* Keep all real content above the ambient field */
.nav,
.mobile-menu,
main,
.footer,
.cursor,
.cursor-dot {
  position: relative;
  z-index: 1;
}
.nav { z-index: 1000; }
.mobile-menu { z-index: 1000; }
.cursor, .cursor-dot { z-index: 99999; }

/* ============================================================
   CURSOR (premium blob)
   ============================================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(232,66,154,0.45), transparent 70%);
  backdrop-filter: blur(10px);
  mix-blend-mode: difference;
  transform: translate3d(-50%, -50%, 0);
  animation: blobMorph 5s infinite ease-in-out;
  transition: width .35s ease, height .35s ease, opacity .35s ease;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition:
    width 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease;
}

/* Jelly squish on click — elastic overshoot on press and release */
.cursor-dot.press {
  width: 40px;
  height: 40px;
  background: var(--dawn);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
}

.cursor.press {
  width: 96px;
  height: 96px;
}

.cursor-hover {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(232,66,154,.5), transparent 70%);
}

/* Glass-morphism cursor over cards — frosted translucent orb */
.cursor-glass {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255,255,255,.6), rgba(244,240,235,.2), transparent 65%);
  backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid rgba(245,195,64,.35);
  opacity: 0.85;
}

@keyframes blobMorph {
  0% { border-radius: 45% 55% 50% 50%; }
  25% { border-radius: 60% 40% 55% 45%; }
  50% { border-radius: 50% 50% 40% 60%; }
  75% { border-radius: 40% 60% 45% 55%; }
  100% { border-radius: 45% 55% 50% 50%; }
}

html, body { cursor: none; }
a, button, input, textarea, select { cursor: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.4s var(--ease-soft), background 0.4s var(--ease-soft), border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  padding: 18px 5%;
}

.nav.scrolled {
  backdrop-filter: blur(14px);
  background: rgba(12, 11, 10, 0.72);
  border-bottom: 1px solid var(--rule);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--chalk);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__brand img { width: 34px; height: 34px; }

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  color: var(--chalk);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  background: var(--rose);
  transition: height 0.3s ease;
}

.nav__links a:hover::after { height: 100%; }

.btn-primary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--rose);
  color: var(--chalk);
  background: transparent;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-ghost {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  border-radius: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--chalk);
  border-color: var(--chalk);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 5% 80px;
  text-align: left;
  background: transparent;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  perspective: 1000px;
}

/* 3D horizon plane — a tilted disc behind the hero that slowly turns in
   space, echoing the logo's sunrise arc */
.hero__plane {
  position: absolute;
  top: 50%;
  right: -6%;
  width: min(64vw, 680px);
  height: min(64vw, 680px);
  margin-top: min(-32vw, -340px);
  border: 1.5px solid rgba(245, 195, 64, 0.45);
  border-radius: 50%;
  border-top-color: rgba(245, 195, 64, 0.85);
  box-shadow:
    0 0 60px rgba(245, 195, 64, 0.12),
    inset 0 0 80px rgba(245, 195, 64, 0.08);
  transform: rotateX(52deg) rotateZ(0deg);
  transform-style: preserve-3d;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  animation: heroPlaneSpin 40s linear infinite;
}

.hero__plane::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(245, 195, 64, 0.10), transparent 62%);
}

.hero__plane::after {
  content: '';
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(232, 66, 154, 0.35);
  border-top-color: rgba(232, 66, 154, 0.6);
  border-radius: 50%;
}

@keyframes heroPlaneSpin {
  from { transform: rotateX(52deg) rotateZ(0deg); }
  to { transform: rotateX(52deg) rotateZ(360deg); }
}

.hero__glow {
  position: absolute;
  top: 22%;
  left: 8%;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(245, 195, 64, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0.9; }
}

.hero__content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 28px;
}

.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--chalk);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--dawn);
}

.hero__sub {
  margin: 28px 0 48px;
  max-width: 520px;
  color: var(--chalk);
  opacity: 0.85;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 5%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
}

.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--rule);
}

.hero__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, var(--rose), var(--dawn));
  transform-origin: left;
  transform: scaleX(0);
}

/* ============================================================
   HORIZON LINE (signature animated divider)
   ============================================================ */
.horizon {
  position: relative;
  height: 120px;
  margin: 60px 0;
  padding: 0 5%;
  z-index: 2;
}

.horizon__line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--dawn);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-out);
  z-index: 10;
  box-shadow: 0 0 18px rgba(245, 195, 64, 0.25);
}

.horizon__line.animate {
  transform: translateY(-50%) scaleX(1);
}

/* ============================================================
   REVEAL SYSTEM (text + staggered + scroll-linked)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Split-text lines */
[data-split] .line {
  display: block;
  overflow: hidden;
  padding: 0.08em 0;
}

[data-split] .line > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}

[data-split].visible .line > span {
  transform: translateY(0);
}

[data-split].visible .line:nth-child(1) > span { transition-delay: 0.05s; }
[data-split].visible .line:nth-child(2) > span { transition-delay: 0.15s; }
[data-split].visible .line:nth-child(3) > span { transition-delay: 0.25s; }
[data-split].visible .line:nth-child(4) > span { transition-delay: 0.35s; }
[data-split].visible .line:nth-child(5) > span { transition-delay: 0.45s; }

/* Stagger children inside a group */
[data-reveal-group] > [data-reveal],
[data-stagger] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal-group] > [data-reveal].visible,
[data-stagger].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-linked type (opacity tracks scroll position) */
[data-scroll-type] {
  opacity: 0.25;
  transition: opacity 0.4s linear;
}

[data-scroll-type].in-focus {
  opacity: 0.95;
}

/* Specular sheen — a slow monochrome light sweep that keeps passing
   through headings after they reveal, so contrast stays alive.
   Base stays solid chalk; only a warm-white highlight travels. */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .t-sheen {
    background-image: linear-gradient(
      100deg,
      var(--chalk) 0%,
      #cfc7c0 38%,
      #ffffff 50%,
      #cfc7c0 62%,
      var(--chalk) 100%
    );
    background-size: 220% 100%;
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.t-sheen.visible {
  animation: sheenSweep 7s ease-in-out 0.6s infinite;
}

@keyframes sheenSweep {
  0% { background-position: 200% 0; }
  45% { background-position: -60% 0; }
  100% { background-position: -60% 0; }
}

/* ============================================================
   GENERIC SECTION PADDING
   ============================================================ */
#about, #mission, #impact, #metrics, #sdg, #journey, #founders, #events, #join, #contact {
  padding: 90px 5%;
  position: relative;
  z-index: 2;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.about__text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--chalk);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

.about__text p {
  color: var(--chalk);
  opacity: 0.85;
  margin-bottom: 18px;
  font-weight: 300;
}

.about__panel {
  background: var(--warm-dark);
  border-radius: 10px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--rule);
}

.about__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 153, 200, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

.about__panel-mark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dawn);
  opacity: 0.35;
}

.about__panel-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.about__panel-line {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--rule);
}

/* ============================================================
   MISSION
   ============================================================ */
.mission__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.mission__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--chalk);
  letter-spacing: -0.015em;
}

.mission__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mission__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  opacity: 0.92;
}

.mission__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mission__cols p {
  color: var(--chalk);
  opacity: 0.82;
  font-weight: 300;
}

/* ============================================================
   IMPACT
   ============================================================ */
.impact__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
}

.impact__rail-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 28px;
}

.impact__index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.impact__index li {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--chalk);
}

.impact__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--dawn);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dawn);
  margin-right: 14px;
  flex-shrink: 0;
}

.impact__index li::after {
  content: ' — Good Health and Well-being';
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--mist);
  letter-spacing: 0.02em;
}

.impact__index li:nth-child(2)::after { content: ' — Quality Education'; }

.focus {
  padding: 8px 0;
}

.focus__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--chalk);
  margin-bottom: 16px;
}

.focus p { color: var(--chalk); opacity: 0.82; font-weight: 300; }

.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 36px 0;
}

.focus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.focus__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.focus__icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--dawn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.focus__item:hover .focus__icon { transform: scale(1.12); }

.focus__icon::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dawn);
  opacity: 0.8;
}

.focus__item p { color: var(--mist); }

/* ============================================================
   HYBRID HORIZONTAL SCROLL STORYTELLING
   ============================================================ */
.story {
  position: relative;
  z-index: 2;
}

.story__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.story__track {
  display: flex;
  gap: 4vw;
  padding: 0 5%;
  will-change: transform;
}

.story__panel {
  flex: 0 0 auto;
  width: min(70vw, 760px);
  height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  border-radius: 12px;
  background: var(--warm-dark);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.story__panel::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 195, 64, 0.06), transparent 70%);
}

.story__panel--intro {
  background: transparent;
  border: none;
  width: min(80vw, 880px);
}

.story__head {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.98;
  color: var(--chalk);
  letter-spacing: -0.02em;
}

.story__head em {
  font-style: italic;
  color: var(--dawn);
}

.story__hint {
  margin-top: 32px;
  color: var(--mist);
}

.story__step {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.story__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--chalk);
  margin-bottom: 18px;
}

.story__panel p { color: var(--chalk); opacity: 0.82; font-weight: 300; }

.story__panel--end {
  background: linear-gradient(135deg, rgba(232, 66, 154, 0.08), transparent 60%);
}

/* ============================================================
   METRICS / COUNTERS
   ============================================================ */
.metrics__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.metrics__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 48px;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.metric {
  border-top: 1px solid var(--dawn);
  padding-top: 24px;
}

.metric__value {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--chalk);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.metric__caption {
  margin-top: 16px;
  color: var(--mist);
  font-size: 0.85rem;
}

/* ============================================================
   SDG DEEP DIVE
   ============================================================ */
.sdg__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.sdg__head {
  margin-bottom: 56px;
}

.sdg__head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--chalk);
  letter-spacing: -0.015em;
  margin-top: 12px;
}

.sdg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  perspective: 1100px;
}

.sdg__card {
  background: var(--warm-dark);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.sdg__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--dawn);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.sdg__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--chalk);
  margin-bottom: 18px;
}

.sdg__card > p { color: var(--chalk); opacity: 0.82; font-weight: 300; margin-bottom: 24px; }

.sdg__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sdg__list li {
  color: var(--mist);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.sdg__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

/* ============================================================
   VOLUNTEER JOURNEY
   ============================================================ */
.journey__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.journey__head {
  margin-bottom: 56px;
}

.journey__head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--chalk);
  letter-spacing: -0.015em;
  margin-top: 12px;
}

.journey__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.journey__step {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

.journey__index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dawn);
  display: block;
  margin-bottom: 20px;
}

.journey__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--chalk);
  margin-bottom: 12px;
}

.journey__detail p { color: var(--chalk); opacity: 0.8; font-weight: 300; font-size: 0.95rem; }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.founders__head {
  margin-bottom: 56px;
}

.founders__head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--chalk);
  letter-spacing: -0.015em;
  margin-top: 12px;
}

.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  perspective: 1100px;
}

/* Smooth, snappy return for 3D tilt on interactive cards */
.tilt {
  transition: transform 0.5s var(--ease-out), border-color 0.5s ease;
  will-change: transform;
}
.tilt.is-tilting {
  transition: transform 0.12s ease-out, border-color 0.5s ease;
}

/* Skew-in reveal for section headings */
.t-skew {
  transform-origin: center;
  transition: transform 0.6s var(--ease-out);
}
.t-skew.visible {
  transform: skewX(-3deg) scale(1.02);
}

/* Floating hot-spot icons */
.hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--dawn) 0%, transparent 70%);
  opacity: 0.4;
  animation: floatHotspot 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatHotspot {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.1); }
}

/* Color-accent pop-up on key words */
[data-accent] {
  position: relative;
  color: var(--chalk);
}
[data-accent]::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 4px;
  background: rgba(245, 195, 64, 0.08);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: scale(0.95);
  pointer-events: none;
}
[data-accent]:hover::after,
[data-accent].active::after {
  opacity: 1;
  transform: scale(1);
}

/* Scroll progress bar at top of viewport */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--rose), var(--dawn));
  transform-origin: left;
  z-index: 10000;
}

/* Back-to-top button */
.back-to-top {
  position: fixed;
  bottom: 48px;
  right: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-dark);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 9998;
}
.back-to-top.visible {
  opacity: 0.9;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--dawn);
  border-color: var(--dawn);
}
.back-to-top span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk);
  display: block;
  line-height: 1;
  margin-top: 26px;
  text-align: center;
}
.back-to-top .arrow {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

/* Floating badge on interactive elements */
[data-glass] {
  position: relative;
}
[data-glass]::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--dawn);
  border-radius: 50%;
  opacity: 0;
  animation: badgePulse 2s ease-in-out infinite;
  animation-play-state: paused;
}
[data-glass].active::before {
  animation-play-state: running;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1); opacity: 0.8; }
}

.founder {
  background: var(--warm-dark);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), border-color 0.5s ease;
}

.founder:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 195, 64, 0.35);
}

.founder__mark {
  width: 64px;
  height: 64px;
  border: 1px solid var(--dawn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dawn);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.founder__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--chalk);
  margin-bottom: 20px;
}

.founder__creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.founder__creds li {
  color: var(--chalk);
  opacity: 0.82;
  font-weight: 300;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.founder__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.founder__email {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.founder__email:hover {
  color: var(--dawn);
  border-color: var(--dawn);
}

/* ============================================================
   EVENTS
   ============================================================ */
.events__head {
  text-align: left;
  margin-bottom: 48px;
}

.events__head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--chalk);
  margin-top: 12px;
  letter-spacing: -0.015em;
}

.events__scroller {
  display: flex;
  gap: 24px;
  padding: 8px 5% 24px;
  margin: 0 -5%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  perspective: 1100px;
}

.events__scroller::-webkit-scrollbar { display: none; }
.events__scroller { scrollbar-width: none; }

.event {
  flex: 0 0 auto;
  width: min(360px, 80vw);
  padding: 36px 32px;
  border-radius: 10px;
  background: var(--warm-dark);
  border: 1px solid var(--rule);
  scroll-snap-align: start;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease;
}

.event:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 66, 154, 0.4);
}

.event__date {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.event__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--chalk);
  margin-bottom: 14px;
}

.event__copy { color: var(--chalk); opacity: 0.82; font-weight: 300; }

/* ============================================================
   JOIN US
   ============================================================ */
.join {
  text-align: center;
}

.join__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.join__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--chalk);
  letter-spacing: -0.02em;
}

.join__sub {
  max-width: 520px;
  color: var(--chalk);
  opacity: 0.82;
  font-weight: 300;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.contact__left { text-align: left; }

.contact__email {
  display: inline-block;
  color: var(--chalk);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 16px 0 28px;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact__email:hover {
  border-color: var(--dawn);
  color: var(--dawn);
}

.contact__social {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact__social a {
  color: var(--mist);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.contact__social a:hover { color: var(--chalk); }

.contact__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--chalk);
  letter-spacing: -0.015em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--warm-dark);
  padding: 48px 5%;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--rule);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mist);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__brand img { width: 32px; height: 32px; }

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--mist);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer__nav a:hover { color: var(--chalk); }

.footer__copy {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  opacity: 0.6;
  flex-basis: 100%;
  text-align: center;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin-top: 8px;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  z-index: 1000;
  padding: 80px 20px;
  display: none;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chalk);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.mobile-menu a:hover { opacity: 0.8; }

.mobile-menu .btn-primary { padding: 14px 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid,
  .mission__inner,
  .impact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission__inner { gap: 32px; }

  .impact__rail { order: 2; margin-top: 48px; }

  .metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }

  .journey__steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .contact__social { flex-direction: column; gap: 16px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }

  .nav__toggle { display: flex; }

  .hero { padding: 120px 5% 60px; }

  .hero__content { max-width: none; }

  .hero__actions { flex-direction: column; gap: 12px; align-items: flex-start; }

  .sdg__grid { grid-template-columns: 1fr; }

  .founders__grid { grid-template-columns: 1fr; }

  .founder { padding: 36px; }

  .mission__cols { grid-template-columns: 1fr; gap: 18px; }

  .focus__grid { grid-template-columns: 1fr; }

  .story__panel { width: 84vw; height: 64vh; padding: 32px; }
  .story__panel--intro { width: 86vw; }

  .footer__inner { flex-direction: column; text-align: center; justify-content: center; }
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 2px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--chalk);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.5rem, 12vw, 3rem); }
  .hero__sub { max-width: none; margin: 18px 0 32px; }
  .btn-primary { padding: 12px 24px; }
  .metric__value { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .journey__steps { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: 1fr; }
  .about__panel { min-height: 280px; }
}

/* ============================================================
   FOCUS
   ============================================================ */
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--dawn);
  outline-offset: 3px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .cursor, .cursor-dot, .ambient__glow, .ambient__shape, .hero__glow,
  .ambient__aurora, .ambient__ring, .hero__plane {
    display: none !important;
  }

  .tilt { transform: none !important; }

  .ambient__grid, .ambient__noise { opacity: 0.02; }

  .t-sheen {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--chalk);
    -webkit-text-fill-color: currentColor;
    animation: none !important;
  }

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

  [data-reveal], [data-reveal-group] > [data-reveal], [data-stagger] {
    opacity: 1 !important;
    transform: none !important;
  }

  [data-split] .line > span {
    transform: translateY(0) !important;
  }

  .horizon__line {
    transform: translateY(-50%) scaleX(1) !important;
  }

  [data-scroll-type] { opacity: 0.9 !important; }

  .story__pin {
    position: static;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .story__track {
    transform: none !important;
    flex-wrap: nowrap;
  }

  html, body, a, button { cursor: auto; }
}

/* Cross-browser feature detection fallbacks */
.no-backdrop .nav,
.no-backdrop .mobile-menu {
  background: var(--ink);
}
.no-backdrop .nav.scrolled {
  background: rgba(12, 11, 10, 0.92);
}
.no-blend .cursor,
.no-blend .cursor-dot {
  mix-blend-mode: normal;
  background: radial-gradient(circle, rgba(255,255,255,0.9), var(--rose), transparent 70%);
}
.no-blend .hero__title em {
  mix-blend-mode: normal;
}
.no-3d .tilt,
.no-3d .hero__plane,
.no-3d .ambient__ring {
  transform: none !important;
  animation: none !important;
}

/* Micro-interactive email capture */
.email-capture {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  background: rgba(244, 240, 235, 0.02);
  border: 1px solid var(--rule);
  border-radius: 8px;
  max-width: 420px;
}
.email-capture input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--chalk);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  padding: 8px 4px;
  outline: none;
  transition: border-color 0.2s ease;
}
.email-capture input::placeholder { color: var(--mist); }
.email-capture input:focus { border-color: var(--dawn); }
.email-capture button {
  padding: 10px 20px;
  border: 1px solid var(--rose);
  background: transparent;
  color: var(--chalk);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.email-capture button:hover {
  background: var(--rose);
  color: var(--white);
}
.email-capture .success {
  display: none;
  color: var(--dawn);
  font-size: 0.85rem;
}
.email-capture.submitted .success { display: inline; }
.email-capture.submitted input,
.email-capture.submitted button { display: none; }

/* Cursor glow ripple */
.cursor-ripple {
  position: fixed;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,195,64,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  animation: rippleExpand 0.5s ease-out forwards;
}
@keyframes rippleExpand {
  to { width: 200px; height: 200px; opacity: 0; }
}
