:root {
  --ink: #07213c;
  --ink-soft: #334d68;
  --blue: #096fe8;
  --blue-deep: #0755bd;
  --cyan: #00b8d9;
  --mint: #83e6d2;
  --ice: #eef8ff;
  --tint: #f4f9fd;
  --line: #cfe0ec;
  --white: #fff;
  --serif: "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --shell: min(1200px, calc(100vw - 64px));
  --header-height: 76px;
  --radius: 28px;
  --shadow: 0 22px 70px rgba(16, 70, 112, .12);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--white);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(0, 184, 217, .06), transparent 22rem),
    var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
button { color: inherit; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.noscript-nav {
  position: relative;
  z-index: 2000;
  padding: 14px 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.noscript-nav a { color: var(--blue-deep); font-size: 12px; font-weight: 800; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  padding-inline: max(24px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(164, 193, 213, .65);
  box-shadow: 0 8px 40px rgba(16, 65, 100, .07);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 168px; height: auto; }
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #1a405d;
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-link { font-size: 13px; font-weight: 700; color: var(--ink-soft); }

.button {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: linear-gradient(115deg, var(--blue-deep), var(--blue) 60%, var(--cyan));
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(9, 111, 232, .2);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(9, 111, 232, .3); }
.button--small { min-height: 43px; padding-inline: 20px; font-size: 12px; }
.button--light { background: var(--white); color: var(--blue-deep); box-shadow: 0 14px 38px rgba(1, 35, 63, .25); }
.button--outline-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); box-shadow: none; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(9, 111, 232, .3);
  text-underline-offset: 7px;
}
.text-link span { font-size: 1.2em; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link--large { font-size: 15px; }

.menu-button,
.mobile-menu { display: none; }

/* Scroll-linked five-scene first view */
.hero-film {
  position: relative;
  height: 500svh;
  min-height: 3000px;
  background: var(--ice);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #eaf6ff;
}
.hero-scenes,
.hero-scene,
.hero-media,
.hero-wash,
.hero-global-wash {
  position: absolute;
  inset: 0;
}
.hero-global-wash { display: none; }
.hero-scene {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  will-change: opacity, transform;
}
.hero-scene.is-active,
.hero-scene.is-near {
  visibility: visible;
}
.hero-media { overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  will-change: transform;
}
.hero-wash {
  background:
    linear-gradient(90deg, rgba(250, 254, 255, .98) 0%, rgba(248, 253, 255, .95) 30%, rgba(247, 252, 255, .62) 50%, rgba(241, 250, 255, .08) 72%),
    linear-gradient(0deg, rgba(239, 249, 255, .28), transparent 38%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: max(126px, 15svh);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  transition: none;
}
.hero-copy > * { max-width: 720px; pointer-events: auto; }
.hero-index,
.hero-service,
.hero-brand {
  margin: 0 0 20px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.hero-semantic-title {
  max-width: 680px;
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: clamp(12px, .92vw, 14px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .02em;
}
.hero-brand {
  margin-bottom: 12px;
  font-size: clamp(32px, 3.7vw, 64px);
  letter-spacing: -.04em;
  line-height: 1;
}
.hero-service {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(9, 111, 232, .2);
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(36, 96, 140, .08);
}
.hero-catch,
.hero-headline {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(37px, 3.75vw, 60px);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -.055em;
}
.hero-scene:first-child .hero-catch { font-size: clamp(36px, 3.55vw, 54px); }
.keep-line { display: inline-block; white-space: nowrap; }
.hero-keep-unit { display: inline-block; white-space: nowrap; }
.hero-headline span,
.hero-catch span {
  color: transparent;
  background: linear-gradient(105deg, var(--blue-deep), #008fda 55%, #12a98e);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  margin: 25px 0 0;
  max-width: 570px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 2;
}
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 24px; }
.hero-copy > .button { margin-top: 32px; }
.hero-rail {
  position: absolute;
  z-index: 20;
  right: max(28px, calc((100vw - 1440px) / 2));
  top: 50%;
  width: 154px;
  display: grid;
  gap: 11px;
  transform: translateY(-46%);
}
.hero-rail button {
  position: relative;
  min-height: 45px;
  padding: 0 0 0 40px;
  color: rgba(7, 33, 60, .55);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.hero-rail button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 2px;
  background: rgba(7, 33, 60, .28);
  transform-origin: left;
  transition: width .25s ease, background .25s ease;
}
.hero-rail button span { display: block; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.hero-rail button b { display: block; font-size: 10px; line-height: 1.4; white-space: nowrap; }
.hero-rail button.is-active { color: var(--blue-deep); }
.hero-rail button.is-active::before { width: 34px; background: var(--blue); }
.scroll-cue {
  position: absolute;
  z-index: 20;
  left: max(28px, calc((100vw - 1440px) / 2));
  bottom: 22px;
  margin: 0;
  color: rgba(7, 33, 60, .6);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}
.scroll-cue span {
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
  animation: cue 1.8s ease-in-out infinite;
  transform-origin: left;
}
@keyframes cue { 0%,100% { transform: scaleX(.3); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } }

.section { position: relative; padding: 140px 0; }
.section--tint { background: var(--tint); }
.section--ice { background: var(--ice); }
.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}
.section-heading { max-width: 820px; margin-bottom: 58px; }
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
  align-items: end;
  gap: 80px;
}
.section-heading h2,
.service-detail h2,
.faq-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -.045em;
  word-break: auto-phrase;
  text-wrap: pretty;
}
.section-heading > p:last-child,
.section-heading--split > p,
.lead {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.05;
}
.section-heading--split > p { margin: 0 0 7px; }

.proof { padding-top: 125px; }
.proof .section-heading h2 { font-size: clamp(32px, 3.6vw, 52px); }
.corporate-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.corporate-proof-card {
  min-height: 310px;
  padding: 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #fff, #f5fbff);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(16, 70, 112, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.corporate-proof-card:hover,
.corporate-proof-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(9,111,232,.38);
  box-shadow: 0 22px 55px rgba(16,70,112,.14);
}
.corporate-proof-card > span {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.corporate-proof-card__title,
.corporate-proof-card__quote {
  margin: auto 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -.025em;
}
.corporate-proof-card__quote { font-size: clamp(21px, 2.15vw, 30px); }
.corporate-proof-card small { color: var(--ink-soft); font-size: 11px; line-height: 1.7; }
.corporate-proof-card i { position: absolute; right: 26px; bottom: 24px; color: var(--blue); font-size: 18px; font-style: normal; }

.client-logo-marquee {
  margin-top: 48px;
  padding: 25px 0 27px;
  border-block: 1px solid var(--line);
}
.client-logo-marquee > p {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}
.client-logo-marquee > p small {
  margin-left: 10px;
  color: #334d68;
  font-size: 9px;
  letter-spacing: .05em;
}
.client-logo-window {
  max-width: 100%;
  overflow: hidden;
  contain: paint;
}
.client-logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: client-logo-marquee 34s linear infinite;
}
.client-logo-track span {
  width: 190px;
  height: 84px;
  padding: 16px 24px;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.client-logo-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
}
@keyframes client-logo-marquee { to { transform: translateX(-50%); } }

.proof-stat { background: var(--white); }
.proof-stat { padding: 38px 30px 30px; }
.proof-stat__label,
.proof-stat__title,
.proof-stat__note { margin: 0; }
.proof-stat__label { color: var(--blue-deep); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.proof-stat__number { margin: 15px 0 0; font-size: clamp(58px, 6vw, 92px); font-weight: 700; line-height: 1; letter-spacing: -.08em; }
.proof-stat__number small { margin-left: 5px; color: var(--blue); font-size: .38em; }
.proof-stat__title { margin-top: 15px; font-family: var(--serif); font-size: 18px; font-weight: 700; }
.proof-stat__note { margin-top: 25px; color: #334d68; font-size: 10px; line-height: 1.65; }

.editorial-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.editorial-visual img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.editorial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 28, 52, .86), rgba(3, 28, 52, .05) 60%);
}
.editorial-caption {
  position: absolute;
  z-index: 1;
  left: 52px;
  bottom: 52px;
  color: var(--white);
}
.editorial-caption span { font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.editorial-caption b { display: block; margin-top: 15px; font-family: var(--serif); font-size: clamp(27px, 3vw, 45px); line-height: 1.55; }
.service-index { margin-top: 50px; border-top: 1px solid #a9c4d6; }
.service-index__item {
  min-height: 124px;
  padding: 22px 10px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #a9c4d6;
}
.service-index__item > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.service-index h3 { margin: 0; font-family: var(--serif); font-size: clamp(23px, 2.6vw, 36px); }
.service-index p { margin: 4px 0 0; color: var(--ink-soft); font-size: 13px; }
.service-index i { font-style: normal; font-size: 24px; transition: transform .25s ease; }
.service-index__item:hover i { transform: translate(5px, 5px); color: var(--blue); }

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}
.service-detail__grid--reverse { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
.service-number { margin: 0 0 8px; color: #334d68; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.service-detail h2 { font-size: clamp(31px, 3.4vw, 50px); }
.process-list { margin: 38px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.process-list span { color: var(--blue); font-size: 10px; font-weight: 800; }
.process-list b { font-size: 14px; }
.process-list small { margin-left: 16px; color: var(--ink-soft); font-size: 11px; }
.service-detail__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ice);
}
.service-detail__visual img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__visual figcaption {
  position: absolute;
  inset: auto 22px 22px;
  padding: 24px;
  color: var(--white);
  background: rgba(5, 40, 68, .72);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.service-detail__visual figcaption span { font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.service-detail__visual figcaption b { display: block; margin-top: 8px; font-family: var(--serif); font-size: 22px; line-height: 1.55; }
.feature-stack { margin: 38px 0; border-top: 1px solid #b7cfdf; }
.feature-stack div { padding: 17px 0; display: grid; grid-template-columns: 80px 1fr; border-bottom: 1px solid #b7cfdf; }
.feature-stack span { color: var(--blue); font-size: 10px; font-weight: 800; }
.feature-stack b { font-size: 13px; }

.agent { overflow: hidden; }
.agent::before {
  content: "";
  position: absolute;
  right: -15vw;
  top: 14%;
  width: 45vw;
  aspect-ratio: 1;
  border: 1px solid rgba(9,111,232,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(9,111,232,.025), 0 0 0 120px rgba(9,111,232,.018);
}
.agent-stage {
  position: relative;
  padding: 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  background: #f8fcff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.agent-orchestrator img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 22px; }
.agent-orchestrator > span { display: block; margin-top: 17px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.agent-orchestrator > b { display: block; margin-top: 8px; font-family: var(--serif); font-size: 21px; line-height: 1.55; }
.agent-flow { align-self: center; display: flex; align-items: stretch; }
.agent-flow div {
  flex: 1;
  min-width: 0;
  padding: 24px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  text-align: center;
}
.agent-flow div span { display: block; color: var(--blue); font-size: 9px; font-weight: 800; }
.agent-flow div b { display: block; margin-top: 7px; font-size: 13px; }
.agent-flow div small { display: block; margin-top: 7px; color: var(--ink-soft); font-size: 9px; line-height: 1.5; }
.agent-flow > i { align-self: center; margin: 0 8px; color: var(--blue); font-style: normal; }
.human-gate {
  grid-column: 2;
  margin-top: -15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px dashed #82a9c7;
  border-radius: 12px;
}
.human-gate span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.human-gate b { font-size: 11px; }

.talent-intro {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 50px;
}
.talent-intro .section-heading { margin-bottom: 50px; }
.mascot-line { height: 250px; position: relative; }
.mascot-line img { position: absolute; width: 118px; height: 118px; object-fit: contain; filter: drop-shadow(0 14px 18px rgba(19,71,110,.16)); }
.mascot-line img:nth-child(1) { left: 0; bottom: 10px; transform: rotate(-5deg); }
.mascot-line img:nth-child(2) { left: 24%; top: 0; transform: rotate(3deg); }
.mascot-line img:nth-child(3) { right: 22%; bottom: 0; transform: rotate(-3deg); }
.mascot-line img:nth-child(4) { right: 0; top: 28px; transform: rotate(5deg); }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.role-card {
  min-height: 390px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.role-card > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.role-card__title { margin: 50px 0 18px; font-family: var(--serif); font-size: 27px; font-weight: 700; }
.role-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.role-card ul { margin: auto 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }
.role-card li { padding: 6px 10px; color: var(--blue-deep); background: var(--ice); border-radius: 999px; font-size: 10px; font-weight: 700; }

.team-grid { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.team-portrait { position: relative; min-height: 680px; overflow: hidden; border-radius: var(--radius); }
.team-portrait img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: 52% center; }
.team-portrait > div {
  position: absolute;
  inset: auto 20px 20px;
  padding: 20px 24px;
  color: var(--white);
  background: rgba(4, 35, 59, .7);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.team-portrait span { display: block; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.team-portrait b { display: block; margin-top: 4px; font-family: var(--serif); font-size: 21px; }
.team-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(31px, 3.4vw, 49px); line-height: 1.5; letter-spacing: -.045em; }
.heading-line { display: block; }
.serif-quote { margin: 36px 0 22px; color: var(--blue-deep); font-family: var(--serif); font-size: clamp(23px, 2.8vw, 38px); font-weight: 600; line-height: 1.6; }
.team-copy > p:not(.eyebrow):not(.serif-quote) { color: var(--ink-soft); }
.team-points { margin: 30px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.team-points span { padding: 7px 13px; color: var(--blue-deep); background: var(--ice); border: 1px solid #bcd8ea; border-radius: 999px; font-size: 10px; font-weight: 700; }

.media-grid { display: grid; grid-template-columns: 1.45fr .75fr; grid-template-rows: 1fr 1fr; gap: 20px; }
.media-card {
  min-height: 235px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ink);
}
.media-card--featured { grid-row: 1 / 3; min-height: 560px; }
.media-card img { width: 100%; height: 100%; position: absolute; object-fit: cover; transition: transform .5s ease; }
.media-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(1,25,46,.9), transparent 65%); }
.media-card > div { position: absolute; z-index: 1; inset: auto 26px 24px; color: var(--white); }
.media-card span { font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.media-card__title { max-width: 630px; margin: 8px 0 0; font-family: var(--serif); font-size: 19px; font-weight: 700; line-height: 1.55; }
.media-card--featured .media-card__title { font-size: clamp(25px, 3vw, 38px); }
.media-card p { margin: 15px 0 0; font-size: 12px; font-weight: 700; }
.media-card i { font-style: normal; }
.media-card:hover img { transform: scale(1.035); }

.school-intro { padding-bottom: 0; }
.school-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.school-hero img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.school-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,30,53,.91), rgba(2,30,53,.15) 68%); }
.school-hero__overlay { position: absolute; z-index: 1; left: 56px; bottom: 55px; max-width: 660px; color: var(--white); }
.school-hero__overlay .eyebrow { color: #82e9db; }
.school-hero__overlay h2 { margin: 0; font-family: var(--serif); font-size: clamp(35px, 4.4vw, 62px); line-height: 1.45; }
.school-hero__overlay p:last-child { margin: 22px 0 0; max-width: 570px; color: rgba(255,255,255,.85); }
.school-pillars { position: relative; z-index: 2; width: calc(100% - 80px); margin: -34px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.school-pillars article { padding: 36px; background: var(--white); }
.school-pillars span { color: var(--blue); font-size: 10px; font-weight: 800; }
.school-pillars h3 { margin: 15px 0 12px; font-family: var(--serif); font-size: 22px; line-height: 1.55; }
.school-pillars p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.learning-proof {
  width: calc(100% - 80px);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.curriculum-layout { display: grid; grid-template-columns: 1fr 330px; gap: 25px; }
.curriculum-main { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; }
.curriculum-main > h3 { margin: 0 0 30px; font-family: var(--serif); font-size: 25px; }
.curriculum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.curriculum-grid article { min-height: 175px; padding: 25px; background: var(--white); }
.curriculum-grid span { color: var(--blue); font-size: 9px; font-weight: 800; }
.curriculum-grid h4 { margin: 13px 0 8px; font-size: 15px; }
.curriculum-grid p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.7; }
.curriculum-side { display: grid; gap: 20px; }
.curriculum-side article { padding: 30px; background: var(--ink); border-radius: 22px; color: var(--white); }
.curriculum-side article:nth-child(2) { background: linear-gradient(145deg, var(--blue-deep), #028cb9); }
.curriculum-side span { color: #8eeadd; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.curriculum-side h3 { margin: 20px 0 14px; font-family: var(--serif); font-size: 20px; line-height: 1.6; }
.curriculum-side p { margin: 0; color: rgba(255,255,255,.76); font-size: 11px; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-grid article { min-height: 330px; padding: 36px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.support-grid span { color: var(--blue); font-size: 10px; font-weight: 800; }
.support-grid h3 { margin: 50px 0 15px; font-family: var(--serif); font-size: 22px; line-height: 1.55; }
.support-grid p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.support-grid small { margin-top: auto; padding-top: 25px; color: #334d68; font-size: 9px; }

.tab-list { display: inline-flex; padding: 5px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; }
.tab-list button { min-height: 48px; padding: 0 30px; background: transparent; border: 0; border-radius: 999px; font-size: 12px; font-weight: 800; cursor: pointer; }
.tab-list button[aria-selected="true"] { color: var(--white); background: var(--ink); }
.tab-panel { margin-top: 35px; }
.plan-category { margin: 0 0 20px; font-family: var(--serif); font-size: 25px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-grid article { min-height: 390px; padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.plan-grid article.is-recommended { border: 2px solid var(--blue); box-shadow: 0 20px 50px rgba(9,111,232,.12); }
.plan-grid span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.plan-grid h4 { margin: 70px 0 18px; font-family: var(--serif); font-size: 24px; line-height: 1.55; }
.plan-grid p { color: var(--ink-soft); font-size: 12px; }
.plan-grid ul { margin: 28px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid var(--line); }
.plan-grid li { padding: 5px 0; font-size: 11px; }
.plan-grid li::before { content: "—"; margin-right: 8px; color: var(--blue); }

.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.voice-card img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; transition: transform .5s ease; }
.voice-card > div { padding: 25px; }
.voice-card span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.voice-card__title { margin: 13px 0 20px; font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.55; }
.voice-card p { margin: 0; color: var(--blue-deep); font-size: 11px; font-weight: 800; }
.voice-card i { font-style: normal; }
.voice-card:hover img { transform: scale(1.035); }
.voice-tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.voice-tags h3 { margin: 0; padding: 8px 13px; color: var(--ink-soft); background: var(--tint); border-radius: 999px; font-size: 10px; font-weight: 700; }

.faq-layout { display: grid; grid-template-columns: 410px 1fr; align-items: start; gap: 75px; }
.faq-intro,
.faq-main,
[data-faq-panel] { min-width: 0; overflow-wrap: anywhere; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 30px); }
.faq-intro h2 { font-size: clamp(30px, 3.3vw, 47px); }
.faq-intro img { width: 100%; aspect-ratio: 1.5; margin-top: 34px; object-fit: cover; border-radius: 20px; }
.tab-list--compact { margin-bottom: 25px; }
.tab-list { max-width: 100%; }
.tab-list button { min-width: 0; overflow-wrap: anywhere; }
.faq-category { margin: 20px 0; font-family: var(--serif); font-size: 20px; }
details { border-top: 1px solid #a8c1d3; }
details:last-child { border-bottom: 1px solid #a8c1d3; }
summary {
  min-height: 94px;
  padding: 25px 50px 25px 0;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary::before,
summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 19px; height: 1px; background: var(--blue); transition: transform .2s ease; }
summary::after { transform: rotate(90deg); }
details[open] summary::after { transform: rotate(0); }
details p { margin: -8px 45px 28px 0; color: var(--ink-soft); font-size: 12px; }

.article-categories { margin-bottom: 35px; display: flex; flex-wrap: wrap; gap: 8px; }
.article-categories h3 { margin: 0; padding: 8px 13px; color: var(--blue-deep); background: var(--ice); border-radius: 999px; font-size: 10px; }
.article-list { border-top: 1px solid var(--line); }
.article-item {
  min-height: 125px;
  padding: 20px 10px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.article-item > span { color: var(--blue); font-size: 11px; font-weight: 800; }
.article-item small { color: #334d68; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.article-item__title { margin: 8px 0 0; font-family: var(--serif); font-size: clamp(17px, 2vw, 25px); font-weight: 700; }
.article-item i { font-style: normal; font-size: 20px; transition: transform .2s ease; }
.article-item:hover i { transform: translate(4px, -4px); color: var(--blue); }

.final-cta { padding-top: 70px; }
.final-cta__panel {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.final-cta__panel img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.final-cta__panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,30,53,.94), rgba(2,30,53,.45) 58%, rgba(2,30,53,.1)); }
.final-cta__content { position: absolute; z-index: 1; left: 60px; bottom: 60px; max-width: 760px; color: var(--white); }
.final-cta__content .eyebrow { color: #83e6d2; }
.final-cta__content h2 { margin: 0; font-size: clamp(14px, 1.2vw, 17px); line-height: 1.7; letter-spacing: .035em; }
.final-cta__catch { margin: 20px 0 35px; font-family: var(--serif); font-size: clamp(34px, 4.3vw, 60px); font-weight: 600; line-height: 1.45; letter-spacing: -.045em; }
.final-cta__routes { max-width: 670px; margin: -14px 0 28px; display: grid; gap: 4px; }
.final-cta__routes p { margin: 0; color: rgba(255,255,255,.72); font-size: 10px; }
.final-cta__routes p::before { content: "—"; margin-right: 8px; color: #83e6d2; }
.final-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer { padding: 70px 0 30px; background: var(--white); border-top: 1px solid var(--line); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 45px; border-bottom: 1px solid var(--line); }
.brand--footer img { width: 200px; }
.footer-top p { margin: 0; color: var(--ink-soft); font-family: var(--serif); font-size: 17px; text-align: right; }
.footer-links { padding: 45px 0 55px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px; }
.footer-links div { display: grid; gap: 7px; }
.footer-links b { margin-bottom: 13px; color: var(--blue-deep); font-size: 11px; letter-spacing: .15em; }
.footer-links a { color: var(--ink-soft); font-size: 13px; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: #334d68; }
.footer-bottom small { font-size: 11px; }
.motion-toggle {
  position: fixed;
  z-index: 1200;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.25,1);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .21s; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1040px); }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .header-actions { display: none; }
  .menu-button {
    width: 44px;
    height: 44px;
    padding: 10px;
    justify-self: end;
    display: grid;
    align-content: center;
    gap: 5px;
    background: rgba(255,255,255,.86);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }
  .menu-button > span:not(.sr-only) { width: 100%; height: 1px; background: var(--ink); transition: transform .2s ease; }
  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    padding: 30px max(22px, calc((100vw - 1040px) / 2)) 42px;
    display: grid;
    gap: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(13, 55, 86, .12);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .hero-rail { width: auto; right: 20px; }
  .hero-rail button { width: 46px; padding-left: 38px; }
  .hero-rail button b { display: none; }
  .corporate-proof-card { padding: 28px; }
  .agent-stage { grid-template-columns: 220px 1fr; padding: 35px; }
  .faq-layout { grid-template-columns: 350px 1fr; gap: 45px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 36px); --header-height: 68px; --radius: 22px; }
  body { line-height: 1.75; }
  .site-header { padding-inline: 18px; }
  .brand img { width: 145px; }
  .header-actions { display: none; }
  .menu-button {
    width: 44px;
    height: 44px;
    padding: 10px;
    justify-self: end;
    display: grid;
    align-content: center;
    gap: 5px;
    background: rgba(255,255,255,.82);
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .menu-button > span:not(.sr-only) { width: 100%; height: 1px; background: var(--ink); transition: transform .2s ease; }
  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    padding: 30px 22px 42px;
    display: grid;
    gap: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(13, 55, 86, .12);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .section { padding: 95px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading--split { display: block; }
  .section-heading--split > p { margin-top: 20px; }

  .hero-film { height: 460svh; min-height: 2600px; }
  .hero-media { inset: 0 0 32%; }
  .hero-media img { object-position: 59% center; }
  .hero-wash {
    background:
      linear-gradient(0deg, rgba(248,253,255,1) 0%, rgba(248,253,255,.98) 36%, rgba(248,253,255,.45) 67%, rgba(248,253,255,.08) 100%),
      linear-gradient(90deg, rgba(248,253,255,.22), transparent);
  }
  .hero-copy { padding-top: 0; padding-bottom: 112px; justify-content: flex-end; }
  .hero-copy > * { max-width: none; }
  .hero-index, .hero-service, .hero-brand { margin-bottom: 10px; }
  .hero-brand { font-size: clamp(34px, 10vw, 48px); }
  .hero-catch, .hero-headline { font-size: clamp(29px, 8.1vw, 40px); line-height: 1.42; }
  .hero-scene:first-child .hero-catch { font-size: clamp(28px, 7.6vw, 37px); }
  .hero-lead { margin-top: 15px; font-size: 13px; line-height: 1.8; }
  .hero-actions { margin-top: 20px; align-items: flex-start; flex-direction: column; gap: 13px; }
  .hero-copy > .button { margin-top: 20px; }
  .button { min-height: 50px; padding-inline: 22px; }
  .hero-rail {
    top: auto;
    right: 18px;
    left: 18px;
    bottom: 60px;
    display: flex;
    gap: 5px;
    transform: none;
  }
  .hero-rail button { flex: 1; width: auto; min-height: 20px; padding: 0 0 12px; border-bottom: 2px solid rgba(7,33,60,.15); text-align: center; }
  .hero-rail button::before { inset: auto 0 -2px; top: auto; width: 100%; height: 2px; transform: scaleX(0); }
  .hero-rail button.is-active::before { width: 100%; transform: scaleX(1); }
  .hero-rail button span { font-size: 8px; }
  .scroll-cue { display: none; }
  .desktop-only { display: none; }

  .proof { padding-top: 85px; }
  .corporate-proof-grid { grid-template-columns: 1fr; }
  .corporate-proof-card { min-height: 250px; }
  .proof-stat { padding: 26px 20px; }
  .proof-stat__number { font-size: 55px; }
  .client-logo-track span { width: 165px; height: 74px; padding: 14px 20px; }
  .editorial-visual { min-height: 480px; }
  .editorial-visual img { object-position: 60% center; }
  .editorial-caption { left: 28px; right: 28px; bottom: 30px; }
  .service-index__item { grid-template-columns: 42px 1fr auto; }
  .service-index p { display: none; }
  .service-detail__grid,
  .service-detail__grid--reverse { display: flex; flex-direction: column; gap: 45px; }
  .service-detail__grid--reverse .service-detail__visual { order: 2; }
  .service-detail__visual { width: 100%; aspect-ratio: 1 / .82; }
  .process-list small { display: block; margin: 3px 0 0; }
  .agent-stage { padding: 24px; display: block; }
  .agent-orchestrator { max-width: 220px; margin: 0 auto 30px; text-align: center; }
  .agent-flow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .agent-flow > i { display: none; }
  .human-gate { margin-top: 14px; }
  .talent-intro { display: block; }
  .mascot-line { height: 190px; margin-bottom: 25px; }
  .mascot-line img { width: 90px; height: 90px; }
  .role-grid,
  .support-grid,
  .plan-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 300px; }
  .role-card__title { margin-top: 35px; }
  .team-grid { grid-template-columns: 1fr; gap: 50px; }
  .heading-line { display: inline; }
  .team-portrait { min-height: 520px; }
  .media-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .media-card--featured { grid-column: 1 / -1; grid-row: auto; min-height: 450px; }
  .media-card { min-height: 240px; }
  .school-hero { min-height: 570px; }
  .school-hero__overlay { left: 30px; right: 30px; bottom: 35px; }
  .school-pillars { width: calc(100% - 34px); grid-template-columns: 1fr; }
  .learning-proof { width: calc(100% - 34px); }
  .curriculum-layout { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr 1fr; }
  .curriculum-side { grid-template-columns: 1fr 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-card { display: grid; grid-template-columns: 42% 1fr; }
  .voice-card img { height: 100%; aspect-ratio: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .faq-intro img { aspect-ratio: 2; }
  .final-cta__panel { min-height: 590px; }
  .final-cta__content { left: 30px; right: 30px; bottom: 38px; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100vw - 28px); }
  .section { padding: 78px 0; }
  .section-heading h2,
  .service-detail h2,
  .faq-intro h2 { font-size: 29px; line-height: 1.55; }
  .hero-media { bottom: 39%; }
  .hero-copy { padding-bottom: 115px; }
  .hero-copy .button { width: 100%; }
  .hero-copy .text-link { font-size: 12px; }
  .learning-proof { width: 100%; grid-template-columns: 1fr; }
  .proof-stat__note { font-size: 8px; }
  .editorial-visual { min-height: 500px; }
  .editorial-caption b { font-size: 26px; }
  .service-detail__visual { aspect-ratio: .82; }
  .service-detail__visual figcaption { inset: auto 12px 12px; padding: 18px; }
  .service-detail__visual figcaption b { font-size: 18px; }
  .agent-flow { grid-template-columns: 1fr; }
  .human-gate { align-items: flex-start; flex-direction: column; gap: 4px; }
  .mascot-line img { width: 74px; height: 74px; }
  .team-portrait { min-height: 430px; }
  .media-grid { display: grid; grid-template-columns: 1fr; }
  .media-card--featured { grid-column: auto; min-height: 360px; }
  .school-hero { min-height: 580px; }
  .school-hero img { object-position: 61% center; }
  .school-pillars { margin-top: 16px; width: 100%; }
  .curriculum-main { padding: 24px; }
  .curriculum-grid,
  .curriculum-side { grid-template-columns: 1fr; }
  .support-grid article,
  .plan-grid article { min-height: 300px; }
  .tab-list { width: 100%; }
  .tab-list button { flex: 1; padding-inline: 12px; }
  .voice-card { display: block; }
  .voice-card img { aspect-ratio: 1 / .75; }
  .article-item { grid-template-columns: 35px 1fr auto; }
  .final-cta__panel { min-height: 650px; }
  .final-cta__panel img { object-position: 62% center; }
  .final-cta__actions { display: grid; }
  .footer-top { display: block; }
  .footer-top p { margin-top: 20px; text-align: left; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-bottom { gap: 15px; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 360px) {
  .motion-toggle {
    width: 44px;
    min-width: 44px;
    left: 166px;
    padding: 0;
    font-size: 0;
  }
  .motion-toggle::before {
    content: "⏸";
    font-size: 13px;
    line-height: 1;
  }
  .motion-toggle[aria-pressed="true"]::before { content: "▶"; }
  .keep-line { display: inline-block; white-space: nowrap; }
  .hero-scene:first-child .hero-catch { font-size: 25px; }
}

@media (max-height: 650px) and (min-width: 821px) {
  .hero-copy { padding-top: 86px; padding-bottom: 42px; }
  .hero-index,
  .hero-service { margin-bottom: 8px; }
  .hero-brand { font-size: 34px; }
  .hero-catch,
  .hero-headline { font-size: 38px; line-height: 1.35; }
  .hero-scene:first-child .hero-catch { font-size: 36px; }
  .hero-lead { margin-top: 12px; font-size: 13px; line-height: 1.7; }
  .hero-copy > .button,
  .hero-actions { margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Current Proposal V2 — 2026-07-28 feedback polish */
body {
  font-size: 17px;
  line-height: 1.82;
}

:where(h1, h2, h3, h4, .hero-catch, .hero-headline, .hero-lead, .button, summary) {
  line-break: strict;
  overflow-wrap: normal;
  word-break: keep-all;
  word-break: auto-phrase;
  text-wrap: balance;
}

.desktop-nav,
.header-link { font-size: 14px; }

.button {
  min-height: 60px;
  padding-inline: 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-size: 16px;
  white-space: nowrap;
  background: linear-gradient(115deg, #0b56a5 0%, #1f6fb2 58%, #006f91 100%);
}

.button::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -45%;
  left: -70%;
  width: 38%;
  height: 190%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent);
  transform: skewX(-24deg);
  transition: left .65s cubic-bezier(.2,.7,.2,1);
}

.button:hover::after,
.button:focus-visible::after { left: 132%; }

.button--small {
  min-height: 46px;
  padding-inline: 22px;
  font-size: 13px;
}

.button--accent {
  color: var(--white);
  background: linear-gradient(115deg, #c23450 0%, #a84600 48%, #7430b3 100%);
  box-shadow: 0 14px 34px rgba(198, 81, 124, .24);
}

.button--accent:hover,
.button--accent:focus-visible {
  box-shadow: 0 19px 42px rgba(198, 81, 124, .34);
}

.hero-copy > * { max-width: 760px; }
.hero-index,
.hero-service { font-size: 13px; }
.hero-semantic-title { font-size: clamp(14px, 1vw, 16px); }
.hero-lead { font-size: clamp(17px, 1.25vw, 20px); }
.hero-actions { gap: 13px; }

.hero-rail {
  top: auto;
  right: auto;
  bottom: 43px;
  left: 50%;
  width: min(900px, calc(100% - 80px));
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(168,197,217,.72);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(14,66,104,.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.hero-rail button {
  width: auto;
  min-height: 52px;
  padding: 6px 10px;
  border-radius: 12px;
  text-align: center;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

.hero-rail button::before { display: none; }
.hero-rail button span { font-size: 10px; }
.hero-rail button b {
  display: block;
  margin-top: 1px;
  font-size: 11px;
  line-height: 1.4;
}
.hero-rail button.is-active {
  color: var(--blue-deep);
  background: rgba(255,255,255,.96);
  box-shadow: 0 6px 18px rgba(9,111,232,.13);
}

.scroll-cue {
  left: 50%;
  bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 11px;
  height: 11px;
  margin: -4px 0 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: transparent;
  animation: cue-v2 1.5s ease-in-out infinite;
  transform: rotate(45deg);
}

@keyframes cue-v2 {
  0%, 100% { opacity: .35; translate: 0 -2px; }
  50% { opacity: 1; translate: 0 4px; }
}

.client-logo-strip {
  padding: 22px 0 24px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.client-logo-strip .client-logo-marquee {
  margin: 0;
  padding: 0;
  border: 0;
}

.client-logo-marquee > p { font-size: 11px; }
.client-logo-marquee > p small { font-size: 10px; }
.client-logo-track img {
  filter: none;
  opacity: 1;
}

.proof { padding-top: 105px; }
.corporate-proof-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.corporate-proof-card > .corporate-proof-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: var(--ice);
}

.corporate-proof-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.corporate-proof-card:hover .corporate-proof-card__media img,
.corporate-proof-card:focus-visible .corporate-proof-card__media img { transform: scale(1.035); }

.corporate-proof-card > .corporate-proof-card__body {
  min-height: 265px;
  padding: 28px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.corporate-proof-card__label {
  color: var(--blue-deep) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .11em;
}

.corporate-proof-card__title,
.corporate-proof-card__quote {
  display: block;
  margin: 20px 0 18px;
  font-size: clamp(21px, 1.85vw, 27px);
  line-height: 1.55;
}

.corporate-proof-card__body > small:not(.corporate-proof-card__label) {
  margin-top: auto;
  padding-right: 30px;
  font-size: 13px;
}

.corporate-proof-card__body i {
  right: 28px;
  bottom: 25px;
}

.section-heading h2,
.service-detail h2,
.faq-intro h2 {
  line-height: 1.42;
  word-break: auto-phrase;
  text-wrap: balance;
}

.section-heading > p:last-child,
.section-heading--split > p,
.lead {
  font-size: 17px;
  line-height: 2;
}

.business-map .section-heading {
  max-width: none;
}

#business-title {
  font-size: clamp(38px, 4.15vw, 58px);
  white-space: nowrap;
}

.editorial-visual::after {
  background: linear-gradient(90deg, rgba(255,255,255,.93) 0%, rgba(255,255,255,.78) 27%, rgba(255,255,255,.08) 62%);
}

.editorial-caption {
  left: 38px;
  bottom: 38px;
  max-width: 540px;
  padding: 28px 32px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(22,68,103,.13);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.editorial-caption span { color: var(--blue-deep); font-size: 11px; }
.editorial-caption b { font-size: clamp(29px, 3vw, 44px); }
.service-index p { font-size: 15px; }

.service-detail__visual {
  aspect-ratio: 16 / 10;
}

.service-detail__visual figcaption {
  inset: auto 20px 20px;
  max-width: calc(100% - 40px);
  padding: 22px 25px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.95);
  box-shadow: 0 12px 32px rgba(17,66,102,.13);
}

.service-detail__visual figcaption span { color: var(--blue-deep); font-size: 10px; }
.service-detail__visual figcaption b { font-size: 22px; }
.process-list b { font-size: 16px; }
.process-list small { font-size: 13px; }
.feature-stack span { font-size: 11px; }
.feature-stack b { font-size: 15px; }

.agent-orchestrator > span,
.agent-flow div span,
.human-gate span { font-size: 11px; }
.agent-orchestrator > b { font-size: 24px; }
.agent-flow div b { font-size: 15px; }
.agent-flow div small { font-size: 12px; }
.human-gate b { font-size: 13px; }

.talent-intro {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  align-items: center;
}

.mascot-line {
  height: 230px;
  padding: 28px 22px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(232,247,255,.95));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(16,70,112,.08);
}

.mascot-line img,
.mascot-line img:nth-child(n) {
  width: min(25%, 110px);
  height: 165px;
  position: static;
  object-fit: contain;
  transform: none;
}

.role-card {
  min-height: 305px;
  padding: 34px;
}
.role-card > span { font-size: 11px; }
.role-card__title { margin: 28px 0 15px; font-size: 29px; }
.role-card p { font-size: 15px; }
.role-card ul { margin-top: 28px; }
.role-card li { font-size: 12px; }

.team-grid {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(55px, 7vw, 100px);
}

.team-portrait { min-height: 650px; }
.team-portrait > div {
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.95);
  box-shadow: 0 12px 30px rgba(16,70,112,.12);
}
.team-portrait span { color: var(--blue-deep); font-size: 10px; }
.team-portrait b { font-size: 24px; }
.team-copy h2 {
  font-size: clamp(32px, 3.05vw, 44px);
  line-height: 1.48;
}
.team-copy > p:not(.eyebrow):not(.serif-quote) {
  font-size: 16px;
  line-height: 1.95;
}
.heading-line--nowrap { white-space: nowrap; }
.service-detail h2 .heading-line--nowrap {
  font-size: clamp(27px, 2.45vw, 38px);
  letter-spacing: -.055em;
}
.founder-focus {
  margin-top: 25px;
  padding: 23px 25px;
  background: linear-gradient(135deg, #f5fbff, #fff8f4);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.founder-focus p { margin: 0; }
.founder-focus__label {
  margin-bottom: 8px !important;
  color: var(--blue-deep) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: .1em;
}
.team-points span { font-size: 12px; }

.media {
  overflow: hidden;
}

.youtube-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  gap: 24px;
}

.youtube-row {
  overflow: hidden;
  contain: paint;
}

.youtube-track {
  width: max-content;
  display: flex;
  gap: 20px;
  animation: youtube-scroll-left 44s linear infinite;
  will-change: transform;
}

.youtube-row--reverse .youtube-track {
  animation-name: youtube-scroll-right;
}

.youtube-group {
  display: flex;
  gap: 20px;
}

.youtube-card {
  width: clamp(310px, 31vw, 470px);
  flex: none;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(16,70,112,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.youtube-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #071f38;
}

.youtube-card > span {
  min-height: 96px;
  padding: 19px 22px 22px;
  display: block;
}

.youtube-card small {
  display: block;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.youtube-card b {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.youtube-card:hover,
.youtube-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(16,70,112,.16);
}

@keyframes youtube-scroll-left {
  to { transform: translateX(calc(-50% - 10px)); }
}

@keyframes youtube-scroll-right {
  from { transform: translateX(calc(-50% - 10px)); }
  to { transform: translateX(0); }
}

.youtube-row:hover .youtube-track,
.youtube-row:focus-within .youtube-track,
.student-window:hover .student-track,
.student-window:focus-within .student-track,
.motion-paused .youtube-track,
.motion-paused .student-track,
.motion-paused .client-logo-track {
  animation-play-state: paused;
}

.school-hero::after {
  background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.7) 46%, rgba(255,255,255,.05) 76%);
}

.school-hero__overlay {
  left: 42px;
  bottom: 42px;
  max-width: 690px;
  padding: 32px 36px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(16,70,112,.14);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.school-hero__overlay .eyebrow { color: var(--blue-deep); }
.school-hero__overlay p:last-child {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.95;
}
.school-pillars h3 { font-size: 24px; }
.school-pillars p { font-size: 15px; }
.proof-stat__label { font-size: 11px; }
.proof-stat__title { font-size: 21px; }
.proof-stat__note { font-size: 12px; }

.student-marquee {
  width: 100vw;
  margin: 50px 0 0 calc(50% - 50vw);
  padding: 34px 0 28px;
  background: linear-gradient(180deg, #f5fbff, #fff);
  border-block: 1px solid var(--line);
}

.student-marquee__lead {
  width: var(--shell);
  margin: 0 auto 22px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.student-marquee__lead span {
  margin-right: 12px;
  color: var(--blue-deep);
  font-size: 11px;
  letter-spacing: .14em;
}

.student-window {
  overflow: hidden;
  contain: paint;
}

.student-track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: student-scroll 48s linear infinite;
  will-change: transform;
}

.student-group {
  display: flex;
  gap: 16px;
}

.student-card {
  width: clamp(245px, 23vw, 360px);
  position: relative;
  flex: none;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(16,70,112,.13);
}

.student-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.student-card span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 10px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

@keyframes student-scroll {
  to { transform: translateX(calc(-50% - 8px)); }
}

.curriculum-grid h4 { font-size: 17px; }
.curriculum-grid p { font-size: 14px; }
.curriculum-side article,
.curriculum-side article:nth-child(2) {
  color: var(--ink);
  background: linear-gradient(145deg, #fff, #eef8ff);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(16,70,112,.08);
}
.curriculum-side span { color: var(--blue-deep); font-size: 11px; }
.curriculum-side h3 { font-size: 22px; }
.curriculum-side p { color: var(--ink-soft); font-size: 14px; }
.support-grid p { font-size: 15px; }
.support-grid small { font-size: 11px; }
.tab-list button { min-height: 54px; font-size: 14px; }
.plan-grid span { font-size: 11px; }
.plan-grid h4 { margin-top: 48px; font-size: 26px; }
.plan-grid p { font-size: 15px; }
.plan-grid li { font-size: 14px; }

.voice-card img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.voice-card span { font-size: 11px; }
.voice-card .voice-card__title {
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(18px, 1.7vw, 22px);
}
.voice-card p { font-size: 14px; }
.voice-tags h3 { font-size: 12px; }
.voice-disclaimer {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.faq-intro,
.faq-main,
[data-faq-panel] {
  overflow-wrap: normal;
}
.faq-intro img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.faq-category { font-size: 22px; }
.tab-list button { overflow-wrap: normal; }
summary { font-size: 16px; }
details p { font-size: 15px; }

.articles {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f2f9ff 100%);
}
.journal-showcase {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
}
.journal-card {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.journal-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: transform .5s ease;
}
.journal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.84) 43%, rgba(255,255,255,.08) 72%);
}
.journal-card__body {
  position: absolute;
  z-index: 1;
  inset: auto 30px 30px;
  color: var(--ink);
}
.journal-card__body small {
  display: block;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}
.journal-card__body b {
  display: block;
  margin-top: 6px;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.journal-card__body em {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
.journal-card__body i {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 13px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.journal-card--agi .journal-card__body i {
  color: var(--ink-soft);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
}
.journal-card:hover > img,
.journal-card:focus-visible > img { transform: scale(1.03); }

.journal-article-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.journal-article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(16,70,112,.08);
}
.journal-article > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.journal-article > span {
  min-height: 165px;
  padding: 22px;
  position: relative;
  display: block;
}
.journal-article small {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
}
.journal-article b {
  display: block;
  margin-top: 9px;
  padding-right: 20px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}
.journal-article i {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--blue);
  font-style: normal;
}
.journal-banner-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.journal-banner-row a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.journal-banner-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .4s ease;
}
.journal-banner-row a:hover img,
.journal-banner-row a:focus-visible img { transform: scale(1.025); }

.final-cta__panel::after {
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 47%, rgba(255,255,255,.16) 78%);
}
.final-cta__content {
  left: 48px;
  bottom: 46px;
  max-width: 820px;
  padding: 34px 38px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(16,70,112,.14);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.final-cta__content .eyebrow { color: var(--blue-deep); }
.final-cta__content h2 { color: var(--ink-soft); font-size: 16px; }
.final-cta__catch {
  margin: 17px 0 28px;
  font-size: clamp(42px, 4.3vw, 58px);
  line-height: 1.3;
}
.final-cta__catch > .heading-line:first-child .final-catch-part { display: block; }
.final-cta__routes { margin-top: -5px; }
.final-cta__routes p { color: var(--ink-soft); font-size: 12px; }
.final-cta__routes p::before { color: var(--blue-deep); }

@media (max-width: 1120px) {
  .hero-rail {
    width: min(850px, calc(100% - 48px));
  }
  .hero-rail button {
    width: auto;
    padding-inline: 7px;
  }
  .hero-rail button b { display: block; font-size: 10px; }
  .corporate-proof-card { padding: 0; }
  .corporate-proof-card > .corporate-proof-card__body { padding: 25px; }
  .journal-card { min-height: 430px; }
}

@media (max-width: 820px) {
  .motion-toggle {
    top: 12px;
    left: 168px;
    right: auto;
    bottom: auto;
    min-height: 44px;
    padding: 7px 9px;
    font-size: 9px;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 25px;
  }
  body { font-size: 16px; }
  .section { padding: 100px 0; }
  .section-heading > p:last-child,
  .section-heading--split > p,
  .lead { font-size: 16px; }
  .button {
    min-height: 54px;
    padding-inline: 23px;
    font-size: 14px;
  }
  .hero-copy {
    padding-bottom: 124px;
  }
  .hero-lead { font-size: 15px; }
  .hero-actions { gap: 10px; }
  .hero-rail {
    right: auto;
    bottom: 47px;
    left: 50%;
    width: calc(100% - 28px);
    padding: 4px;
    display: grid;
    gap: 3px;
    transform: translateX(-50%);
  }
  .hero-rail button {
    min-height: 38px;
    padding: 5px 3px;
    border: 0;
  }
  .hero-rail button b { display: none; }
  .hero-rail button span { font-size: 10px; }
  .scroll-cue {
    bottom: 12px;
    display: flex;
    font-size: 9px;
  }
  .client-logo-strip { padding-block: 18px; }
  .proof { padding-top: 90px; }
  .corporate-proof-card { min-height: 0; }
  .corporate-proof-card > .corporate-proof-card__body { min-height: 220px; }
  #business-title {
    font-size: clamp(33px, 7.8vw, 48px);
    white-space: normal;
  }
  .business-title__line { display: block; }
  .editorial-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 23px;
  }
  .service-detail__visual {
    aspect-ratio: 16 / 10;
  }
  .service-detail__grid--reverse .service-detail__visual { order: 0; }
  .heading-line--nowrap { white-space: normal; }
  .mascot-line {
    height: 210px;
    margin-bottom: 25px;
  }
  .mascot-line img,
  .mascot-line img:nth-child(n) {
    width: 25%;
    height: 145px;
  }
  .role-card { min-height: 260px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-copy h2 { font-size: clamp(31px, 7.1vw, 43px); }
  .heading-line { display: block; }
  .youtube-card { width: clamp(285px, 63vw, 410px); }
  .school-hero {
    min-height: 600px;
  }
  .school-hero__overlay {
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 26px;
  }
  .school-hero__overlay p:last-child { font-size: 15px; }
  .student-card { width: clamp(240px, 62vw, 340px); }
  .curriculum-side { grid-template-columns: 1fr 1fr; }
  .voice-card {
    display: block;
  }
  .voice-card img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .faq-intro img {
    width: min(100%, 560px);
    aspect-ratio: 4 / 3;
  }
  .journal-showcase { grid-template-columns: 1fr; }
  .journal-card { min-height: 440px; }
  .journal-article-grid { grid-template-columns: 1fr; }
  .journal-article {
    display: grid;
    grid-template-columns: minmax(180px, 38%) 1fr;
  }
  .journal-article > img {
    height: 100%;
    aspect-ratio: auto;
  }
  .journal-banner-row { grid-template-columns: 1fr 1fr; }
  .final-cta__panel { min-height: 700px; }
  .final-cta__content {
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 28px;
  }
  .final-cta__catch { font-size: clamp(38px, 7.7vw, 58px); }
}

@media (max-width: 520px) {
  .section { padding: 82px 0; }
  .hero-media { bottom: 40%; }
  .hero-copy {
    padding-bottom: 108px;
  }
  .hero-semantic-title { font-size: 12px; line-height: 1.55; }
  .hero-catch,
  .hero-headline { font-size: clamp(28px, 7.7vw, 35px); }
  .hero-scene:first-child .hero-catch { font-size: clamp(27px, 7.4vw, 34px); }
  .hero-lead { font-size: 14px; line-height: 1.7; }
  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 10px;
    font-size: 13px;
  }
  .hero-copy > .button {
    min-height: 49px;
    margin-top: 16px;
    font-size: 13px;
  }
  .scroll-cue {
    bottom: 9px;
    font-size: 0;
  }
  .corporate-proof-card__title,
  .corporate-proof-card__quote { font-size: 21px; }
  .editorial-visual::after {
    background: linear-gradient(0deg, rgba(255,255,255,.96), rgba(255,255,255,.45) 58%, rgba(255,255,255,.04));
  }
  .editorial-caption { padding: 20px; }
  .service-detail__visual,
  .service-detail__visual:nth-child(n) {
    aspect-ratio: 16 / 10;
  }
  .service-detail__visual figcaption b { font-size: 16px; }
  .mascot-line {
    height: 160px;
    padding: 16px 8px 8px;
  }
  .mascot-line img,
  .mascot-line img:nth-child(n) { height: 110px; }
  .team-portrait { min-height: 470px; }
  .team-copy h2 { font-size: 29px; }
  .youtube-carousel { gap: 16px; }
  .youtube-card { width: 275px; }
  .youtube-card > span { min-height: 90px; padding: 16px 18px; }
  .youtube-card b { font-size: 15px; }
  .school-hero {
    min-height: 620px;
  }
  .school-hero img { object-position: 64% center; }
  .school-hero__overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 22px;
  }
  .school-hero__overlay h2 { font-size: 31px; }
  .student-marquee__lead span { display: block; margin-bottom: 5px; }
  .curriculum-side { grid-template-columns: 1fr; }
  .plan-grid h4 { margin-top: 28px; }
  .faq-intro img { aspect-ratio: 4 / 3; }
  .journal-card { min-height: 390px; }
  .journal-card__body { inset: auto 22px 22px; }
  .journal-card__body b { font-size: 37px; }
  .journal-article { display: block; }
  .journal-article > img {
    height: auto;
    aspect-ratio: 3 / 2;
  }
  .journal-banner-row { grid-template-columns: 1fr; }
  .final-cta__panel {
    min-height: 760px;
  }
  .final-cta__panel::after {
    background: linear-gradient(0deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 58%, rgba(255,255,255,.72) 100%);
  }
  .final-cta__content {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 23px;
  }
  .final-cta__catch {
    font-size: clamp(28px, 7.3vw, 34px);
  }
  .final-cta__catch .final-catch-part { display: block; }
  .final-cta__actions { display: grid; }
}

@media (max-height: 650px) and (min-width: 821px) {
  .hero-copy {
    padding-top: 82px;
    padding-bottom: 92px;
  }
  .hero-copy > * { max-width: 660px; }
  .hero-catch,
  .hero-headline { font-size: 35px; }
  .hero-scene:first-child .hero-catch { font-size: 33px; }
  .hero-semantic-title { font-size: 12px; }
  .hero-lead { font-size: 14px; }
  .hero-rail { bottom: 34px; }
  .hero-rail button { min-height: 42px; }
  .scroll-cue { display: none; }
}

body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after {
  animation-play-state: paused !important;
  transition-duration: .001ms !important;
}

@media (max-width: 360px) {
  .motion-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    top: 12px;
    left: 166px;
    right: auto;
    bottom: auto;
    padding: 0;
    font-size: 0;
  }
  .motion-toggle::before {
    content: "⏸";
    font-size: 13px;
    line-height: 1;
  }
  .motion-toggle[aria-pressed="true"]::before { content: "▶"; }
  .hero-actions .button { gap: 4px; }
  .final-cta__content { padding: 18px 12px; }
  .final-cta__catch { font-size: 26px; }
}

/* Current Proposal V3 — video feedback 2026-07-28 */
.current-proposal-v3 {
  font-size: 18px;
  line-height: 1.84;
}

.current-proposal-v3 .section {
  padding-block: clamp(106px, 8vw, 146px);
}

.current-proposal-v3 .section-heading {
  max-width: 960px;
  margin-bottom: clamp(48px, 5vw, 72px);
}

.current-proposal-v3 .section-heading:not(.section-heading--split) {
  max-width: 1100px;
}

.current-proposal-v3 .section-heading--split {
  max-width: none;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  gap: clamp(42px, 7vw, 104px);
}

.current-proposal-v3 .section-heading h2,
.current-proposal-v3 .faq-intro h2 {
  font-size: clamp(40px, 4.15vw, 62px);
  line-height: 1.38;
}

.current-proposal-v3 .service-detail h2 {
  font-size: clamp(37px, 3.25vw, 50px);
  line-height: 1.4;
}

.current-proposal-v3 .service-detail.section {
  padding-block: clamp(96px, 7vw, 118px);
}

.current-proposal-v3 .section-heading > p:last-child,
.current-proposal-v3 .section-heading--split > p,
.current-proposal-v3 .lead {
  max-width: 42em;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.95;
}

.current-proposal-v3 .eyebrow {
  font-size: 12px;
}

.current-proposal-v3 .button {
  min-height: 90px;
  max-width: 100%;
  padding: 18px 56px;
  justify-content: center;
  font-size: 24px;
  line-height: 1.35;
  white-space: nowrap;
}

.current-proposal-v3 .button--small {
  min-height: 69px;
  padding-inline: 32px;
  font-size: 20px;
}

/* First view: preserve the photograph, soften only the copy surface. */
.current-proposal-v3 .hero-wash,
.current-proposal-v3 .hero-global-wash {
  display: none !important;
}

.current-proposal-v3 .hero-copy {
  padding-top: max(104px, 11svh);
  padding-bottom: 146px;
}

.current-proposal-v3 .hero-copy > .hero-copy-card {
  width: min(780px, calc(100vw - 80px));
  max-width: none;
  padding: clamp(26px, 2.4vw, 38px);
  pointer-events: auto;
  background: rgba(255, 255, 255, .44);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(23, 72, 105, .08);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.current-proposal-v3 .hero-copy-card > * {
  max-width: 700px;
}

.current-proposal-v3 .hero-copy-card .hero-index,
.current-proposal-v3 .hero-copy-card .hero-service {
  margin-bottom: 14px;
  font-size: 15px;
}

.current-proposal-v3 .hero-copy-card .hero-service {
  padding: 14px 24px;
  font-size: 18px;
}

.current-proposal-v3 .hero-copy-card .hero-semantic-title {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
}

.current-proposal-v3 .hero-copy-card .hero-catch,
.current-proposal-v3 .hero-copy-card .hero-headline {
  font-size: clamp(43px, 4.2vw, 66px);
  line-height: 1.28;
}

.current-proposal-v3 .hero-scene:first-child .hero-copy-card .hero-catch {
  font-size: clamp(40px, 3.9vw, 61px);
}

.current-proposal-v3 .hero-first-line {
  white-space: nowrap;
}

.current-proposal-v3 .keep-phrase,
.current-proposal-v3 .faq-title-unit,
.current-proposal-v3 .footer-slogan-line,
.current-proposal-v3 .footer-slogan-unit {
  white-space: nowrap;
}

.current-proposal-v3 .button-label {
  min-width: 0;
}

.current-proposal-v3 .hero-copy-card .hero-lead {
  max-width: 650px;
  margin-top: 21px;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.8;
}

.current-proposal-v3 .hero-copy-card .hero-actions,
.current-proposal-v3 .hero-copy-card > .button {
  margin-top: 25px;
}

.current-proposal-v3 .hero-rail {
  bottom: 43px;
  width: min(1080px, calc(100% - 72px));
  padding: 7px;
  gap: 6px;
}

.current-proposal-v3 .hero-rail button {
  min-height: 72px;
  padding: 8px 12px;
}

.current-proposal-v3 .hero-rail button span {
  font-size: 18px;
  line-height: 1.1;
}

.current-proposal-v3 .hero-rail button b {
  margin-top: 5px;
  font-size: 13px;
}

.current-proposal-v3 .scroll-cue {
  bottom: 4px;
  font-size: 11px;
}

/* Photographs remain untouched; captions alone receive translucent contrast. */
.current-proposal-v3 .editorial-visual::after,
.current-proposal-v3 .school-hero::after,
.current-proposal-v3 .journal-card::after,
.current-proposal-v3 .final-cta__panel::after {
  content: none;
  background: none;
}

.current-proposal-v3 .editorial-visual {
  min-height: 640px;
}

.current-proposal-v3 .editorial-caption {
  left: 42px;
  bottom: 42px;
  max-width: 620px;
  padding: 30px 34px;
  background: rgba(255, 255, 255, .58);
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 15px 38px rgba(19, 65, 98, .08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.current-proposal-v3 .editorial-caption span {
  font-size: 13px;
}

.current-proposal-v3 .editorial-caption b {
  font-size: clamp(34px, 3.35vw, 50px);
  line-height: 1.48;
}

.current-proposal-v3 .service-index__item {
  min-height: 142px;
}

.current-proposal-v3 .service-index__item > span {
  font-size: 15px;
}

.current-proposal-v3 .service-index h3 {
  font-size: clamp(28px, 2.8vw, 40px);
}

.current-proposal-v3 .service-index p {
  margin-top: 8px;
  font-size: 17px;
}

.current-proposal-v3 .service-detail__grid {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 5.6vw, 86px);
}

.current-proposal-v3 .service-detail__grid--reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, .78fr);
}

.current-proposal-v3 .service-detail__visual {
  aspect-ratio: 16 / 10;
}

.current-proposal-v3 .service-detail__visual figcaption {
  inset: auto 24px 24px;
  max-width: min(620px, calc(100% - 48px));
  padding: 25px 28px;
  background: rgba(255, 255, 255, .6);
  border-color: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 32px rgba(18, 62, 93, .08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.current-proposal-v3 .service-detail__visual figcaption span {
  font-size: 12px;
}

.current-proposal-v3 .service-detail__visual figcaption b {
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.5;
}

.current-proposal-v3 .process-list {
  margin-block: 42px;
}

.current-proposal-v3 .process-list li {
  min-height: 76px;
  grid-template-columns: 52px 1fr;
  padding-block: 18px;
}

.current-proposal-v3 .process-list span {
  font-size: 13px;
}

.current-proposal-v3 .process-list b {
  font-size: 21px;
}

.current-proposal-v3 .process-list small {
  margin-left: 18px;
  font-size: 16px;
}

.current-proposal-v3 .feature-stack div {
  min-height: 70px;
  grid-template-columns: 92px 1fr;
  align-items: center;
}

.current-proposal-v3 .feature-stack span {
  font-size: 13px;
}

.current-proposal-v3 .feature-stack b {
  font-size: 18px;
}

/* AI agent work area */
.current-proposal-v3 #agent-title .heading-line {
  display: block;
}

.current-proposal-v3 .agent .section-heading--split {
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 48px;
}

.current-proposal-v3 #agent-title {
  font-size: clamp(40px, 3.05vw, 44px);
  line-height: 1.42;
  letter-spacing: -.075em;
}

@media (min-width: 1181px) {
  .current-proposal-v3 #agent-title .heading-line:first-child {
    white-space: nowrap;
  }
}

.current-proposal-v3 .agent-stage {
  grid-template-columns: 330px 1fr;
  padding: clamp(36px, 4vw, 58px);
}

.current-proposal-v3 .agent-orchestrator img {
  border-radius: 50%;
  box-shadow: 0 20px 54px rgba(9, 111, 232, .15);
}

.current-proposal-v3 .agent-orchestrator > span {
  font-size: 13px;
}

.current-proposal-v3 .agent-orchestrator > b {
  font-size: 29px;
}

.current-proposal-v3 .agent-flow div {
  min-height: 142px;
  padding: 22px 18px;
}

.current-proposal-v3 .agent-flow div span {
  font-size: 13px;
}

.current-proposal-v3 .agent-flow div b {
  font-size: 19px;
}

.current-proposal-v3 .agent-flow div small {
  font-size: 14px;
}

.current-proposal-v3 .human-gate {
  min-height: 62px;
  padding-inline: 22px;
}

.current-proposal-v3 .human-gate span,
.current-proposal-v3 .human-gate b {
  font-size: 15px;
}

/* Founder and media */
.current-proposal-v3 .team-copy h2 {
  font-size: clamp(38px, 3.5vw, 54px);
  line-height: 1.42;
}

.current-proposal-v3 .serif-quote {
  white-space: nowrap;
  font-size: clamp(27px, 2.15vw, 31px);
}

.current-proposal-v3 .team-copy > p:not(.eyebrow):not(.serif-quote) {
  font-size: 18px;
}

.current-proposal-v3 .founder-focus {
  padding: 28px 30px;
}

.current-proposal-v3 .founder-focus__label,
.current-proposal-v3 .team-points span {
  font-size: 14px !important;
}

.current-proposal-v3 .youtube-card {
  width: clamp(340px, 33vw, 510px);
}

.current-proposal-v3 .youtube-card > span {
  min-height: 112px;
  padding: 22px 25px 25px;
}

.current-proposal-v3 .youtube-card small {
  font-size: 12px;
}

.current-proposal-v3 .youtube-card b {
  font-size: 20px;
}

/* School: photo stays bright; the copy surface is translucent. */
.current-proposal-v3 .school-hero {
  min-height: 700px;
}

.current-proposal-v3 .school-hero__overlay {
  left: 42px;
  bottom: 42px;
  max-width: 760px;
  padding: 36px 40px;
  background: rgba(255, 255, 255, .6);
  border-color: rgba(255, 255, 255, .74);
  box-shadow: 0 15px 40px rgba(18, 64, 98, .08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.current-proposal-v3 .school-hero__overlay h2 {
  font-size: clamp(42px, 4.6vw, 68px);
}

.current-proposal-v3 .school-title-unit {
  display: inline-block;
  white-space: nowrap;
}

.current-proposal-v3 .school-hero__overlay p:last-child {
  font-size: 20px;
}

.current-proposal-v3 .school-pillars h3 {
  font-size: 28px;
}

.current-proposal-v3 .school-pillars p {
  font-size: 17px;
}

.current-proposal-v3 .student-marquee {
  padding-block: 38px;
}

.current-proposal-v3 .student-marquee__lead {
  margin-bottom: 24px;
  font-size: 18px;
}

.current-proposal-v3 .student-marquee__lead span {
  font-size: 13px;
}

.current-proposal-v3 .student-window--reverse {
  margin-top: 18px;
}

.current-proposal-v3 .student-window--reverse .student-track {
  animation-name: student-scroll-reverse;
}

.current-proposal-v3 .student-card {
  width: clamp(270px, 25vw, 390px);
}

.current-proposal-v3 .student-card span {
  padding: 7px 13px;
  font-size: 14px;
}

@keyframes student-scroll-reverse {
  from { transform: translateX(calc(-50% - 8px)); }
  to { transform: translateX(0); }
}

/* Curriculum visual and larger learning cards */
.current-proposal-v3 .curriculum-spotlight {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(16, 70, 112, .09);
}

.current-proposal-v3 .curriculum-spotlight figure {
  min-height: 520px;
  margin: 0;
}

.current-proposal-v3 .curriculum-spotlight figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.current-proposal-v3 .curriculum-spotlight__copy {
  padding: clamp(38px, 4.4vw, 64px);
  align-self: center;
}

.current-proposal-v3 .curriculum-spotlight__copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.1vw, 47px);
  line-height: 1.5;
}

.current-proposal-v3 .curriculum-spotlight__copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.current-proposal-v3 .curriculum-keywords {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.current-proposal-v3 .curriculum-keywords span {
  min-height: 46px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-deep);
  background: #eef8ff;
  border: 1px solid #cce4f5;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.current-proposal-v3 .curriculum-main {
  padding: 44px;
}

.current-proposal-v3 .curriculum-main > h3 {
  font-size: 29px;
}

.current-proposal-v3 .curriculum-grid article {
  min-height: 205px;
  padding: 29px;
}

.current-proposal-v3 .curriculum-grid span {
  font-size: 12px;
}

.current-proposal-v3 .curriculum-grid h4 {
  font-size: 21px;
}

.current-proposal-v3 .curriculum-grid p,
.current-proposal-v3 .curriculum-side p {
  font-size: 16px;
}

.current-proposal-v3 .curriculum-side h3 {
  font-size: 25px;
}

.current-proposal-v3 .support-grid article {
  min-height: 440px;
  padding: 34px;
}

.current-proposal-v3 .support-grid article > img {
  width: 120px;
  height: 125px;
  margin: 16px 0 2px auto;
  object-fit: contain;
}

.current-proposal-v3 .support-grid span {
  font-size: 12px;
}

.current-proposal-v3 .support-grid h3 {
  margin: 18px 0;
  font-size: 28px;
}

.current-proposal-v3 .support-grid p {
  font-size: 17px;
}

.current-proposal-v3 .support-grid small {
  font-size: 13px;
}

/* Corporate choices appear first. */
.current-proposal-v3 .tab-list button {
  min-height: 81px;
  padding-inline: 42px;
  font-size: 20px;
}

.current-proposal-v3 .plan-category {
  font-size: 31px;
}

.current-proposal-v3 #panel-corporate .plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.current-proposal-v3 .plan-grid article {
  min-height: 390px;
  padding: 34px;
}

.current-proposal-v3 .plan-grid span {
  font-size: 12px;
}

.current-proposal-v3 .plan-grid h4 {
  font-size: 29px;
}

.current-proposal-v3 #panel-corporate .plan-grid h4 {
  font-size: clamp(22px, 1.55vw, 24px);
  letter-spacing: -.07em;
  word-break: keep-all;
}

.current-proposal-v3 .plan-grid p {
  font-size: 17px;
}

.current-proposal-v3 .plan-grid li {
  font-size: 16px;
}

.current-proposal-v3 .voice-card .voice-card__title {
  font-size: clamp(22px, 2vw, 27px);
}

.current-proposal-v3 .voice-card p,
.current-proposal-v3 details p {
  font-size: 17px;
}

.current-proposal-v3 summary {
  font-size: 19px;
}

/* AIO learning ecosystem: each offer has a clear purpose and CTA. */
.current-proposal-v3 .aio-pathways {
  margin-top: 38px;
}

.current-proposal-v3 .articles > .shell > .section-heading > .button {
  width: min(420px, 100%);
}

.current-proposal-v3 .aio-pathways__heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.current-proposal-v3 .aio-pathways__heading h3,
.current-proposal-v3 .journal-latest-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.45;
}

.current-proposal-v3 .aio-pathways__heading > p:last-child {
  max-width: 44em;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 18px;
}

.current-proposal-v3 .aio-pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.current-proposal-v3 .aio-pathway-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(16, 70, 112, .09);
}

.current-proposal-v3 .aio-pathway-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.current-proposal-v3 .aio-pathway-card__body {
  padding: 30px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.current-proposal-v3 .aio-wordmark {
  margin: 0;
  color: var(--blue-deep);
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.current-proposal-v3 .aio-wordmark span {
  font-family: var(--serif);
  font-weight: 600;
}

.current-proposal-v3 .aio-camp-wordmark {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.current-proposal-v3 .aio-camp-wordmark img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
}

.current-proposal-v3 .aio-camp-wordmark b {
  font-size: 23px;
}

.current-proposal-v3 .aio-pathway-card h4 {
  margin: 28px 0 14px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.5;
}

.current-proposal-v3 .aio-pathway-card__body > p:not(.aio-wordmark):not(.aio-camp-wordmark):not(.coming-soon) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.current-proposal-v3 .aio-pathway-card__actions {
  margin-top: auto;
  padding-top: 26px;
  display: grid;
  gap: 13px;
}

.current-proposal-v3 .aio-pathway-card .button {
  width: 100%;
  min-height: 90px;
  padding-inline: 32px;
  font-size: 22px;
}

.current-proposal-v3 .aio-pathway-card .text-link {
  font-size: 15px;
  text-align: center;
}

.current-proposal-v3 .coming-soon {
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
}

.current-proposal-v3 .aio-pathway-card--agi {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
}

.current-proposal-v3 .aio-pathway-card--agi > img {
  height: 100%;
  aspect-ratio: auto;
}

.current-proposal-v3 .journal-latest-heading {
  margin: 80px 0 30px;
}

.current-proposal-v3 .journal-article b {
  font-size: 20px;
}

.current-proposal-v3 .footer-top p {
  max-width: 560px;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.5;
}

.current-proposal-v3 .faq-layout {
  grid-template-columns: minmax(0, 530px) minmax(0, 1fr);
  gap: 56px;
}

.current-proposal-v3 .faq-intro h2 {
  font-size: clamp(36px, 3vw, 44px);
  line-height: 1.48;
}

.current-proposal-v3 .faq-title-unit {
  display: block;
}

/* Last view: direct type on the photograph, with no opaque panel. */
.current-proposal-v3 .final-cta__panel {
  min-height: 780px;
}

.current-proposal-v3 .final-cta__panel img {
  object-position: center center;
}

.current-proposal-v3 .final-cta__content {
  left: clamp(34px, 5vw, 76px);
  bottom: clamp(36px, 5vw, 76px);
  max-width: 940px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  text-shadow: 0 3px 22px rgba(0, 22, 51, .55);
}

.current-proposal-v3 .final-cta__content .eyebrow {
  color: #bdfbf2;
}

.current-proposal-v3 .final-cta__content h2 {
  color: rgba(255, 255, 255, .9);
  font-size: 21px;
}

.current-proposal-v3 .final-cta__catch {
  margin: 18px 0 30px;
  font-size: clamp(48px, 4.25vw, 60px);
  line-height: 1.17;
}

.current-proposal-v3 .final-cta__catch .heading-line {
  display: block;
}

.current-proposal-v3 .final-copy-unit {
  display: inline;
}

.current-proposal-v3 .final-copy-unit + .final-copy-unit {
  margin-left: .12em;
}

.current-proposal-v3 .final-cta__routes p {
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
}

.current-proposal-v3 .final-cta__routes p::before {
  color: #bdfbf2;
}

@media (max-width: 1180px) {
  .current-proposal-v3 .section-heading--split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  }

  .current-proposal-v3 .hero-rail {
    width: calc(100% - 48px);
  }

  .current-proposal-v3 .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .current-proposal-v3 .faq-intro {
    position: static;
  }

  .current-proposal-v3 #panel-corporate .plan-grid,
  .current-proposal-v3 .aio-pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .current-proposal-v3 .aio-pathway-card--agi {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  }

  .current-proposal-v3 .aio-pathway-card--agi > img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 820px) {
  .current-proposal-v3 {
    font-size: 17px;
  }

  .current-proposal-v3 .section {
    padding-block: 98px;
  }

  .current-proposal-v3 .section-heading h2,
  .current-proposal-v3 .faq-intro h2,
  .current-proposal-v3 .service-detail h2 {
    font-size: clamp(34px, 8vw, 50px);
  }

  .current-proposal-v3 #agent-title {
    font-size: clamp(34px, 7.8vw, 43px);
    letter-spacing: -.06em;
  }

  .current-proposal-v3 .section-heading > p:last-child,
  .current-proposal-v3 .section-heading--split > p,
  .current-proposal-v3 .lead {
    font-size: 18px;
  }

  .current-proposal-v3 .button {
    min-height: 81px;
    padding: 14px 36px;
    font-size: 21px;
    white-space: normal;
  }

  .current-proposal-v3 .hero-copy {
    padding-bottom: 142px;
  }

  .current-proposal-v3 .hero-copy > .hero-copy-card {
    width: min(680px, calc(100vw - 36px));
    padding: 24px 26px;
    background: rgba(255, 255, 255, .66);
  }

  .current-proposal-v3 .hero-copy-card .hero-catch,
  .current-proposal-v3 .hero-copy-card .hero-headline {
    font-size: clamp(33px, 7.4vw, 46px);
  }

  .current-proposal-v3 .hero-scene:first-child .hero-copy-card .hero-catch {
    font-size: clamp(31px, 7vw, 43px);
  }

  .current-proposal-v3 .hero-copy-card .hero-lead {
    font-size: 17px;
  }

  .current-proposal-v3 .hero-copy-card .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .current-proposal-v3 .hero-rail {
    bottom: 40px;
    width: calc(100% - 28px);
  }

  .current-proposal-v3 .hero-rail button {
    min-height: 54px;
    padding: 6px 3px;
  }

  .current-proposal-v3 .hero-rail button span {
    font-size: 15px;
  }

  .current-proposal-v3 .hero-rail button b {
    display: none;
  }

  .current-proposal-v3 .editorial-visual {
    min-height: 560px;
  }

  .current-proposal-v3 .editorial-caption {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: none;
  }

  .current-proposal-v3 .service-detail__grid,
  .current-proposal-v3 .service-detail__grid--reverse {
    display: flex;
  }

  .current-proposal-v3 .service-detail__grid--reverse .service-detail__visual {
    order: 0;
  }

  .current-proposal-v3 .process-list b {
    font-size: 20px;
  }

  .current-proposal-v3 .process-list small {
    margin: 3px 0 0;
    font-size: 16px;
  }

  .current-proposal-v3 .agent-stage {
    padding: 28px;
    display: block;
  }

  .current-proposal-v3 .agent-orchestrator {
    max-width: 300px;
  }

  .current-proposal-v3 .agent-flow div {
    min-height: 132px;
  }

  .current-proposal-v3 .serif-quote {
    white-space: normal;
  }

  .current-proposal-v3 .team-grid > * {
    width: 100%;
    min-width: 0;
  }

  .current-proposal-v3 .school-hero__overlay {
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 28px;
    background: rgba(255, 255, 255, .68);
  }

.current-proposal-v3 .school-hero__overlay h2 {
  font-size: clamp(35px, 7.8vw, 50px);
}

.current-proposal-v3 .school-title-unit {
  display: inline-block;
  white-space: nowrap;
}

  .current-proposal-v3 .curriculum-spotlight {
    grid-template-columns: 1fr;
  }

  .current-proposal-v3 .curriculum-spotlight figure {
    min-height: 420px;
  }

  .current-proposal-v3 .support-grid {
    grid-template-columns: 1fr;
  }

  .current-proposal-v3 .support-grid article {
    min-height: 360px;
  }

  .current-proposal-v3 .support-grid article > img {
    width: 100px;
    height: 105px;
  }

  .current-proposal-v3 #panel-corporate .plan-grid,
  .current-proposal-v3 .aio-pathway-grid {
    grid-template-columns: 1fr;
  }

  .current-proposal-v3 .aio-pathway-card--agi {
    grid-column: auto;
    display: flex;
  }

  .current-proposal-v3 .aio-pathway-card--agi > img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .current-proposal-v3 .final-cta__panel {
    min-height: 820px;
  }

  .current-proposal-v3 .final-cta__panel img {
    object-position: 34% center;
  }

  .current-proposal-v3 .final-cta__content {
    left: 28px;
    right: 28px;
    bottom: 34px;
  }

  .current-proposal-v3 .final-cta__catch {
    font-size: clamp(40px, 8.5vw, 54px);
  }

  .current-proposal-v3 .final-cta__actions {
    display: grid;
  }
}

@media (max-width: 520px) {
  .current-proposal-v3 .section {
    padding-block: 84px;
  }

  .current-proposal-v3 .section-heading h2,
  .current-proposal-v3 .faq-intro h2,
  .current-proposal-v3 .service-detail h2 {
    font-size: clamp(31px, 8.7vw, 41px);
    line-height: 1.48;
  }

  .current-proposal-v3 main .button {
    width: 100%;
  }

  .current-proposal-v3 .hero-media {
    bottom: 40%;
  }

  .current-proposal-v3 .hero-media img {
    object-position: 67% center;
  }

  .current-proposal-v3 .hero-copy {
    padding-bottom: 132px;
  }

  .current-proposal-v3 .hero-copy > .hero-copy-card {
    width: calc(100vw - 28px);
    padding: 18px 19px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
  }

  .current-proposal-v3 .hero-copy-card .hero-index,
  .current-proposal-v3 .hero-copy-card .hero-service {
    margin-bottom: 7px;
    font-size: 14px;
  }

  .current-proposal-v3 .hero-copy-card .hero-semantic-title {
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.45;
  }

  .current-proposal-v3 .hero-copy-card .hero-brand {
    margin-bottom: 7px;
    font-size: 33px;
  }

  .current-proposal-v3 .hero-copy-card .hero-catch,
  .current-proposal-v3 .hero-copy-card .hero-headline,
  .current-proposal-v3 .hero-scene:first-child .hero-copy-card .hero-catch {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.34;
  }

  .current-proposal-v3 .hero-copy-card .hero-lead {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
  }

  .current-proposal-v3 .hero-copy-card .hero-actions,
  .current-proposal-v3 .hero-copy-card > .button {
    width: 100%;
    margin-top: 12px;
  }

  .current-proposal-v3 .hero-copy-card .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .current-proposal-v3 .hero-copy-card .button {
    width: 100%;
    min-height: 81px;
    padding: 12px 18px;
    font-size: 20px;
  }

  .current-proposal-v3 .hero-rail {
    bottom: 38px;
  }

  .current-proposal-v3 .hero-rail button {
    min-height: 54px;
  }

  .current-proposal-v3 .hero-rail button span {
    font-size: 16px;
  }

  .current-proposal-v3 .editorial-visual {
    min-height: 520px;
  }

  .current-proposal-v3 .editorial-caption {
    padding: 20px;
    background: rgba(255, 255, 255, .66);
  }

  .current-proposal-v3 .editorial-caption b {
    font-size: 29px;
  }

  .current-proposal-v3 .service-detail__visual {
    aspect-ratio: 16 / 11;
  }

  .current-proposal-v3 .service-detail__visual figcaption {
    inset: auto 12px 12px;
    max-width: calc(100% - 24px);
    padding: 17px 18px;
    background: rgba(255, 255, 255, .69);
  }

  .current-proposal-v3 .service-detail__visual figcaption b {
    font-size: 18px;
  }

  .current-proposal-v3 .process-list li {
    grid-template-columns: 42px 1fr;
  }

  .current-proposal-v3 .process-list b {
    font-size: 19px;
  }

  .current-proposal-v3 .agent-orchestrator {
    max-width: 250px;
  }

  .current-proposal-v3 .team-copy h2 {
    font-size: 34px;
  }

  .current-proposal-v3 .serif-quote {
    font-size: 28px;
  }

  .current-proposal-v3 .youtube-card {
    width: min(82vw, 340px);
  }

  .current-proposal-v3 .school-hero {
    min-height: 680px;
  }

  .current-proposal-v3 .school-hero__overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 22px;
  }

  .current-proposal-v3 .school-hero__overlay h2 {
    font-size: 34px;
  }

  .current-proposal-v3 .school-hero__overlay p:last-child {
    font-size: 16px;
  }

  .current-proposal-v3 .school-title-unit {
    display: block;
  }

  .current-proposal-v3 .student-card {
    width: min(76vw, 315px);
  }

  .current-proposal-v3 .curriculum-spotlight figure {
    min-height: 280px;
  }

  .current-proposal-v3 .curriculum-spotlight__copy {
    padding: 28px 24px;
  }

  .current-proposal-v3 .curriculum-spotlight__copy h3 {
    font-size: 31px;
  }

  .current-proposal-v3 .curriculum-main {
    padding: 25px;
  }

  .current-proposal-v3 .curriculum-grid article {
    min-height: 190px;
  }

  .current-proposal-v3 .tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 22px;
  }

  .current-proposal-v3 .tab-list button {
    min-height: 81px;
    padding-inline: 14px;
    border-radius: 17px;
    font-size: 19px;
  }

  .current-proposal-v3 .plan-grid article {
    min-height: 330px;
  }

  .current-proposal-v3 .aio-pathway-card__body {
    padding: 25px;
  }

  .current-proposal-v3 .aio-pathway-card h4 {
    font-size: 23px;
  }

  .current-proposal-v3 .aio-pathway-card .button {
    min-height: 81px;
    padding-inline: 24px;
    font-size: 21px;
  }

  .current-proposal-v3 .journal-article b {
    font-size: 18px;
  }

  .current-proposal-v3 .final-cta__panel {
    min-height: 840px;
  }

  .current-proposal-v3 .final-cta__panel img {
    object-position: 30% center;
  }

  .current-proposal-v3 .final-cta__content {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .current-proposal-v3 .final-cta__content h2 {
    font-size: 17px;
  }

  .current-proposal-v3 .final-cta__catch {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.2;
  }

  .current-proposal-v3 .final-copy-unit {
    display: block;
    white-space: nowrap;
  }

  .current-proposal-v3 .final-copy-unit + .final-copy-unit {
    margin-left: 0;
  }

  .current-proposal-v3 .final-cta__routes p {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .current-proposal-v3 .hero-copy > .hero-copy-card {
    padding: 15px;
  }

  .current-proposal-v3 .hero-copy-card .hero-catch,
  .current-proposal-v3 .hero-copy-card .hero-headline,
  .current-proposal-v3 .hero-scene:first-child .hero-copy-card .hero-catch {
    font-size: 30px;
  }

  .current-proposal-v3 .hero-first-line {
    white-space: normal;
  }

  .current-proposal-v3 .faq-intro h2 {
    font-size: 26px;
  }

  .current-proposal-v3 .hero-copy-card .hero-lead {
    font-size: 16px;
  }

  .current-proposal-v3 .service-index__item {
    grid-template-columns: 32px minmax(0, 1fr) 24px;
    gap: 8px;
    padding-inline: 0;
  }

  .current-proposal-v3 .service-index h3 {
    font-size: 24px;
  }

  .current-proposal-v3 #school-title {
    font-size: 25px;
  }

  .current-proposal-v3 .final-cta__catch {
    font-size: 27px;
  }

  .current-proposal-v3 .footer-top p {
    font-size: 27px;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .current-proposal-v3 .hero-copy {
    padding-top: 78px;
    padding-bottom: 124px;
  }

  .current-proposal-v3 .hero-copy > .hero-copy-card {
    padding: 17px 24px;
  }

  .current-proposal-v3 .hero-copy-card .hero-catch,
  .current-proposal-v3 .hero-copy-card .hero-headline {
    font-size: 52px;
    line-height: 1.16;
  }

  .current-proposal-v3 .hero-copy-card .hero-lead {
    margin-top: 10px;
    font-size: 18px;
  }

  .current-proposal-v3 .hero-copy-card .hero-actions,
  .current-proposal-v3 .hero-copy-card > .button {
    margin-top: 12px;
  }

  .current-proposal-v3 .hero-copy-card .button {
    min-height: 90px;
    padding-inline: 38px;
    font-size: 24px;
  }

  .current-proposal-v3 .hero-rail {
    bottom: 32px;
  }

  .current-proposal-v3 .hero-rail button {
    min-height: 58px;
  }
}
