@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,900&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --cream: #f5f0e8;
  --page: #f8f4f2;
  --paper: #ffffff;
  --coral: #f26b3a;
  --accent: #ff7e3e;
  --accent-soft: #ff8556;
  --green: #6fbf73;
  --yellow: #f5c84c;
  --highlight: #ffc102;
  --blue: #7ba7e8;
  --ink: #23201f;
  --ink-dark: #1e1c1b;
  --ink-block: #20201e;
  --muted: #847e7c;
  --line: #e1d9d5;
  --radius: 10px;
  --shadow: 0 14px 25px rgba(0, 0, 0, 0.08);
  --max: 1200px;
  --ease: cubic-bezier(0.25, 0, 0, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.03em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

h1, h2, h3, .serif {
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.script {
  font-family: Caveat, cursive;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.wrap {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip:focus { transform: none; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--cream);
}
.header__bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  height: 72px;
}
@media (min-width: 900px) {
  .header__bar { grid-template-columns: auto 1fr auto; }
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 16px;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 17px;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.brand__name {
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.brand__sub {
  display: none;
  margin-left: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 720px) { .brand__sub { display: inline; } }

.nav {
  display: none;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 500;
}
.nav a { color: rgba(0,0,0,.55); }
.nav a:hover, .nav a.is-active { color: #000; }
@media (min-width: 900px) { .nav { display: flex; } }

.header__actions { display: flex; align-items: center; gap: 8px; justify-self: end; }
.menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.1);
  background: rgba(255,255,255,.7);
  display: grid;
  place-items: center;
}
@media (min-width: 900px) { .menu-btn { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 12px 20px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0,0,0,.75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  transition: transform .3s var(--ease), filter .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--fill { background: var(--coral); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.btn--fill:hover { filter: brightness(0.96); }
.btn--ghost { border: 2px solid var(--coral); color: var(--coral); background: transparent; }
.btn--ghost:hover { background: #fff; }
.btn--dark { background: var(--ink-block); color: #fff; }
.btn--light { background: #fff; color: var(--coral); }
.btn--sm { min-height: 40px; padding: 8px 18px; font-size: 14px; }

/* Hero */
.hero-wrap { background: var(--cream); }
.hero {
  display: grid;
  gap: 48px;
  padding: 24px 0 72px;
}
@media (min-width: 980px) {
  .hero {
    grid-template-columns: 1.05fr .95fr;
    align-items: start;
    padding: 12px 0 80px;
    gap: 40px;
  }
}
.hero h1 {
  max-width: 16ch;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.86;
  letter-spacing: -0.055em;
}
.hero h1 .script {
  display: inline-block;
  color: var(--coral);
  font-size: 110%;
  font-weight: 500;
  margin-top: 6px;
}
.hero__lead {
  margin-top: 28px;
  max-width: 34ch;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(0,0,0,.6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.stage {
  position: relative;
  min-height: 420px;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 980px) { .stage { min-height: 500px; } }

.sticker {
  position: absolute;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 22px;
  box-shadow: 8px 10px 0 rgba(32,32,30,.12);
  animation: floaty 6s ease-in-out infinite;
}
.sticker img { width: 100%; height: 100%; object-fit: cover; }
.sticker--a { top: 8px; left: 0; width: 46%; height: 48%; background: var(--blue); transform: rotate(-5deg); }
.sticker--b { top: 0; right: 0; width: 42%; height: 44%; background: var(--yellow); transform: rotate(6deg); animation-delay: .4s; }
.sticker--c { bottom: 12px; left: -4%; width: 42%; height: 42%; background: var(--green); transform: rotate(-4deg); animation-delay: .8s; }
.sticker--d { bottom: 0; right: 4%; width: 46%; height: 48%; background: var(--coral); transform: rotate(7deg); animation-delay: 1.1s; }
.badge {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.badge--live { top: 18px; left: 18px; letter-spacing: .08em; }
.float-tag {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 800;
  font-size: 13px;
}
.float-tag .script { display: block; color: var(--coral); font-size: 20px; font-weight: 600; }
.float-tag--l { left: -8px; bottom: 38%; }
.float-tag--r { right: -4px; top: 42%; }

/* Figures */
.figures {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  padding-bottom: 48px;
}
.figures__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 26px;
  margin-bottom: 16px;
}
.figures__card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  padding: 28px 24px;
  display: grid;
  gap: 28px;
}
@media (min-width: 800px) {
  .figures__card {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 48px;
    align-items: center;
  }
}
.stat .pre, .stat .post { color: var(--muted); font-size: 13px; font-weight: 800; }
.stat .big {
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 70px);
  line-height: 1;
  margin: 4px 0;
}
.stat .big .script { color: var(--coral); font-size: .9em; margin-left: 4px; }

/* Identity */
.identity {
  position: relative;
  overflow: hidden;
  background: var(--ink-block);
  color: #fff;
  padding: 56px 0;
}
.identity__ring {
  position: absolute;
  right: -70px;
  top: -90px;
  width: 280px;
  height: 280px;
  border: 38px solid var(--accent);
  border-radius: 50%;
  opacity: .95;
}
.identity__grid {
  position: relative;
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .identity__grid { grid-template-columns: auto 1fr; align-items: center; gap: 40px; }
}
.school-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: #fff;
  border-radius: 22px;
  padding: 10px;
}
.identity h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4.4vw, 50px);
  max-width: 18ch;
}
.identity p { margin: 16px 0 0; max-width: 52ch; color: rgba(255,255,255,.65); line-height: 1.5; }
.values {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
}
@media (min-width: 720px) { .values { grid-template-columns: repeat(5, 1fr); } }
.value {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.88);
}
.value .script { display: block; color: var(--accent-soft); font-size: 22px; margin-bottom: 4px; }

/* Blocks */
.blocks { background: #fff; padding: 88px 0 40px; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head .script { color: var(--accent); font-size: 26px; }
.section-head h2 { margin: 14px 0 0; font-size: clamp(34px, 5vw, 56px); }
.section-head p { margin: 16px 0 0; color: rgba(0,0,0,.6); font-size: 17px; line-height: 1.45; max-width: 54ch; }

.block-layout {
  display: grid;
  gap: 32px;
}
@media (min-width: 980px) {
  .block-layout { grid-template-columns: .92fr 1.08fr; align-items: start; }
}
.block-list { display: grid; }
.block-btn {
  width: 100%;
  text-align: left;
  padding: 18px 0 18px 24px;
  border-left: 1px solid var(--line);
  transition: border-color .25s ease, padding .25s ease;
}
.block-btn.is-active {
  border-left: 3px solid var(--accent);
  padding-left: 23px;
}
.block-btn small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.block-btn strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.block-btn p {
  display: none;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.4;
  max-width: 42ch;
}
@media (min-width: 980px) { .block-btn p { display: block; } }
.block-btn.is-active p { display: block; }

.block-panel {
  position: relative;
  min-height: 460px;
}
.panel-card {
  overflow: hidden;
  background: var(--page);
  border-radius: 28px;
  min-height: 460px;
}
.panel-card img { width: 100%; height: 280px; object-fit: cover; }
.panel-card__body { padding: 24px 26px 28px; }
.panel-card__body h3 { font-size: 32px; margin: 0; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}
.outcome {
  color: rgba(0,0,0,.6);
  font-size: 15px;
  line-height: 1.45;
}
.outcome b { color: var(--coral); }

/* Domains */
.domains { background: var(--page); padding: 88px 0; }
.domain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 800px) { .domain-grid { grid-template-columns: repeat(3, 1fr); } }
.domain {
  min-height: 150px;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.domain .script { font-size: 26px; }
.domain strong { font-size: 16px; line-height: 1.2; }
.domain p { margin: 6px 0 0; font-size: 13px; line-height: 1.35; opacity: .8; }
.domain--1 { background: var(--coral); color: #fff; }
.domain--2 { background: var(--yellow); color: var(--ink); }
.domain--3 { background: var(--blue); color: #fff; }
.domain--4 { background: var(--green); color: #fff; }
.domain--5, .domain--6 { background: #fff; color: var(--ink); }

/* Schedule */
.schedule { background: #fff; padding: 88px 0; }
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 18px;
}
.tab {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--page);
  font-weight: 800;
  color: var(--muted);
}
.tab.is-active { background: var(--ink-block); color: #fff; }
.board {
  display: grid;
  gap: 10px;
}
.day {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--page);
}
@media (min-width: 800px) {
  .day { grid-template-columns: 120px 1fr auto; align-items: center; gap: 16px; }
}
.day b { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); }
.day strong { display: block; font-size: 18px; }
.day p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.pills span, .pills em {
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}
.schedule-note { margin-top: 14px; color: var(--muted); font-size: 14px; }

/* Workflow */
.workflow {
  position: relative;
  overflow: hidden;
  background: var(--ink-block);
  color: #fff;
  padding: 88px 0;
}
.workflow__ring {
  position: absolute;
  right: -90px;
  top: -140px;
  width: 320px;
  height: 320px;
  border: 48px solid var(--coral);
  border-radius: 50%;
}
.workflow .section-head .script { color: var(--accent-soft); }
.workflow .section-head h2 { color: #fff; }
.workflow .section-head p { color: rgba(255,255,255,.6); }
.steps {
  position: relative;
  display: grid;
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.15);
}
@media (min-width: 800px) { .steps { grid-template-columns: 1fr 1fr; } }
.step { background: var(--ink-block); padding: 32px; }
.step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--coral);
  font-size: 12px;
  font-weight: 800;
}
.step small { display: block; margin-top: 8px; color: var(--accent-soft); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }
.step h3 { margin: 16px 0 0; font-size: 22px; font-family: Inter, sans-serif; font-weight: 800; letter-spacing: -0.03em; }
.step p { margin: 10px 0 0; color: rgba(255,255,255,.6); max-width: 38ch; line-height: 1.45; }

.split {
  display: grid;
  gap: 0;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--coral);
}
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr .9fr; } }
.split__copy { padding: 36px 32px; color: #fff; }
.split__copy .script { color: #ffe0d3; font-size: 27px; }
.split__copy h3 { margin: 14px 0 0; font-size: clamp(32px, 4vw, 48px); }
.split__copy p { margin: 18px 0 0; color: rgba(255,255,255,.8); max-width: 46ch; line-height: 1.5; }
.split__copy ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.split__copy li { display: flex; gap: 10px; font-weight: 600; }
.check {
  width: 18px; height: 18px; flex: none; margin-top: 2px;
  color: var(--highlight);
}
.split__visual {
  background: var(--ink-block);
  padding: 28px;
  display: grid;
  place-items: center;
}
.mock {
  width: min(100%, 360px);
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.mock__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock__bar b { font-family: Fraunces, Georgia, serif; }
.mock__face {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--coral); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800;
}
.mock-row {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.mock-row em { font-style: normal; font-weight: 800; color: var(--green); }

/* CTA / footer */
.cta-wrap { background: #fff; }
.footer {
  color: #fff;
  background: var(--ink-dark);
  clip-path: polygon(0 90px, 80px 0, 100% 48px, 100% 100%, 0 100%);
  padding: 140px 0 40px;
}
@media (min-width: 800px) {
  .footer { clip-path: polygon(0 150px, 120px 0, 100% 70px, 100% 100%, 0 100%); padding: 200px 0 60px; }
}
.footer .script { font-size: clamp(40px, 6vw, 70px); line-height: .9; }
.footer h2 {
  color: var(--accent);
  font-size: clamp(34px, 5vw, 60px);
  line-height: .9;
  margin: 0;
}
.footer__lead { margin: 18px 0 28px; color: rgba(255,255,255,.65); max-width: 46ch; line-height: 1.5; }
.footer__cols {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 800px) { .footer__cols { grid-template-columns: 1.2fr .8fr .8fr; } }
.footer h4 { margin: 0 0 12px; font-size: 13px; font-family: Inter, sans-serif; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 800; }
.footer a { display: block; min-height: 34px; color: rgba(255,255,255,.8); font-weight: 600; }
.footer a:hover { color: #fff; }
.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #aaa;
  font-size: 14px;
}

/* Motion */
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@keyframes hero-title-in {
  0%, 24% { opacity: 0; transform: translate(-80px, -24px) rotate(-8deg); }
  55% { opacity: 1; transform: translate(-20px, -8px) rotate(4deg); }
  100% { opacity: 1; transform: none; }
}
@keyframes hero-copy-in {
  0%, 24% { opacity: 0; transform: translate(-40px, 40px); }
  100% { opacity: 1; transform: none; }
}
.animate-title { animation: hero-title-in .8s linear both; }
.animate-copy { animation: hero-copy-in .8s linear both; animation-delay: .12s; }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 720px) {
  .hero h1 { max-width: none; }
  .stage { min-height: 380px; }
  .sticker { border-width: 6px; }
  .float-tag--l { left: 0; bottom: 8%; }
  .float-tag--r { right: 0; top: 46%; }
}
