:root {
  --paper: #f9f7fa;
  --paper-warm: #f2f0ec;
  --white: #ffffff;
  --ink: #242224;
  --ink-soft: #464246;
  --muted: #716c71;
  --line: #dcd8dc;
  --line-dark: #4b484b;
  --blue: #18569a;
  --gold: #d29a31;
  --container: 1400px;
  --header-height: 82px;
  --sans: Metropolis, "Avenir Next", "Century Gothic", "Trebuchet MS", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: balance;
}

h1 {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 3.3vw, 3.15rem);
}

.hero h1 span {
  color: var(--blue);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.15rem, 3vw, 2.75rem);
}

h3 {
  margin-bottom: 11px;
  font-size: 1.16rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--blue);
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(92px, 9vw, 142px);
}

.section-tint {
  background: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 23px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.large-copy {
  color: var(--ink-soft);
  font-size: clamp(1.24rem, 1.75vw, 1.55rem);
  line-height: 1.55;
}

.section-heading {
  max-width: 900px;
}

.section-heading > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading-centered {
  margin: 0 0 66px;
  text-align: left;
}

.section-heading-centered .eyebrow {
  justify-content: flex-start;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(52px, 8vw, 125px);
  max-width: none;
  margin-bottom: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 6px;
}

.button {
  display: inline-flex;
  min-height: 59px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--ink);
  background: transparent;
  transform: translateY(-2px);
}

.button-gold {
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
}

.button-gold:hover {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button-ghost {
  color: var(--ink);
  background: transparent;
}

.button-ghost:hover {
  color: var(--white);
  background: var(--ink);
}

.button-small {
  min-height: 45px;
  padding: 10px 20px;
  font-size: 0.78rem;
}

.button-meta {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.button:hover .button-meta {
  border-color: rgba(36, 34, 36, 0.4);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid currentColor;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(249, 247, 250, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 178px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 9px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 550;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.hero::before,
.hero-glow {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
  min-height: calc(100vh - var(--header-height));
  padding-block: clamp(68px, 7vw, 104px);
}

.hero-copy {
  max-width: 670px;
}

.hero .eyebrow::before {
  background: var(--gold);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-note span {
  color: var(--ink);
  font-size: 0.52rem;
}

.film-card {
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 55px);
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
}

.film-heading {
  order: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
}

.film-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.film-heading .film-kicker {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 550;
}

.film-duration {
  color: var(--muted);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}

.video-shell {
  position: relative;
  order: 1;
  overflow: hidden;
  aspect-ratio: 910 / 512;
  background: var(--ink);
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-poster-play {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 58%);
  cursor: pointer;
  transition: opacity 160ms ease;
}

.video-poster-play::before {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(36, 34, 36, 0.75);
  content: "";
  transition: background-color 160ms ease, transform 160ms ease;
}

.video-poster-play > span {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--white);
}

.video-poster-play:hover::before {
  background: var(--ink);
  transform: scale(1.06);
}

.video-poster-play:focus-visible {
  outline: 0;
  box-shadow: none;
}

.video-poster-play:focus-visible::before {
  outline: 3px solid var(--white);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--blue);
}

.video-shell.is-playing .video-poster-play {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.film-summary {
  order: 3;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.77rem;
}

.film-summary summary {
  display: inline-flex;
  color: var(--ink);
  font-weight: 550;
  cursor: pointer;
}

.film-summary p {
  margin: 13px 0 0;
  line-height: 1.58;
}

.film-feature-section {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.film-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.film-feature-copy {
  max-width: 620px;
}

.film-feature-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.film-feature-copy .large-copy {
  color: var(--ink-soft);
}

.film-feature-actions {
  margin-top: 34px;
}

.film-card-ellen {
  width: 100%;
  background: var(--paper);
}

.foundation-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.foundation-bar > div {
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.foundation-bar > div:first-child {
  padding-left: 0;
}

.foundation-bar > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.foundation-bar strong,
.foundation-bar span {
  display: block;
}

.foundation-bar strong {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.foundation-bar span {
  max-width: 255px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.perspective {
  background: var(--white);
}

.perspective-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(65px, 10vw, 160px);
}

.perspective-copy {
  padding-top: 50px;
}

.perspective-copy > p:not(.pull-quote) {
  max-width: 670px;
}

.pull-quote {
  margin-top: 48px;
  padding: 27px 0 0;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.5;
}

.pull-quote::before {
  content: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  min-height: 240px;
  padding: 24px 0 0;
  border-top: 1px solid var(--ink);
  background: transparent;
}

.process-card::after {
  content: none;
}

.process-number {
  display: block;
  margin-bottom: 58px;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
}

.process-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

#omraden,
#elevhalsan {
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(50px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
}

.area-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 21px;
  min-height: 224px;
  padding: 30px 55px 34px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.area-card::after {
  position: absolute;
  top: 30px;
  right: 0;
  color: var(--muted);
  content: attr(data-area);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
}

.area-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 550;
}

.area-card h3 {
  max-width: 370px;
  padding-right: 24px;
}

.area-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.58;
}

.context-section {
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
}

.context-section::before {
  content: none;
}

.context-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.context-intro {
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.context-intro h2 {
  color: var(--white);
}

.context-rule {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 14px;
  margin-top: 38px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-dark);
}

.context-rule > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
}

.context-rule p {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.58;
}

.context-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.context-list li {
  min-height: 145px;
  padding: 26px 0;
  border-top: 1px solid var(--line-dark);
}

.context-list strong,
.context-list span {
  display: block;
}

.context-list strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 550;
}

.context-list span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.55;
}

.student-section,
.trust-section {
  background: var(--paper-warm);
}

.student-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.student-visual {
  position: relative;
  min-height: 450px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

.student-visual::before,
.student-visual::after {
  content: none;
}

.voice-card {
  position: absolute;
  width: min(78%, 370px);
  padding: 26px;
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.voice-card span {
  display: block;
  margin-bottom: 9px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.voice-card p {
  font-size: 1.08rem;
  line-height: 1.52;
}

.voice-card-one {
  top: 50px;
  left: 0;
  color: var(--white);
  background: var(--ink);
}

.voice-card-one span {
  color: rgba(255, 255, 255, 0.58);
}

.voice-card-two {
  right: 0;
  bottom: 52px;
  color: var(--ink);
  background: var(--paper-warm);
}

.voice-card-two span {
  color: var(--muted);
}

.connection-line {
  position: absolute;
  top: 46%;
  left: 37%;
  width: 34%;
  height: 25%;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.student-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.student-copy .large-copy {
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 27px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 520;
}

.check-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 700;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.output-card,
.output-featured {
  min-height: 245px;
  padding: 26px 0 0;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.output-label,
.output-featured .output-label {
  display: block;
  margin-bottom: 60px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.output-card h3,
.output-featured h3 {
  color: var(--ink);
  font-size: 1.22rem;
}

.output-card p,
.output-featured p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.58;
}

.levels-section {
  background: var(--paper);
}

.levels-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.levels-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.levels-copy .large-copy {
  color: var(--ink-soft);
}

.responsibility-note {
  margin-top: 32px;
  padding: 21px 0 0;
  border-top: 1px solid var(--ink);
  font-size: 0.8rem;
}

.level-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.level-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 122px;
  padding: 22px 0;
  border-top: 1px solid var(--ink);
}

.level-list li > span {
  color: var(--ink);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1;
}

.level-list strong {
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 550;
}

.level-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.5;
}

.system-section {
  color: var(--ink);
  background: var(--white);
}

.system-section::after {
  content: none;
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.system-section h2 {
  color: var(--ink);
}

.system-section .eyebrow-light {
  color: var(--ink-soft);
}

.system-section .section-heading > p:last-child {
  color: var(--muted);
}

.system-cards {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.system-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 20px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.system-card > span {
  grid-row: 1 / span 2;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.system-card h3 {
  margin-bottom: 5px;
  color: var(--ink);
}

.system-card p {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.trust-main {
  max-width: 760px;
}

.trust-main > p:not(.eyebrow) {
  color: var(--muted);
}

.trust-main .large-copy {
  color: var(--ink-soft);
}

.founder-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 22px;
  padding: 32px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--ink);
}

.founder-card::after {
  content: none;
}

.founder-mark {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.95rem;
}

.founder-card p {
  font-size: 0.81rem;
  line-height: 1.55;
}

.founder-card .founder-kicker {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.91rem;
  font-weight: 550;
}

.legal-section {
  padding-block: clamp(70px, 7vw, 108px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-grid {
  display: grid;
  grid-template-columns: 60px minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 36px;
}

.legal-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.95rem, 2.6vw, 2.65rem);
}

.legal-icon {
  color: var(--ink);
  font-size: 2.55rem;
  font-weight: 300;
  line-height: 1;
}

.legal-copy {
  padding-top: 40px;
}

.legal-copy p {
  color: var(--muted);
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 0.81rem;
  font-weight: 550;
  text-underline-offset: 5px;
}

.cta-section {
  padding-block: clamp(100px, 11vw, 160px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.cta-section::before,
.cta-section::after {
  content: none;
}

.cta-inner {
  max-width: 980px;
  text-align: left;
}

.cta-inner .eyebrow {
  justify-content: flex-start;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(2.55rem, 4vw, 4rem);
}

.cta-inner > p:not(.eyebrow, .privacy-note) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.cta-section .button {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.cta-section .button:hover {
  color: var(--white);
  background: transparent;
}

.cta-section .button-ghost {
  color: var(--white);
  background: transparent;
}

.cta-section .button-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.privacy-note {
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.71rem;
}

.site-footer {
  color: var(--muted);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) 0.7fr 1fr;
  gap: 78px;
  padding-block: 72px;
}

.footer-logo {
  display: block;
  width: 210px;
  height: auto;
  margin-bottom: 17px;
}

.footer-brand > p:last-child {
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links h2 {
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.77rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(17px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay,
.reveal-delay-1 {
  transition-delay: 60ms;
}

.reveal-delay-2 {
  transition-delay: 110ms;
}

.reveal-delay-3 {
  transition-delay: 160ms;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 50px), var(--container));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    align-items: stretch;
    gap: 0;
    padding: 20px 25px 28px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.93rem;
  }

  .main-nav .button {
    margin-top: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
    padding-block: 82px;
  }

  .hero-copy,
  .film-card {
    width: min(100%, 820px);
  }

  .film-card {
    margin-left: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .film-feature-grid,
  .context-grid,
  .student-grid,
  .levels-grid {
    grid-template-columns: 1fr;
  }

  .film-feature-copy,
  .film-card-ellen {
    width: min(100%, 820px);
  }

  .film-card-ellen {
    margin-left: auto;
  }

  .context-intro {
    position: static;
  }

  .student-visual {
    width: min(100%, 760px);
  }

  .legal-grid {
    grid-template-columns: 52px 1fr;
  }

  .legal-copy {
    grid-column: 2;
    padding-top: 0;
  }
}

@media (max-width: 820px) {
  .split-heading,
  .perspective-grid,
  .system-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .split-heading {
    align-items: start;
  }

  .perspective-copy {
    padding-top: 0;
  }

  .foundation-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .foundation-bar > div,
  .foundation-bar > div:first-child,
  .foundation-bar > div:last-child {
    min-height: 132px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .foundation-bar > div:nth-child(2n) {
    border-right: 0;
  }

  .foundation-bar > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .areas-grid,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .output-grid {
    gap: 0;
    border-bottom: 1px solid var(--line);
  }

  .context-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand-logo {
    width: 150px;
  }

  .menu-toggle-label {
    display: none;
  }

  .hero-grid {
    padding-block: 62px 76px;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .film-feature-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .film-card {
    padding: 22px;
    border-radius: 12px;
  }

  .video-poster-play::before {
    width: 66px;
    height: 66px;
  }

  .foundation-bar {
    grid-template-columns: 1fr;
  }

  .foundation-bar > div,
  .foundation-bar > div:first-child,
  .foundation-bar > div:last-child,
  .foundation-bar > div:nth-child(2n),
  .foundation-bar > div:nth-last-child(-n + 2) {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .foundation-bar > div:last-child {
    border-bottom: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card {
    min-height: 215px;
  }

  .area-card {
    grid-template-columns: 45px 1fr;
    column-gap: 15px;
    min-height: 240px;
    padding-right: 34px;
  }

  .area-icon {
    width: 37px;
    height: 37px;
  }

  .student-visual {
    min-height: 490px;
  }

  .voice-card {
    width: calc(100% - 44px);
  }

  .voice-card-one {
    top: 43px;
  }

  .voice-card-two {
    bottom: 48px;
  }

  .connection-line {
    top: 43%;
    left: 27%;
    width: 51%;
    height: 34%;
  }

  .level-list li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .level-list li > span {
    font-size: 2.1rem;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-copy {
    grid-column: auto;
  }

  .founder-card {
    grid-template-columns: 56px 1fr;
    padding: 25px;
  }

  .founder-mark {
    width: 56px;
    height: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding-block: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .video-poster-play,
  .cta-section,
  .site-footer {
    display: none;
  }

  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .section {
    padding-block: 35px;
    break-inside: avoid;
  }
}
