/* =====================================================================
   100 YOUNG MINDS — World Record Art Event
   Design system + landing page styles
   Warm, celebratory, cinematic. Mobile-first.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Core palette */
  --navy:        #16162b;
  --navy-2:      #241a45;
  --purple:      #4a2c7a;
  --orange:      #FF6B35;
  --orange-deep: #f4511e;
  --gold:        #FFD700;
  --teal:        #26C6DA;
  --magenta:     #EC407A;
  --cream:       #FAF7F2;
  --cream-2:     #f2ece1;
  --ink:         #24222e;
  --ink-soft:    #5a566a;
  --white:       #ffffff;

  /* Semantic */
  --bg:          var(--cream);
  --text:        var(--ink);
  --text-soft:   var(--ink-soft);

  /* Gradients */
  --grad-hero:   radial-gradient(120% 120% at 80% 0%, #6a2d8f 0%, #3a1f63 42%, var(--navy) 100%);
  --grad-flame:  linear-gradient(135deg, var(--orange) 0%, var(--magenta) 60%, #b5179e 100%);
  --grad-warm:   linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  --grad-text:   linear-gradient(100deg, var(--gold) 0%, var(--orange) 45%, var(--magenta) 100%);
  --grad-cta:    radial-gradient(120% 140% at 20% 0%, #ff8a5c 0%, var(--orange) 40%, var(--magenta) 100%);

  /* Type */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing / layout */
  --max:      1180px;
  --gutter:   clamp(1.25rem, 5vw, 4rem);
  --sect-y:   clamp(4.5rem, 11vw, 9rem);
  --radius:   22px;
  --radius-sm:14px;

  /* Shadows */
  --shadow-sm: 0 4px 18px rgba(36, 34, 46, 0.08);
  --shadow-md: 0 16px 44px rgba(36, 34, 46, 0.12);
  --shadow-lg: 0 30px 80px rgba(74, 44, 122, 0.24);
  --shadow-glow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; }
sup.ast { color: var(--orange); font-weight: 700; }
em { font-style: italic; }
::selection { background: var(--orange); color: #fff; }

/* ---------- Reusable ---------- */
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 1rem;
}
.kicker--light { color: var(--gold); }

.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 5.2vw, 3.3rem); font-weight: 800; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn__arrow { transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: scale(.97); }

.btn--primary { background: var(--grad-warm); color: #3a1500; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(255, 107, 53, .55); }

.btn--white { background: #fff; color: var(--orange-deep); box-shadow: 0 16px 44px rgba(0,0,0,.25); }
.btn--white:hover { transform: translateY(-3px); }

.btn--dark { background: var(--navy-2); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn--ghost-dark { background: transparent; color: var(--ink); border: 1.5px solid rgba(36,34,46,.2); }
.btn--ghost-dark:hover { border-color: var(--orange); color: var(--orange-deep); }

.btn--lg { padding: 1.15rem 2rem; font-size: 1.08rem; }
.btn--sm { padding: .7rem 1.15rem; font-size: .9rem; }
.play-icon { font-size: .8em; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem var(--gutter);
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav--scrolled {
  background: rgba(250, 247, 242, .82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(36,34,46,.06), var(--shadow-sm);
  padding-top: .7rem; padding-bottom: .7rem;
}
.nav__brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; color: #fff; transition: color .35s; }
.nav--scrolled .nav__brand { color: var(--ink); }
.nav__name { font-size: 1.15rem; letter-spacing: -.02em; }
.nav__mark {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background:
    conic-gradient(from 45deg, var(--orange), var(--gold), var(--teal), var(--magenta), var(--orange));
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.25);
}
.nav__links { display: none; margin-left: auto; gap: 1.8rem; font-weight: 500; font-size: .95rem; }
.nav__links a { color: rgba(255,255,255,.85); transition: color .25s; }
.nav--scrolled .nav__links a { color: var(--text-soft); }
.nav__links a:hover { color: var(--orange); }
.nav__cta { display: none; }
.nav__burger { margin-left: auto; background: none; border: none; display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: background .35s, transform .3s, opacity .3s; }
.nav--scrolled .nav__burger span { background: var(--ink); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* Mobile menu */
.nav__mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--grad-hero);
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.nav__mobile.open { transform: translateY(0); }
.nav__mobile a { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; }
.nav__mobile .btn { align-self: flex-start; margin-top: 1rem; }

/* =====================================================================
   1. HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem var(--gutter) 5rem;
  background: var(--grad-hero);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* animated colour panel grid behind hero */
.hero__grid {
  position: absolute; inset: -10% -5% auto -5%;
  height: 78%;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: clamp(6px, 1vw, 12px);
  opacity: .5;
  transform: perspective(900px) rotateX(52deg) translateY(-6%) scale(1.25);
  transform-origin: top center;
  z-index: -2;
  mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 92%);
}
.hero__cell { border-radius: 5px; will-change: transform, opacity; }

.hero__glow {
  position: absolute; z-index: -1;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  left: 50%; top: 42%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,107,53,.35), transparent 62%);
  filter: blur(30px); pointer-events: none;
}

.hero__inner { max-width: var(--max); width: 100%; margin: 0 auto; position: relative; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(.78rem,2.6vw,.95rem);
  letter-spacing: .04em;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: .5rem 1rem; border-radius: 100px; backdrop-filter: blur(6px);
  margin-bottom: 1.6rem;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(38,198,218,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(38,198,218,.6);} 70%{box-shadow:0 0 0 10px rgba(38,198,218,0);} 100%{box-shadow:0 0 0 0 rgba(38,198,218,0);} }

.hero__title { font-size: clamp(2.6rem, 9vw, 6rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 1.5rem; }
.hero__title .line { display: block; }
.hero__title--accent {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__title--sub-line { color: rgba(255,255,255,.55); font-weight: 700; font-size: .62em; margin-top: .35rem; }

.hero__sub { max-width: 560px; font-size: clamp(1.05rem, 3vw, 1.3rem); color: rgba(255,255,255,.86); margin-bottom: 2.2rem; }
.hero__sub strong { color: #fff; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }
.hero__note { font-size: .9rem; color: rgba(255,255,255,.6); }

.hero__scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
}
.hero__scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.hero__scroll-mouse::before { content:''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 3px; animation: scrollwheel 1.8s infinite; }
@keyframes scrollwheel { 0%{opacity:0; transform: translate(-50%,0);} 40%{opacity:1;} 80%{opacity:0; transform: translate(-50%,12px);} 100%{opacity:0;} }

/* =====================================================================
   2. VIDEO
   ===================================================================== */
.video { padding: var(--sect-y) var(--gutter); background: var(--cream); }
.video__frame { max-width: 940px; margin: 0 auto; }
.video__poster {
  position: relative; width: 100%; aspect-ratio: 16/9; border: none; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.video__poster-grid { position: absolute; inset: 0; z-index: 0; }
.video__poster::after { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,22,43,.15), rgba(22,22,43,.55)); z-index: 1; }
.video__play {
  position: relative; z-index: 2;
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--orange-deep);
  display: grid; place-items: center; font-size: 1.8rem; padding-left: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35); transition: transform .3s;
}
.video__poster:hover .video__play { transform: scale(1.08); }
.video__poster-label { position: absolute; z-index: 2; bottom: 1.3rem; left: 1.5rem; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }

/* =====================================================================
   3. HOW IT WORKS
   ===================================================================== */
.how { padding: var(--sect-y) var(--gutter); background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.how__track { max-width: var(--max); margin: 0 auto; display: grid; gap: 1.4rem; }
.step {
  display: flex; gap: 1.4rem; align-items: flex-start;
  background: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(36,34,46,.05);
}
.step__num {
  flex: none; width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: #fff;
  background: var(--grad-flame); box-shadow: var(--shadow-glow);
}
.step__body h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: .4rem; }
.step__body p { color: var(--text-soft); }
.step__connector { width: 3px; height: 26px; margin-left: calc(clamp(1.5rem,4vw,2.2rem) + 27px); background: linear-gradient(var(--orange), transparent); border-radius: 3px; }

@media (min-width: 860px) {
  .how__track { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0; }
  .step { flex-direction: column; text-align: center; align-items: center; height: 100%; }
  .step__num { width: 66px; height: 66px; }
  .step__connector { width: auto; height: 3px; margin: 0; align-self: center; min-width: 40px; background: linear-gradient(90deg, var(--orange), var(--magenta)); }
}

/* =====================================================================
   ✦ THE UNVEIL
   ===================================================================== */
.unveil { position: relative; height: 300vh; background: var(--navy); }
.unveil__sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 30%, #2a1c52 0%, var(--navy) 70%);
}
.unveil__mosaic {
  position: absolute; inset: 0; margin: auto;
  width: min(78vw, 560px); height: min(78vw, 560px);
  display: grid; grid-template-columns: repeat(10, 1fr); grid-template-rows: repeat(10, 1fr);
  gap: 3px; border-radius: 14px;
}
.unveil__cell { border-radius: 3px; will-change: transform, opacity; }
.unveil__veil {
  position: relative; z-index: 3; text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding: var(--gutter); max-width: 620px;
}
.unveil__q {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(5rem, 22vw, 12rem);
  line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 8px 40px rgba(255,107,53,.4));
}
.unveil__caption { display: flex; flex-direction: column; gap: .8rem; }
.unveil__headline { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 5vw, 2.6rem); line-height: 1.15; }
.unveil__sub { color: rgba(255,255,255,.7); font-size: clamp(1rem, 2.6vw, 1.15rem); max-width: 460px; margin: 0 auto; }

/* =====================================================================
   4. RECEIVE (cards)
   ===================================================================== */
.receive { padding: var(--sect-y) var(--gutter); background: var(--cream); }
.cards { max-width: var(--max); margin: 0 auto; display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(36,34,46,.05);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.card p { color: var(--text-soft); font-size: .97rem; }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.2rem;
  display: block; position: relative;
  background: var(--grad-warm);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
/* colourful icon tints */
.card__icon--cert  { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.card__icon--brush { background: linear-gradient(135deg, var(--magenta), #b5179e); }
.card__icon--media { background: linear-gradient(135deg, var(--teal), #1e88e5); }
.card__icon--star  { background: linear-gradient(135deg, var(--orange), var(--magenta)); }
.card__icon--kit   { background: linear-gradient(135deg, #7c4dff, var(--purple)); }
.card__icon--photo { background: linear-gradient(135deg, var(--teal), var(--gold)); }
.card__icon::after {
  content:''; position: absolute; inset: 0;
  background: #fff; -webkit-mask-size: 60%; mask-size: 60%; -webkit-mask-position: center; mask-position: center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.card__icon--cert::after  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='M15.5 13.5 17 22l-5-3-5 3 1.5-8.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='M15.5 13.5 17 22l-5-3-5 3 1.5-8.5'/%3E%3C/svg%3E"); }
.card__icon--brush::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.06 11.9 3 18v3h3l6.1-6.06'/%3E%3Cpath d='M20.7 6.3a2 2 0 0 0-2.83 0l-8 8 2.83 2.83 8-8a2 2 0 0 0 0-2.83Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.06 11.9 3 18v3h3l6.1-6.06'/%3E%3Cpath d='M20.7 6.3a2 2 0 0 0-2.83 0l-8 8 2.83 2.83 8-8a2 2 0 0 0 0-2.83Z'/%3E%3C/svg%3E"); }
.card__icon--media::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2M12 19v3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2M12 19v3'/%3E%3C/svg%3E"); }
.card__icon--star::after  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14l-5-4.87 6.91-1.01L12 2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14l-5-4.87 6.91-1.01L12 2Z'/%3E%3C/svg%3E"); }
.card__icon--kit::after   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 7h20v13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7Z'/%3E%3Cpath d='M16 7V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2M2 12h20'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 7h20v13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7Z'/%3E%3Cpath d='M16 7V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2M2 12h20'/%3E%3C/svg%3E"); }
.card__icon--photo::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2Z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2Z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E"); }

.receive__foot { max-width: 720px; margin: 2.5rem auto 0; text-align: center; font-size: .9rem; color: var(--text-soft); }

/* =====================================================================
   5. STATS
   ===================================================================== */
.stats { background: var(--grad-flame); color: #fff; padding: clamp(2.5rem,7vw,4.5rem) var(--gutter); }
.stats__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; text-align: center; }
@media (min-width: 780px) { .stats__inner { grid-template-columns: repeat(4,1fr); } }
.stat__num { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem, 7vw, 3.6rem); line-height: 1; letter-spacing: -.03em; }
.stat__unit { font-size: .5em; margin-left: .1em; }
.stat__label { display: block; margin-top: .5rem; font-size: .92rem; color: rgba(255,255,255,.85); font-weight: 500; }

/* =====================================================================
   6. MENTOR
   ===================================================================== */
.mentor { padding: var(--sect-y) var(--gutter); background: var(--navy); color: #fff; }
.mentor__inner { max-width: var(--max); margin: 0 auto; display: grid; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (min-width: 860px) { .mentor__inner { grid-template-columns: .85fr 1fr; } }
.mentor__photo-frame { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.mentor__photo-ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, var(--purple), var(--navy-2));
}
.mentor__photo-ph::before { content:''; position: absolute; inset: 0; background: conic-gradient(from 0deg, transparent, rgba(255,107,53,.18), transparent 40%); }
.mentor__photo-initial { font-family: var(--font-display); font-weight: 900; font-size: 9rem; color: rgba(255,255,255,.14); }
.mentor__badge { position: absolute; bottom: 1rem; left: 1rem; background: var(--gold); color: #3a1500; font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: .5rem 1rem; border-radius: 100px; }
.mentor__body h2 { font-size: clamp(1.8rem,4.5vw,2.8rem); font-weight: 800; margin-bottom: 1.6rem; }
.mentor__body h2 em { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; }
.mentor__creds { list-style: none; display: grid; gap: .9rem; margin-bottom: 2rem; }
.mentor__creds li { padding-left: 1.6rem; position: relative; color: rgba(255,255,255,.82); }
.mentor__creds li::before { content:''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.mentor__creds strong { color: #fff; font-family: var(--font-display); }

/* =====================================================================
   7. SPONSORS
   ===================================================================== */
.sponsors { padding: var(--sect-y) var(--gutter); background: var(--cream-2); }
.sponsors__grid { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 720px) { .sponsors__grid { grid-template-columns: repeat(3,1fr); } }
.sponsor-slot {
  aspect-ratio: 16/9; border-radius: var(--radius-sm);
  border: 2px dashed rgba(36,34,46,.16); background: rgba(255,255,255,.6);
  display: grid; place-items: center; text-align: center;
  color: var(--text-soft); font-weight: 600; font-size: .92rem;
}
.sponsor-slot--cta { border-style: solid; border-color: var(--orange); background: var(--grad-warm); color: #3a1500; font-family: var(--font-display); font-weight: 700; }
.sponsors__foot { text-align: center; margin-top: 2.5rem; }

/* =====================================================================
   8. FAQ
   ===================================================================== */
.faq { padding: var(--sect-y) var(--gutter); background: var(--cream); }
.faq__list { max-width: 760px; margin: 0 auto; display: grid; gap: 1rem; }
.faq__item {
  background: #fff; border-radius: var(--radius-sm); border: 1px solid rgba(36,34,46,.06);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.5rem; color: var(--orange); transition: transform .3s; flex: none; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 1.5rem 1.4rem; color: var(--text-soft); }
.faq__foot { text-align: center; margin-top: 2.5rem; }

/* =====================================================================
   9. FINAL CTA
   ===================================================================== */
.final-cta {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(4rem,10vw,7rem) var(--gutter); text-align: center;
  background: var(--grad-cta); color: #fff;
}
.final-cta__grid { position: absolute; inset: 0; z-index: -1; opacity: .22; display: grid; grid-template-columns: repeat(12, 1fr); }
.final-cta__grid span { aspect-ratio: 1; }
.final-cta__inner { max-width: 680px; margin: 0 auto; position: relative; }
.final-cta__inner h2 { font-size: clamp(2rem,6vw,3.6rem); font-weight: 900; margin-bottom: 1rem; text-shadow: 0 4px 30px rgba(0,0,0,.2); }
.final-cta__inner p { font-size: clamp(1.05rem,3vw,1.25rem); color: rgba(255,255,255,.92); margin-bottom: 2rem; }
.final-cta__reassure { font-size: .9rem !important; color: rgba(255,255,255,.8) !important; margin-top: 1.4rem !important; margin-bottom: 0 !important; }

/* =====================================================================
   10. FOOTER
   ===================================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding: clamp(3rem,7vw,4.5rem) var(--gutter) 2rem; }
.footer__inner { max-width: var(--max); margin: 0 auto; display: grid; gap: 2.5rem; }
@media (min-width: 780px) { .footer__inner { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer__brand { display: flex; align-items: center; gap: .8rem; }
.footer__org { color: #fff; font-size: 1.05rem; }
.footer__loc { font-size: .9rem; }
.footer__nav { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav a { transition: color .25s; }
.footer__nav a:hover { color: var(--orange); }
.footer__contact a { color: var(--teal); font-weight: 600; }
.footer__tags { margin-top: .8rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer__disclosure { max-width: var(--max); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer__copy { max-width: var(--max); margin: 1.2rem auto 0; font-size: .8rem; color: rgba(255,255,255,.4); }

/* =====================================================================
   Reveal animation base state (JS toggles .is-in)
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(34px); }
.reveal-ready [data-reveal] { transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .pulse-dot, .hero__scroll-mouse::before, .mentor__photo-ph::before { animation: none !important; }
}
