/* ═══════════════════════════════════════════ */
/*  DESIGN TOKENS                             */
/* ═══════════════════════════════════════════ */
:root {
  --c-cream:    #FFF8F0;
  --c-warm:     #FDF2E9;
  --c-peach:    #FCDCC8;
  --c-coral:    #E8654A;
  --c-rust:     #C4421A;
  --c-navy:     #1A2744;
  --c-midnight: #0F1A2E;
  --c-teal:     #2A9D8F;
  --c-sage:     #7FB685;
  --c-gold:     #F4A836;
  --c-lavender: #B8A9E8;
  --c-sky:      #7EC8E3;
  --c-pink:     #F2A7B3;

  --ff-display: 'DM Serif Display', Georgia, serif;
  --ff-body:    'Outfit', system-ui, sans-serif;
  --ff-hand:    'Caveat', cursive;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════ */
/*  RESET & BASE                              */
/* ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  color: var(--c-navy);
  background: var(--c-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════ */
/*  UTILITIES                                 */
/* ═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════ */
/*  GRAIN OVERLAY                             */
/* ═══════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ═══════════════════════════════════════════ */
/*  NAV                                       */
/* ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(26, 39, 68, 0.06);
  padding: 0.75rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: var(--c-coral);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  transform: rotate(-3deg);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-navy);
  opacity: 0.7;
  transition: opacity 0.3s;
  position: relative;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--c-coral);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--c-coral);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}
.nav__cta:hover {
  background: var(--c-rust);
  transform: scale(1.05);
}

/* Mobile menu */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav__burger span {
  display: block;
  height: 2.5px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════ */
/*  HERO                                      */
/* ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: var(--c-peach);
  top: -10%; right: -5%;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: var(--c-sky);
  bottom: -5%; left: -5%;
  animation-delay: -4s;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: var(--c-lavender);
  top: 30%; left: 40%;
  animation-delay: -8s;
}
@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--ff-hand);
  font-size: 1.4rem;
  color: var(--c-coral);
  margin-bottom: 0.5rem;
  display: inline-block;
  transform: rotate(-2deg);
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--c-midnight);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--c-coral);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: -4px; right: -4px;
  height: 8px;
  background: var(--c-peach);
  z-index: -1;
  border-radius: 4px;
}
.hero__desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--c-navy);
  opacity: 0.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s var(--ease-spring);
}
.btn--primary {
  background: var(--c-coral);
  color: white;
  box-shadow: 0 4px 20px rgba(232, 101, 74, 0.35);
}
.btn--primary:hover {
  background: var(--c-rust);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 101, 74, 0.45);
}
.btn--outline {
  border: 2px solid var(--c-navy);
  color: var(--c-navy);
  background: transparent;
}
.btn--outline:hover {
  background: var(--c-navy);
  color: white;
  transform: translateY(-2px);
}

/* Hero visual side */
.hero__visual {
  position: relative;
}
.hero__card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3.2;
}
.hero__card {
  position: absolute;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(26, 39, 68, 0.1);
  transition: transform 0.5s var(--ease-spring);
}
.hero__card--teens {
  width: 75%;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--c-navy), #2A3D66);
  color: white;
  --card-rotate: 2deg;
  transform: rotate(var(--card-rotate));
  z-index: 2;
}
.hero__card--teens .card-emoji { font-size: 2.2rem; margin-bottom: 0.75rem; }
.hero__card--teens h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.hero__card--teens p { font-size: 0.9rem; opacity: 0.8; }

.hero__card--kids {
  width: 70%;
  bottom: 0; left: 0;
  background: linear-gradient(135deg, #FFF5E9, #FFF0DD);
  color: var(--c-navy);
  --card-rotate: -3deg;
  transform: rotate(var(--card-rotate));
  z-index: 1;
}
.hero__card:hover { --card-rotate: 0deg; transform: translateY(-6px) rotate(var(--card-rotate)); }
.hero__card--kids .card-emoji { font-size: 2.2rem; margin-bottom: 0.75rem; }
.hero__card--kids h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.hero__card--kids p { font-size: 0.9rem; opacity: 0.7; }

.hero__badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--c-coral);
  color: white;
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-hand);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 20px rgba(232, 101, 74, 0.4);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

/* ═══════════════════════════════════════════ */
/*  MISSION                                   */
/* ═══════════════════════════════════════════ */
.mission {
  padding: 8rem 0;
  position: relative;
}
.mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mission__label {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  color: var(--c-teal);
  margin-bottom: 0.75rem;
}
.mission__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.mission__text {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 1.5rem;
}
.mission__quote {
  border-left: 4px solid var(--c-coral);
  padding: 1.25rem 1.5rem;
  background: rgba(232, 101, 74, 0.06);
  border-radius: 0 12px 12px 0;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-rust);
}
.mission__visual {
  position: relative;
}
.mission__ring {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
  position: relative;
}
.mission__ring-circle {
  position: absolute;
  inset: 0;
  border: 3px dashed var(--c-peach);
  border-radius: 50%;
  animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow {
  100% { transform: rotate(360deg); }
}
.mission__ring-item {
  position: absolute;
  width: 100px; height: 100px;
  background: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  box-shadow: 0 4px 20px rgba(26, 39, 68, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease-spring);
}
.mission__ring-item:hover { transform: scale(1.1); }
.mission__ring-item span { font-size: 1.8rem; }
.mission__ring-item:nth-child(2) { top: 0; left: 50%; transform: translateX(-50%); }
.mission__ring-item:nth-child(3) { top: 50%; right: 0; transform: translateY(-50%); }
.mission__ring-item:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.mission__ring-item:nth-child(5) { top: 50%; left: 0; transform: translateY(-50%); }
.mission__ring-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  background: linear-gradient(135deg, var(--c-coral), var(--c-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 6px 30px rgba(232, 101, 74, 0.3);
}

/* ═══════════════════════════════════════════ */
/*  CONCEPT                                   */
/* ═══════════════════════════════════════════ */
.concept {
  padding: 6rem 0 8rem;
  background: var(--c-midnight);
  color: white;
  position: relative;
  overflow: hidden;
}
.concept::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 101, 74, 0.15), transparent 70%);
  border-radius: 50%;
}
.concept__header {
  text-align: center;
  margin-bottom: 4rem;
}
.concept__label {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.concept__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}
.concept__sub {
  font-size: 1.1rem;
  opacity: 0.6;
  max-width: 640px;
  margin: 0 auto;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.concept__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(4px);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.concept__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}
.concept__card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.concept__card h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.concept__card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.65;
}
.concept__card-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.tag--teens { background: rgba(42, 157, 143, 0.2); color: var(--c-teal); }
.tag--kids  { background: rgba(244, 168, 54, 0.2); color: var(--c-gold); }
.tag--all   { background: rgba(184, 169, 232, 0.2); color: var(--c-lavender); }

/* connector line between the two columns */
.concept__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.concept__connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-gold));
  position: relative;
}
.concept__connector-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-coral);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════ */
/*  TRACKS (Two Programs)                     */
/* ═══════════════════════════════════════════ */
.tracks {
  padding: 8rem 0;
}
.tracks__header {
  text-align: center;
  margin-bottom: 4rem;
}
.tracks__label {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  color: var(--c-coral);
  margin-bottom: 0.5rem;
}
.tracks__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.tracks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.track {
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring);
}
.track:hover { transform: translateY(-4px); }

.track--senior {
  background: linear-gradient(160deg, var(--c-navy), #243656);
  color: white;
}
.track--junior {
  background: linear-gradient(160deg, #FFF7EE, #FFECD2);
  color: var(--c-navy);
}

.track__ages {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.track--senior .track__ages { background: rgba(42, 157, 143, 0.25); color: var(--c-teal); }
.track--junior .track__ages { background: rgba(232, 101, 74, 0.15); color: var(--c-coral); }

.track__icon { font-size: 3rem; margin-bottom: 1rem; }
.track h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.track__desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 2rem;
}
.track__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.track__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.track__features li::before {
  content: '✦';
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.track--senior .track__features li::before { color: var(--c-teal); }
.track--junior .track__features li::before { color: var(--c-coral); }

/* ═══════════════════════════════════════════ */
/*  FEATURES BENTO                            */
/* ═══════════════════════════════════════════ */
.features {
  padding: 6rem 0 8rem;
  background: var(--c-warm);
}
.features__header {
  text-align: center;
  margin-bottom: 4rem;
}
.features__label {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  color: var(--c-teal);
  margin-bottom: 0.5rem;
}
.features__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}
.bento__item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.05);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.bento__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(26, 39, 68, 0.1);
}
.bento__item--wide { grid-column: span 2; }
.bento__item--tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }

.bento__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.bento__icon--coral  { background: rgba(232, 101, 74, 0.1); }
.bento__icon--teal   { background: rgba(42, 157, 143, 0.1); }
.bento__icon--gold   { background: rgba(244, 168, 54, 0.1); }
.bento__icon--lav    { background: rgba(184, 169, 232, 0.1); }
.bento__icon--sky    { background: rgba(126, 200, 227, 0.1); }
.bento__icon--pink   { background: rgba(242, 167, 179, 0.1); }
.bento__icon--sage   { background: rgba(127, 182, 133, 0.1); }

.bento__item h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.bento__item p {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.7;
}
.bento__stat {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--c-coral);
  line-height: 1;
  margin-top: 1rem;
}
.bento__stat-label {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 0.3rem;
}

/* ═══════════════════════════════════════════ */
/*  A DAY AT SUPACADEMY (TIMELINE)            */
/* ═══════════════════════════════════════════ */
.day {
  padding: 8rem 0;
}
.day__header {
  text-align: center;
  margin-bottom: 4rem;
}
.day__label {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.day__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, var(--c-coral), var(--c-teal), var(--c-gold));
  border-radius: 3px;
  transform: translateX(-50%);
}
.timeline__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.timeline__item:nth-child(even) { flex-direction: row-reverse; }

.timeline__time {
  flex: 0 0 auto;
  width: 80px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-coral);
}
.timeline__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: var(--c-coral);
  border: 3px solid var(--c-cream);
  border-radius: 50%;
  z-index: 1;
}
.timeline__card {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(26, 39, 68, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 320px;
}
.timeline__item:nth-child(odd) .timeline__card { margin-right: auto; }
.timeline__item:nth-child(even) .timeline__card { margin-left: auto; }

.timeline__emoji { font-size: 1.8rem; flex-shrink: 0; }
.timeline__card h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.timeline__card p {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════ */
/*  FOUNDER                                   */
/* ═══════════════════════════════════════════ */
.founder {
  padding: 6rem 0 8rem;
  background: linear-gradient(160deg, var(--c-navy), var(--c-midnight));
  color: white;
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.2), transparent 70%);
  border-radius: 50%;
}
.founder__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.founder__portrait {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 20px;
}
.founder__label {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.founder__name {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.founder__role {
  font-size: 1rem;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
.founder__bio {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 1.5rem;
}
.founder__credentials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.founder__credentials li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════ */
/*  CTA                                       */
/* ═══════════════════════════════════════════ */
.cta {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(6rem, 15vw, 14rem);
  color: var(--c-peach);
  opacity: 0.25;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.cta__content {
  position: relative;
  z-index: 1;
}
.cta__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta__desc {
  font-size: 1.1rem;
  opacity: 0.65;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.cta__emphasis {
  font-family: var(--ff-display);
  color: var(--c-coral);
}
.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════ */
/*  FOOTER                                    */
/* ═══════════════════════════════════════════ */
.footer {
  background: var(--c-midnight);
  color: white;
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__brand-icon {
  width: 32px; height: 32px;
  background: var(--c-coral);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transform: rotate(-3deg);
}
.footer__desc {
  font-size: 0.9rem;
  opacity: 0.5;
  line-height: 1.7;
  max-width: 300px;
}
.footer h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer ul a {
  font-size: 0.9rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.footer ul a:hover { opacity: 1; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════ */
/*  RESPONSIVE                                */
/* ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { max-width: 400px; margin: 0 auto; }
  .mission__inner { grid-template-columns: 1fr; }
  .mission__visual { order: -1; max-width: 350px; margin: 0 auto; }
  .concept__grid { grid-template-columns: 1fr; }
  .tracks__grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--wide { grid-column: span 1; }
  .bento__item--tall { grid-row: span 1; }
  .founder__inner { grid-template-columns: 1fr; text-align: center; }
  .founder__portrait { max-width: 250px; margin: 0 auto; }
  .founder__credentials { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav__links { display: none; }
  .nav__links--open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(26, 39, 68, 0.1);
  }
  .nav__burger { display: flex; }
  .hero { padding-top: 6rem; min-height: auto; }
  .hero__visual { max-width: 100%; }
  .hero__content { gap: 1.5rem; }

  /* Redesign card stack: side-by-side flow instead of absolute overlap */
  .hero__card-stack {
    aspect-ratio: unset;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: stretch;
    position: relative;
  }
  .hero__card {
    position: relative;
    padding: 1.25rem;
    border-radius: 14px;
    --card-rotate: 0deg;
    transform: none;
    flex: 1;
  }
  .hero__card:hover { transform: none; }
  .hero__card--teens { width: auto; top: auto; right: auto; }
  .hero__card--kids { width: auto; bottom: auto; left: auto; }
  .hero__card--teens .card-emoji,
  .hero__card--kids .card-emoji { font-size: 1.6rem; margin-bottom: 0.4rem; }
  .hero__card--teens h3,
  .hero__card--kids h3 { font-size: 1rem; margin-bottom: 0.3rem; }
  .hero__card--teens p,
  .hero__card--kids p { font-size: 0.8rem; }

  /* Center badge at the junction of the two cards */
  .hero__badge {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    font-size: 0.8rem;
    margin: 0;
    z-index: 3;
  }

  .hero__title { margin-bottom: 1rem; }
  .hero__desc { font-size: 1rem; margin-bottom: 1.5rem; }

  /* Redesign mission ring: 2x2 grid instead of orbital diagram */
  .mission__visual { max-width: 100%; }
  .mission__ring {
    max-width: 100%;
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .mission__ring-circle { display: none; }
  .mission__ring-center {
    position: relative;
    top: auto; left: auto;
    transform: none;
    width: 100px; height: 100px;
    font-size: 1rem;
  }
  .mission__ring-item {
    position: relative;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    transform: none !important;
    width: auto; height: auto;
    padding: 0.75rem 1rem;
    flex-direction: row;
    gap: 0.5rem;
  }
  .mission__ring-item span { font-size: 1.4rem; }
  /* Layout the 4 items as a 2x2 grid */
  .mission__ring {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .mission__ring-center {
    grid-column: 1 / -1;
  }

  .timeline::before { left: 20px; }
  .timeline__item,
  .timeline__item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }
  .timeline__dot { left: 20px; }
  .timeline__card { max-width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
