@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:wght@400;500;600;700&display=swap");

:root {
  --paper: #fdfcf9;
  --paper-2: #fdfbf7;
  --ink: #252025;
  --navy: #1e355b;
  --yellow: #ffc24a;
  --blue: #9bd6fe;
  --coral: #ff7a61;
  --line: rgba(37, 32, 37, 0.22);
  --shadow:
    -6px 7px 20px rgba(6, 38, 111, .10),
    -22px 28px 36px rgba(6, 38, 111, .09),
    -50px 64px 48px rgba(6, 38, 111, .05),
    -88px 113px 57px rgba(6, 38, 111, .01);
  --radius: 16px;
  --section: 128px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
p + p { margin-top: 1.25rem; }
ul { margin: 0; padding-left: 1.25rem; }
button { font: inherit; }

.site-header {
  position: relative;
  z-index: 20;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 12px 48px;
}
.brand { width: 232px; aspect-ratio: 232.344 / 55; flex: none; }
.brand img { width: 100%; height: 100%; }
.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav a { position: relative; padding: 6px 0; letter-spacing: .005em; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--ink);
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.menu-button span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: top .25s ease, opacity .18s ease, transform .25s ease, width .25s ease;
}
.menu-button span:nth-child(1) { top: 13px; }
.menu-button span:nth-child(2) { top: 20px; }
.menu-button span:nth-child(3) { top: 27px; }
.menu-button:hover {
  border-color: rgba(30,53,91,.16);
  background: rgba(253,252,249,.5);
  box-shadow: 0 10px 26px rgba(30,53,91,.12);
}
.menu-button:hover:not([aria-expanded="true"]) span:nth-child(2) { width: 16px; }
.menu-button:focus-visible { outline: 3px solid rgba(255,194,74,.9); outline-offset: 3px; }
.menu-button[aria-expanded="true"] {
  border-color: rgba(30,53,91,.18);
  background: rgba(253,252,249,.88);
  box-shadow: 0 12px 30px rgba(30,53,91,.16);
  transform: rotate(90deg);
}
.menu-button[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.35); }
.menu-button[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section-sm { padding-block: 96px; }
.section-title {
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -.0025em;
}
.section-title.ink { color: var(--ink); }
.section-intro { margin-top: 32px; font-size: 20px; line-height: 1.5; max-width: 1000px; }
.eyebrow { font-weight: 700; font-size: 18px; letter-spacing: .01em; }
.lead { font-size: 20px; line-height: 1.5; }
.center { text-align: center; }
.center .section-intro { margin-inline: auto; }

.gradient { background-position: center; background-size: cover; }
.gradient-landing-hero { background-image: url("assets/figma-gradient-landing-hero.png"); }
.gradient-landing-blue { background-image: url("assets/figma-gradient-landing-blue.png"); }
.gradient-landing-orange { background-image: url("assets/figma-gradient-landing-orange.png"); }
.gradient-landing-footer { background-image: url("assets/figma-gradient-landing-footer.png"); }
.gradient-build-hero { background-image: url("assets/figma-gradient-build-hero.png"); }
.gradient-build-footer { background-image: url("assets/figma-gradient-build-footer.png"); }
.gradient-pilot-hero { background-image: url("assets/figma-gradient-pilot-hero.png"); }
.gradient-pilot-section { background-image: url("assets/figma-gradient-pilot-section.png"); }
.gradient-pilot-footer { background-image: url("assets/figma-gradient-pilot-footer.png"); }
.gradient-donate-hero { background-image: url("assets/figma-gradient-donate-hero.png"); }
.gradient-donate-section { background-image: url("assets/figma-gradient-donate-section.png"); }
.gradient-donate-footer { background-image: url("assets/figma-gradient-donate-footer.png"); }
.gradient-join-hero { background-image: url("assets/figma-gradient-join-hero.png"); }
.gradient-join-values { background-image: url("assets/figma-gradient-join-values.png"); }
.gradient-join-project { background-image: url("assets/figma-gradient-join-project.png"); }

.hero { min-height: 754px; margin-top: -80px; padding-top: 80px; overflow: hidden; }
.hero-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 674px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  gap: 48px;
  align-items: center;
  padding-block: 36px 72px;
}
.hero-copy { max-width: 596px; }
.hero h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.08; letter-spacing: -.012em; }
.hero .lead { margin-top: 32px; }
.hero-media { position: relative; height: 566px; overflow: hidden; border-radius: var(--radius); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.button-row.centered { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,32,37,.16); }
.button.yellow { background: var(--yellow); color: var(--ink); }
.button.light { background: var(--paper-2); color: var(--ink); }
.button.outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); padding-block: 11px; }
.button.small { min-height: 40px; padding: 8px 18px; }

.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: center; }
.two-col.wide-gap { gap: 72px; }
.teacher-layout { grid-template-columns: minmax(0, 576px) minmax(0, 616px); gap: 48px; }
.developer-layout { width: min(1182px, 100%); grid-template-columns: repeat(2, minmax(0, 567px)); gap: 48px; }
.media-frame { overflow: hidden; border-radius: var(--radius); min-height: 420px; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.square { aspect-ratio: 1; min-height: 0; }
.media-frame.landscape { aspect-ratio: 1.55; min-height: 0; }
.media-frame.no-shadow { box-shadow: none; }

.rule-list { list-style: none; padding: 0; border-top: .5px solid var(--line); }
.rule-list li { min-height: 64px; display: flex; align-items: center; padding: 12px 24px; border-bottom: .5px solid var(--line); }
.accent-list { display: grid; grid-template-columns: 100px 1fr; }
.accent-list::before { content: ""; background: url("assets/landing-gradient-blue.png") center / cover; }

.full-bleed-image { width: 100%; height: 600px; overflow: hidden; }
.full-bleed-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }

.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 7vw, 124px); margin-top: 64px; }
.feature-card { min-height: 420px; border-radius: 16px; overflow: hidden; padding: 32px 24px; display: flex; flex-direction: column; justify-content: space-between; background-position: center; background-size: cover; box-shadow: var(--shadow); }
.feature-card-build { background-image: url("assets/card-build-bg.png"); }
.feature-card-remix { background-image: url("assets/card-remix-bg.png"); }
.feature-card-publish { background-image: url("assets/card-publish-bg.png"); }
.feature-card h3 { font-size: 32px; line-height: 36px; letter-spacing: -.08px; }
.feature-card p { font-size: 20px; line-height: 24px; letter-spacing: .05px; font-weight: 500; }
.feature-icon { width: 70px; height: 70px; align-self: center; display: grid; place-items: center; }
.feature-icon img { width: auto; max-width: 70px; max-height: 70px; }
.feature-icon-publish { width: 86px; height: 80px; }
.feature-icon-publish img { max-width: 86px; max-height: 80px; }

.split-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.split-block > * { min-width: 0; }
.split-copy { padding: 64px 48px; display: flex; align-items: center; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.revolution-media { overflow: hidden; border-radius: 16px; }
.revolution-list { margin-top: 32px; padding-left: 1.25em; }
.revolution-list li + li { margin-top: 4px; }
.platform-statement { font-weight: 500; }
.school-logos { width: min(1105px, 100%); margin: 48px auto 0; }
.school-logos img { width: 100%; height: auto; }
.developer-photo { aspect-ratio: 567 / 464; min-height: 0; border-radius: 32px; box-shadow: none; }
.developer-photo img { width: 100%; height: 100%; object-fit: cover; }

.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 34px 54px; margin-top: 48px; color: var(--navy); font-weight: 700; }
.logo-word { padding: 18px 24px; border: 1px solid rgba(30,53,91,.15); border-radius: 12px; background: rgba(255,255,255,.55); }
.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 24px; }
.pill { padding: 12px; border-radius: 8px; background: var(--paper-2); box-shadow: 0 8px 24px rgba(30,53,91,.10); }

.video-placeholder { position: relative; aspect-ratio: 1.8; overflow: hidden; }
.video-placeholder::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 0; height: 0;
  border-top: 36px solid transparent; border-bottom: 36px solid transparent; border-left: 58px solid var(--ink);
  transform: translate(-42%, -50%); filter: drop-shadow(0 10px 20px rgba(0,0,0,.14));
}
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.number-list { margin-top: 48px; }
.number-row { display: grid; grid-template-columns: 100px 1fr; gap: 48px; align-items: center; padding: 16px 0; border-bottom: .5px solid var(--line); }
.number { font-weight: 700; font-size: 76px; line-height: 1.15; letter-spacing: -.01em; }
.number-row h3 { font-size: 26px; }
.number-row p { margin-top: 4px; font-size: 18px; }

.site-footer { background: var(--ink); min-height: 236px; padding: 88px max(24px, calc((100% - 1240px) / 2)); }
.site-footer img { width: 232px; height: 55px; }

.surface { background: rgba(253,252,249,.88); border-radius: 16px; box-shadow: var(--shadow); }
.card { padding: 32px; }
.stack { display: grid; gap: 24px; }
.stack-lg { display: grid; gap: 48px; }
.quote { font-size: clamp(2.2rem, 4.2vw, 3.5rem); line-height: 1.12; font-weight: 700; }
.tags { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.tag { padding: 8px 20px; border-radius: 999px; color: var(--paper); font-weight: 600; }
.tag:nth-child(1) { background: #f36b5d; }
.tag:nth-child(2) { background: #f0ad35; }
.tag:nth-child(3) { background: #3389d7; }

.feature-zigzag { display: grid; gap: 96px; margin-top: 64px; }
.feature-zigzag .two-col:nth-child(even) .feature-copy { order: 2; }
.feature-copy h3 { font-size: 24px; margin-bottom: 20px; }
.feature-copy li { margin-block: 5px; }

.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; margin-top: 64px; }
.metric-list { padding: 46px; display: grid; gap: 34px; }
.metric strong { display: block; font-size: 54px; line-height: 1; }
.metric p { margin-top: 10px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step-card { overflow: hidden; border-radius: 12px; box-shadow: var(--shadow); background: var(--paper); }
.step-card img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.step-card div { padding: 20px; }
.step-card h3 { font-size: 20px; }
.step-card p { font-size: 15px; margin-top: 8px; }

.data-table { width: 100%; border-collapse: collapse; margin-top: 48px; box-shadow: var(--shadow); }
.data-table th { background: var(--yellow); font-size: 18px; }
.data-table th, .data-table td { width: 33.333%; border: .5px solid var(--line); padding: 22px 28px; vertical-align: top; }
.data-table td { background: rgba(255,255,255,.72); }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.partner-card { padding: 24px; text-align: center; }
.partner-card strong { display: block; font-size: 20px; margin-bottom: 12px; }

.values { display: grid; gap: 40px; margin-top: 48px; }
.value-card { padding: 48px; }
.value-card h3 { font-size: 24px; margin-bottom: 16px; }
.sayings { width: 100%; border-collapse: collapse; margin-top: 48px; background: rgba(255,255,255,.78); box-shadow: var(--shadow); }
.sayings th { background: var(--yellow); font-size: 20px; }
.sayings th, .sayings td { border: .5px solid var(--line); padding: 24px 32px; }
.sayings td:first-child { width: 34%; text-align: center; }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 264px)); justify-content: center; gap: 40px 88px; margin-top: 64px; }
.team-card { border-bottom: 5px solid var(--coral); background: var(--paper); box-shadow: 0 10px 30px rgba(30,53,91,.10); }
.team-card img, .team-placeholder { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top center; }
.team-placeholder { background: url("assets/join-gradient-project.png") center / cover; }
.team-copy { padding: 16px; min-height: 94px; }
.team-copy strong { display: block; font-size: 18px; }
.team-copy span { display: block; font-size: 14px; margin-top: 6px; }

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].is-visible { animation: reveal .65s ease both; }
@keyframes reveal {
  from { opacity: .35; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
  :root { --section: 80px; }
  .site-header { justify-content: space-between; padding-inline: 24px; }
  .brand { width: 190px; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% - 4px);
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(30,53,91,.14);
    border-radius: 20px;
    background: rgba(253,252,249,.9);
    box-shadow: 0 28px 70px rgba(30,53,91,.17), 0 6px 18px rgba(37,32,37,.08), inset 0 1px rgba(255,255,255,.72);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
    backdrop-filter: blur(22px) saturate(125%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transform-origin: top right;
    transition: opacity .22s ease, visibility .22s ease, transform .28s cubic-bezier(.2,.75,.25,1);
  }
  .site-nav::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: url("assets/landing-gradient-footer.png") center 44% / cover;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .site-nav a {
    display: grid;
    grid-template-columns: 36px 1fr 12px;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    border-bottom: .5px solid rgba(30,53,91,.16);
    border-radius: 0;
    color: var(--navy);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.01em;
    transition: color .2s ease, background .25s ease, transform .25s ease;
  }
  .site-nav a:last-child { border-bottom-color: transparent; }
  .site-nav a::before {
    color: rgba(30,53,91,.52);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
  }
  .site-nav a:nth-child(1)::before { content: "01"; }
  .site-nav a:nth-child(2)::before { content: "02"; }
  .site-nav a:nth-child(3)::before { content: "03"; }
  .site-nav a:nth-child(4)::before { content: "04"; }
  .site-nav a::after {
    content: "";
    position: static;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0;
    transform: scale(.35);
    transition: opacity .2s ease, transform .25s ease;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    background: linear-gradient(90deg, rgba(155,214,254,.3), rgba(255,194,74,.18) 56%, rgba(255,122,97,.14));
    border-radius: 10px;
    color: var(--ink);
    transform: translateX(3px);
  }
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav a[aria-current="page"]::after { opacity: 1; transform: scale(1); }
  .site-nav a:focus-visible { outline: 2px solid rgba(30,53,91,.35); outline-offset: -2px; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 52px 72px; }
  .hero-media { height: min(72vw, 520px); }
  .two-col, .split-block, .metrics { grid-template-columns: 1fr; }
  .two-col .media-frame { order: -1; }
  .feature-cards, .steps { grid-template-columns: 1fr; }
  .feature-card { width: min(330px, 100%); min-height: 0; aspect-ratio: 330 / 420; justify-self: center; }
  .feature-zigzag .two-col:nth-child(even) .feature-copy { order: initial; }
  .partner-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 264px)); gap: 32px; }
  .full-bleed-image { height: 420px; }
  .number-row { grid-template-columns: 70px 1fr; gap: 24px; }
  .number { font-size: 54px; }
  .data-table, .sayings { display: block; overflow-x: auto; }
}

@media (max-width: 560px) {
  :root { --section: 64px; }
  .container, .hero-inner { width: min(100% - 32px, 1240px); }
  .hero h1 { font-size: 2.45rem; }
  .hero .lead, .lead, .section-intro { font-size: 18px; }
  .hero-actions .button, .button-row .button { width: 100%; }
  .hero-media { border-radius: 12px; }
  .section-title { font-size: 2rem; }
  .media-frame { min-height: 300px; }
  .full-bleed-image { height: 320px; }
  .feature-cards { gap: 24px; }
  .split-copy { padding: 38px 28px; }
  .accent-list { grid-template-columns: 44px 1fr; }
  .rule-list li { padding-inline: 16px; }
  .metric-list { padding: 30px; }
  .data-table th, .data-table td, .sayings th, .sayings td { min-width: 220px; padding: 18px; }
  .value-card { padding: 30px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { max-width: 310px; margin-inline: auto; }
  .site-footer { min-height: 180px; padding-block: 64px; }
}

/* Build page — matched to the final Figma frame */
.build-page figure { margin: 0; }
.build-page h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -.1px;
}
.build-hero { min-height: 1002px; }
.build-hero-section {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 128px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.build-hero-top {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.build-hero-copy { width: 588px; }
.build-hero-copy h1 {
  width: 480px;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -.1px;
}
.build-hero-copy p {
  margin-top: 32px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .1px;
}
.build-hero-actions { display: flex; align-items: center; gap: 24px; }
.build-hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 400px);
  justify-content: space-between;
}
.build-hero-gallery figure {
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.build-hero-gallery img { max-width: none; }
.build-hero-gallery figure:nth-child(1) img { width: 759px; height: 400px; transform: translateX(-177px); }
.build-hero-gallery figure:nth-child(2) img { width: 434px; height: 399px; transform: translate(-17px, 1px); }
.build-hero-gallery figure:nth-child(3) img { width: 400px; height: 439px; }

.build-engagement { padding-block: 128px; }
.build-engagement h2 { text-align: center; }
.build-problem-row {
  width: min(875px, 100%);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 364px 463px;
  gap: 48px;
  align-items: center;
}
.build-problem-copy { display: grid; gap: 32px; text-align: center; }
.build-problem-copy > p,
.build-positive-copy > p { font-size: 20px; line-height: 24px; font-weight: 500; letter-spacing: .05px; }
.build-pill-stack { display: grid; justify-items: center; gap: 20px; }
.build-pill-stack span,
.build-positive-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 48px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}
.build-pill-stack span { background: var(--ink); color: var(--paper); }
.build-bored-image { width: 463px; height: 317px; overflow: hidden; border-radius: 16px; }
.build-bored-image img { width: 100%; height: 100%; object-fit: cover; }
.build-positive-copy { width: min(595px, 100%); margin: 64px auto 0; display: grid; gap: 32px; text-align: center; }
.build-positive-pills { display: flex; align-items: center; justify-content: center; gap: 20px; }
.build-positive-pills span:nth-child(1) { width: 217px; background: #fb684a; color: var(--ink); }
.build-positive-pills span:nth-child(2) { background: #ffc24a; color: var(--ink); }
.build-positive-pills span:nth-child(3) { background: #0f8cf1; color: var(--paper); }
.build-bento {
  width: min(1143px, 100%);
  margin: 32px auto 0;
  padding: 24px;
  display: grid;
  grid-template-columns: 622px 441px;
  gap: 32px;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.build-bento-left { display: grid; gap: 20px; }
.build-bento-pair { display: grid; grid-template-columns: repeat(2, 302px); gap: 20px; }
.build-bento figure { overflow: hidden; border-radius: 16px; background: #fff; }
.build-bento-wide { width: 622px; height: 278px; }
.build-bento-pair figure { width: 302px; height: 273px; }
.build-bento-tall { width: 441px; height: 571px; }
.build-bento img { width: 100%; height: 100%; object-fit: cover; }

.build-trust { min-height: 759px; padding-block: 128px; }
.build-trust-copy { width: min(928px, calc(100% - 48px)); margin-inline: auto; }
.build-trust-copy p { margin-top: 32px; font-size: 16px; line-height: 24px; letter-spacing: .08px; }
.build-partner-logos { width: min(737px, 100%); height: auto; margin: 64px auto 0; }
.build-gradient-separator { width: 100%; height: 300px; overflow: hidden; }
.build-gradient-separator img { width: 100%; height: 100%; object-fit: cover; }

.build-features { padding-block: 128px; }
.build-feature-rows { margin-top: 64px; display: grid; gap: 48px; }
.build-feature-row {
  min-height: 400px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}
.build-feature-copy { display: grid; gap: 20px; }
.build-feature-copy h3,
.build-feature-more h3 { font-size: 24px; line-height: 28px; letter-spacing: 0; }
.build-feature-copy ul,
.build-feature-more ul { padding-left: 24px; font-size: 16px; line-height: 24px; letter-spacing: .08px; }
.build-feature-media {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.build-feature-media img { width: 100%; height: auto; max-width: none; }
.build-feature-students img { width: calc(100% + 16px); transform: translate(-8px, -3px); }
.build-feature-more { width: 100%; margin-top: 96px; display: grid; gap: 20px; }

.build-lower-gradient { background-position: center; background-size: cover; }
.build-process { padding: 128px 32px; }
.build-process-inner { width: min(1376px, 100%); margin-inline: auto; }
.build-process-inner > h2,
.build-process-list { margin-inline: 68px; }
.build-process-list { margin-top: 64px; display: grid; gap: 16px; }
.build-process-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  align-items: center;
  border-bottom: .5px solid var(--line);
}
.build-process-row > span { font-size: 76px; line-height: 88px; font-weight: 700; letter-spacing: -.76px; }
.build-process-row div { display: grid; gap: 8px; }
.build-process-row h3 { font-size: 32px; line-height: 36px; letter-spacing: -.08px; }
.build-process-row p { font-size: 20px; line-height: 30px; letter-spacing: .1px; }
.build-process-platform { width: 100%; margin-top: 64px; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow); }
.build-process-platform img { width: 100%; height: auto; }
.build-contact { padding-block: 128px; }
.build-contact p { width: min(909px, 100%); margin: 32px auto 0; font-size: 16px; line-height: 24px; letter-spacing: .08px; }
.build-contact .button-row { margin-top: 32px; gap: 24px; }

@media (max-width: 1100px) {
  .build-hero-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .build-hero-gallery figure { width: 100%; height: auto; aspect-ratio: 1; }
  .build-hero-gallery figure:nth-child(1) img { width: 190%; height: 100%; transform: translateX(-23%); }
  .build-hero-gallery figure:nth-child(2) img { width: 109%; height: 100%; transform: translate(-4%, 0); }
  .build-hero-gallery figure:nth-child(3) img { width: 100%; height: 110%; }
  .build-bento { grid-template-columns: minmax(0, 622px) minmax(0, 441px); }
  .build-bento-wide,
  .build-bento-tall,
  .build-bento-pair figure { width: 100%; }
  .build-bento-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .build-hero { min-height: auto; }
  .build-hero-section { padding-block: 80px; }
  .build-hero-top { align-items: flex-start; flex-direction: column; }
  .build-hero-copy { width: 100%; }
  .build-hero-actions { flex-wrap: wrap; }
  .build-problem-row { grid-template-columns: 1fr; }
  .build-bored-image { width: min(463px, 100%); margin-inline: auto; }
  .build-bento { grid-template-columns: 1fr; }
  .build-bento-left,
  .build-bento-tall { width: 100%; }
  .build-bento-tall { height: auto; aspect-ratio: 441 / 571; }
  .build-feature-row { grid-template-columns: 1fr; gap: 32px; }
  .build-feature-row-reverse .build-feature-copy { order: -1; }
  .build-process-inner > h2,
  .build-process-list { margin-inline: 0; }
}

@media (max-width: 560px) {
  .build-page h2,
  .build-hero-copy h1 { font-size: 32px; line-height: 36px; }
  .build-hero-copy h1 { width: 100%; }
  .build-hero-copy p { font-size: 18px; line-height: 27px; }
  .build-hero-actions { width: 100%; }
  .build-hero-actions .button { width: 100%; }
  .build-hero-gallery { grid-template-columns: 1fr; }
  .build-hero-gallery figure { max-width: 400px; margin-inline: auto; }
  .build-engagement,
  .build-trust,
  .build-features,
  .build-contact { padding-block: 64px; }
  .build-positive-pills { flex-direction: column; }
  .build-positive-pills span { width: auto !important; }
  .build-bored-image { height: auto; aspect-ratio: 463 / 317; }
  .build-bento { padding: 12px; gap: 12px; }
  .build-bento-left,
  .build-bento-pair { gap: 12px; }
  .build-bento-wide { height: auto; aspect-ratio: 622 / 278; }
  .build-bento-pair { grid-template-columns: 1fr; }
  .build-bento-pair figure { height: auto; aspect-ratio: 302 / 273; }
  .build-gradient-separator { height: 180px; }
  .build-feature-media { height: auto; aspect-ratio: 588 / 400; }
  .build-process { padding: 64px 16px; }
  .build-process-row { grid-template-columns: 64px 1fr; gap: 18px; }
  .build-process-row > span { font-size: 46px; line-height: 56px; }
  .build-process-row h3 { font-size: 24px; line-height: 28px; }
  .build-process-row p { font-size: 16px; line-height: 24px; }
}

/* Pilot page — matched to the final Figma composition */
.pilot-page {
  background-color: var(--paper);
  background-image: url("assets/figma-gradient-pilot-hero.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 754px;
}
.pilot-page .brand {
  width: 232px;
  height: 55px;
  aspect-ratio: auto;
}
.pilot-page .brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 232.344 / 55;
  object-fit: contain;
}
.pilot-hero-actions { justify-content: center; }
.pilot-mastery { background: var(--paper); }
.pilot-section-intro {
  width: min(608px, 100%);
  margin: 32px auto 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}
.pilot-chart-grid {
  margin-top: 56px;
  text-align: left;
  align-items: start;
}
.pilot-chart-card { font-size: 16px; line-height: 24px; }
.pilot-chart-card > p:first-child { margin: 0; }
.pilot-chart-card ul {
  margin-top: 0;
  padding-left: 24px;
  font-weight: 400;
}
.pilot-chart-media {
  margin: 32px 0 0;
  border-radius: 0;
  box-shadow: none;
}
.pilot-chart-card > p:last-child { margin-top: 12px; }

.pilot-gradient-flow {
  background-color: var(--paper);
  background-image: url("assets/figma-gradient-pilot-section.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 1180px;
}
.pilot-course-quality,
.pilot-results { background: transparent; }
.pilot-principles {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 16px;
  background: rgba(253, 252, 249, .88);
  box-shadow: var(--shadow);
}
.pilot-principles p {
  min-height: 160px;
  margin: 0;
  padding: 32px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
}
.pilot-principles p + p { border-left: .5px solid var(--line); }
.pilot-results .metrics { margin-top: 64px; }
.pilot-results .metric-list small { text-align: right; }

.pilot-steps {
  grid-template-columns: repeat(3, 330px);
  justify-content: space-between;
  gap: 0;
  margin-top: 64px;
}
.pilot-steps .step-card {
  width: 330px;
  min-height: 420px;
  display: grid;
  grid-template-rows: 264px 1fr;
  border-radius: 16px;
}
.pilot-steps .step-card img {
  width: 100%;
  height: 264px;
  aspect-ratio: auto;
  object-fit: cover;
}
.pilot-steps .step-card:nth-child(2) img { object-position: center top; }
.pilot-steps .step-card:nth-child(3) img { object-position: center 28%; }
.pilot-steps .step-card div {
  min-height: 156px;
  padding: 24px;
  background-position: center;
  background-size: cover;
}
.pilot-steps .step-card:nth-child(1) div { background-image: url("assets/pilot-gradient-hero.png"); }
.pilot-steps .step-card:nth-child(2) div { background-image: url("assets/pilot-gradient-section.png"); }
.pilot-steps .step-card:nth-child(3) div { background-image: url("assets/pilot-gradient-footer.png"); }
.pilot-steps .step-card h3 { font-size: 20px; line-height: 24px; }
.pilot-steps .step-card p { margin-top: 8px; font-size: 16px; line-height: 24px; }

.pilot-table-shell {
  margin-top: 48px;
  overflow: hidden;
  border: .5px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
}
.pilot-table-shell .data-table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: none;
}
.pilot-table-shell .data-table th,
.pilot-table-shell .data-table td { border: 0; }
.pilot-table-shell .data-table th:not(:last-child),
.pilot-table-shell .data-table td:not(:last-child) { border-right: .5px solid var(--line); }
.pilot-table-shell .data-table th,
.pilot-table-shell .data-table tbody tr:not(:last-child) td { border-bottom: .5px solid var(--line); }
.pilot-apply-copy {
  width: min(792px, 100%);
  margin-inline: auto;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .pilot-steps {
    grid-template-columns: repeat(3, minmax(0, 330px));
    gap: 24px;
  }
  .pilot-steps .step-card { width: 100%; }
}

@media (max-width: 900px) {
  .pilot-page {
    background-size: auto 1000px;
  }
  .pilot-page .brand { width: 190px; height: auto; }
  .pilot-chart-grid { gap: 64px; }
  .pilot-principles { grid-template-columns: 1fr; }
  .pilot-principles p { min-height: 0; }
  .pilot-principles p + p {
    border-top: .5px solid var(--line);
    border-left: 0;
  }
  .pilot-gradient-flow { background-size: auto 1500px; }
  .pilot-steps {
    grid-template-columns: 330px;
    justify-content: center;
    gap: 32px;
  }
  .pilot-table-shell { overflow-x: auto; }
  .pilot-table-shell .data-table {
    display: table;
    min-width: 760px;
    overflow: visible;
  }
}

@media (max-width: 560px) {
  .pilot-page { background-size: auto 1100px; }
  .pilot-page .brand { width: 190px; }
  .pilot-hero-actions .button { width: 100%; }
  .pilot-chart-card ul { padding-left: 20px; }
  .pilot-gradient-flow { background-size: auto 1360px; }
  .pilot-principles p { padding: 24px; }
  .pilot-steps { grid-template-columns: minmax(0, 330px); }
}

/* Donate page — matched to the final Figma composition */
.donate-page {
  --donate-shadow:
    -6px 7px 20px rgba(6, 38, 111, .10),
    -22px 28px 36px rgba(6, 38, 111, .09),
    -50px 64px 48px rgba(6, 38, 111, .05),
    -88px 113px 57px rgba(6, 38, 111, .01);
  background-color: var(--paper);
  background-image: url("assets/figma-gradient-donate-hero.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 754px;
}
.donate-page figure { margin: 0; }
.donate-page .brand {
  width: 232px;
  height: 55px;
  aspect-ratio: auto;
}
.donate-page .brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 232.344 / 55;
  object-fit: contain;
}
.donate-page .media-frame { box-shadow: var(--donate-shadow); }

.donate-hero { background: transparent; }
.donate-hero-inner {
  width: 100%;
  min-height: 674px;
  display: grid;
  grid-template-columns: minmax(0, 588px) minmax(0, min(46vw, 674px));
  align-items: center;
  justify-content: space-between;
  gap: clamp(48px, 6vw, 96px);
  padding: 0 0 0 max(24px, calc((100vw - 1240px) / 2));
}
.donate-hero .hero-copy { width: 100%; max-width: 592px; }
.donate-hero h1 {
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -.1px;
}
.donate-hero .lead {
  margin-top: 32px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .1px;
}
.donate-hero .hero-media {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  align-self: stretch;
  max-height: 674px;
  border-radius: 0;
  box-shadow: none;
}
.donate-hero .hero-media img { object-position: center; }
.donate-button-row { gap: 24px; }
.donate-hero .donate-button-row { justify-content: center; }

.donate-crisis .quote {
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -.1px;
}
.donate-crisis-copy { font-size: 16px; line-height: 24px; letter-spacing: .08px; }
.donate-opportunities {
  margin-top: 24px;
  padding: 0;
  display: grid;
  gap: 4px;
  list-style: none;
}
.donate-crisis-copy .eyebrow { margin-top: 32px; }

.donate-teacher-media {
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
}
.donate-body-copy {
  margin-top: 32px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}

.donate-solution-copy {
  width: 100%;
  margin-top: 32px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}
.donate-school-logos {
  width: min(1106px, 100%);
  height: auto;
  margin: 64px auto 0;
}

.donate-essential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 56px;
  align-items: center;
}
.donate-essential-copy {
  grid-column: 2;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}

.donate-expansion-gradient {
  background-image: url("assets/figma-gradient-donate-expansion.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.donate-library,
.donate-ai-section { background: transparent; }
.donate-expansion-grid { margin-top: 48px; }
.donate-expansion-grid > div {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}
.donate-platform-media img { object-position: center top; }
.donate-coding-media img { object-position: center 55%; }

.donate-team-layout {
  display: grid;
  grid-template-columns: minmax(0, 506px) minmax(0, 654px);
  justify-content: space-between;
  gap: 64px;
  align-items: center;
}
.donate-team-copy {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}
.donate-team-intro { margin-top: 32px; }
.donate-partner-triangle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 32px;
  align-items: start;
}
.donate-partner-triangle article {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 21px;
}
.donate-partner-triangle article:first-child {
  width: min(310px, 100%);
  grid-column: 1 / -1;
  justify-self: center;
}
.donate-partner-triangle img {
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
}

.donate-started-copy {
  width: min(1000px, 100%);
  margin-top: 48px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: .1px;
}
.donate-started .donate-button-row { margin-top: 32px; }

@media (max-width: 1100px) {
  .donate-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 46vw);
    gap: 48px;
  }
  .donate-team-layout { grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 900px) {
  .donate-page { background-size: auto 1000px; }
  .donate-page .brand { width: 190px; height: auto; }
  .donate-hero-inner {
    width: min(100% - 48px, 1240px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 52px 0 72px;
  }
  .donate-hero .hero-copy { margin-inline: auto; }
  .donate-hero .hero-media {
    width: min(674px, 100%);
    max-height: none;
    justify-self: center;
    border-radius: 16px;
  }
  .donate-essential-grid { grid-template-columns: 1fr; }
  .donate-essential-grid .media-frame { order: -1; }
  .donate-essential-copy { grid-column: auto; }
  .donate-team-layout { grid-template-columns: 1fr; }
  .donate-team-copy { max-width: 620px; }
  .donate-partner-triangle { width: min(654px, 100%); margin-inline: auto; }
}

@media (max-width: 560px) {
  .donate-page { background-size: auto 1040px; }
  .donate-page .brand { width: 190px; }
  .donate-hero-inner { width: calc(100% - 32px); padding-top: 52px; }
  .donate-hero h1,
  .donate-crisis .quote { font-size: 32px; line-height: 36px; }
  .donate-hero .lead { font-size: 18px; line-height: 27px; }
  .donate-hero .hero-media { border-radius: 12px; }
  .donate-hero .donate-button-row { width: 100%; }
  .donate-school-logos { margin-top: 40px; }
  .donate-partner-triangle { grid-template-columns: 1fr; gap: 40px; }
  .donate-partner-triangle article:first-child { grid-column: auto; }
  .donate-partner-triangle article { width: min(310px, 100%); justify-self: center; }
  .donate-started-copy { font-size: 18px; line-height: 27px; }
}

/* Join page — matched to the final Figma composition */
.join-page {
  --join-shadow:
    -6px 7px 20px rgba(6, 38, 111, .10),
    -22px 28px 36px rgba(6, 38, 111, .09),
    -50px 64px 48px rgba(6, 38, 111, .05),
    -88px 113px 57px rgba(6, 38, 111, .01);
  background-color: var(--paper);
  background-image: url("assets/figma-gradient-join-hero.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 544px;
}
.join-page .brand {
  width: 232px;
  height: 55px;
  aspect-ratio: auto;
}
.join-page .brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 232.344 / 55;
  object-fit: contain;
}

.join-hero {
  min-height: 544px;
  margin-top: -80px;
  padding-top: 80px;
  display: grid;
  place-items: center;
  text-align: center;
}
.join-hero h1 {
  width: min(1000px, 100%);
  margin-inline: auto;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -.1px;
}
.join-opportunities { background: var(--paper); }
.join-opportunity-stack {
  width: min(680px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 48px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}
.join-opportunity-stack .eyebrow {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: .05px;
}
.join-opportunity-stack > div p + p { margin-top: 24px; }
.join-opportunity-stack ul {
  margin-top: 0;
  padding-left: 0;
  list-style: none;
}
.join-apply { margin-top: 32px; }

.join-values-intro {
  width: min(876px, 100%);
  margin-top: 32px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}
.join-values .value-card { box-shadow: var(--join-shadow); }

.join-sayings-shell {
  width: min(1106px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border: .5px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--join-shadow);
}
.join-sayings {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  box-shadow: none;
}
.join-sayings th,
.join-sayings td {
  padding: 20px 32px;
  border: 0;
  border-right: .5px solid var(--line);
  border-bottom: .5px solid var(--line);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}
.join-sayings th {
  padding-block: 24px;
  font-size: 20px;
  line-height: 24px;
}
.join-sayings tr > :last-child { border-right: 0; }
.join-sayings tbody tr:last-child td { border-bottom: 0; }
.join-sayings td:first-child { width: 34%; text-align: center; }

.join-project-section { min-height: 680px; }
.join-project-card {
  padding: 48px;
  border-radius: 16px;
  background: rgba(253, 252, 249, .9);
  box-shadow: var(--join-shadow);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}
.join-project-card ul {
  margin-top: 24px;
  padding-left: 24px;
  display: grid;
  gap: 16px;
}

.join-team-intro {
  margin-top: 32px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .08px;
}
.join-team-grid {
  grid-template-columns: repeat(3, 264px);
  gap: 48px 88px;
}
.join-team-grid .team-card {
  width: 264px;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper);
  box-shadow: var(--join-shadow);
}
.join-team-grid .team-card:first-child {
  grid-column: 1 / -1;
  justify-self: center;
}
.join-team-grid .team-copy {
  min-height: 98px;
  padding: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(49px, auto));
}
.join-team-grid .team-copy::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / 3;
  background: url("assets/join-gradient-project.png") center / cover;
}
.join-team-grid .team-copy strong,
.join-team-grid .team-copy span {
  grid-column: 2;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: .5px solid var(--line);
}
.join-team-grid .team-copy strong {
  grid-row: 1;
  font-size: 18px;
  line-height: 24px;
}
.join-team-grid .team-copy span {
  grid-row: 2;
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 900px) {
  .join-page {
    background-size: auto 544px;
  }
  .join-page .brand { width: 190px; height: auto; }
  .join-hero { min-height: 544px; padding-inline: 24px; }
  .join-project-section .two-col { gap: 48px; }
  .join-team-grid {
    grid-template-columns: repeat(2, minmax(0, 264px));
    gap: 40px;
  }
  .join-team-grid .team-card:first-child { grid-column: 1 / -1; }
  .join-sayings-shell { overflow-x: auto; }
  .join-sayings { display: table; overflow: visible; }
}

@media (max-width: 560px) {
  .join-page .brand { width: 190px; }
  .join-hero {
    min-height: 480px;
    padding-inline: 0;
  }
  .join-hero h1 { font-size: 32px; line-height: 36px; }
  .join-opportunity-stack { gap: 40px; }
  .join-project-card { padding: 28px 24px; }
  .join-team-grid { grid-template-columns: 1fr; gap: 40px; }
  .join-team-grid .team-card,
  .join-team-grid .team-card:first-child {
    width: min(310px, 100%);
    grid-column: auto;
    justify-self: center;
  }
  .join-team-grid .team-copy strong { font-size: 17px; }
}

/* Exact 1440px desktop geometry from the five final Figma frames. */
@media (min-width: 901px) {
  .hero h1 {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -.1px;
  }
  .hero-actions,
  .button-row { gap: 24px; }
  .site-footer {
    height: 247px;
    min-height: 247px;
    padding-block: 96px;
  }

  /* Landing — 1440 × 9343 */
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) .hero-inner {
    grid-template-columns: 588px 604px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(1) .two-col {
    grid-template-columns: 592px 592px;
    gap: 56px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(1) .rule-list {
    height: 387.5px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section .section-intro {
    letter-spacing: .1px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section .rule-list li {
    height: 64.5px;
    min-height: 64.5px;
    padding: 8px 0 8px 24px;
    letter-spacing: .08px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(2) .two-col {
    height: 387.5px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(2) .two-col > :last-child .section-intro {
    margin-top: 16px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(3) .two-col {
    grid-template-columns: 576px 616px;
    gap: 48px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(3) .section-intro {
    margin-top: 24px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(3) .section-intro p + p {
    margin-top: 30px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(4) .feature-cards {
    gap: 125px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(5) .split-block {
    height: 400px;
    min-height: 400px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(5) .platform-statement {
    width: 770px;
    margin: 88px auto 0;
    font-size: 16px;
    line-height: 24px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(6) .section-intro {
    width: 1240px;
    max-width: none;
    height: 300px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(6) .section-intro p + p {
    margin-top: 30px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(6) .eyebrow {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(6) .button-row {
    margin-top: 48px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(7) .section-intro,
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(8) .section-intro {
    width: 1240px;
    max-width: none;
  }
  .video-placeholder.gradient-landing-footer {
    height: 686px;
    aspect-ratio: auto;
    background-image: url("assets/landing-video-reference.png");
    background-size: 100% 100%;
  }
  .video-placeholder.gradient-landing-footer::after { display: none; }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(7) .button-row {
    margin-top: 48px;
  }
  .developer-layout { height: 464px; }
  .developer-layout .number-list {
    height: 464px;
    margin-top: 0;
    display: grid;
    grid-template-rows: repeat(4, 104px);
    gap: 16px;
  }
  .developer-layout .number-row {
    height: 104px;
    padding: 0 0 16px;
    grid-template-columns: 100px 1fr;
    gap: 48px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(8) .container > .section-intro:last-child {
    margin-top: 48px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(9) .button-row {
    margin-top: 48px;
    gap: 48px;
  }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(1) { height: 643.5px; }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(2) { height: 643.5px; }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(3) { height: 832px; }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(4) { height: 784px; }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(5) { height: 1200px; }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(6) { height: 876px; }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(7) { height: 1222px; }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(8) { height: 1012px; }
  body:not(.build-page):not(.pilot-page):not(.donate-page):not(.join-page) > .section:nth-of-type(9) { height: 529px; }

  /* Build — 1440 × 7572 */
  .build-hero-gallery figure:nth-child(n) img {
    width: 100%;
    height: 100%;
    transform: none;
  }
  .build-trust-copy p { height: 87px; }
  .build-process { height: 1272px; }
  .build-process-inner { height: 1016px; }
  .build-page .build-process-platform {
    height: 500px;
    margin-top: 64px;
  }
  .build-process-platform img {
    width: 100%;
    height: auto;
    max-width: none;
  }
  .build-contact { height: 484px; }

  /* Pilot — 1440 × 6574 */
  .pilot-page { background-size: 100% 936px; }
  .pilot-hero {
    height: 936px;
    min-height: 936px;
  }
  .pilot-hero .hero-inner {
    min-height: 856px;
    grid-template-columns: 596px 596px;
    gap: 48px;
    padding-block: 128px;
  }
  .pilot-hero .hero-copy { width: 596px; }
  .pilot-hero-actions {
    gap: 24px;
    margin-top: 48px;
  }
  .pilot-hero .hero-media {
    width: 596px;
    height: 600px;
  }
  .pilot-mastery { height: 1008px; }
  .pilot-chart-grid {
    height: 564px;
    margin-top: 64px;
    gap: 48px;
  }
  .pilot-chart-media {
    width: 596px;
    height: 400px;
    aspect-ratio: auto;
  }
  .pilot-course-quality { height: 556px; }
  .pilot-principles {
    min-height: 192px;
    margin-top: 64px;
    padding: 36px;
    grid-template-columns: repeat(3, 320px);
    column-gap: 104px;
  }
  .pilot-principles p {
    min-height: 120px;
    padding: 0;
    display: block;
    position: relative;
    letter-spacing: .08px;
  }
  .pilot-principles p + p { border-left: 0; }
  .pilot-principles p + p::before {
    content: "";
    position: absolute;
    top: 0;
    left: -52px;
    width: .5px;
    height: 120px;
    background: var(--line);
  }
  .pilot-results { height: 1092px; }
  .pilot-gradient-flow { background-size: 100% 1374px; }
  .pilot-results .metrics {
    height: 728px;
    grid-template-columns: 600px 592px;
  }
  .pilot-results .metrics > .media-frame {
    width: 600px;
    height: 728px;
    aspect-ratio: auto;
  }
  .pilot-results .metric-list {
    width: 592px;
    height: 728px;
    padding: 48px 24px 48px 48px;
    display: block;
  }
  .pilot-results .metric strong {
    width: 200px;
    height: 88px;
    font-size: 76px;
    line-height: 88px;
    letter-spacing: -.76px;
  }
  .pilot-results .metric p {
    height: 48px;
    margin-top: 12px;
  }
  .pilot-results .metric:first-child p { height: 72px; }
  .pilot-results .metric + .metric { margin-top: 48px; }
  .pilot-results .metric-list small {
    display: block;
    height: 20px;
    margin-top: 48px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .216px;
  }
  .pilot-plan { height: 912px; }
  .pilot-steps {
    height: 436px;
    grid-template-columns: repeat(3, 280px);
    justify-content: center;
    gap: 86px;
  }
  .pilot-steps .step-card {
    width: 280px;
    height: 436px;
    min-height: 436px;
    grid-template-rows: 254px 24px 108px 50px;
    background-position: center;
    background-size: cover;
  }
  .pilot-steps .step-card img {
    width: 280px;
    height: 254px;
    grid-row: 1;
  }
  .pilot-steps .step-card div {
    min-height: 108px;
    grid-row: 3;
    padding: 0 24px;
    background: transparent;
  }
  .pilot-steps .step-card h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .pilot-steps .step-card p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
  }
  .pilot-steps .step-card:nth-child(1) { background-image: url("assets/pilot-step-gradient-1.png"); }
  .pilot-steps .step-card:nth-child(2) { background-image: url("assets/pilot-step-gradient-2.png"); }
  .pilot-steps .step-card:nth-child(3) { background-image: url("assets/pilot-step-gradient-3.png"); }
  .pilot-steps .step-card:nth-child(n) div { background: transparent; }
  .pilot-plan .button-row { margin-top: 64px; }
  .pilot-requirements { height: 939px; }
  .pilot-table-shell {
    height: 575px;
    margin-top: 64px;
    border: 0;
    border-radius: 12px;
    outline: 1px solid var(--navy);
    outline-offset: -1px;
    background: var(--ink);
  }
  .pilot-table-shell .data-table {
    height: 575px;
    display: grid;
    grid-template-columns: repeat(3, 412.6667px);
    grid-template-rows: 92px repeat(3, 160px);
    gap: 1px;
    background: var(--ink);
  }
  .pilot-table-shell .data-table thead,
  .pilot-table-shell .data-table tbody,
  .pilot-table-shell .data-table tr { display: contents; }
  .pilot-table-shell .data-table th,
  .pilot-table-shell .data-table td {
    width: auto;
    height: auto;
    padding: 0 32px;
    border: 0;
    display: flex;
    align-items: center;
    background: var(--paper);
  }
  .pilot-table-shell .data-table th {
    font-size: 24px;
    line-height: 28px;
    justify-content: center;
    background: var(--yellow);
  }
  .pilot-table-shell .data-table td {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .08px;
  }
  .pilot-page .full-bleed-image { height: 500px; }
  .pilot-page .gradient-pilot-footer { height: 384px; }
  .pilot-apply-copy {
    height: 48px;
    line-height: 24px;
  }

  /* Donate — 1440 × 7439 */
  .donate-page { background-size: 100% 680px; }
  .donate-hero {
    height: 680px;
    min-height: 680px;
  }
  .donate-hero-inner {
    height: 600px;
    min-height: 600px;
    grid-template-columns: 692px 700px;
    gap: 48px;
    padding-left: 0;
  }
  .donate-hero .hero-copy {
    width: 592px;
    max-width: 592px;
    margin-left: 100px;
  }
  .donate-hero .donate-button-row { margin-top: 48px; }
  .donate-hero .hero-media {
    width: 700px;
    height: 600px;
    max-height: none;
    aspect-ratio: auto;
  }
  .donate-crisis { height: 576px; }
  .donate-crisis > .two-col {
    grid-template-columns: 604px 604px;
    gap: 32px;
  }
  .donate-crisis-copy { height: 320px; }
  .donate-crisis-copy > p + p { margin-top: 24px; }
  .donate-opportunities {
    margin-top: 48px;
    gap: 16px;
    padding-left: 64px;
  }
  .donate-crisis-copy .eyebrow {
    margin-top: 48px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: .08px;
  }
  .donate-teacher { height: 848px; }
  .donate-body-copy {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: .1px;
  }
  .donate-body-copy p + p { margin-top: 30px; }
  .donate-solution { height: 808px; }
  .donate-solution-copy { height: 168px; }
  .donate-solution-copy p + p { margin-top: 24px; }
  .donate-school-logos { margin-top: 32px; }
  .donate-essential { height: 888px; }
  .donate-essential-grid {
    height: 632px;
    grid-template-columns: 588px 588px;
    grid-template-rows: 320px 264px;
    gap: 48px 64px;
  }
  .donate-essential-grid > h2 {
    grid-row: 1 / 3;
    align-self: center;
  }
  .donate-essential-grid > .media-frame {
    width: 588px;
    height: 320px;
    aspect-ratio: auto;
  }
  .donate-essential-copy { height: 264px; }
  .donate-library { height: 816px; }
  .donate-expansion-grid {
    grid-template-columns: 592px 600px;
    gap: 48px;
    margin-top: 56px;
  }
  .donate-expansion-grid > div {
    height: 360px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: .1px;
  }
  .donate-platform-media {
    width: 600px;
    height: 460px;
    aspect-ratio: auto;
  }
  .donate-ai-section { height: 716px; }
  .donate-ai-section > .two-col {
    grid-template-columns: 600px 594px;
    gap: 46px;
  }
  .donate-ai-section .donate-body-copy {
    height: 300px;
    margin-top: 46px;
  }
  .donate-coding-media {
    width: 600px;
    height: 460px;
    aspect-ratio: auto;
  }
  .donate-coding-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transform: none;
  }
  .donate-team { height: 928px; }
  .donate-team-layout {
    height: 672px;
    grid-template-columns: 408px 736px;
    gap: 96px;
  }
  .donate-team-copy {
    width: 408px;
    height: 336px;
  }
  .donate-partner-triangle {
    height: 672px;
    grid-template-columns: repeat(2, 320px);
    grid-template-rows: 300px 324px;
    gap: 48px 96px;
  }
  .donate-partner-triangle article:first-child { width: 320px; }
  .donate-started { height: 932px; }
  .donate-started .number-list {
    height: 344px;
    margin-top: 64px;
    display: grid;
    grid-template-rows: repeat(3, 104px);
    gap: 16px;
  }
  .donate-started .number-row {
    height: 104px;
    padding: 0 0 16px;
  }
  .donate-started-copy {
    width: 1240px;
    height: 48px;
    margin-top: 64px;
    line-height: 24px;
  }
  .donate-started .donate-button-row {
    margin-top: 64px;
    gap: 48px;
  }

  /* Join — 1440 × 7202 */
  .join-page { background-size: 100% 338px; }
  .join-hero {
    height: 338px;
    min-height: 338px;
    padding-top: 208px;
    place-items: start center;
  }
  .join-hero h1 { width: 1240px; }
  .join-opportunities {
    height: 714px;
    padding-block: 54px 80px;
  }
  .join-opportunity-stack {
    height: 500px;
    gap: 32px;
  }
  .join-opportunity-stack .eyebrow {
    font-size: 20px;
    line-height: 24px;
  }
  .join-opportunity-stack > div:first-child {
    height: 322px;
    padding-bottom: 32px;
    border-bottom: .5px solid var(--line);
  }
  .join-opportunity-stack > div:last-child { height: 146px; }
  .join-values-section { height: 1628px; }
  .join-values { margin-top: 96px; gap: 48px; }
  .join-values .value-card { height: 192px; }
  .join-values .value-card h3 {
    margin-bottom: 20px;
    line-height: 28px;
    letter-spacing: 0;
  }
  .join-values .value-card p { letter-spacing: .08px; }
  .join-sayings-section { height: 1074px; }
  .join-sayings-shell {
    width: 1240px;
    height: 818px;
    border: 0;
    border-radius: 12px;
    outline: 1px solid var(--ink);
    outline-offset: -1px;
    background: var(--ink);
  }
  .join-sayings {
    height: 818px;
    padding-top: 1px;
    display: grid;
    grid-template-columns: 400px 839px;
    grid-template-rows: 91px repeat(6, 120px);
    gap: 1px;
    background: var(--ink);
  }
  .join-sayings thead,
  .join-sayings tbody,
  .join-sayings tr { display: contents; }
  .join-sayings th,
  .join-sayings td {
    width: auto;
    height: auto;
    padding: 0 32px;
    border: 0;
    display: flex;
    align-items: center;
    background: var(--paper);
  }
  .join-sayings th {
    font-size: 24px;
    line-height: 28px;
    justify-content: center;
    background: var(--yellow);
  }
  .join-sayings td:first-child { width: auto; justify-content: center; }
  .join-project-section {
    height: 664px;
    min-height: 664px;
  }
  .join-project-section > .two-col {
    grid-template-columns: 596px 596px;
    gap: 48px;
  }
  .join-project-card {
    width: 596px;
    height: 408px;
    padding: 24px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: .1px;
  }
  .join-project-card ul { margin-top: 0; gap: 0; }
  .join-team-section { height: 2537px; }
  .join-team-grid {
    grid-template-columns: repeat(3, 304px);
    gap: 48px;
  }
  .join-team-grid .team-card,
  .join-team-grid .team-card:first-child {
    position: relative;
    width: 304px;
    height: 385px;
    padding-left: 24px;
    display: grid;
    grid-template-rows: 300px 73px;
    gap: 12px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }
  .join-team-grid .team-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 24px;
    background: url("assets/join-team-strip-01.png") center / 100% 100%;
  }
  .join-team-grid .team-card:nth-child(2)::before { background-image: url("assets/join-team-strip-02.png"); }
  .join-team-grid .team-card:nth-child(3)::before { background-image: url("assets/join-team-strip-03.png"); }
  .join-team-grid .team-card:nth-child(4)::before { background-image: url("assets/join-team-strip-04.png"); }
  .join-team-grid .team-card:nth-child(5)::before { background-image: url("assets/join-team-strip-05.png"); }
  .join-team-grid .team-card:nth-child(6)::before { background-image: url("assets/join-team-strip-06.png"); }
  .join-team-grid .team-card:nth-child(7)::before { background-image: url("assets/join-team-strip-07.png"); }
  .join-team-grid .team-card:nth-child(8)::before { background-image: url("assets/join-team-strip-08.png"); }
  .join-team-grid .team-card:nth-child(9)::before { background-image: url("assets/join-team-strip-09.png"); }
  .join-team-grid .team-card:nth-child(10)::before { background-image: url("assets/join-team-strip-10.png"); }
  .join-team-grid .team-card:nth-child(11)::before { background-image: url("assets/join-team-strip-11.png"); }
  .join-team-grid .team-card:nth-child(12)::before { background-image: url("assets/join-team-strip-12.png"); }
  .join-team-grid .team-card:nth-child(13)::before { background-image: url("assets/join-team-strip-13.png"); }
  .join-team-grid .team-card > img,
  .join-team-grid .team-card > .team-placeholder {
    width: 280px;
    height: 300px;
    aspect-ratio: auto;
  }
  .join-team-grid .team-copy {
    width: 280px;
    min-height: 73px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 32.5px 40.5px;
    background: var(--paper);
  }
  .join-team-grid .team-copy::before { content: none; }
  .join-team-grid .team-copy strong,
  .join-team-grid .team-copy span {
    grid-column: 1;
    padding: 0 16px;
    align-items: flex-start;
  }
  .join-team-grid .team-copy strong {
    padding-top: 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: .05px;
  }
  .join-team-grid .team-copy span {
    padding-top: 8px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .08px;
  }
}
