/* ====================================================
   MOSAIC KIDS v2 — Coral + Sky + Yellow redesign
   Fraunces (display) + Nunito (body)
   Mixed-age families, balanced playful/professional
   ==================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: #1A1A2E;
  background: #FFFBF7;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ====== CSS VARIABLES ====== */
:root {
  --coral:       #F25C3D;
  --coral-light: #FF8166;
  --coral-pale:  #FDEAE5;
  --coral-faint: #FFF4F1;
  --sky:         #2BAADF;
  --sky-light:   #5EC3F0;
  --sky-pale:    #D6F0FB;
  --sky-faint:   #EDF8FD;
  --yellow:      #FFD23F;
  --yellow-light:#FFE07A;
  --yellow-pale: #FFF6CC;
  --yellow-faint:#FFFBEE;
  --mint:        #3ECFAB;
  --mint-pale:   #D4F5EE;
  --purple:      #7B5EA7;
  --purple-pale: #EDE5F7;
  --ink:         #1A1A2E;
  --ink-mid:     #4A4A6A;
  --ink-muted:   #8888AA;
  --ink-light:   #E8E8F2;
  --cream:       #FFFBF7;
  --white:       #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', sans-serif;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-pill: 100px;
  --shadow-soft: 0 4px 28px rgba(26,26,46,0.09);
  --shadow-card: 0 2px 14px rgba(26,26,46,0.07);
  --shadow-pop:  0 8px 32px rgba(242,92,61,0.2);
  --transition:  0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ====== TYPOGRAPHY ====== */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
p  { line-height: 1.72; }
a  { color: inherit; text-decoration: none; }

/* ====== MOSAIC PATTERNS ====== */
.mosaic-dots {
  background-image: radial-gradient(circle, rgba(242,92,61,0.12) 1.5px, transparent 1.5px),
                    radial-gradient(circle, rgba(43,170,223,0.1) 1.5px, transparent 1.5px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 7px 7px;
}
.mosaic-tiles {
  background-image:
    linear-gradient(45deg, rgba(255,210,63,0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(43,170,223,0.07) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(242,92,61,0.07) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(62,207,171,0.06) 75%);
  background-size: 32px 32px;
  background-position: 0 0, 0 16px, 16px -16px, -16px 0px;
}
.wavy-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
.wavy-divider svg { display: block; width: 100%; }

/* ====== LAYOUT ====== */
.container       { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section         { padding: 88px 0; }
.section-sm      { padding: 56px 0; }
.grid-2          { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.grid-3          { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-4          { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.text-center     { text-align: center; }
.flex-center     { display: flex; align-items: center; justify-content: center; }
.mt-8  { margin-top:8px; }  .mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; } .mt-40 { margin-top:40px; }
.mt-48 { margin-top:48px; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 0.97rem; font-weight: 800;
  cursor: pointer; border: 2.5px solid transparent;
  transition: var(--transition); text-decoration: none; white-space: nowrap; letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; }
.btn-coral {
  background: var(--coral); color: #fff; border-color: var(--coral);
  box-shadow: 0 4px 16px rgba(242,92,61,0.3);
}
.btn-coral:hover {
  background: #D94A2C; border-color: #D94A2C;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,92,61,0.38);
}
.btn-sky {
  background: var(--sky); color: #fff; border-color: var(--sky);
  box-shadow: 0 4px 16px rgba(43,170,223,0.28);
}
.btn-sky:hover { background: #1A90C0; border-color: #1A90C0; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--coral); border-color: var(--coral);
}
.btn-outline:hover { background: var(--coral-faint); transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--coral); border-color: #fff;
  box-shadow: 0 4px 16px rgba(255,255,255,0.3);
}
.btn-white:hover { background: var(--coral-pale); transform: translateY(-2px); }
.btn-yellow {
  background: var(--yellow); color: var(--ink); border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(255,210,63,0.4);
}
.btn-yellow:hover { background: #E8BB30; transform: translateY(-2px); }

/* ====== NAVIGATION ====== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,251,247,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(242,92,61,0.08);
  overflow: visible;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 10px 24px;
  min-height: 82px; display: flex; align-items: center; justify-content: space-between;
  overflow: visible;
}
/* Logo */
.logo { display: flex; align-items: center; gap: 11px; }
.brand-logo {
  display: block;
  max-height: 56px;
  height: auto;
  width: auto;
  vertical-align: middle;
}
.logo-mark {
  width: 40px; height: 40px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3px;
}
.logo-mark .t { border-radius: 4px; transition: var(--transition); }
.logo-mark .t:nth-child(1) { background: var(--coral); }
.logo-mark .t:nth-child(2) { background: var(--yellow); border-radius: 50%; }
.logo-mark .t:nth-child(3) { background: var(--sky); }
.logo-mark .t:nth-child(4) { background: var(--sky-light); }
.logo-mark .t:nth-child(5) { background: var(--coral-pale); border-radius: 4px; }
.logo-mark .t:nth-child(6) { background: var(--mint); }
.logo-mark .t:nth-child(7) { background: var(--yellow-pale); }
.logo-mark .t:nth-child(8) { background: var(--coral-light); }
.logo-mark .t:nth-child(9) { background: var(--purple); border-radius: 50%; }
.logo-text { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); font-weight: 600; }
.logo-text span { color: var(--coral); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 700; color: var(--ink-mid);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--coral); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { transform: scaleX(1); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: var(--transition); display: block; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--cream); border-bottom: 2px solid rgba(242,92,61,0.1);
  padding: 24px; z-index: 99; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 700; color: var(--ink-mid);
  padding: 12px 0; border-bottom: 1px solid var(--ink-light);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ====== PAGE SYSTEM ====== */
.page { display: none; }
.page.active { display: block; }

/* ====== SECTION LABELS ====== */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 900; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 14px;
}
.label-coral { color: var(--coral); }
.label-sky   { color: var(--sky); }
.label-mint  { color: var(--mint); }
.section-label .lbar {
  display: block; width: 22px; height: 3px;
  border-radius: 2px; background: currentColor;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; max-width: 580px; margin-left: auto; margin-right: auto; }
.section-header h2 { color: var(--ink); margin-bottom: 12px; }
.section-header p  { color: var(--ink-mid); font-size: 1.05rem; }

/* ====== HERO ====== */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 72px 0 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #FFFBF7 0%, #FFF4F1 35%, #EDF8FD 70%, #FFFBEE 100%);
  z-index: 0;
}
/* Floating decorative blobs */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.35; z-index: 0;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 { width: 340px; height: 340px; background: var(--coral-light); top: -80px; right: -60px; animation-delay: 0s; }
.blob-2 { width: 260px; height: 260px; background: var(--sky-light); bottom: 40px; right: 200px; animation-delay: 3s; }
.blob-3 { width: 200px; height: 200px; background: var(--yellow); top: 200px; left: -60px; animation-delay: 1.5s; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(10px,-14px) scale(1.04); }
  66%      { transform: translate(-8px,8px) scale(0.97); }
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-pale); color: #7A5A10;
  font-size: 0.82rem; font-weight: 800; padding: 7px 16px;
  border-radius: var(--r-pill); margin-bottom: 22px;
  border: 1.5px solid var(--yellow-light); letter-spacing: 0.03em;
}
.hero-badge .blink {
  width: 8px; height: 8px; background: var(--coral);
  border-radius: 50%; animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.75);} }
.hero h1 { color: var(--ink); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--coral); }
.hero h1 strong { color: var(--sky); font-weight: 900; }
.hero .lead {
  font-size: 1.12rem; color: var(--ink-mid); max-width: 500px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  padding-top: 28px; border-top: 1.5px dashed rgba(26,26,46,0.1);
}
.trust-avatars {
  display: flex;
}
.trust-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -8px; display: flex;
  align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #fff;
}
.trust-avatar:first-child { margin-left: 0; }
.ta-1 { background: var(--coral); }
.ta-2 { background: var(--sky); }
.ta-3 { background: var(--mint); }
.ta-4 { background: var(--purple); }
.trust-text { font-size: 0.82rem; color: var(--ink-muted); font-weight: 700; }
.trust-text strong { color: var(--ink); }

/* Hero card */
.hero-visual { display: flex; justify-content: flex-end; }
.hero-card {
  width: 100%; max-width: 360px;
  background: #fff; border-radius: var(--r-xl);
  padding: 28px; box-shadow: 0 20px 60px rgba(26,26,46,0.12);
  position: relative;
}
.hero-card-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.card-day-badge {
  background: var(--sky-pale); color: var(--sky);
  font-size: 0.72rem; font-weight: 900; padding: 4px 10px;
  border-radius: var(--r-pill); letter-spacing: 0.05em; text-transform: uppercase;
  margin-left: auto;
}
.child-name { font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.child-prog  { font-size: 0.75rem; color: var(--ink-muted); font-weight: 600; }
.card-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.88rem; color: #fff; flex-shrink: 0;
}
.av-coral { background: linear-gradient(135deg,var(--coral),var(--coral-light)); }
.av-sky   { background: linear-gradient(135deg,var(--sky),var(--sky-light)); }
.av-mint  { background: linear-gradient(135deg,var(--mint),#7EEFD6); }
/* progress bars */
.prog-item { margin-bottom: 14px; }
.prog-row  { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--ink-mid); font-weight: 700; margin-bottom: 6px; }
.prog-track { height: 10px; background: var(--ink-light); border-radius: var(--r-pill); overflow: hidden; }
.prog-fill  { height: 100%; border-radius: var(--r-pill); animation: growBar 1.4s ease-out forwards; transform-origin: left; }
@keyframes growBar { from { width: 0; } }
.pf-coral { background: linear-gradient(90deg,var(--coral),var(--coral-light)); }
.pf-sky   { background: linear-gradient(90deg,var(--sky),var(--sky-light)); }
.pf-yellow{ background: linear-gradient(90deg,#E8BB30,var(--yellow-light)); }
.today-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--mint-pale); border-radius: var(--r-md);
  padding: 10px 14px; margin-top: 6px;
}
.today-chip .chip-dot { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; flex-shrink: 0; }
.today-chip span { font-size: 0.78rem; color: var(--ink-mid); font-weight: 700; }
/* Floating badges on card */
.float-badge {
  position: absolute; background: #fff; border-radius: var(--r-md);
  padding: 8px 14px; box-shadow: var(--shadow-soft);
  font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; gap: 6px;
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }
.fb-1 { top: -14px; left: -20px; color: var(--coral); animation-delay: 0s; }
.fb-2 { bottom: -14px; right: -14px; color: var(--sky); animation-delay: 2s; }
.fb-dot { width: 8px; height: 8px; border-radius: 50%; }
.fb-dot-coral { background: var(--coral); }
.fb-dot-sky   { background: var(--sky); }

/* ====== PROBLEM SECTION ====== */
.problem-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4E 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.problem-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle, var(--coral) 1px, transparent 1px),
                    radial-gradient(circle, var(--sky) 1px, transparent 1px);
  background-size: 36px 36px, 18px 18px;
  background-position: 0 0, 9px 9px;
}
.prob-inner { position: relative; z-index: 1; text-align: center; }
.prob-num {
  font-family: var(--font-display); font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--coral-light), var(--yellow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}
.prob-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 2.8vw, 1.65rem); color: rgba(255,255,255,0.88);
  max-width: 700px; margin: 0 auto 20px; line-height: 1.4;
}
.prob-sub { font-size: 0.98rem; color: rgba(255,255,255,0.48); max-width: 520px; margin: 0 auto; }
.prob-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.prob-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 800; border: 1.5px solid;
}
.pp-coral { background: rgba(242,92,61,0.12); color: var(--coral-light); border-color: rgba(242,92,61,0.25); }
.pp-sky   { background: rgba(43,170,223,0.12); color: var(--sky-light);   border-color: rgba(43,170,223,0.25); }
.pp-yellow{ background: rgba(255,210,63,0.12); color: var(--yellow-light); border-color: rgba(255,210,63,0.25); }

/* ====== FEATURE CARDS ====== */
.feat-card {
  background: #fff; border-radius: var(--r-xl); padding: 36px;
  box-shadow: var(--shadow-card); border: 2px solid transparent;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--coral-pale), var(--sky-pale));
  transition: opacity var(--transition);
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(242,92,61,0.14); }
.feat-card:hover::before { opacity: 1; }
.feat-card > * { position: relative; z-index: 1; }
.feat-icon {
  width: 58px; height: 58px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.fi-coral  { background: var(--coral-pale); }
.fi-sky    { background: var(--sky-pale); }
.fi-yellow { background: var(--yellow-pale); }
.fi-mint   { background: var(--mint-pale); }
.fi-purple { background: var(--purple-pale); }
.feat-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 10px; }
.feat-card p  { font-size: 0.9rem; color: var(--ink-mid); }

/* ====== WHO IT'S FOR ====== */
.who-section { background: linear-gradient(160deg, var(--sky-faint) 0%, #FFFBF7 60%, var(--coral-faint) 100%); }
.challenge-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.ch-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: var(--r-pill);
  font-size: 0.88rem; font-weight: 800; border: 2px solid;
  transition: var(--transition); cursor: default;
}
.ch-tag:hover { transform: scale(1.04); }
.ct-coral  { background: var(--coral-pale);  color: var(--coral);  border-color: rgba(242,92,61,0.25); }
.ct-sky    { background: var(--sky-pale);    color: var(--sky);    border-color: rgba(43,170,223,0.25); }
.ct-yellow { background: var(--yellow-pale); color: #7A5A10;       border-color: rgba(255,210,63,0.4); }
.ct-mint   { background: var(--mint-pale);   color: #1A8A72;       border-color: rgba(62,207,171,0.3); }
.ct-purple { background: var(--purple-pale); color: var(--purple); border-color: rgba(123,94,167,0.25); }
.who-cards { display: flex; flex-direction: column; gap: 16px; }
.who-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px 28px 28px 24px;
  box-shadow: var(--shadow-card); display: flex; gap: 16px; align-items: flex-start;
  border-left: 4px solid var(--coral); transition: var(--transition);
}
.who-card:nth-child(2) { border-left-color: var(--sky); }
.who-card:hover { transform: translateX(4px); }
.who-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.who-card h3 { font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.who-card p  { font-size: 0.88rem; color: var(--ink-mid); }

/* ====== TESTIMONIALS ====== */
.testi-card {
  background: #fff; border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--shadow-card); position: relative;
  border: 2px solid transparent; transition: var(--transition);
}
.testi-card:hover { border-color: rgba(242,92,61,0.15); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.testi-quote {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-display); font-size: 3rem; line-height: 1;
  color: var(--coral-pale); font-style: italic;
}
.stars { color: var(--yellow); font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-card p { font-style: italic; color: var(--ink-mid); margin-bottom: 22px; font-size: 0.93rem; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-name { font-weight: 800; font-size: 0.88rem; color: var(--ink); }
.testi-detail { font-size: 0.78rem; color: var(--ink-muted); margin-top: 1px; }
.testi-pilot {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--sky-pale); color: var(--sky);
  font-size: 0.7rem; font-weight: 900; padding: 3px 9px; border-radius: var(--r-pill);
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ====== CTA BAND ====== */
.cta-band {
  background: linear-gradient(120deg, var(--coral) 0%, #E8390F 50%, var(--sky) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-band h2 { color: #fff; position: relative; z-index: 1; max-width: 640px; margin: 0 auto 16px; }
.cta-band p  { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ====== ABOUT PAGE ====== */
.about-hero {
  background: linear-gradient(135deg, var(--sky-faint) 0%, var(--yellow-faint) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.mission-card {
  background: #fff; border-radius: var(--r-xl); padding: 40px;
  box-shadow: var(--shadow-card); border-top: 5px solid var(--coral);
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.vision-card {
  background: #fff; border-radius: var(--r-xl); padding: 40px;
  box-shadow: var(--shadow-card); border-top: 5px solid var(--sky);
  transition: var(--transition);
}
.vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.mission-card h3,.vision-card h3 { color: var(--ink); margin-bottom: 12px; }
.mission-card p,.vision-card p   { color: var(--ink-mid); }
.team-card {
  background: #fff; border-radius: var(--r-xl); padding: 40px 32px;
  box-shadow: var(--shadow-card); text-align: center;
  border: 2px solid transparent; transition: var(--transition);
}
.team-card:hover { border-color: rgba(242,92,61,0.15); transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.team-avatar {
  width: 86px; height: 86px; border-radius: 50%;
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: #fff;
}
.av-hajrah { background: linear-gradient(135deg, var(--coral), var(--yellow-light)); }
.av-aabid  { background: linear-gradient(135deg, var(--sky), var(--mint)); }
.team-card h3    { color: var(--ink); margin-bottom: 4px; }
.team-role       { font-size: 0.85rem; color: var(--coral); font-weight: 800; margin-bottom: 14px; letter-spacing: 0.02em; }
.team-card p     { font-size: 0.9rem; color: var(--ink-mid); }
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.skill-tag {
  font-size: 0.75rem; font-weight: 800; padding: 4px 12px;
  border-radius: var(--r-pill); letter-spacing: 0.02em;
}
.st-coral  { background: var(--coral-pale);  color: var(--coral);  }
.st-sky    { background: var(--sky-pale);    color: var(--sky);    }
.st-yellow { background: var(--yellow-pale); color: #7A5A10;       }
.st-mint   { background: var(--mint-pale);   color: #1A8A72;       }
.eu-strip {
  background: #003DA5; border-radius: var(--r-lg); padding: 32px 40px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 48px;
}
.eu-strip h3 { color: #FFD700; margin-bottom: 6px; font-size: 1.1rem; }
.eu-strip p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.eu-flag { font-size: 2.4rem; flex-shrink: 0; }

/* ====== PLATFORM PAGE ====== */
.platform-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn {
  padding: 10px 20px; border-radius: var(--r-pill);
  font-size: 0.85rem; font-weight: 800; cursor: pointer;
  border: 2px solid var(--ink-light); background: #fff;
  color: var(--ink-mid); transition: var(--transition);
  font-family: var(--font-body); letter-spacing: 0.01em;
}
.tab-btn:hover { border-color: var(--coral); color: var(--coral); }
.tab-btn.active { background: var(--coral); color: #fff; border-color: var(--coral); box-shadow: 0 4px 14px rgba(242,92,61,0.28); }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.plat-card {
  background: #fff; border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--shadow-card); border: 2px solid transparent;
  transition: var(--transition);
}
.plat-card:hover { border-color: rgba(43,170,223,0.2); transform: translateY(-4px); }
.plat-card h3 { font-size: 1.05rem; color: var(--ink); margin: 14px 0 8px; }
.plat-card p  { font-size: 0.88rem; color: var(--ink-mid); }
.plat-card ul { list-style: none; margin-top: 12px; }
.plat-card ul li {
  font-size: 0.85rem; color: var(--ink-mid); padding: 5px 0;
  display: flex; align-items: center; gap: 8px; font-weight: 600;
}
.plat-card ul li::before {
  content: ''; width: 7px; height: 7px; background: var(--sky);
  border-radius: 2px; transform: rotate(45deg); flex-shrink: 0;
}
.dash-card {
  background: linear-gradient(150deg, #1A1A2E 0%, #2E2E5E 100%);
  border-radius: var(--r-xl); padding: 40px; position: relative; overflow: hidden;
  margin-bottom: 48px;
}
.dash-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, var(--sky) 1px, transparent 1px);
  background-size: 24px 24px;
}
.dash-inner { position: relative; z-index: 1; }
.dash-title { font-family: var(--font-display); color: rgba(255,255,255,0.9); font-size: 1rem; margin-bottom: 4px; }
.dash-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 28px; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 24px; }
.dm-box {
  background: rgba(255,255,255,0.07); border-radius: var(--r-md);
  padding: 16px; border: 1px solid rgba(255,255,255,0.1);
}
.dm-val   { font-family: var(--font-display); font-size: 1.8rem; color: #fff; font-weight: 600; }
.dm-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 2px; font-weight: 700; letter-spacing: 0.04em; }
.dm-box:nth-child(1) .dm-val { color: var(--coral-light); }
.dm-box:nth-child(2) .dm-val { color: var(--sky-light); }
.dm-box:nth-child(3) .dm-val { color: var(--yellow-light); }
.dash-acts { display: flex; flex-direction: column; gap: 2px; }
.dash-act {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border-radius: var(--r-sm); background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.dash-act:hover { background: rgba(255,255,255,0.08); }
.act-dot { width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0; }
.ad-coral  { background: var(--coral-light); }
.ad-sky    { background: var(--sky-light); }
.ad-yellow { background: var(--yellow); }
.dash-act span { font-size: 0.82rem; color: rgba(255,255,255,0.72); font-weight: 700; }
.dash-act .act-time { margin-left: auto; font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ====== HOW IT WORKS ====== */
.how-section { background: linear-gradient(160deg, var(--yellow-faint) 0%, #FFFBF7 50%, var(--sky-faint) 100%); }
.steps-list { max-width: 840px; margin: 0 auto; }
.step-row {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 24px; padding: 28px 0;
  border-bottom: 2px dashed rgba(26,26,46,0.08);
  align-items: start; transition: var(--transition);
}
.step-row:last-child { border-bottom: none; }
.step-row:hover .step-num { transform: rotate(-6deg) scale(1.08); }
.step-num {
  width: 60px; height: 60px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  flex-shrink: 0; transition: var(--transition);
}
.sn-1 { background: var(--coral);  color: #fff; box-shadow: 0 4px 12px rgba(242,92,61,0.35); }
.sn-2 { background: var(--sky);    color: #fff; box-shadow: 0 4px 12px rgba(43,170,223,0.35); }
.sn-3 { background: var(--yellow); color: var(--ink); box-shadow: 0 4px 12px rgba(255,210,63,0.4); }
.sn-4 { background: var(--mint);   color: #fff; box-shadow: 0 4px 12px rgba(62,207,171,0.35); }
.sn-5 { background: var(--purple); color: #fff; box-shadow: 0 4px 12px rgba(123,94,167,0.35); }
.sn-6 { background: var(--coral-pale); color: var(--coral); }
.step-body h3 { color: var(--ink); margin-bottom: 7px; font-size: 1.1rem; }
.step-body p  { color: var(--ink-mid); font-size: 0.92rem; }
.step-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1.5px solid var(--ink-light);
  color: var(--ink-muted); font-size: 0.76rem; font-weight: 800;
  padding: 4px 11px; border-radius: var(--r-pill); margin-top: 10px;
}

/* ====== WAITLIST PAGE ====== */
.waitlist-page {
  min-height: 80vh;
  background: linear-gradient(150deg, var(--coral-faint) 0%, #FFFBF7 40%, var(--sky-faint) 100%);
  display: flex; align-items: center; padding: 80px 0;
}
.wl-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.wl-inner h2 { color: var(--ink); margin-bottom: 14px; }
.wl-inner p  { color: var(--ink-mid); margin-bottom: 40px; }
.wl-card {
  background: #fff; border-radius: var(--r-xl); padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(26,26,46,0.1);
  border-top: 5px solid var(--coral);
}
.form-group { margin-bottom: 16px; text-align: left; }
.form-label { display: block; font-size: 0.82rem; font-weight: 900; color: var(--ink); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-input, .form-select {
  width: 100%; padding: 13px 16px; border: 2px solid var(--ink-light);
  border-radius: var(--r-md); font-family: var(--font-body); font-size: 0.92rem;
  color: var(--ink); background: #fff; transition: var(--transition); outline: none;
  appearance: none; -webkit-appearance: none; font-weight: 600;
}
.form-input:focus, .form-select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(242,92,61,0.1); }
.form-input::placeholder { color: var(--ink-muted); font-weight: 400; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--ink-muted); pointer-events: none; font-size: 0.75rem;
}
.form-privacy { font-size: 0.75rem; color: var(--ink-muted); text-align: center; margin-top: 14px; line-height: 1.5; }
.success-msg, .alert-msg {
  display: none; padding: 18px 18px 18px 20px; border-radius: var(--r-md);
  font-size: 0.9rem; font-weight: 800; text-align: left; margin-top: 16px;
  position: relative;
}
.success-msg {
  background: var(--mint-pale); border: 2px solid var(--mint); color: #1A8A72;
}
.alert-msg {
  background: #FDEDEE; border: 2px solid #F5A3A3; color: #B22828;
}
.alert-close {
  position: absolute; top: 12px; right: 12px; border: none; background: transparent;
  color: inherit; font-size: 1rem; font-weight: 900; cursor: pointer;
  line-height: 1;
}
.alert-text {
  display: block; padding-right: 24px;
}

/* ====== CONTACT PAGE ====== */
.contact-page { background: var(--cream); padding: 80px 0; }
.contact-info-card {
  background: #fff; border-radius: var(--r-xl); padding: 40px;
  box-shadow: var(--shadow-card);
}
.ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.ci-icon {
  width: 42px; height: 42px; background: var(--coral-pale);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; color: var(--ink-muted); font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.ci-value { font-size: 0.93rem; font-weight: 700; color: var(--ink); margin-top: 2px; }
.social-row { display: flex; gap: 10px; margin-top: 24px; }
.soc-btn {
  width: 42px; height: 42px; background: var(--ink-light);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ink-mid); transition: var(--transition); cursor: pointer;
}
.soc-btn:hover { background: var(--coral-pale); color: var(--coral); transform: translateY(-2px); }
.join-nudge {
  background: linear-gradient(135deg, var(--coral-pale), var(--yellow-pale));
  border-radius: var(--r-lg); padding: 28px; margin-top: 20px;
  border: 2px solid rgba(242,92,61,0.15);
}
.join-nudge h4 { color: var(--coral); font-size: 1rem; margin-bottom: 8px; }
.join-nudge p  { font-size: 0.88rem; color: var(--ink-mid); margin-bottom: 16px; }

/* ====== DISCLAIMER STRIP ====== */
.disclaimer-strip {
  background: var(--yellow-pale); border-top: 2.5px solid var(--yellow-light);
  padding: 11px 0; text-align: center; font-size: 0.78rem;
  color: #7A5A10; font-weight: 800;
}

/* ====== FOOTER ====== */
footer { background: var(--ink); padding: 56px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px;
}
.footer-brand .logo-text { color: rgba(255,255,255,0.9); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 12px; max-width: 270px; line-height: 1.65; }
.footer-brand .footer-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 8px; }
.footer-col h4 { font-family: var(--font-display); color: rgba(255,255,255,0.88); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color var(--transition); font-weight: 700; }
.footer-col ul li a:hover { color: var(--coral-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); font-weight: 700; }
.footer-dots { display: flex; gap: 4px; align-items: center; }
.footer-dot { width: 8px; height: 8px; border-radius: 2px; }
.fd-coral  { background: rgba(242,92,61,0.5); }
.fd-sky    { background: rgba(43,170,223,0.5); }
.fd-yellow { background: rgba(255,210,63,0.5); }

/* ====== ANIMATIONS ====== */
.fade-in { opacity: 0; transform: translateY(22px); animation: fadeUp 0.6s ease-out forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.d1{animation-delay:0.1s;} .d2{animation-delay:0.2s;} .d3{animation-delay:0.3s;} .d4{animation-delay:0.4s;}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 56px 0 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-visual { display: none; }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
  .wl-card { padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: span 1; }
  .eu-strip { flex-direction: column; gap: 12px; }
  .step-row { grid-template-columns: 1fr; }
}
