:root {
  --bg: #fef8ed;
  --bg-white: #ffffff;
  --bg-soft: #fef0d8;
  --text: #1a1a2e;
  --text-dim: #5a5a6e;
  --text-faint: #9ca3af;
  --orange: #f17d2c;
  --orange-light: #ffa15a;
  --orange-dark: #d76418;
  --green: #4dab3d;
  --green-dark: #3d8a30;
  --border: rgba(26, 26, 46, .08);
  --radius: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(254, 248, 237, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--text);
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.brand-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: var(--text);
  opacity: .7;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
}
.nav-links a:hover { opacity: 1; }
.nav-links .btn { opacity: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 14px rgba(241, 125, 44, .35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 125, 44, .45);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(0,0,0,.03);
  border-color: rgba(26, 26, 46, .2);
}
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; }
.btn-large { padding: 1.1rem 2rem; font-size: 1.1rem; }

/* Hero */
.hero {
  padding: 4rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(241,125,44,.18), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(77,171,61,.14), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 0 0 1.5rem;
}
.hero h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--orange);
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: .28em;
  background: var(--green);
  opacity: .35;
  z-index: -1;
  transform: skewX(-6deg);
  border-radius: 4px;
}
.lead {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin: 0 0 2rem;
  max-width: 52ch;
}
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero logo */
.hero-art { position: relative; }
.hero-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(241, 125, 44, .25));
  animation: gentle-float 6s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-white { background: var(--bg-white); }
.section-orange {
  background: var(--orange);
  color: white;
  overflow: hidden;
}
.section-orange::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.02em;
  margin: 0 0 1.25rem;
  max-width: 22ch;
  line-height: 1.1;
}
.section-lead {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 60ch;
  margin: 0;
}
.section-orange .section-lead,
.section-orange p { color: rgba(255,255,255,.92); }
.section-orange .eyebrow { color: rgba(255,255,255,.85); }

/* Grid */
.grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
  background: var(--bg-white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.03);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(241,125,44,.12);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--bg-soft);
  border-radius: 14px;
  color: var(--orange);
}
.card-icon svg {
  width: 28px;
  height: 28px;
}
.card:hover .card-icon { color: var(--orange-dark); }
.card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 0 0 .5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.card p { margin: 0; color: var(--text-dim); font-size: .95rem; line-height: 1.55; }

/* Play stats */
.play-stats {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  color: var(--text-dim);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .35rem;
  font-weight: 500;
}

/* Educators split */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
}
.split .btn { margin-top: 1.75rem; }
.section-orange .btn-primary {
  background: white;
  color: var(--orange);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.section-orange .btn-primary:hover {
  background: var(--bg-soft);
  color: var(--orange-dark);
}
.section-orange .btn-ghost {
  color: white;
  border-color: rgba(255,255,255,.5);
}
.section-orange .btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.85);
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .85rem;
}
.checklist li {
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .85rem;
  color: white;
}
.checklist li::before {
  content: '✓';
  font-weight: 700;
  background: white;
  color: var(--orange);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
}

/* Order */
.order-block { text-align: center; }
.order-block .section-title { margin-left: auto; margin-right: auto; }
.order-block .section-lead { margin: 0 auto 2.5rem; }
.signup {
  display: flex;
  gap: .75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.signup input {
  flex: 1;
  min-width: 220px;
  padding: .95rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  color: var(--text);
  font: inherit;
}
.signup input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(241,125,44,.15);
}
.fine {
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--text-faint);
}

/* Footer */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  color: var(--text-dim);
  font-size: .9rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--text);
}
.footer-brand img { height: 36px; }

/* Responsive */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-art { order: -1; }
  .hero-logo { max-width: 320px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links { gap: 1rem; }
  .nav-links a:not(.btn) { display: none; }
  .section { padding: 4rem 0; }
  .brand-text { display: none; }
  .brand-logo { height: 44px; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .play-stats { gap: 1.75rem; }
  .stat-num { font-size: 2.5rem; }
}
