@font-face {
  font-family: "Albert Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/albert-sans-latin-ext.2260ced3c4d5.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Albert Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/albert-sans-latin.acf304385d06.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

: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; }
body.modal-open { overflow: hidden; }

.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; }
.nav-home { display: none; }
.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.6042f5e8b471.png"); }
.gradient-landing-blue { background-image: url("assets/figma-gradient-landing-blue.d57c2470e950.png"); }
.gradient-landing-orange { background-image: url("assets/figma-gradient-landing-orange.c89b73c40f58.png"); }
.gradient-landing-footer { background-image: url("assets/figma-gradient-landing-footer.d206092829cc.png"); }
.gradient-build-hero { background-image: url("assets/figma-gradient-build-hero.8a474cd06e4e.png"); }
.gradient-build-footer { background-image: url("assets/figma-gradient-build-footer.97a7030f0b85.png"); }
.gradient-pilot-hero { background-image: url("assets/figma-gradient-pilot-hero.cc4a191308d0.png"); }
.gradient-pilot-section { background-image: url("assets/figma-gradient-pilot-section.9b2c0ebf4d9b.png"); }
.gradient-pilot-footer { background-image: url("assets/figma-gradient-pilot-footer.9dad681371bc.png"); }
.gradient-donate-hero { background-image: url("assets/figma-gradient-donate-hero.f25344289caf.png"); }
.gradient-donate-section { background-image: url("assets/figma-gradient-donate-section.2a68992c232c.png"); }
.gradient-donate-footer { background-image: url("assets/figma-gradient-donate-footer.51850b568e19.png"); }
.gradient-join-hero { background-image: url("assets/figma-gradient-join-hero.a11e43456907.png"); }
.gradient-join-values { background-image: url("assets/figma-gradient-join-values.5e50c17d108d.png"); }
.gradient-join-project { background-image: url("assets/figma-gradient-join-project.fb00d89b6cb7.png"); }

/* Homepage gradient experiment: the original image remains a solid-color fallback. */
.landing-page .gradient-landing-hero { background-color: #0f8cf1; background-image: none; }
.landing-page .gradient-landing-blue { background-color: #9bd6fe; background-image: none; }
.landing-page .gradient-landing-orange { background-color: #0f8cf1; background-image: none; }
.landing-page .gradient-landing-footer { background-color: #9bd6fe; background-image: none; }
.webgl-gradient { position: relative; overflow: hidden; isolation: isolate; }
.webgl-gradient__stage {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  display: block;
  overflow: hidden;
  pointer-events: none;
  transform-origin: center;
}
.webgl-gradient__canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  display: block;
  max-width: none;
  max-height: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.webgl-gradient__sun,
.webgl-gradient__glow,
.webgl-gradient__haze {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
}
.webgl-gradient__sun {
  border-radius: 50%;
  background: radial-gradient(ellipse farthest-side at center, #fb684a 37.5%, rgba(155, 214, 254, 0) 100%);
}
.webgl-gradient__glow {
  border-radius: 50%;
  background: linear-gradient(0deg, #ffc24a, rgba(255, 194, 74, 0));
  filter: blur(64px);
  opacity: .8;
}
.webgl-gradient__haze {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: 100% 100%;
}
.webgl-gradient--ready { background-color: var(--paper); }

.page-gradient-layer {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  pointer-events: none;
}
.pilot-page,
.donate-page,
.join-page { position: relative; }
.pilot-page > header,
.donate-page > header,
.join-page > header { position: relative; z-index: 2; }
.pilot-page > main,
.pilot-page > footer,
.donate-page > main,
.donate-page > footer,
.join-page > main,
.join-page > footer { position: relative; z-index: 1; }
.pilot-hero-gradient { height: 754px; }
.donate-hero-gradient { height: 754px; }
.join-hero-gradient { height: 544px; }
[data-webgl-gradient].gradient-build-hero,
[data-webgl-gradient].gradient-build-footer,
[data-webgl-gradient].pilot-gradient-flow,
[data-webgl-gradient].gradient-pilot-footer,
[data-webgl-gradient].gradient-donate-section,
[data-webgl-gradient].gradient-donate-footer,
[data-webgl-gradient].gradient-join-values,
[data-webgl-gradient].gradient-join-project { background-image: none; }

.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 picture { display: block; width: 100%; height: 100%; }
.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 {
  flex: 0 0 auto;
  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;
  white-space: nowrap;
  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:disabled {
  cursor: not-allowed;
  opacity: .58;
  transform: none;
  box-shadow: none;
}
.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.277f0217bd3a.png") center / cover; }
.landing-page .accent-list::before { display: none; }
.gradient-accent { min-width: 0; background: #9bd6fe; }

.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: 0; aspect-ratio: 330 / 420; border-radius: 16px; overflow: hidden; padding: 32px 24px; display: flex; flex-direction: column; justify-content: space-between; background-color: #b7c4cf; background-position: center; background-size: cover; box-shadow: var(--shadow); }
.feature-card-build.lazy-background--ready { background-image: url("assets/card-build-bg.b24da8a4860e.webp"); }
.feature-card-remix.lazy-background--ready { background-image: url("assets/card-remix-bg.c39000201a40.webp"); }
.feature-card-publish.lazy-background--ready { background-image: url("assets/card-publish-bg.01895ea1d1b6.webp"); }
.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: 1240 / 686; overflow: hidden; }
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.landing-intro-video { background: #0d1b2b; }
.landing-intro-video-poster,
.landing-intro-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.landing-intro-video-play {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.landing-intro-video-play:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -8px;
}
.landing-intro-video.is-playing .landing-intro-video-poster,
.landing-intro-video.is-playing .landing-intro-video-play { display: none; }
.landing-intro-video-player[hidden] { display: none; }

.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-inner {
  width: min(1240px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.site-footer-brand { flex: none; }
.site-footer img { display: block; width: 232px; height: 55px; }
.site-footer-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-footer-nav a {
  position: relative;
  padding-block: 6px;
  color: var(--paper);
}
.site-footer-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}
.site-footer-nav a:hover::after,
.site-footer-nav a:focus-visible::after,
.site-footer-nav a[aria-current="page"]::after { right: 0; }

.guide-modal[hidden] { display: none; }
.guide-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 200ms ease;
}
.guide-modal.is-open { opacity: 1; }
.guide-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 46, .68);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.guide-modal-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  padding: 52px;
  overflow-y: auto;
  border: 1px solid rgba(30,53,91,.12);
  border-radius: 24px;
  background:
    linear-gradient(rgba(253,252,249,.94), rgba(253,252,249,.94)),
    url("assets/figma-gradient-landing-hero.6042f5e8b471.png") center / cover;
  box-shadow: 0 32px 100px rgba(14, 29, 57, .32);
  opacity: 0;
  transform: translateY(20px) scale(.98);
  transition: opacity 200ms ease, transform 200ms ease;
}
.guide-modal.is-open .guide-modal-dialog {
  opacity: 1;
  transform: none;
}
.guide-modal-dialog:focus { outline: none; }
.guide-modal-dialog h2 {
  max-width: 500px;
  padding-right: 28px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.08;
}
.guide-modal-dialog > div > p:not(.guide-modal-coming-soon) {
  margin-top: 12px;
  font-size: 18px;
}
.guide-modal-coming-soon {
  margin-top: 28px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}
.guide-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(30,53,91,.16);
  border-radius: 50%;
  background: rgba(253,252,249,.78);
  color: var(--ink);
  cursor: pointer;
}
.guide-modal-close span {
  position: absolute;
  top: 21px;
  left: 11px;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.guide-modal-close span:first-child { transform: rotate(45deg); }
.guide-modal-close span:last-child { transform: rotate(-45deg); }
.guide-modal-close:hover { background: var(--paper); }
.guide-modal-close:focus-visible,
.guide-form-field input:focus-visible {
  outline: 3px solid rgba(255,194,74,.9);
  outline-offset: 2px;
}
.guide-signup-form {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.guide-form-field {
  display: grid;
  gap: 8px;
}
.guide-form-field label { font-weight: 700; }
.guide-form-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(30,53,91,.3);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  color: var(--ink);
  font: inherit;
}
.guide-form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.guide-form-error {
  padding: 12px 14px;
  border-left: 4px solid var(--coral);
  background: rgba(255,122,97,.12);
  color: #6e1f16;
}
.guide-submit { justify-self: start; }
.guide-submit:disabled { cursor: wait; opacity: .65; }
.guide-privacy-note {
  color: rgba(37,32,37,.78);
  font-size: 13px;
  line-height: 1.45;
}
.guide-privacy-note a { text-decoration: underline; text-underline-offset: 2px; }
.guide-modal-success { padding-block: 44px 20px; text-align: center; }
.guide-modal-success .button { margin-top: 32px; }
.guide-modal-success .button + .button { margin-left: 12px; }
.guide-modal-secondary {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.privacy-hero {
  padding: 72px 24px 88px;
  text-align: center;
}
.privacy-hero h1 {
  color: var(--navy);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1;
}
.privacy-hero p {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 20px;
}
.privacy-content {
  width: min(840px, calc(100% - 48px));
  margin-inline: auto;
}
.privacy-content h2 {
  margin-top: 48px;
  color: var(--navy);
  font-size: 28px;
}
.privacy-content p,
.privacy-content ul { margin-top: 16px; }
.privacy-content a { text-decoration: underline; text-underline-offset: 2px; }

.pilot-guide-page { position: relative; }
.pilot-guide-page > header { position: relative; z-index: 2; }
.pilot-guide-page > main,
.pilot-guide-page > footer { position: relative; z-index: 1; }
.pilot-guide-gradient {
  height: 760px;
  background: url("assets/figma-gradient-pilot-hero.cc4a191308d0.png") center / cover;
}
[data-webgl-gradient].pilot-guide-gradient { background-image: none; }
.pilot-guide-container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}
.pilot-guide-hero {
  min-height: 680px;
  padding: 100px 0 112px;
}
.pilot-guide-eyebrow,
.pilot-guide-label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pilot-guide-hero h1 {
  max-width: 1000px;
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: .96;
  letter-spacing: -.045em;
}
.pilot-guide-partner {
  margin-top: 28px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 650;
}
.pilot-guide-partner span { margin-inline: 10px; color: rgba(30,53,91,.45); }
.pilot-guide-lead {
  max-width: 790px;
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.55;
}
.pilot-guide-facts {
  max-width: 900px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(30,53,91,.18);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(253,252,249,.58);
  box-shadow: 0 18px 50px rgba(30,53,91,.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.pilot-guide-facts div {
  min-height: 106px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(30,53,91,.15);
}
.pilot-guide-facts div:last-child { border-right: 0; }
.pilot-guide-facts strong {
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
}
.pilot-guide-facts span { margin-top: 8px; color: rgba(37,32,37,.72); }
.pilot-guide-layout {
  padding-block: 112px 128px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.pilot-guide-sidebar {
  position: sticky;
  top: 32px;
}
.pilot-guide-sidebar nav {
  padding: 24px;
  border: 1px solid rgba(30,53,91,.14);
  border-radius: 16px;
  background: rgba(253,252,249,.9);
  box-shadow: 0 18px 48px rgba(30,53,91,.08);
}
.pilot-guide-sidebar p {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pilot-guide-sidebar ol {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
  list-style: none;
  counter-reset: guide-nav;
}
.pilot-guide-sidebar li { counter-increment: guide-nav; }
.pilot-guide-sidebar a {
  min-height: 38px;
  padding: 8px 4px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(30,53,91,.1);
  color: rgba(37,32,37,.8);
  font-size: 14px;
  line-height: 1.3;
}
.pilot-guide-sidebar li:last-child a { border-bottom: 0; }
.pilot-guide-sidebar a::before {
  content: "0" counter(guide-nav);
  color: rgba(30,53,91,.45);
  font-size: 10px;
  font-weight: 700;
}
.pilot-guide-sidebar a:hover,
.pilot-guide-sidebar a:focus-visible { color: var(--navy); }
.pilot-guide-content { min-width: 0; }
.pilot-guide-section {
  padding-bottom: 112px;
  scroll-margin-top: 32px;
}
.pilot-guide-section + .pilot-guide-section {
  padding-top: 8px;
  border-top: 1px solid rgba(30,53,91,.14);
}
.pilot-guide-section-heading {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.pilot-guide-section-heading > span {
  color: var(--coral);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.pilot-guide-section-heading p {
  color: rgba(30,53,91,.6);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pilot-guide-section-heading h2 {
  margin-top: 5px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.pilot-guide-prose h3,
.pilot-guide-card h3,
.pilot-guide-note h3,
.pilot-guide-session h3,
.pilot-guide-access h3,
.pilot-guide-metric-group > h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}
.pilot-guide-prose p,
.pilot-guide-prose ul { margin-top: 18px; }
.pilot-guide-prose li + li,
.pilot-guide-card li + li { margin-top: 10px; }
.pilot-guide-callout {
  margin-top: 48px;
  padding: 40px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(225,241,251,.84), rgba(225,241,251,.84)),
    url("assets/figma-gradient-pilot-section.9b2c0ebf4d9b.png") center / cover;
  box-shadow: var(--shadow);
}
.pilot-guide-callout > h3 {
  max-width: 620px;
  margin-top: 12px;
  color: var(--navy);
  font-size: 28px;
}
.pilot-guide-success-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.pilot-guide-success-grid > div {
  padding: 24px;
  border: 1px solid rgba(30,53,91,.12);
  border-radius: 14px;
  background: rgba(253,252,249,.78);
}
.pilot-guide-success-grid strong {
  color: var(--coral);
  font-size: 28px;
}
.pilot-guide-success-grid h4 { margin: 8px 0 0; color: var(--navy); font-size: 18px; }
.pilot-guide-success-grid p { margin-top: 10px; font-size: 15px; line-height: 1.5; }
.pilot-guide-parameter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.pilot-guide-card {
  padding: 30px;
  border: 1px solid rgba(30,53,91,.13);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(30,53,91,.07);
}
.pilot-guide-card-wide { grid-column: 1 / -1; }
.pilot-guide-card-value {
  margin-top: 20px;
  color: var(--coral);
  font-size: 34px;
  font-weight: 700;
}
.pilot-guide-card ul { margin-top: 20px; }
.pilot-guide-note {
  margin-top: 28px;
  padding: 32px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
}
.pilot-guide-note > div { display: flex; align-items: flex-start; gap: 14px; }
.pilot-guide-note > div span {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
}
.pilot-guide-note h3 { color: var(--paper); }
.pilot-guide-note li + li { margin-top: 8px; }
.pilot-guide-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}
.pilot-guide-session {
  margin-top: 52px;
  padding: 36px;
  border: 1px solid rgba(30,53,91,.13);
  border-radius: 18px;
}
.pilot-guide-session ol {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
}
.pilot-guide-session li {
  min-height: 64px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(30,53,91,.12);
}
.pilot-guide-session li:last-child { border-bottom: 0; }
.pilot-guide-session li span { color: var(--coral); font-size: 13px; font-weight: 700; }
.pilot-guide-access {
  margin-top: 24px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  border-radius: 16px;
  background: rgba(255,194,74,.24);
}
.pilot-guide-table-shell {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(30,53,91,.16);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(30,53,91,.06);
}
.pilot-guide-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}
.pilot-guide-table th {
  padding: 18px 20px;
  background: var(--navy);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pilot-guide-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(30,53,91,.11);
  vertical-align: top;
}
.pilot-guide-table tr:last-child td { border-bottom: 0; }
.pilot-guide-table tbody tr:nth-child(even) { background: rgba(155,214,254,.09); }
.pilot-guide-timeline-table th:first-child,
.pilot-guide-timeline-table td:first-child { width: 120px; }
.pilot-guide-phase,
.pilot-guide-week,
.risk-high,
.risk-medium,
.risk-low {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.pilot-guide-phase { background: rgba(255,194,74,.35); color: #6b4800; }
.pilot-guide-week { background: rgba(155,214,254,.35); color: var(--navy); }
.pilot-guide-metric-group + .pilot-guide-metric-group { margin-top: 40px; }
.pilot-guide-metric-group > h3 { margin-bottom: 18px; }
.pilot-guide-qualitative { padding: 34px 40px; }
.pilot-guide-qualitative ul {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 36px;
}
.pilot-guide-risk-table { min-width: 900px; }
.pilot-guide-risk-table th:nth-child(2),
.pilot-guide-risk-table th:nth-child(3) { width: 110px; }
.risk-high { background: rgba(255,122,97,.22); color: #8f291b; }
.risk-medium { background: rgba(255,194,74,.32); color: #6b4800; }
.risk-low { background: rgba(155,214,254,.32); color: var(--navy); }
.pilot-guide-appendix-intro { margin: -24px 0 32px 48px; color: rgba(37,32,37,.72); }
.pilot-guide-appendices {
  display: grid;
  gap: 16px;
}
.pilot-guide-appendices details {
  border: 1px solid rgba(30,53,91,.14);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(30,53,91,.06);
}
.pilot-guide-appendices summary {
  min-height: 84px;
  padding: 24px 64px 24px 28px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.pilot-guide-appendices summary::-webkit-details-marker { display: none; }
.pilot-guide-appendices summary span {
  color: var(--coral);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pilot-guide-appendices summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30,53,91,.18);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 400;
}
.pilot-guide-appendices details[open] summary {
  border-bottom: 1px solid rgba(30,53,91,.12);
  background: rgba(155,214,254,.12);
}
.pilot-guide-appendices details[open] summary::after { content: "−"; }
.pilot-guide-appendix-body { padding: 36px; }
.pilot-guide-form-meta {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
}
.pilot-guide-agenda { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.pilot-guide-agenda > div {
  padding: 24px;
  border: 1px solid rgba(30,53,91,.12);
  border-radius: 14px;
}
.pilot-guide-agenda > div > strong { color: var(--coral); font-size: 13px; }
.pilot-guide-agenda h3 { margin-top: 8px; color: var(--navy); font-size: 20px; }
.pilot-guide-agenda h3 span { color: rgba(37,32,37,.55); font-size: 13px; font-weight: 500; }
.pilot-guide-agenda ul { margin-top: 14px; }
.pilot-guide-action-line {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.pilot-guide-action-line.blank span {
  height: 28px;
  border-bottom: 1px solid rgba(30,53,91,.3);
}
.pilot-guide-notes {
  min-height: 140px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(30,53,91,.15);
  border-radius: 14px;
}
.pilot-guide-tracking-table { min-width: 900px; }
.pilot-guide-tracking-table td { height: 64px; }
.pilot-guide-summary-lines { margin-top: 28px; display: grid; gap: 18px; }
.pilot-guide-summary-lines p {
  min-height: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(30,53,91,.22);
}
.pilot-guide-questionnaires > p { font-size: 18px; }
.pilot-guide-questionnaires > section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(30,53,91,.14);
}
.pilot-guide-questionnaire-heading p {
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pilot-guide-questionnaire-heading h3 {
  margin-top: 6px;
  color: var(--navy);
  font-size: 28px;
}
.pilot-guide-questionnaires h4 { margin: 30px 0 12px; color: var(--navy); font-size: 18px; }
.pilot-guide-questionnaires ol { display: grid; gap: 10px; }
.pilot-guide-questionnaires em { color: rgba(37,32,37,.67); }
.pilot-guide-closing {
  padding: 32px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
}
.pilot-guide-closing p + p { margin-top: 8px; }
.pilot-guide-closing a { text-decoration: underline; text-underline-offset: 3px; }

.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: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: stretch; margin-top: 64px; }
.metrics > * { min-width: 0; }
.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 { display: block; background: #9bd6fe; }
.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; }
.reveal-enabled [data-reveal] {
  opacity: .35;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-enabled [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-enabled [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: none;
  }
  .site-nav::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background-position: center 44%;
    background-size: cover;
  }
  .site-nav.is-open::before { background-image: url("assets/landing-gradient-footer.76869ca4398a.webp"); }
  .landing-page .site-nav::before { background: linear-gradient(90deg, #9bd6fe, #ffc24a 52%, #fb684a); }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    animation: mobile-nav-open .28s cubic-bezier(.2,.75,.25,1);
  }
  @keyframes mobile-nav-open {
    from { opacity: 0; transform: translateY(-12px) scale(.98); }
    to { opacity: 1; 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.nav-home { display: grid; }
  .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:nth-child(5)::before { content: "05"; }
  .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; }
  .landing-page .hero-copy { max-width: none; }
  .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: 760px) {
  .site-footer { min-height: 0; height: auto; padding-block: 64px; }
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .site-footer-nav {
    flex-wrap: wrap;
    gap: 16px 28px;
  }
}

@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; }
  .guide-modal { padding: 12px; }
  .guide-modal-dialog {
    max-height: calc(100vh - 24px);
    padding: 48px 24px 32px;
    border-radius: 18px;
  }
  .guide-modal-dialog h2 { padding-right: 24px; font-size: 30px; }
  .guide-modal-close { top: 12px; right: 12px; }
  .guide-submit { width: 100%; }
  .guide-modal-success .button { width: 100%; }
  .guide-modal-success .button + .button { margin-top: 12px; margin-left: 0; }
  .privacy-hero { padding-block: 56px 64px; }
  .privacy-content { width: min(100% - 32px, 840px); }
}

/* 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: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}
.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: 1287px) {
  .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(n) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }
  .build-process { padding-bottom: 0; }
  .build-page .build-process-platform { margin-top: 128px; }
  .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: 1100px) {
  .build-hero-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .build-hero-copy { width: 100%; }
  .build-hero-actions { flex-wrap: wrap; }
}

@media (max-width: 900px) {
  .build-hero { min-height: auto; }
  .build-hero-section { padding-block: 80px; }
  .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 0; }
  .build-page .build-process-platform { margin-top: 64px; }
  .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: none;
  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-scroll-chart {
  --chart-ink: #1c2433;
  --chart-muted: #5a6373;
  --chart-grid: #eae3d7;
  --chart-threshold: #e8552e;
  --chart-ease: cubic-bezier(.22, 1, .36, 1);
  position: relative;
  width: 100%;
  height: 100%;
  padding: 28px 18px 56px 58px;
  background: transparent;
}
.pilot-chart-axis-title {
  position: absolute;
  left: 8px;
  top: calc(50% - 16px);
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  color: var(--chart-ink);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.pilot-chart-x-title {
  position: absolute;
  right: 18px;
  bottom: 8px;
  left: 58px;
  color: var(--chart-ink);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.pilot-chart-plot {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100%;
  border-bottom: 3px solid var(--chart-ink);
}
.pilot-chart-gridline {
  position: absolute;
  z-index: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--chart-grid);
}
.pilot-chart-y-tick {
  position: absolute;
  left: -42px;
  width: 34px;
  transform: translateY(50%);
  color: var(--chart-muted);
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}
.pilot-chart-bar {
  position: relative;
  z-index: 1;
  width: var(--bar-width);
  height: var(--bar-height);
  border-radius: 9px 9px 0 0;
  box-shadow: 0 10px 22px -12px rgba(28, 36, 51, .45);
}
.pilot-chart-bar-1 { background: linear-gradient(180deg, #ffc658, #ff9a3d); }
.pilot-chart-bar-2 { background: linear-gradient(180deg, #ffd66b, #ffb23e); }
.pilot-chart-bar-3 { background: linear-gradient(180deg, #ff9255, #ff6f43); }
.pilot-chart-bar-4 { background: linear-gradient(180deg, #6fb0ff, #3e82f0); }
.pilot-chart-bar-5 { background: linear-gradient(180deg, #86cbff, #5aa7f2); }
.pilot-chart-value,
.pilot-chart-unit {
  position: absolute;
  right: 0;
  left: 0;
  color: var(--chart-ink);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.pilot-chart-value { top: -25px; font-size: 15px; }
.pilot-chart-unit { top: calc(100% + 7px); font-size: 12px; font-weight: 600; }
.pilot-chart-threshold {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  height: 0;
  border-top: 3px dashed var(--chart-threshold);
}
.pilot-charts-ready .pilot-scroll-chart {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.pilot-charts-ready .pilot-scroll-chart.is-shown { opacity: 1; }
.pilot-charts-ready .pilot-chart-bar {
  width: 0;
  height: 7px;
  transition: width 1.5s var(--chart-ease), height 1.8s var(--chart-ease);
}
.pilot-charts-ready .pilot-chart-bar.is-wide { width: var(--bar-width); }
.pilot-charts-ready .pilot-chart-bar.is-tall { height: var(--bar-height); }
.pilot-charts-ready .pilot-chart-value,
.pilot-charts-ready .pilot-chart-unit,
.pilot-charts-ready .pilot-chart-threshold {
  opacity: 0;
  transition: opacity 1s ease;
}
.pilot-charts-ready .pilot-chart-bar.is-wide .pilot-chart-unit,
.pilot-charts-ready .pilot-chart-bar.is-tall .pilot-chart-value,
.pilot-charts-ready .pilot-chart-threshold.is-shown { opacity: 1; }
.pilot-chart-card > p:last-child { margin-top: 12px; }

.pilot-gradient-flow {
  background-color: var(--paper);
  background-image: url("assets/figma-gradient-pilot-section.9b2c0ebf4d9b.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-steps {
  grid-template-columns: repeat(auto-fit, 280px);
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
}
.pilot-steps .step-card {
  width: 280px;
  height: 436px;
  min-height: 436px;
  display: grid;
  grid-template-rows: 254px 24px 108px 50px;
  border-radius: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 280px 436px;
}
.pilot-steps .step-card img {
  width: 280px;
  height: 254px;
  grid-row: 1;
  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: 108px;
  grid-row: 3;
  padding: 0 24px;
}
.pilot-steps .step-card div { background: transparent; }
.pilot-steps .step-card:nth-child(1).lazy-background--ready { background-image: url("assets/pilot-step-gradient-1.3810762b5b6d.webp"); }
.pilot-steps .step-card:nth-child(2).lazy-background--ready { background-image: url("assets/pilot-step-gradient-2.607dda283d04.webp"); }
.pilot-steps .step-card:nth-child(3).lazy-background--ready { background-image: url("assets/pilot-step-gradient-3.48b409b8634b.webp"); }
.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-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 (min-width: 901px) and (max-width: 1287px) {
  .pilot-results .metrics > .media-frame {
    width: 100%;
    max-width: 100%;
    aspect-ratio: auto;
  }
}

@media (min-width: 901px) and (max-width: 951px) {
  .pilot-steps .step-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .pilot-page {
    background-size: auto 1000px;
  }
  .pilot-hero-gradient { height: 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: 280px;
    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-hero-gradient { height: 1100px; }
  .pilot-page .brand { width: 190px; }
  .pilot-hero-actions .button { width: 100%; }
  .pilot-chart-card ul { padding-left: 20px; }
  .pilot-scroll-chart { padding: 24px 12px 52px 48px; }
  .pilot-chart-x-title { right: 12px; left: 48px; }
  .pilot-chart-plot { gap: 6px; }
  .pilot-chart-y-tick { left: -38px; }
  .pilot-chart-value { font-size: 13px; }
  .pilot-chart-unit { font-size: 10px; }
  .pilot-gradient-flow { background-size: auto 1360px; }
  .pilot-principles p { padding: 24px; }
  .pilot-steps { grid-template-columns: 280px; }
}

/* 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: none;
  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-color: #9bd6fe;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.donate-expansion-gradient.lazy-background--ready { background-image: url("assets/figma-gradient-donate-expansion.c9577c46efa6.webp"); }
.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 {
  width: min(320px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.donate-partner-triangle article:first-child {
  grid-column: 1 / -1;
  justify-self: center;
}
.donate-partner-logo {
  width: 320px;
  max-width: 100%;
  height: 160px;
  overflow: hidden;
}
.donate-partner-logo img {
  width: 320px;
  max-width: none;
  height: auto;
}
.donate-partner-card h3 {
  margin-top: 20px;
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
}
.donate-partner-card p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
}

.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: 1fr; gap: 64px; }
  .donate-team-copy {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
  }
  .donate-team-copy h2 { grid-column: 1 / -1; }
  .donate-team-copy > p { margin-top: 32px; }
  .donate-partner-triangle {
    width: min(672px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .donate-page { background-size: auto 1000px; }
  .donate-hero-gradient { height: 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-partner-triangle { width: min(672px, 100%); margin-inline: auto; }
}

@media (max-width: 719px) {
  .donate-team-copy { grid-template-columns: 1fr; }
  .donate-partner-triangle {
    width: min(320px, 100%);
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .donate-partner-triangle article:first-child { grid-column: auto; }
  .donate-partner-triangle article { width: min(320px, 100%); justify-self: center; }
}

@media (max-width: 560px) {
  .donate-page { background-size: auto 1040px; }
  .donate-hero-gradient { height: 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-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: none;
  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-virtual-teacher-action {
  margin-top: 24px;
  justify-content: center;
}

.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 > img,
.join-team-grid .team-card > .team-placeholder {
  height: 300px;
  aspect-ratio: auto;
}
.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-team-strip-02.3b576493a44c.png") center / 100% 100%;
}
.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: 1100px) {
  .join-team-grid {
    grid-template-columns: repeat(2, minmax(0, 264px));
    gap: 40px;
  }
  .join-team-grid .team-card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .join-page {
    background-size: auto 544px;
  }
  .join-hero-gradient { height: 544px; }
  .join-page .brand { width: 190px; height: auto; }
  .join-hero { min-height: 544px; padding-inline: 24px; }
  .join-project-section .two-col { gap: 48px; }
  .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-gradient { height: 480px; }
  .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: 1288px) {
  .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 */
  .landing-page .hero-inner {
    grid-template-columns: 588px 604px;
  }
  .landing-page > .section:nth-of-type(1) .two-col {
    grid-template-columns: 592px 592px;
    gap: 56px;
  }
  .landing-page > .section:nth-of-type(1) .rule-list {
    height: 387.5px;
  }
  .landing-page > .section .section-intro {
    letter-spacing: .1px;
  }
  .landing-page > .section .rule-list li {
    height: 64.5px;
    min-height: 64.5px;
    padding: 8px 0 8px 24px;
    letter-spacing: .08px;
  }
  .landing-page > .section:nth-of-type(2) .two-col {
    height: 387.5px;
  }
  .landing-page > .section:nth-of-type(2) .two-col > :last-child .section-intro {
    margin-top: 16px;
  }
  .landing-page > .section:nth-of-type(3) .two-col {
    grid-template-columns: 576px 616px;
    gap: 48px;
  }
  .landing-page > .section:nth-of-type(3) .section-intro {
    margin-top: 24px;
  }
  .landing-page > .section:nth-of-type(3) .section-intro p + p {
    margin-top: 30px;
  }
  .landing-page > .section:nth-of-type(4) .feature-cards {
    gap: clamp(24px, calc((100vw - 1038px) / 2), 125px);
  }
  .landing-page > .section:nth-of-type(5) .split-block {
    height: 400px;
    min-height: 400px;
  }
  .landing-page > .section:nth-of-type(5) .platform-statement {
    width: 770px;
    margin: 88px auto 0;
    font-size: 16px;
    line-height: 24px;
  }
  .landing-page > .section:nth-of-type(6) .section-intro {
    width: 1240px;
    max-width: none;
    height: 300px;
  }
  .landing-page > .section:nth-of-type(6) .section-intro p + p {
    margin-top: 30px;
  }
  .landing-page > .section:nth-of-type(6) .eyebrow {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
  }
  .landing-page > .section:nth-of-type(6) .button-row {
    margin-top: 48px;
  }
  .landing-page > .section:nth-of-type(7) .section-intro,
  .landing-page > .section:nth-of-type(8) .section-intro {
    width: 1240px;
    max-width: none;
  }
  .landing-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;
  }
  .landing-page > .section:nth-of-type(8) .container > .section-intro:last-child {
    margin-top: 48px;
  }
  .landing-page > .section:nth-of-type(9) .button-row {
    margin-top: 48px;
    gap: 48px;
  }
  .landing-page > .section:nth-of-type(1) { height: 643.5px; }
  .landing-page > .section:nth-of-type(2) { height: 643.5px; }
  .landing-page > .section:nth-of-type(3) { height: 832px; }
  .landing-page > .section:nth-of-type(4) { height: 784px; }
  .landing-page > .section:nth-of-type(5) { height: 1200px; }
  .landing-page > .section:nth-of-type(6) { height: 876px; }
  .landing-page > .section:nth-of-type(7) { height: 1222px; }
  .landing-page > .section:nth-of-type(8) { height: 1012px; }
  .landing-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-gradient { height: 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-plan { height: 912px; }
  .pilot-steps {
    height: 436px;
    grid-template-columns: repeat(3, 280px);
    justify-content: center;
    gap: 86px;
  }
  .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-gradient { height: 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-gradient { height: 338px; }
  .join-hero {
    height: 338px;
    min-height: 338px;
    padding-top: 208px;
    place-items: start center;
  }
  .join-hero h1 { width: 1240px; }
  .join-opportunities {
    min-height: 714px;
    height: auto;
    padding-block: 54px 80px;
  }
  .join-opportunity-stack {
    height: auto;
    gap: 32px;
  }
  .join-opportunity-stack .eyebrow {
    font-size: 20px;
    line-height: 24px;
  }
  .join-opportunity-stack > div:first-child {
    padding-bottom: 32px;
    border-bottom: .5px solid var(--line);
  }
  .join-opportunity-stack > div:last-child { min-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.ac7f017edd61.png") center / 100% 100%;
  }
  .join-team-grid .team-card:nth-child(2)::before { background-image: url("assets/join-team-strip-02.3b576493a44c.png"); }
  .join-team-grid .team-card:nth-child(3)::before { background-image: url("assets/join-team-strip-03.29ae9040e9de.png"); }
  .join-team-grid .team-card:nth-child(4)::before { background-image: url("assets/join-team-strip-04.44289048dfc0.png"); }
  .join-team-grid .team-card:nth-child(5)::before { background-image: url("assets/join-team-strip-05.3b576493a44c.png"); }
  .join-team-grid .team-card:nth-child(6)::before { background-image: url("assets/join-team-strip-06.afceb9af6ff6.png"); }
  .join-team-grid .team-card:nth-child(7)::before { background-image: url("assets/join-team-strip-07.29ae9040e9de.png"); }
  .join-team-grid .team-card:nth-child(8)::before { background-image: url("assets/join-team-strip-08.44289048dfc0.png"); }
  .join-team-grid .team-card:nth-child(9)::before { background-image: url("assets/join-team-strip-09.1c31cbd9d334.png"); }
  .join-team-grid .team-card:nth-child(10)::before { background-image: url("assets/join-team-strip-10.1c31cbd9d334.png"); }
  .join-team-grid .team-card:nth-child(11)::before { background-image: url("assets/join-team-strip-11.1c31cbd9d334.png"); }
  .join-team-grid .team-card:nth-child(12)::before { background-image: url("assets/join-team-strip-12.44289048dfc0.png"); }
  .join-team-grid .team-card:nth-child(13)::before { background-image: url("assets/join-team-strip-13.44289048dfc0.png"); }
  .join-team-grid .team-card.team-card-placeholder::before { background-image: url("assets/join-team-strip-08.44289048dfc0.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;
  }
}

@media (max-width: 1050px) {
  .pilot-guide-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 40px;
  }
  .pilot-guide-success-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .pilot-guide-gradient { height: 760px; }
  .pilot-guide-hero { min-height: 680px; padding-block: 80px 96px; }
  .pilot-guide-layout {
    padding-block: 80px 96px;
    grid-template-columns: 1fr;
  }
  .pilot-guide-sidebar { position: static; }
  .pilot-guide-sidebar nav { padding: 22px; }
  .pilot-guide-sidebar ol { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
  .pilot-guide-section { padding-bottom: 88px; }
  .pilot-guide-section-heading { margin-bottom: 40px; }
}

@media (max-width: 680px) {
  .pilot-guide-container { width: min(100% - 32px, 1240px); }
  .pilot-guide-gradient { height: 760px; }
  .pilot-guide-hero { min-height: 680px; padding-block: 64px 80px; }
  .pilot-guide-hero h1 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .pilot-guide-lead { font-size: 18px; }
  .pilot-guide-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pilot-guide-facts div:nth-child(2) { border-right: 0; }
  .pilot-guide-facts div:nth-child(-n+2) { border-bottom: 1px solid rgba(30,53,91,.15); }
  .pilot-guide-sidebar ol { grid-template-columns: 1fr; }
  .pilot-guide-layout { gap: 56px; }
  .pilot-guide-section { padding-bottom: 72px; }
  .pilot-guide-section-heading { gap: 16px; }
  .pilot-guide-section-heading h2 { font-size: 2.6rem; }
  .pilot-guide-callout,
  .pilot-guide-card,
  .pilot-guide-session,
  .pilot-guide-appendix-body { padding: 24px; }
  .pilot-guide-parameter-grid,
  .pilot-guide-two-col,
  .pilot-guide-qualitative ul,
  .pilot-guide-agenda { grid-template-columns: 1fr; }
  .pilot-guide-card-wide { grid-column: auto; }
  .pilot-guide-note,
  .pilot-guide-access { grid-template-columns: 1fr; gap: 20px; }
  .pilot-guide-session li { min-height: 74px; }
  .pilot-guide-table { min-width: 660px; }
  .pilot-guide-risk-table,
  .pilot-guide-tracking-table { min-width: 860px; }
  .pilot-guide-appendix-intro { margin-left: 0; }
  .pilot-guide-appendices summary {
    min-height: 92px;
    padding: 20px 58px 20px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 18px;
  }
  .pilot-guide-appendices summary::after { right: 18px; }
  .pilot-guide-questionnaire-heading h3 { font-size: 24px; }
}

@media (max-width: 420px) {
  .pilot-guide-gradient { height: 800px; }
  .pilot-guide-hero { min-height: 720px; }
  .pilot-guide-facts div { padding: 18px; }
  .pilot-guide-facts strong { font-size: 25px; }
  .pilot-guide-section-heading h2 { font-size: 2.25rem; }
  .pilot-guide-callout,
  .pilot-guide-card,
  .pilot-guide-note,
  .pilot-guide-session,
  .pilot-guide-access,
  .pilot-guide-appendix-body { padding: 20px; }
  .pilot-guide-action-line { grid-template-columns: 1fr 64px 64px; }
}

@media print {
  .pilot-guide-page > .page-gradient-layer,
  .pilot-guide-page > .site-header,
  .pilot-guide-page > .site-footer,
  .pilot-guide-sidebar { display: none; }
  .pilot-guide-hero { min-height: 0; padding: 36px 0 56px; }
  .pilot-guide-layout { width: 100%; padding: 0; display: block; }
  .pilot-guide-section { padding: 36px 0; break-inside: auto; }
  .pilot-guide-section-heading { break-after: avoid; }
  .pilot-guide-appendices details:not([open]) > :not(summary) { display: block; }
  .pilot-guide-table-shell { overflow: visible; box-shadow: none; }
  .pilot-guide-table,
  .pilot-guide-risk-table,
  .pilot-guide-tracking-table { min-width: 0; font-size: 11px; }
}
