
:root {
  --cream: #f3ecde;
  --paper: #fffdf7;
  --ink: #153a34;
  --teal: #0c5d58;
  --deep: #082d29;
  --orange: #ee7740;
  --yellow: #f4c64d;
  --line: rgba(21, 58, 52, 0.18);
  --font-sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  padding: 0 clamp(22px, 4.4vw, 72px);
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid rgba(21, 58, 52, 0.12);
  backdrop-filter: blur(18px);
}
.brand { width: clamp(155px, 14vw, 205px); }
.brand img { width: 100%; }
.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .025em;
}
.site-header nav a,
.header-cta { transition: color .2s ease, border-color .2s ease, background-color .2s ease; }
.site-header nav a:hover { color: var(--orange); }
.header-cta {
  justify-self: end;
  padding: 11px 17px;
  border: 1px solid rgba(21, 58, 52, .36);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.header-cta span { margin-left: 8px; }
.header-cta:hover { color: white; background: var(--ink); border-color: var(--ink); }

.hero {
  position: relative;
  min-height: max(790px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #5dc8ec;
}
.parallax-layer {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
.hero-background { position: absolute; z-index: -5; inset: -38px -2vw -118px; }
.hero-background img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center bottom; }
.hero-wash {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, .96) 0%, rgba(255, 253, 247, .82) 31%, rgba(255, 253, 247, .34) 51%, rgba(255, 253, 247, 0) 72%),
    linear-gradient(0deg, rgba(21, 58, 52, .08), transparent 25%);
}
.hero-content {
  position: relative;
  z-index: 6;
  width: min(750px, 58vw);
  padding: clamp(158px, 18vh, 220px) 0 130px clamp(26px, 7vw, 112px);
}
.hero-kicker {
  margin: 0 0 25px;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.5vw, 108px);
  line-height: .89;
  letter-spacing: -.066em;
  font-weight: 850;
}
.hero h1 em {
  color: var(--orange);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.05em;
}
.hero-copy {
  max-width: 590px;
  margin: 30px 0 0;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.52;
  letter-spacing: -.01em;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: var(--teal); }
.text-link { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 800; }
.text-link span { margin-left: 6px; }
.hero-boy,
.hero-girl,
.hero-dragonfly { position: absolute; pointer-events: none; }
.hero-boy {
  z-index: 2;
  left: 30%;
  bottom: -2%;
  width: clamp(245px, 22.4vw, 392px);
}
.hero-girl {
  z-index: 4;
  top: -20%;
  right: clamp(-230px, -13vw, -120px);
  width: clamp(760px, 68vw, 1120px);
  height: 148%;
}
.hero-girl img { width: 100%; height: 100%; object-fit: contain; object-position: right center; transform: scaleX(-1); }
.hero-dragonfly {
  z-index: 5;
  left: 53%;
  top: 16%;
  width: clamp(94px, 8.5vw, 154px);
  filter: drop-shadow(0 15px 15px rgba(17, 74, 66, .18));
}
.hero-index {
  position: absolute;
  z-index: 8;
  left: clamp(26px, 7vw, 112px);
  right: clamp(24px, 4vw, 72px);
  bottom: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.value-strip {
  min-height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 56px);
  padding: 13px 24px;
  color: white;
  background: var(--ink);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.value-strip i { color: var(--orange); font-style: normal; }

.section-shell { width: min(1440px, calc(100% - clamp(44px, 10vw, 160px))); margin-inline: auto; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.section-kicker {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .54;
}
.section-heading {
  display: grid;
  grid-template-columns: .53fr 1.47fr;
  gap: clamp(38px, 7vw, 118px);
  align-items: start;
}
.section-heading h2,
.belief-top h2,
.teaser-heading h2,
.products-heading h2,
.partners-heading h2,
.collab-content h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 80px);
  line-height: .98;
  letter-spacing: -.055em;
}

.belief-section { padding-block: clamp(76px, 8.5vw, 122px); }
.belief-top {
  display: grid;
  grid-template-columns: .53fr 1.47fr;
  gap: clamp(38px, 7vw, 118px);
}
.belief-summary {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
}
.belief-quote {
  max-width: 900px;
  margin: 28px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--orange);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.65vw, 43px);
  font-style: italic;
  line-height: 1.13;
}
.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(46px, 5.5vw, 78px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.belief-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  padding: 24px clamp(23px, 2.7vw, 42px) 30px;
  border-right: 1px solid var(--line);
}
.belief-card:last-child { border-right: 0; }
.sequence-number {
  display: block;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
  opacity: .2;
}
.belief-card h3 {
  max-width: 370px;
  margin: auto 0 0;
  font-size: clamp(24px, 2vw, 33px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.teaser-section {
  padding: clamp(78px, 9vw, 132px) 0 clamp(52px, 6vw, 86px);
  color: white;
  background: var(--deep);
}
.teaser-heading {
  display: grid;
  grid-template-columns: .53fr 1.18fr .57fr;
  align-items: end;
  gap: clamp(32px, 5vw, 76px);
  margin-bottom: clamp(44px, 5.5vw, 78px);
}
.teaser-heading h2 em { color: #f4ad88; font-family: var(--font-serif); font-weight: 400; }
.teaser-heading > p:last-child { margin: 0 0 5px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.5; }
.video-frame {
  position: relative;
  width: min(1600px, calc(100% - clamp(24px, 6vw, 92px)));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #051e1b;
  box-shadow: 0 30px 70px rgba(0,0,0,.24);
}
.video-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.video-label {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 20px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,.65);
}

.work-section { padding-block: clamp(96px, 11vw, 160px); background: var(--cream); }
.work-section .section-heading { margin-bottom: clamp(54px, 7vw, 96px); }
.section-heading > div > p {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.52;
}
.capability-grid {
  width: min(1560px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 420px;
  gap: 12px;
}
.capability-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 22px;
  background: var(--paper);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(21,58,52,.18);
}
.capability-card::after {
  content: "↗";
  position: absolute;
  z-index: 6;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 16px;
  transition: transform .35s ease, background-color .35s ease;
}
.capability-card:hover::after { transform: rotate(45deg); background: rgba(255,255,255,.7); }
.card-storyworld { grid-column: span 7; grid-row: span 2; }
.card-books,
.card-play { grid-column: span 5; }
.card-digital,
.card-collab { grid-column: span 6; }
.capability-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.2,.7,.2,1);
}
.capability-card:hover .capability-media { transform: scale(1.045); }
.card-storyworld .capability-media { object-position: center; }
.card-books .capability-media { object-position: 50% 57%; }
.card-collab .capability-media { object-position: center 46%; }
.image-scrim {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,33,30,.02) 25%, rgba(7,33,30,.2) 53%, rgba(7,33,30,.9) 100%);
}
.image-scrim-light {
  background: linear-gradient(180deg, rgba(255,253,247,0) 20%, rgba(255,253,247,.12) 46%, rgba(255,253,247,.96) 82%);
}
.capability-copy {
  position: absolute;
  z-index: 5;
  left: clamp(24px, 2.6vw, 42px);
  right: clamp(24px, 2.6vw, 42px);
  bottom: clamp(26px, 2.8vw, 44px);
}
.capability-copy > span {
  display: block;
  margin-bottom: 13px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.capability-copy h3 { margin: 0; font-size: clamp(31px, 3.05vw, 51px); line-height: .96; letter-spacing: -.055em; }
.capability-copy p { max-width: 490px; margin: 15px 0 0; font-size: 14px; line-height: 1.48; }
.light-copy { color: white; text-shadow: 0 1px 18px rgba(0,0,0,.25); }
.card-books .capability-copy h3,
.card-digital .capability-copy h3 { font-size: clamp(29px, 2.6vw, 44px); }
.card-collab .capability-copy h3 { font-size: clamp(28px, 2.45vw, 42px); }

.card-play { color: white; background: var(--orange); }
.card-play::before,
.card-digital::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(100,37,8,.58));
  pointer-events: none;
}
.board-mock {
  position: absolute;
  top: 25px;
  right: 28px;
  width: min(66%, 300px);
  aspect-ratio: 1.55;
  transition: transform .75s cubic-bezier(.2,.7,.2,1);
}
.capability-card:hover .board-mock { transform: translateY(-5px) rotate(1.5deg) scale(1.03); }
.board-card {
  position: absolute;
  overflow: hidden;
  border-radius: 17px;
  box-shadow: 0 22px 42px rgba(91,35,9,.28);
}
.board-card-one {
  inset: 8% 34% 8% 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 19px;
  background: #fff8e8;
  transform: rotate(-7deg);
}
.board-card-one i { border-radius: 8px; background: #74b875; }
.board-card-one i:nth-child(2),
.board-card-one i:nth-child(3) { background: #f3c64f; }
.board-card-two {
  inset: 0 0 0 52%;
  display: grid;
  place-content: center;
  color: var(--ink);
  text-align: center;
  background: #bde5e1;
  transform: rotate(8deg);
}
.board-card-two b { font-family: var(--font-serif); font-size: 70px; line-height: .8; }
.board-card-two span { margin-top: 12px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.board-token {
  position: absolute;
  z-index: 3;
  width: 27px;
  aspect-ratio: 1;
  border: 4px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 8px 15px rgba(87,32,8,.25);
}
.token-one { left: -3%; bottom: 2%; }
.token-two { left: 39%; bottom: -5%; background: #72bf78; }
.token-three { right: -4%; bottom: 18%; background: #6bb8d5; }

.card-digital { background: #d7efec; }
.card-digital::before { z-index: 2; inset: 34% 0 0; background: linear-gradient(180deg, transparent, rgba(215,239,236,.97) 62%); }
.phone-mock {
  position: absolute;
  top: -19%;
  right: 3%;
  width: 41%;
  aspect-ratio: .57;
  padding: 12% 9%;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 38px;
  color: white;
  background: linear-gradient(160deg, #15786f, #0b403b);
  transform: rotate(7deg);
  box-shadow: -22px 28px 48px rgba(9,54,49,.2);
  transition: transform .75s cubic-bezier(.2,.7,.2,1);
}
.capability-card:hover .phone-mock { transform: rotate(4deg) translateY(-6px) scale(1.025); }
.phone-top { position: absolute; top: 10px; left: 50%; width: 37%; height: 13px; border-radius: 999px; background: var(--ink); transform: translateX(-50%); }
.phone-orbit { position: relative; width: 95%; aspect-ratio: 1; margin: 15% auto 14%; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; }
.phone-orbit::before,
.phone-orbit::after { content: ""; position: absolute; inset: 18%; border: 1px dashed rgba(255,255,255,.5); border-radius: 50%; }
.phone-orbit::after { inset: 36%; background: var(--orange); border: 0; }
.phone-orbit i { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); }
.phone-orbit i:nth-child(1) { left: 5%; top: 39%; }
.phone-orbit i:nth-child(2) { right: 7%; top: 25%; background: #79bf75; }
.phone-orbit i:nth-child(3) { right: 25%; bottom: 5%; background: #f6b7c2; }
.phone-mock b,
.phone-mock > span { position: relative; z-index: 2; display: block; }
.phone-mock b { font-size: clamp(14px, 1.3vw, 22px); }
.phone-mock > span { margin-top: 5px; font-size: 8px; opacity: .72; }
.card-digital .capability-copy { right: 50%; }

.products-section {
  overflow: hidden;
  padding-block: clamp(72px, 7.5vw, 108px);
  color: white;
  background: var(--teal);
}
.products-heading {
  display: grid;
  grid-template-columns: .53fr 1.47fr;
  align-items: start;
  gap: clamp(38px, 7vw, 118px);
}
.products-heading h2 { color: var(--yellow); }
.products-heading > div > p {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}
.products-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: stretch;
  gap: 14px;
  margin-top: clamp(38px, 4.5vw, 62px);
}
.product-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 22px;
  color: white;
  background: #0a3f3a;
  box-shadow: 0 24px 58px rgba(4,32,29,.16);
  transition: transform .65s cubic-bezier(.2,.7,.2,1), box-shadow .65s ease;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 76px rgba(4,32,29,.28);
}
.product-card::after {
  content: "↗";
  position: absolute;
  z-index: 4;
  right: 24px;
  top: 24px;
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 19px;
  font-weight: 850;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover::after { transform: rotate(45deg); }
.product-media-wrap {
  position: relative;
  height: 310px;
  min-height: 0;
  overflow: hidden;
  background: #154f48;
}
.product-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-media { transform: scale(1.045); }
.product-ip .product-media { object-position: center; }
.product-learning { color: var(--ink); background: var(--paper); }
.product-logo-stage {
  height: 310px;
  display: grid;
  place-items: center;
  padding: 40px;
  background: #f3efe5;
  overflow: hidden;
}
.product-logo-stage img {
  display: block;
  width: min(62%, 270px);
  mix-blend-mode: multiply;
  transition: transform .85s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-logo-stage img { transform: scale(1.045); }
.product-copy { padding: 24px clamp(24px, 2.5vw, 36px) 28px; }
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .66;
}
.product-copy h3 { margin: 0; font-size: clamp(34px, 3.25vw, 54px); line-height: 1; letter-spacing: -.05em; }
.product-copy > p { max-width: 630px; margin: 16px 0 0; font-size: 15px; line-height: 1.5; opacity: .77; }
.product-learning .product-copy > p { max-width: 560px; margin-top: 0; font-size: clamp(17px, 1.3vw, 20px); }
.product-copy ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.product-copy li { padding: 7px 12px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.product-learning .product-copy li { border-color: rgba(21,58,52,.28); }

.process-section { padding-block: clamp(96px, 12vw, 170px); }
.process-section .section-heading { margin-bottom: clamp(58px, 7vw, 100px); }
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.process-list li {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px clamp(20px, 2.6vw, 40px) 38px;
  border-right: 1px solid var(--line);
}
.process-list li:last-child { border-right: 0; }
.process-list h3 { margin: auto 0 16px; font-size: clamp(24px, 2vw, 34px); letter-spacing: -.04em; }
.process-list p { margin: 0; color: rgba(21,58,52,.72); font-size: 15px; line-height: 1.52; }

.partners-section { padding-block: clamp(90px, 10vw, 145px); background: var(--cream); }
.partners-heading {
  display: grid;
  grid-template-columns: .53fr 1.47fr;
  gap: clamp(38px, 7vw, 118px);
  align-items: start;
}
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: clamp(52px, 6vw, 86px); }
.partner-card {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 44px;
  border: 1px solid rgba(21,58,52,.11);
  border-radius: 20px;
  background: var(--paper);
  transition: transform .35s ease, box-shadow .35s ease;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(21,58,52,.1); }
.partner-card > span { position: absolute; top: 18px; left: 20px; font-size: 10px; font-weight: 900; letter-spacing: .15em; opacity: .45; }
.partner-card img { max-width: 82%; max-height: 95px; width: auto; object-fit: contain; }

.collab-section {
  position: relative;
  min-height: min(790px, 84vh);
  padding: clamp(92px, 11vw, 155px) 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  background: var(--orange);
}
.collab-section::before,
.collab-section::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; }
.collab-section::before { width: min(70vw, 940px); aspect-ratio: 1; }
.collab-section::after { width: min(49vw, 640px); aspect-ratio: 1; }
.collab-section > img {
  position: absolute;
  z-index: 1;
  right: 7%;
  top: 7%;
  width: clamp(115px, 14vw, 230px);
  transform: rotate(-12deg);
  filter: drop-shadow(0 22px 25px rgba(112,45,7,.22));
}
.collab-content { position: relative; z-index: 3; max-width: 1030px; }
.collab-content .section-kicker { opacity: .72; }
.collab-content h2 { margin-top: 25px; font-size: clamp(52px, 6.7vw, 108px); }
.collab-content > p:not(.section-kicker) { max-width: 680px; margin: 32px auto 0; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.52; }
.button-light { margin-top: 36px; color: var(--ink); background: white; }
.button-light span { margin-left: 12px; }
.button-light:hover { background: #fff4e8; }

footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 42px;
  align-items: start;
  padding: 70px clamp(24px, 6vw, 96px) 34px;
  background: var(--paper);
}
.footer-brand { width: clamp(180px, 20vw, 270px); }
footer p { margin: 0; font-size: 14px; line-height: 1.55; }
.footer-links { display: flex; gap: 28px; font-size: 13px; font-weight: 800; }
.footer-links a:hover { color: var(--orange); }
.copyright { grid-column: 1 / -1; margin-top: 62px !important; padding-top: 23px; border-top: 1px solid var(--line); font-size: 11px !important; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1120px) {
  .site-header nav { gap: 22px; }
  .hero-content { width: 64vw; }
  .hero-boy { left: 27%; bottom: -1%; width: 29.4vw; }
  .hero-girl { right: -23%; width: 78vw; height: 148%; }
  .belief-top,
  .section-heading,
  .products-heading,
  .partners-heading { grid-template-columns: .42fr 1.58fr; gap: 44px; }
  .teaser-heading { grid-template-columns: .75fr 1.6fr; }
  .teaser-heading > p:last-child { grid-column: 2; }
  .capability-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 430px; }
  .card-storyworld { grid-column: span 6; grid-row: span 1; min-height: 570px; }
  .card-books,
  .card-play,
  .card-digital,
  .card-collab { grid-column: span 3; }
  .card-digital .capability-copy { right: 47%; }
  .phone-mock { width: 49%; right: -5%; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; height: 72px; }
  .site-header nav { display: none; }
  .hero { min-height: 820px; }
  .hero-content { width: min(690px, 93vw); padding-top: 138px; }
  .hero-wash { background: linear-gradient(180deg, rgba(255,253,247,.95) 0%, rgba(255,253,247,.77) 48%, rgba(255,253,247,0) 74%); }
  .hero-boy { left: 5%; bottom: 0; width: 38.5vw; }
  .hero-girl { top: auto; right: -34%; bottom: -25%; width: 102vw; height: 96%; }
  .hero-dragonfly { left: 53%; top: 49%; width: 94px; }
  .capability-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .card-storyworld,
  .card-books,
  .card-play,
  .card-digital,
  .card-collab { grid-column: auto; grid-row: auto; min-height: 520px; }
  .card-storyworld { min-height: 610px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 520px; }
}

@media (max-width: 700px) {
  .section-shell { width: min(100% - 40px, 660px); }
  .header-cta { padding: 10px 14px; }
  .hero { min-height: 800px; }
  .hero-content { width: auto; padding: 126px 20px 350px; }
  .hero h1 { font-size: clamp(48px, 14.5vw, 68px); }
  .hero-copy { max-width: 520px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 29px; }
  .hero-boy { left: -6%; bottom: 0; width: 50.4vw; }
  .hero-girl { right: -55%; bottom: -26%; width: 130vw; height: 84%; }
  .hero-dragonfly { left: auto; right: 37%; top: 51%; width: 78px; }
  .hero-index { display: none; }
  .value-strip { justify-content: flex-start; gap: 12px; overflow: hidden; white-space: nowrap; }
  .belief-top,
  .section-heading,
  .teaser-heading,
  .products-heading,
  .partners-heading { display: block; }
  .belief-top > .section-kicker,
  .section-heading > .section-kicker,
  .teaser-heading > .section-kicker,
  .products-heading > .section-kicker,
  .partners-heading > .section-kicker { margin-bottom: 25px; }
  .belief-top h2,
  .section-heading h2,
  .teaser-heading h2,
  .products-heading h2,
  .partners-heading h2 { font-size: clamp(42px, 12vw, 58px); }
  .belief-grid { grid-template-columns: 1fr; }
  .belief-card { min-height: 145px; padding: 18px 22px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .belief-card .sequence-number { font-size: 38px; }
  .belief-card h3 { font-size: 21px; }
  .belief-card:last-child { border-bottom: 0; }
  .teaser-heading > p:last-child { margin-top: 24px; }
  .video-frame { width: calc(100% - 20px); border-radius: 12px; }
  .video-label { display: none; }
  .work-section .section-heading { margin-bottom: 48px; }
  .capability-grid { width: calc(100% - 20px); gap: 10px; }
  .card-digital .capability-copy { right: 24px; }
  .phone-mock { top: -9%; right: -7%; width: 47%; }
  .board-mock { width: 63%; right: 18px; }
  .capability-copy h3,
  .card-books .capability-copy h3,
  .card-digital .capability-copy h3,
  .card-collab .capability-copy h3 { font-size: 38px; }
  .products-grid { width: calc(100% - 40px); }
  .product-card { min-height: 500px; border-radius: 16px; }
  .product-media-wrap,
  .product-logo-stage { height: 270px; }
  .product-copy { padding: 24px 22px 30px; }
  .product-meta { margin-bottom: 22px; }
  .product-logo-stage img { width: min(67%, 230px); }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list li:nth-child(2) { border-bottom: 1px solid var(--line); }
  .process-list li:last-child { border-bottom: 0; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { min-height: 165px; }
  .collab-section { min-height: 690px; }
  .collab-section > img { top: 5%; right: -9%; }
  footer { grid-template-columns: 1fr; gap: 23px; }
  .footer-links { margin-top: 16px; flex-wrap: wrap; }
  .copyright { margin-top: 34px !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .parallax-layer { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
  *,
  *::before,
  *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
