/* design-tokens.css — single source of truth for the new direction */
:root {
  /* Deep navy primary */
  --navy-900: #0a1733;
  --navy-800: #11214a;
  --navy-700: #1a2d5c;
  --navy-600: #2a3e72;

  /* Gold accent */
  --gold-500: #f0c030;
  --gold-400: #f0c040;
  --gold-300: #f5d166;
  --gold-100: #fbeab5;

  /* Warm neutrals */
  --cream: #faf6ee;
  --cream-100: #f5efe2;
  --paper: #ffffff;

  /* Text */
  --ink: #0f1a36;
  --ink-soft: #4a5468;
  --ink-mute: #8590a5;
  --hairline: rgba(15, 26, 54, 0.10);
  --hairline-strong: rgba(15, 26, 54, 0.18);

  /* WhatsApp green (for the CTA per mockup) */
  --wa-green: #25d366;
  --wa-green-dark: #1ebe5d;

  /* Kid-friendly accent (for warm sections / answer-sheet bridge) */
  --sky: #cfe9f7;
  --red: #e23b3b;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(15,26,54,0.04), 0 8px 24px rgba(15,26,54,0.06);
  --shadow-card-hover: 0 1px 2px rgba(15,26,54,0.04), 0 16px 40px rgba(15,26,54,0.10);
  --shadow-stat: 0 1px 2px rgba(15,26,54,0.05), 0 4px 16px rgba(15,26,54,0.08);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Type */
  --font-sans: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-serif: 'Crimson Pro', 'Source Serif 4', Georgia, serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Typography baseline */
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; line-height: 1.55; }
a { color: inherit; text-decoration: none; }

/* Italic gold accent — used for the highlight words in headings */
.gold-italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* Eyebrow — small label that titles a section */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.4;
}
.eyebrow.center { justify-content: center; }
.eyebrow.gold { color: var(--gold-500); }

/* Section titles */
.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 14px 0 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37,211,102,0.30);
}
.btn-wa:hover { background: var(--wa-green-dark); transform: translateY(-1px); }
.btn-navy {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--r-md);
  padding: 14px 26px;
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: var(--r-md);
  padding: 14px 26px;
}
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hairline-strong);
  border-radius: var(--r-md);
  padding: 12px 22px;
}
.btn-ghost:hover { border-color: var(--ink); }

/* Image-slot styling override — match our card aesthetic */
image-slot {
  background: var(--cream-100);
  border-radius: var(--r-lg);
}
