:root {
  --fz-ink: #101722;
  --fz-deep: #07111f;
  --fz-navy: #0c1828;
  --fz-blue: #2f62ff;
  --fz-blue-dark: #1e49d8;
  --fz-green: #20bd7a;
  --fz-lime: #b7ff2f;
  --fz-paper: #ffffff;
  --fz-soft: #f3f6f8;
  --fz-muted: #637080;
  --fz-line: #dce3e9;
  --fz-header: 76px;
  --fz-shell: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--fz-ink);
  background: var(--fz-paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 12px 16px;
  color: #fff;
  background: var(--fz-blue);
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }
.shell { width: min(calc(100% - 48px), var(--fz-shell)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-soft { background: var(--fz-soft); }
.section-dark { color: #fff; background: var(--fz-deep); }
.section-blue { color: #fff; background: var(--fz-blue-dark); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fz-green);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.section-heading {
  max-width: 860px;
  margin-top: 14px;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  word-break: keep-all;
  text-wrap: balance;
}
.section-lead {
  max-width: 700px;
  margin-top: 22px;
  color: var(--fz-muted);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 620;
  word-break: keep-all;
}
.section-dark .section-lead,
.section-blue .section-lead { color: rgba(255,255,255,.72); }
.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}
.section-head-split .section-lead { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--fz-header);
  color: #fff;
  background: rgba(9, 16, 27, .97);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 250px;
  gap: 24px;
  align-items: center;
}
.brand-logo { display: inline-flex; width: 214px; align-items: center; }
.brand-logo img { width: 180px; height: auto; max-height: none; object-fit: contain; object-position: left center; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 2px; }
.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255,255,255,.7);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.09); }
.beta-badge {
  display: inline-grid;
  place-items: center;
  min-height: 18px;
  margin-left: 6px;
  padding: 0 6px;
  color: #07111f;
  border-radius: 4px;
  background: var(--fz-lime);
  font-size: 9px;
  font-weight: 950;
}
.nav-actions { width: 100%; display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.header-socials { display: flex; align-items: center; gap: 6px; }
.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
}
.icon-link:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.08); }
.icon-link img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.nav-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}
.nav-cta { min-height: 42px; color: #fff; background: var(--fz-blue); }
.nav-cta:hover,
.btn-primary:hover { background: var(--fz-blue-dark); }
.btn-primary { color: #fff; background: var(--fz-blue); }
.btn-secondary { color: var(--fz-ink); border-color: var(--fz-line); background: #fff; }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.04); }
.btn-dark { color: #fff; background: var(--fz-deep); }
.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  background: transparent;
}
.menu-toggle span { width: 18px; height: 2px; display: block; margin: 2px 0; background: #fff; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid var(--fz-lime); outline-offset: 3px; }

.hero {
  position: relative;
  height: min(760px, calc(100svh - var(--fz-header)));
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--fz-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,12,22,.98) 0%, rgba(5,12,22,.84) 43%, rgba(5,12,22,.18) 78%),
    linear-gradient(0deg, rgba(5,12,22,.78), transparent 60%);
}
.home-hero { --hero-image: url("assets/hero-device-v1.webp"); }
.academy-hero { --hero-image: url("assets/real/anyang-elite-touch-wide.jpg"); }
.partner-hero { --hero-image: url("assets/v79/v79-partner-operations.jpg"); }
.analysis-hero { --hero-image: url("assets/hero-parent-report-review-20260705.webp"); }
.hero-inner { width: min(calc(100% - 48px), var(--fz-shell)); padding: 70px 0 42px; }
.hero-copy { max-width: 830px; }
.hero h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.01;
  font-weight: 950;
  word-break: keep-all;
  text-wrap: balance;
}
.hero-lead {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 650;
  word-break: keep-all;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.proof-strip {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,.24);
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.proof-strip > div { min-height: 76px; display: grid; align-content: center; gap: 6px; padding: 14px 22px; border-right: 1px solid rgba(255,255,255,.17); }
.proof-strip > div:first-child { padding-left: 0; }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong { font-size: 15px; font-weight: 900; }
.proof-strip span { color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.45; font-weight: 700; }
.academy-page .hero-copy { max-width: 1120px; }
.proof-strip-five { max-width: 1120px; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.proof-strip-five > div { padding-inline: 16px; }
.proof-strip-five strong { font-size: 14px; }
.proof-strip-five span { font-size: 11px; }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--fz-line);
  border-bottom: 1px solid var(--fz-line);
}
.principle-item { min-height: 260px; padding: 30px 28px; border-right: 1px solid var(--fz-line); }
.principle-item:last-child { border-right: 0; }
.principle-item small { color: var(--fz-blue); font-size: 11px; font-weight: 900; }
.principle-item h3 { margin-top: 48px; font-size: 28px; line-height: 1.2; font-weight: 900; word-break: keep-all; }
.principle-item p { margin-top: 14px; color: var(--fz-muted); font-size: 15px; line-height: 1.68; font-weight: 620; word-break: keep-all; }
.touch-proof-band {
  display: grid;
  grid-template-columns: minmax(240px,.8fr) minmax(190px,.45fr) minmax(300px,1fr);
  gap: 38px;
  align-items: center;
  margin-top: 34px;
  padding: 34px 0;
  border-top: 1px solid var(--fz-ink);
  border-bottom: 1px solid var(--fz-ink);
}
.touch-proof-band > div small { color: var(--fz-blue); font-size: 10px; font-weight: 950; }
.touch-proof-band h3 { margin-top: 12px; font-size: 30px; line-height: 1.17; font-weight: 900; word-break: keep-all; }
.touch-proof-band > strong { display: flex; align-items: baseline; gap: 7px; color: var(--fz-blue); font-size: 74px; line-height: 1; font-weight: 950; }
.touch-proof-band > strong span { align-self: flex-start; margin-top: 10px; font-size: 11px; }
.touch-proof-band > strong em { font-size: 20px; font-style: normal; }
.touch-proof-band > p { color: var(--fz-muted); font-size: 15px; line-height: 1.68; font-weight: 650; word-break: keep-all; }
.touch-proof-band > p small { display: block; margin-top: 10px; color: #7e8997; font-size: 11px; font-weight: 700; }
.philosophy-note {
  max-width: 920px;
  margin-top: 32px;
  padding-left: 24px;
  color: var(--fz-muted);
  border-left: 3px solid var(--fz-blue);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 620;
  word-break: keep-all;
}
.philosophy-note strong { color: var(--fz-ink); font-weight: 900; }

.journey-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--fz-line); border-bottom: 1px solid var(--fz-line); }
.journey-step { min-height: 210px; padding: 28px 24px; border-right: 1px solid var(--fz-line); }
.journey-step:last-child { border-right: 0; }
.journey-step small { color: var(--fz-blue); font-size: 11px; font-weight: 900; }
.journey-step h3 { margin-top: 38px; font-size: 23px; line-height: 1.25; font-weight: 900; word-break: keep-all; }
.journey-step p { margin-top: 12px; color: var(--fz-muted); font-size: 14px; line-height: 1.65; font-weight: 650; word-break: keep-all; }
.academy-density-line { display: grid; grid-template-columns: minmax(220px,.7fr) 1fr auto; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--fz-line); }
.academy-density-line strong { color: var(--fz-blue); font-size: 22px; line-height: 1.25; font-weight: 950; }
.academy-density-line span { font-size: 14px; line-height: 1.55; font-weight: 750; word-break: keep-all; }
.academy-density-line small { color: var(--fz-muted); font-size: 10px; line-height: 1.45; font-weight: 700; text-align: right; }

.experience-stack { display: grid; gap: 28px; }
.home-experience-stack { margin-top: 52px; }
.experience-row { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 470px; background: #fff; border: 1px solid var(--fz-line); }
.experience-row:nth-child(even) { grid-template-columns: .92fr 1.08fr; }
.experience-row:nth-child(even) .experience-media { order: 2; }
.experience-media { min-height: 100%; overflow: hidden; }
.experience-media img { width: 100%; height: 100%; object-fit: cover; }
.experience-copy { display: grid; align-content: center; gap: 18px; padding: 58px; }
.experience-copy h3 { font-size: clamp(32px, 3.5vw, 50px); line-height: 1.1; font-weight: 900; word-break: keep-all; }
.experience-copy p { color: var(--fz-muted); font-size: 16px; line-height: 1.72; font-weight: 620; word-break: keep-all; }
.plain-points { display: grid; border-top: 1px solid var(--fz-line); }
.plain-points li { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--fz-line); font-size: 14px; line-height: 1.55; font-weight: 750; }
.plain-points span { color: var(--fz-blue); font-weight: 900; }

.system-loop {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--fz-line);
  border-bottom: 1px solid var(--fz-line);
}
.system-loop li { min-height: 230px; padding: 28px 22px; border-right: 1px solid var(--fz-line); }
.system-loop li:last-child { border-right: 0; }
.system-loop small { color: var(--fz-blue); font-size: 11px; font-weight: 900; }
.system-loop h3 { margin-top: 42px; font-size: 25px; line-height: 1.2; font-weight: 900; }
.system-loop p { margin-top: 12px; color: var(--fz-muted); font-size: 14px; line-height: 1.62; font-weight: 620; word-break: keep-all; }

.route-list { border-top: 1px solid var(--fz-line); }
.route-item { display: grid; grid-template-columns: 170px minmax(0,1fr); gap: 34px; align-items: center; min-height: 124px; padding: 24px 0; border-bottom: 1px solid var(--fz-line); }
.route-item small { color: var(--fz-blue); font-size: 12px; font-weight: 900; }
.route-item h3 { font-size: 25px; line-height: 1.25; font-weight: 900; }
.route-item p { margin-top: 8px; color: var(--fz-muted); font-size: 14px; line-height: 1.55; font-weight: 650; word-break: keep-all; }

.media-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.9fr); gap: 72px; align-items: center; }
.media-frame { min-height: 540px; overflow: hidden; background: var(--fz-navy); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-copy { display: grid; gap: 20px; }
.media-copy h2 { font-size: clamp(38px, 4.4vw, 62px); line-height: 1.08; font-weight: 900; word-break: keep-all; text-wrap: balance; }
.media-copy > p { color: inherit; opacity: .72; font-size: 17px; line-height: 1.75; font-weight: 620; word-break: keep-all; }
.media-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

.program-carousel-status { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 12px; }
.program-carousel-status p { display: flex; gap: 8px; align-items: baseline; color: var(--fz-muted); }
.program-carousel-status strong { color: var(--fz-blue); font-size: 24px; font-weight: 950; }
.program-carousel-status span { font-size: 12px; font-weight: 850; }
.program-carousel-status b { margin-left: 8px; color: var(--fz-ink); font-size: 16px; font-weight: 900; }
.program-rotation-toggle { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; border: 0; border-radius: 50%; background: var(--fz-blue); cursor: pointer; }
.program-rotation-toggle > span { position: relative; width: 14px; height: 15px; }
.program-rotation-toggle > span::before, .program-rotation-toggle > span::after { content:""; position: absolute; top: 1px; width: 4px; height: 13px; border-radius: 1px; background: currentColor; }
.program-rotation-toggle > span::before { left: 2px; }
.program-rotation-toggle > span::after { right: 2px; }
.program-rotation-toggle.is-paused > span::before { top: 1px; left: 3px; width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; border-radius: 0; background: transparent; }
.program-rotation-toggle.is-paused > span::after { display: none; }
.program-rotation-toggle:focus-visible { outline: 3px solid rgba(35,95,232,.28); outline-offset: 3px; }
.program-progress { height: 3px; margin-bottom: 14px; overflow: hidden; background: #dfe5ec; }
.program-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: var(--fz-blue); }
[data-program-scope].is-rotating .program-progress span { animation: program-auto-progress 7s linear forwards; }
.program-tabs { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 6px; margin-bottom: 24px; overflow-x: auto; scrollbar-width: none; }
.program-tabs::-webkit-scrollbar { display: none; }
.program-tab { min-width: 0; min-height: 94px; display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 10px; align-items: center; padding: 14px 13px; color: var(--fz-ink); text-align: left; border: 1px solid var(--fz-line); border-radius: 6px; background: #fff; cursor: pointer; transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease; }
.program-tab:hover { border-color: rgba(35,95,232,.5); transform: translateY(-2px); }
.program-tab:focus-visible { outline: 3px solid rgba(35,95,232,.24); outline-offset: 2px; }
.program-tab-index { color: var(--fz-blue); font-size: 12px; font-weight: 950; }
.program-tab-copy { min-width: 0; display: grid; gap: 5px; }
.program-tab-copy strong { font-size: 17px; line-height: 1.15; font-weight: 950; }
.program-tab-copy small { overflow: visible; color: var(--fz-muted); font-size: 11px; line-height: 1.35; font-weight: 720; text-overflow: clip; white-space: normal; word-break: keep-all; }
.program-tab[aria-selected="true"] { color: #fff; border-color: var(--fz-blue); background: var(--fz-blue); box-shadow: 0 12px 26px rgba(35,95,232,.18); }
.program-tab[aria-selected="true"] .program-tab-index { color: var(--fz-lime); }
.program-tab[aria-selected="true"] .program-tab-copy small { color: rgba(255,255,255,.78); }
.program-panel { display: none; }
.program-panel.is-active { display: grid; animation: program-panel-enter .34s ease both; }
.program-layout { grid-template-columns: 1fr 1fr; min-height: 520px; border: 1px solid var(--fz-line); background: #fff; }
.program-visual img { width: 100%; height: 100%; object-fit: cover; }
.program-copy { display: grid; align-content: center; gap: 18px; padding: 58px; }
.program-copy .program-meta { color: var(--fz-blue); font-size: 13px; font-weight: 900; }
.program-copy h3 { font-size: clamp(34px, 4vw, 54px); line-height: 1.08; font-weight: 900; word-break: keep-all; }
.program-copy > p { color: var(--fz-muted); font-size: 16px; line-height: 1.7; font-weight: 620; word-break: keep-all; }
@keyframes program-auto-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes program-panel-enter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.coach-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.coach-lead { display: grid; grid-template-columns: 230px 1fr; gap: 28px; align-items: end; }
.coach-lead figure { min-height: 330px; overflow: hidden; background: #e8edf1; }
.coach-lead img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.coach-lead h3 { font-size: 34px; line-height: 1.16; font-weight: 900; }
.coach-lead p { margin-top: 14px; color: var(--fz-muted); font-size: 15px; line-height: 1.68; font-weight: 620; word-break: keep-all; }
.coach-list { border-top: 1px solid var(--fz-line); }
.coach-list li { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--fz-line); }
.coach-list strong { font-size: 15px; font-weight: 900; }
.coach-list span { color: var(--fz-muted); font-size: 14px; line-height: 1.55; font-weight: 650; }

.model-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--fz-line); border-bottom: 1px solid var(--fz-line); }
.model-item { min-height: 280px; padding: 32px; border-right: 1px solid var(--fz-line); }
.model-item:last-child { border-right: 0; }
.model-item small { color: var(--fz-blue); font-size: 11px; font-weight: 900; }
.model-item h3 { margin-top: 54px; font-size: 27px; line-height: 1.2; font-weight: 900; }
.model-item p { margin-top: 14px; color: var(--fz-muted); font-size: 15px; line-height: 1.65; font-weight: 620; word-break: keep-all; }

.support-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.2); }
.support-item { min-height: 180px; display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-content: center; padding: 28px 34px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.support-item:nth-child(2n) { border-right: 0; }
.support-item b { color: var(--fz-lime); font-size: 13px; }
.support-item h3 { font-size: 21px; line-height: 1.25; font-weight: 900; }
.support-item p { margin-top: 8px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.55; font-weight: 620; }

.process-list { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--fz-line); }
.process-step { min-height: 210px; padding: 26px 22px; border-right: 1px solid var(--fz-line); border-bottom: 1px solid var(--fz-line); }
.process-step:last-child { border-right: 0; }
.process-step small { color: var(--fz-blue); font-size: 12px; font-weight: 900; }
.process-step h3 { margin-top: 34px; font-size: 23px; font-weight: 900; }
.process-step p { margin-top: 12px; color: var(--fz-muted); font-size: 14px; line-height: 1.6; font-weight: 620; }

.analysis-result { display: grid; grid-template-columns: .86fr 1.14fr; border: 1px solid var(--fz-line); background: #fff; }
.analysis-result-copy { display: grid; align-content: center; gap: 18px; padding: 58px; background: var(--fz-deep); color: #fff; }
.analysis-result-copy h3 { font-size: clamp(34px,4vw,54px); line-height: 1.1; font-weight: 900; word-break: keep-all; }
.analysis-result-copy p { color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.7; font-weight: 620; }
.analysis-result-visual { min-height: 520px; }
.analysis-result-visual img { width: 100%; height: 100%; object-fit: cover; }
.analysis-points { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 28px; border-top: 1px solid var(--fz-line); border-bottom: 1px solid var(--fz-line); }
.analysis-point { min-height: 170px; padding: 28px 24px; border-right: 1px solid var(--fz-line); }
.analysis-point:last-child { border-right: 0; }
.analysis-point small { color: var(--fz-blue); font-size: 12px; font-weight: 900; }
.analysis-point h3 { margin-top: 28px; font-size: 22px; font-weight: 900; }
.analysis-point p { margin-top: 10px; color: var(--fz-muted); font-size: 14px; line-height: 1.58; font-weight: 620; }
.home-data-story .analysis-result-copy h2 { font-size: clamp(36px, 4.2vw, 56px); line-height: 1.08; font-weight: 900; word-break: keep-all; }
.data-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.data-tags span { padding: 8px 11px; color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; font-size: 12px; font-weight: 850; }
.report-bridge {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid var(--fz-line);
  background: #fff;
}
.report-bridge figure { min-height: 430px; background: var(--fz-navy); }
.report-bridge figure img { width: 100%; height: 100%; object-fit: cover; }
.report-bridge > div { display: grid; align-content: center; gap: 18px; padding: 52px; }
.report-bridge h3 { font-size: clamp(32px, 3.5vw, 48px); line-height: 1.12; font-weight: 900; word-break: keep-all; }
.report-bridge > div > p:not(.eyebrow) { color: var(--fz-muted); font-size: 16px; line-height: 1.72; font-weight: 620; word-break: keep-all; }

.pilot-box { display: grid; grid-template-columns: 1fr .9fr; gap: 72px; align-items: start; }
.pilot-facts { border-top: 1px solid rgba(255,255,255,.22); }
.pilot-facts li { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.pilot-facts strong { color: var(--fz-lime); font-size: 13px; font-weight: 900; }
.pilot-facts span { color: rgba(255,255,255,.74); font-size: 14px; line-height: 1.6; font-weight: 650; }

.location-band { position: relative; overflow: hidden; color: #fff; background: var(--fz-deep); isolation: isolate; }
.location-band::before { content:""; position:absolute; inset:0; z-index:-2; background:url("assets/real/anyang-equipment-line-wide.jpg") center/cover no-repeat; }
.location-band::after { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(90deg,rgba(6,15,27,.98),rgba(6,15,27,.78) 55%,rgba(6,15,27,.28)); }
.location-layout { min-height: 520px; display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.location-copy h2 { margin-top: 14px; font-size: clamp(40px,5vw,66px); line-height: 1.07; font-weight: 900; word-break: keep-all; }
.location-copy p { max-width: 640px; margin-top: 20px; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.7; font-weight: 620; }
.location-facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.22); border-left: 1px solid rgba(255,255,255,.22); }
.location-facts div { min-height: 112px; display: grid; align-content: center; gap: 6px; padding: 18px; border-right: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.location-facts strong { font-size: 19px; font-weight: 900; }
.location-facts span { color: rgba(255,255,255,.56); font-size: 12px; font-weight: 700; }
.partner-location-proof::before { opacity: .42; filter: saturate(.72) contrast(1.08); background-position: center 44%; }
.partner-location-proof::after { background: linear-gradient(90deg,rgba(5,13,24,.98) 0%,rgba(5,13,24,.94) 52%,rgba(5,13,24,.88) 100%); }
.partner-location-proof .location-copy .eyebrow { margin-top: 0; color: var(--fz-lime); font-size: 12px; line-height: 1.3; font-weight: 950; }
.partner-location-proof .location-copy > p:not(.eyebrow) { color: rgba(255,255,255,.86); }
.partner-location-proof .location-facts { border-color: rgba(255,255,255,.32); background: rgba(3,10,20,.38); backdrop-filter: blur(5px); }
.partner-location-proof .location-facts div { border-color: rgba(255,255,255,.25); background: rgba(3,10,20,.34); }
.partner-location-proof .location-facts strong { color: #fff; }
.partner-location-proof .location-facts span { color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.45; }
.home-vision-band::before { background-image: url("assets/v79/v79-home-field-real.jpg"); background-position: center; }
.vision-facts { border-top: 1px solid rgba(255,255,255,.22); }
.vision-facts > div { display: grid; grid-template-columns: 74px minmax(150px,.7fr) 1fr; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.vision-facts small { color: var(--fz-lime); font-size: 11px; font-weight: 900; }
.vision-facts strong { color: #fff; font-size: 16px; font-weight: 900; }
.vision-facts span { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.55; font-weight: 620; }

.cta-band { padding: 82px 0; background: var(--fz-blue); color: #fff; }
.cta-layout { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.cta-layout h2 { max-width: 760px; font-size: clamp(34px,4vw,52px); line-height: 1.12; font-weight: 900; word-break: keep-all; }
.cta-layout p { max-width: 620px; margin-top: 14px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.65; font-weight: 650; }
.cta-layout .btn-secondary { flex: 0 0 auto; }

.equipment-intro { max-width: 760px; }
.equipment-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }
.equipment-spec { min-height: 430px; display: grid; grid-template-rows: auto 1fr; gap: 28px; padding: 34px; border: 1px solid var(--fz-line); background: #fff; }
.spec-copy small { color: var(--fz-blue); font-size: 11px; font-weight: 950; }
.spec-copy h3 { margin-top: 18px; font-size: 27px; line-height: 1.18; font-weight: 900; word-break: keep-all; }
.spec-copy p { margin-top: 12px; color: var(--fz-muted); font-size: 14px; line-height: 1.66; font-weight: 620; word-break: keep-all; }
.led-board { min-height: 160px; display: grid; grid-template-columns: repeat(9, 1fr); gap: 4px; align-self: end; padding: 16px; background: #08111d; }
.led-board span { min-width: 0; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); background: #121c29; color: rgba(255,255,255,.72); font-size: 9px; font-weight: 900; }
.led-board span:nth-child(3n+1) { box-shadow: inset 0 0 0 1px rgba(32,189,122,.35); }
.led-board .launcher { color: #fff; border-color: #2f62ff; background: #1e49d8; text-align: center; }
.led-board .blocked { color: rgba(255,255,255,.48); border-color: #384351; background: #050b14; }
.led-board span:nth-child(1),
.led-board span:nth-child(9),
.led-board span:nth-child(21) { animation: fz-led-target 4.8s ease-in-out infinite; }
.led-board span:nth-child(9) { animation-delay: 1.6s; }
.led-board span:nth-child(21) { animation-delay: 3.2s; }
.motiontap-map { min-height: 170px; display: grid; grid-template-rows: auto 1fr auto; gap: 10px; align-self: end; padding: 16px; background: #08111d; }
.tap-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 0 12%; }
.tap-line i { height: 15px; border: 1px solid rgba(84,240,176,.3); background: #183b30; box-shadow: none; animation: fz-motiontap-signal 6.4s ease-in-out infinite; }
.tap-line i:nth-child(2) { animation-delay: 1.6s; }
.tap-line i:nth-child(3) { animation-delay: 3.2s; }
.tap-line i:nth-child(4) { animation-delay: 4.8s; }
.tap-line.bottom i { border-color: rgba(138,168,255,.3); background: #172647; animation-name: fz-motiontap-signal-blue; animation-delay: .8s; }
.tap-line.bottom i:nth-child(2) { animation-delay: 2.4s; }
.tap-line.bottom i:nth-child(3) { animation-delay: 4s; }
.tap-line.bottom i:nth-child(4) { animation-delay: 5.6s; }
.field-line { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 16px; color: rgba(255,255,255,.52); border: 1px solid rgba(255,255,255,.15); background: linear-gradient(90deg,#173e28,#24633e,#173e28); font-size: 10px; font-weight: 900; }
.field-line b { color: rgba(255,255,255,.84); text-align: center; font-size: 11px; }

@keyframes fz-led-target {
  0%, 16%, 100% { border-color: rgba(255,255,255,.16); background: #121c29; box-shadow: inset 0 0 0 1px rgba(32,189,122,.35); }
  5%, 11% { border-color: #b6ef38; background: #315014; box-shadow: 0 0 20px rgba(182,239,56,.46), inset 0 0 0 1px rgba(255,255,255,.28); }
}
@keyframes fz-motiontap-signal {
  0%, 12%, 100% { border-color: rgba(84,240,176,.3); background: #183b30; box-shadow: none; }
  4%, 8% { border-color: #7dffc5; background: #20bd7a; box-shadow: 0 0 16px rgba(32,189,122,.68); }
}
@keyframes fz-motiontap-signal-blue {
  0%, 12%, 100% { border-color: rgba(138,168,255,.3); background: #172647; box-shadow: none; }
  4%, 8% { border-color: #a9bdff; background: #2f62ff; box-shadow: 0 0 16px rgba(47,98,255,.66); }
}

.audience-routes { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.audience-routes a { min-height: 220px; display: grid; align-content: end; gap: 9px; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.18); }
.audience-routes a:last-child { border-right: 0; }
.audience-routes a:hover { background: rgba(255,255,255,.06); }
.audience-routes small { color: var(--fz-lime); font-size: 10px; font-weight: 950; }
.audience-routes strong { color: #fff; font-size: 23px; font-weight: 900; }
.audience-routes span { color: rgba(255,255,255,.62); font-size: 13px; font-weight: 650; }
.audience-routes-five { grid-template-columns: repeat(5,minmax(0,1fr)); }
.audience-routes-five a { padding-inline: 18px; }
.audience-routes-five strong { font-size: 21px; }
.audience-partner-link { min-height: 72px; display:flex; align-items:center; justify-content:space-between; gap:24px; margin-top:22px; padding:0 24px; color:#fff; border:1px solid rgba(255,255,255,.2); }
.audience-partner-link:hover { background:rgba(255,255,255,.06); }
.audience-partner-link span { color:rgba(255,255,255,.6); font-size:13px; font-weight:700; }
.audience-partner-link strong { font-size:15px; font-weight:900; }

.network-layout { min-height: 560px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.network-rail { position: relative; display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.22); }
.network-stop { position: relative; min-height: 128px; display: grid; grid-template-columns: 100px 130px 1fr; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.network-stop::before { content:""; position:absolute; left:-22px; top:50%; width:9px; height:9px; border:2px solid rgba(255,255,255,.45); border-radius:50%; transform:translateY(-50%); background:#07111f; }
.network-stop.is-open::before { border-color:var(--fz-lime); background:var(--fz-lime); box-shadow:0 0 14px rgba(183,255,47,.55); }
.network-stop small { color:var(--fz-lime); font-size:10px; font-weight:950; }
.network-stop strong { color:#fff; font-size:22px; font-weight:900; }
.network-stop span { color:rgba(255,255,255,.62); font-size:13px; line-height:1.5; font-weight:650; }
.network-stop a { grid-column:3; color:#fff; font-size:12px; font-weight:900; text-decoration:underline; text-underline-offset:4px; }

.partner-screen-layout { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:center; }
.partner-screen-media { height:520px; position:relative; overflow:hidden; background:#07111f; }
.partner-screen-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.partner-screen-media figcaption { position:absolute; left:20px; bottom:18px; padding:8px 10px; color:#fff; background:rgba(5,11,20,.82); font-size:11px; font-weight:850; }
.partner-screen-copy .section-heading { font-size:clamp(36px,4vw,56px); }
.partner-use-cases { margin-top:34px; border-top:1px solid var(--fz-line); }
.partner-use-cases article { display:grid; grid-template-columns:72px 120px 1fr; gap:14px; align-items:center; min-height:78px; border-bottom:1px solid var(--fz-line); }
.partner-use-cases small { color:var(--fz-blue); font-size:10px; font-weight:950; }
.partner-use-cases strong { font-size:16px; font-weight:900; }
.partner-use-cases span { color:var(--fz-muted); font-size:13px; line-height:1.5; font-weight:650; }

.analysis-page .process-list { grid-template-columns:repeat(3,minmax(0,1fr)); }
.analysis-page .process-step:nth-child(3n) { border-right:0; }
.pricing-grid { display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:18px; }
.pricing-grid .price-card { grid-column:span 2; }
.pricing-grid .price-card:nth-child(n+4) { grid-column:span 3; }
.price-card { min-height:360px; display:flex; flex-direction:column; padding:30px 26px; border:1px solid var(--fz-line); background:#fff; }
.price-card.is-featured { color:#fff; border-color:var(--fz-blue); background:var(--fz-deep); }
.price-card small { color:var(--fz-blue); font-size:10px; font-weight:950; }
.price-card.is-featured small { color:var(--fz-lime); }
.price-card h3 { margin-top:18px; font-size:25px; line-height:1.2; font-weight:900; }
.price-card > p { min-height:72px; margin-top:12px; color:var(--fz-muted); font-size:14px; line-height:1.62; font-weight:620; word-break:keep-all; }
.price-card.is-featured > p { color:rgba(255,255,255,.66); }
.price-card > strong { margin-top:auto; padding-top:20px; font-size:30px; line-height:1; font-weight:950; }
.price-card > strong span { margin-left:4px; font-size:12px; font-weight:800; }
.price-card ul { display:grid; gap:8px; margin-top:24px; padding-top:18px; border-top:1px solid var(--fz-line); }
.price-card.is-featured ul { border-color:rgba(255,255,255,.18); }
.price-card li { position:relative; padding-left:14px; color:var(--fz-muted); font-size:12px; line-height:1.45; font-weight:700; }
.price-card.is-featured li { color:rgba(255,255,255,.72); }
.price-card li::before { content:""; position:absolute; left:0; top:.5em; width:5px; height:5px; border-radius:50%; background:var(--fz-green); }
.pricing-note { margin-top:24px; padding:18px 20px; color:var(--fz-muted); border-left:3px solid var(--fz-blue); background:#fff; font-size:12px; line-height:1.65; font-weight:650; }
.pricing-note strong { color:var(--fz-ink); margin-right:8px; }

/* Home density polish: five clear chapters with detail routed to service pages. */
.home-page .section { padding: 100px 0; }
.home-hero-polished {
  height: min(700px, calc(100svh - var(--fz-header)));
  min-height: 600px;
  align-items: center;
}
.home-hero-polished::before { background-position: right center; background-size: auto 100%; background-color: var(--fz-deep); }
.home-hero-polished::after {
  background:
    linear-gradient(90deg, rgba(5,12,22,.98) 0%, rgba(5,12,22,.91) 34%, rgba(5,12,22,.46) 53%, rgba(5,12,22,.04) 74%),
    linear-gradient(0deg, rgba(5,12,22,.72), transparent 62%);
}
.home-hero-polished .hero-inner { padding-block: 64px; }
.home-hero-polished .hero-copy { max-width: 870px; }
.home-hero-polished .hero-lead { max-width: 680px; }
.hero-scroll-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: rgba(255,255,255,.68);
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-size: 12px;
  line-height: 2;
  font-weight: 800;
}
.hero-scroll-link:hover { color: #fff; border-color: rgba(255,255,255,.72); }

.home-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--fz-line);
  border-bottom: 1px solid var(--fz-line);
}
.home-principles > div {
  min-height: 152px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 28px;
  border-right: 1px solid var(--fz-line);
}
.home-principles > div:last-child { border-right: 0; }
.home-principles small { color: var(--fz-blue); font-size: 10px; font-weight: 950; }
.home-principles strong { font-size: 23px; line-height: 1.2; font-weight: 900; }
.home-principles span { color: var(--fz-muted); font-size: 13px; line-height: 1.55; font-weight: 650; word-break: keep-all; }
.home-data-role {
  display: grid;
  grid-template-columns: 170px minmax(240px, .7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--fz-line);
  background: #f3f7fc;
}
.home-data-role small { color: var(--fz-blue); font-size: 10px; line-height: 1.4; font-weight: 950; }
.home-data-role h3 { font-size: 20px; line-height: 1.3; font-weight: 900; word-break: keep-all; }
.home-data-role p { color: var(--fz-muted); font-size: 13px; line-height: 1.65; font-weight: 650; word-break: keep-all; }
.home-touch-proof { margin-top: 28px; padding-block: 28px; }
.home-touch-proof h3 { font-size: 27px; }
.home-touch-proof > strong { font-size: 68px; }
.home-philosophy-note { max-width: 980px; margin-top: 26px; font-size: 14px; line-height: 1.7; }

.home-system-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 26px;
  border-top: 1px solid var(--fz-ink);
  border-bottom: 1px solid var(--fz-ink);
}
.home-system-sequence li {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border-right: 1px solid var(--fz-line);
}
.home-system-sequence li:last-child { border-right: 0; }
.home-system-sequence small { color: var(--fz-blue); font-size: 10px; font-weight: 950; }
.home-system-sequence strong { font-size: 15px; line-height: 1.35; font-weight: 900; word-break: keep-all; }
.home-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--fz-line);
  border-bottom: 1px solid var(--fz-line);
}
.home-system-item { min-width: 0; border-right: 1px solid var(--fz-line); background: #fff; }
.home-system-item:last-child { border-right: 0; }
.home-system-item figure { height: 270px; overflow: hidden; background: var(--fz-navy); }
.home-system-item figure img { width: 100%; height: 100%; object-fit: cover; }
.home-system-item > div { min-height: 235px; padding: 30px 26px; }
.home-system-item small { color: var(--fz-blue); font-size: 10px; font-weight: 950; }
.home-system-item h3 { margin-top: 34px; font-size: 25px; line-height: 1.18; font-weight: 900; word-break: keep-all; }
.home-system-item p { margin-top: 12px; color: var(--fz-muted); font-size: 14px; line-height: 1.62; font-weight: 620; word-break: keep-all; }
.home-system-action {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--fz-line);
}
.home-system-action > span { color: var(--fz-muted); font-size: 13px; line-height: 1.55; font-weight: 650; }
.home-system-action a { flex: 0 0 auto; color: var(--fz-blue); font-size: 13px; font-weight: 900; }

.home-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.home-path-item { min-width: 0; border-right: 1px solid rgba(255,255,255,.18); }
.home-path-item:last-child { border-right: 0; }
.home-path-item figure { height: 260px; overflow: hidden; background: var(--fz-navy); }
.home-path-item figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.home-path-item > div { min-height: 220px; display: grid; align-content: start; padding: 30px 26px; }
.home-path-item small { color: var(--fz-lime); font-size: 10px; font-style: normal; font-weight: 950; }
.home-path-item small em { margin-left: 5px; padding: 3px 5px; color: var(--fz-deep); border-radius: 3px; background: var(--fz-lime); font-size: 8px; font-style: normal; }
.home-path-item h3 { margin-top: 38px; color: #fff; font-size: 27px; line-height: 1.18; font-weight: 900; word-break: keep-all; }
.home-path-item > div > span { margin-top: auto; padding-top: 28px; color: rgba(255,255,255,.64); font-size: 13px; font-weight: 750; }
.home-path-item b { margin-left: 8px; color: #fff; font-size: 17px; }
.home-path-item:hover { background: rgba(255,255,255,.05); }
.home-path-item:hover figure img { transform: scale(1.025); }
.home-proof .location-layout { min-height: 500px; }
.home-proof-facts > div { grid-template-columns: 74px minmax(140px,.7fr) 1fr; }

.site-footer { padding: 56px 0 34px; color: rgba(255,255,255,.65); background: #050b14; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 56px; align-items: start; }
.footer-brand strong { display: block; color: #fff; font-size: 19px; font-weight: 950; }
.footer-brand p { max-width: 380px; margin-top: 12px; font-size: 13px; line-height: 1.65; }
.footer-info { display: grid; gap: 7px; font-size: 13px; line-height: 1.5; }
.footer-info strong { color: #fff; }
.footer-links { display: grid; grid-template-columns: repeat(5,38px); gap: 7px; }
.footer-bottom { margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
[hidden] { display: none !important; }

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: 200px minmax(0, 1fr) 180px; gap: 12px; }
  .brand-logo { width: 200px; }
  .main-nav a { padding-inline: 9px; font-size: 13px; }
  .header-socials { display: none; }
  .section { padding: 92px 0; }
  .media-split, .coach-layout, .pilot-box { grid-template-columns: 1fr; }
  .media-frame { min-height: 460px; }
  .model-grid { grid-template-columns: 1fr; }
  .model-item { min-height: 0; border-right: 0; border-bottom: 1px solid var(--fz-line); }
  .model-item:last-child { border-bottom: 0; }
  .model-item h3 { margin-top: 24px; }
  .system-loop { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .system-loop li:nth-child(3) { border-right: 0; }
  .system-loop li:nth-child(-n+3) { border-bottom: 1px solid var(--fz-line); }
  .system-loop li:nth-child(4) { grid-column: 1 / 2; }
  .report-bridge { grid-template-columns: 1fr 1fr; }
  .audience-routes { grid-template-columns:1fr 1fr; }
  .audience-routes a:nth-child(2) { border-right:0; }
  .audience-routes a:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.18); }
  .audience-routes-five a { border-right:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18); }
  .audience-routes-five a:nth-child(2n) { border-right:0; }
  .audience-routes-five a:nth-child(5) { grid-column:1 / -1; border-right:0; border-bottom:0; }
  .proof-strip-five { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .proof-strip-five > div:nth-child(3) { border-right:0; }
  .proof-strip-five > div:nth-child(-n+3) { border-bottom:1px solid rgba(255,255,255,.17); }
  .partner-screen-layout { grid-template-columns:1fr; }
  .partner-screen-media { height:460px; }
  .pricing-grid { grid-template-columns:1fr 1fr; }
  .pricing-grid .price-card,
  .pricing-grid .price-card:nth-child(n+4) { grid-column:auto; }
}

@media (max-width: 980px) {
  :root { --fz-header: 64px; }
  .shell { width: min(calc(100% - 30px), var(--fz-shell)); }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-actions { width: auto; }
  .brand-logo { width: 172px; }
  .brand-logo img { width: 150px; }
  .main-nav {
    position: fixed;
    inset: var(--fz-header) 0 auto;
    max-height: calc(100svh - var(--fz-header));
    display: none;
    overflow-y: auto;
    padding: 14px 15px 22px;
    background: var(--fz-deep);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 50px rgba(0,0,0,.35);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { min-height: 52px; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 0; font-size: 15px; }
  .nav-cta { display: none; }
  .menu-toggle { display: grid; }
  .hero { height: min(690px, calc(100svh - var(--fz-header))); min-height: 610px; }
  .hero-inner { width: min(calc(100% - 30px), var(--fz-shell)); padding: 56px 0 28px; }
  .hero h1 { font-size: 47px; }
  .hero-lead { max-width: 610px; font-size: 16px; }
  .proof-strip { margin-top: 30px; }
  .proof-strip-five { grid-template-columns:1fr; }
  .section-head-split { grid-template-columns: 1fr; gap: 18px; }
  .journey-grid, .process-list, .principle-grid { grid-template-columns: 1fr; }
  .journey-step:nth-child(2), .process-step:nth-child(2) { border-right: 0; }
  .journey-step:nth-child(-n+2), .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--fz-line); }
  .principle-item { min-height: 0; border-right: 0; border-bottom: 1px solid var(--fz-line); }
  .principle-item:last-child { border-bottom: 0; }
  .principle-item h3 { margin-top: 22px; }
  .touch-proof-band { grid-template-columns: 1fr 1fr; }
  .touch-proof-band > p { grid-column: 1 / -1; }
  .academy-density-line { grid-template-columns: 1fr 1fr; }
  .academy-density-line small { grid-column: 1 / -1; text-align: left; }
  .program-tabs { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 210px; scroll-snap-type: x mandatory; }
  .program-tab { scroll-snap-align: start; }
  .experience-row, .experience-row:nth-child(even), .program-layout, .analysis-result { grid-template-columns: 1fr; }
  .experience-row:nth-child(even) .experience-media { order: 0; }
  .experience-media, .program-visual, .analysis-result-visual { min-height: 380px; }
  .route-item { grid-template-columns: 120px 1fr; gap: 20px; }
  .support-list { grid-template-columns: 1fr; }
  .support-item { border-right: 0; }
  .analysis-points { grid-template-columns: 1fr; }
  .analysis-point { min-height: 0; border-right: 0; border-bottom: 1px solid var(--fz-line); }
  .analysis-point:last-child { border-bottom: 0; }
  .system-loop { grid-template-columns: 1fr 1fr; }
  .system-loop li, .system-loop li:nth-child(3) { border-right: 1px solid var(--fz-line); border-bottom: 1px solid var(--fz-line); }
  .system-loop li:nth-child(2n) { border-right: 0; }
  .system-loop li:nth-child(4) { grid-column: auto; }
  .system-loop li:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .report-bridge { grid-template-columns: 1fr; }
  .report-bridge figure { min-height: 390px; }
  .location-layout { grid-template-columns: 1fr; gap: 40px; padding: 80px 0; }
  .vision-facts > div { grid-template-columns: 70px 1fr; }
  .vision-facts span { grid-column: 2; }
  .cta-layout { display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
  .equipment-spec-grid { grid-template-columns:1fr; }
  .network-layout { grid-template-columns:1fr; gap:42px; padding:84px 0; }
  .network-rail { margin-left:22px; }
  .analysis-page .process-list { grid-template-columns:1fr; }
  .analysis-page .process-step { border-right:0; }
  .pricing-grid { grid-template-columns:1fr; }
}

@media (max-width: 560px) {
  .section { padding: 74px 0; }
  .section-heading { font-size: 38px; }
  .section-lead { font-size: 16px; }
  .hero { height: auto; min-height: 620px; }
  .hero::after { background: linear-gradient(90deg,rgba(5,12,22,.96),rgba(5,12,22,.65)), linear-gradient(0deg,rgba(5,12,22,.8),transparent); }
  .hero h1 { font-size: 42px; line-height: 1.05; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div { min-height: 54px; grid-template-columns: 96px 1fr; align-items: center; padding: 11px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .proof-strip > div:last-child { border-bottom: 0; }
  .proof-strip-five > div, .proof-strip-five > div:nth-child(3), .proof-strip-five > div:nth-child(-n+3) { border-right:0; border-bottom:1px solid rgba(255,255,255,.15); }
  .proof-strip-five > div:last-child { border-bottom:0; }
  .touch-proof-band { grid-template-columns: 1fr; gap: 22px; padding: 28px 0; }
  .touch-proof-band > p { grid-column: auto; }
  .touch-proof-band > strong { font-size: 64px; }
  .academy-density-line { grid-template-columns: 1fr; gap: 10px; }
  .academy-density-line small { grid-column: auto; }
  .journey-grid, .process-list { grid-template-columns: 1fr; }
  .journey-step, .process-step { min-height: 0; border-right: 0; border-bottom: 1px solid var(--fz-line); }
  .journey-step h3, .process-step h3 { margin-top: 22px; }
  .program-carousel-status { margin-bottom: 10px; }
  .program-carousel-status b { font-size: 15px; }
  .program-tabs { grid-auto-columns: minmax(176px,52vw); padding-right: 18vw; }
  .program-tab { min-height: 88px; }
  .experience-media, .program-visual, .analysis-result-visual, .media-frame { min-height: 270px; }
  .experience-copy, .program-copy, .analysis-result-copy { padding: 34px 24px; }
  .home-experience-stack { margin-top: 34px; }
  .system-loop { grid-template-columns: 1fr; }
  .system-loop li, .system-loop li:nth-child(3), .system-loop li:nth-child(2n), .system-loop li:last-child { grid-column: auto; min-height: 0; border-right: 0; border-bottom: 1px solid var(--fz-line); }
  .system-loop li:last-child { border-bottom: 0; }
  .system-loop h3 { margin-top: 20px; }
  .report-bridge figure { min-height: 290px; }
  .report-bridge > div { padding: 34px 24px; }
  .route-item { grid-template-columns: 1fr; min-height: 0; padding: 24px 0; }
  .route-item small { grid-column: 1 / -1; }
  .route-item p { display: none; }
  .media-split { gap: 36px; }
  .media-copy h2 { font-size: 39px; }
  .media-actions { display: grid; }
  .coach-lead { grid-template-columns: 1fr; }
  .coach-lead figure { min-height: 360px; }
  .coach-list li, .pilot-facts li { grid-template-columns: 1fr; gap: 8px; }
  .support-item { grid-template-columns: 40px 1fr; padding-inline: 8px; }
  .location-facts { grid-template-columns: 1fr; }
  .vision-facts > div { grid-template-columns: 58px 1fr; gap: 10px; }
  .cta-band { padding: 68px 0; }
  .cta-layout .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { grid-column: auto; }
  .equipment-spec { min-height:0; padding:24px 18px; }
  .led-board { min-height:128px; padding:10px; gap:2px; }
  .led-board span { font-size:7px; }
  .tap-line { gap:12px; padding-inline:8%; }
  .audience-routes { grid-template-columns:1fr; }
  .audience-routes a, .audience-routes a:nth-child(2) { min-height:150px; border-right:0; border-bottom:1px solid rgba(255,255,255,.18); }
  .audience-routes a:last-child { border-bottom:0; }
  .audience-routes-five a:nth-child(5) { grid-column:auto; }
  .audience-partner-link { align-items:flex-start; flex-direction:column; padding:20px; }
  .network-stop { grid-template-columns:74px 1fr; gap:10px; }
  .network-stop span, .network-stop a { grid-column:2; }
  .partner-screen-media { height:300px; }
  .partner-use-cases article { grid-template-columns:62px 1fr; padding:14px 0; }
  .partner-use-cases span { grid-column:2; }
  .price-card { min-height:0; }
}

@media (max-width: 1080px) {
  .home-page .section { padding: 88px 0; }
  .home-system-item figure { height: 230px; }
  .home-system-item > div { min-height: 250px; padding-inline: 22px; }
  .home-path-item figure { height: 230px; }
  .home-path-item h3 { font-size: 24px; }
}

@media (max-width: 980px) {
  .home-hero-polished { height: min(650px, calc(100svh - var(--fz-header))); min-height: 590px; }
  .home-hero-polished .hero-inner { padding-block: 46px; }
  .home-principles { grid-template-columns: 1fr; }
  .home-principles > div { min-height: 112px; grid-template-columns: 34px minmax(140px,.65fr) 1fr; gap: 14px; align-items: center; padding: 20px 18px; border-right: 0; border-bottom: 1px solid var(--fz-line); }
  .home-principles > div:last-child { border-bottom: 0; }
  .home-data-role { grid-template-columns: 1fr; gap: 8px; padding: 22px 18px; }
  .home-data-role h3 { font-size: 19px; }
  .home-system-sequence { grid-template-columns: 1fr 1fr; }
  .home-system-sequence li:nth-child(2) { border-right: 0; }
  .home-system-sequence li:nth-child(-n+2) { border-bottom: 1px solid var(--fz-line); }
  .home-system-grid { grid-template-columns: 1fr; }
  .home-system-item { display: grid; grid-template-columns: .9fr 1.1fr; border-right: 0; border-bottom: 1px solid var(--fz-line); }
  .home-system-item:last-child { border-bottom: 0; }
  .home-system-item figure { height: 100%; min-height: 280px; }
  .home-system-item > div { min-height: 280px; display: grid; align-content: center; }
  .home-system-item h3 { margin-top: 26px; }
  .home-path-grid { grid-template-columns: 1fr; }
  .home-path-item { display: grid; grid-template-columns: .9fr 1.1fr; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .home-path-item:last-child { border-bottom: 0; }
  .home-path-item figure { height: 100%; min-height: 280px; }
  .home-path-item > div { min-height: 280px; }
  .home-path-item h3 { margin-top: 28px; }
  .home-proof-facts > div { grid-template-columns: 66px 1fr; }
  .home-proof-facts span { grid-column: 2; }
}

@media (max-width: 560px) {
  .home-page .section { padding: 70px 0; }
  .home-hero-polished { height: auto; min-height: 590px; align-items: flex-end; }
  .home-hero-polished::before { background-position: 72% center; }
  .home-hero-polished::after { background: linear-gradient(90deg,rgba(5,12,22,.94),rgba(5,12,22,.78) 58%,rgba(5,12,22,.48)), linear-gradient(0deg,rgba(5,12,22,.82),transparent 62%); }
  .home-hero-polished .hero-inner { padding-block: 52px 40px; }
  .home-hero-polished h1 { font-size: 41px; }
  .home-hero-polished .hero-lead { font-size: 15px; line-height: 1.65; }
  .hero-scroll-link { margin-top: 24px; }
  .home-principles > div { grid-template-columns: 30px 1fr; gap: 6px 12px; padding-block: 18px; }
  .home-principles span { grid-column: 2; }
  .home-touch-proof { gap: 18px; }
  .home-touch-proof h3 { font-size: 25px; }
  .home-touch-proof > strong { font-size: 60px; }
  .home-philosophy-note { margin-top: 22px; padding-left: 16px; font-size: 13px; }
  .home-system-sequence li { min-height: 68px; gap: 10px; padding: 0 12px; }
  .home-system-sequence strong { font-size: 13px; }
  .home-system-item { grid-template-columns: 1fr; }
  .home-system-item figure { min-height: 220px; }
  .home-system-item > div { min-height: 0; padding: 26px 20px 30px; }
  .home-system-item h3 { margin-top: 24px; font-size: 23px; }
  .home-system-action { align-items: flex-start; flex-direction: column; gap: 12px; padding-block: 18px; }
  .home-path-item { grid-template-columns: 1fr; }
  .home-path-item figure { min-height: 210px; }
  .home-path-item > div { min-height: 220px; padding: 26px 20px; }
  .home-path-item h3 { margin-top: 28px; font-size: 25px; }
  .home-proof .location-layout { min-height: 0; padding-block: 72px; }
}

/* 2026-07-17 mobile finalization: keep every primary choice visible without sideways discovery. */
@media (max-width: 980px) {
  .program-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    padding-right: 0;
    scroll-snap-type: none;
  }
  .program-tab { min-width: 0; scroll-snap-align: none; }
  .program-tab:nth-child(4) { grid-column: 1 / 2; }
  .program-tab:nth-child(5) { grid-column: 2 / 4; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 24px), var(--fz-shell)); }
  .brand-logo { width: 184px; }
  .brand-logo img { width: 162px; }
  .section,
  .home-page .section { padding: 56px 0; }
  .section-heading { font-size: 32px; line-height: 1.12; }
  .section-lead { font-size: 14px; line-height: 1.65; }
  .hero { min-height: 560px; }
  .hero-inner { padding-block: 44px 28px; }
  .hero h1,
  .home-hero-polished h1 { font-size: 36px; line-height: 1.08; }
  .hero-lead { font-size: 14px; line-height: 1.65; }
  .hero-actions { gap: 9px; margin-top: 24px; }
  .btn { min-height: 48px; }

  .academy-page .hero { min-height: auto; }
  .academy-page .hero-inner { padding-block: 42px 26px; }
  .academy-page .proof-strip-five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .academy-page .proof-strip-five > div,
  .academy-page .proof-strip-five > div:nth-child(3),
  .academy-page .proof-strip-five > div:nth-child(-n+3) {
    min-width: 0;
    min-height: 70px;
    display: block;
    padding: 12px 10px;
    border-right: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .academy-page .proof-strip-five > div:nth-child(2n) { border-right: 0; }
  .academy-page .proof-strip-five > div:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .academy-page .proof-strip-five span { display: block; margin-top: 5px; font-size: 10px; line-height: 1.35; }
  .program-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .program-tab,
  .program-tab:nth-child(4) { min-height: 68px; grid-column: auto; grid-template-columns: 22px minmax(0, 1fr); gap: 8px; padding: 10px; }
  .program-tab:nth-child(5) { grid-column: 1 / -1; }
  .program-tab-copy { min-width: 0; }
  .program-tab-copy strong { font-size: 13px; }
  .program-tab-copy small { overflow: visible; white-space: normal; text-overflow: clip; font-size: 10px; line-height: 1.35; }
  .program-visual { min-height: 220px; }
  .program-copy { padding: 26px 20px; }

  .journey-step,
  .process-step { padding: 24px 18px; }
  .location-layout { gap: 28px; padding: 56px 0; }
  .location-copy h2 { font-size: 34px; line-height: 1.12; }
  .location-copy p { font-size: 14px; }
  .location-facts div { min-height: 88px; padding: 14px; }
  .partner-location-proof .location-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-screen-media { height: 250px; }
  .partner-use-cases article { grid-template-columns: 58px minmax(0, 1fr); }
  .partner-use-cases span { display: none; }

  .home-hero-polished { min-height: 540px; }
  .home-hero-polished .hero-inner { padding-block: 44px 32px; }
  .home-principles > div { min-height: 92px; }
  .home-philosophy-note { display: none; }
  .home-system-item figure { min-height: 190px; }
  .home-system-item > div { padding: 22px 18px 24px; }
  .home-system-item h3 { margin-top: 18px; font-size: 21px; }
  .home-system-action > span { display: none; }
  .home-path-item figure { min-height: 180px; }
  .home-path-item > div { min-height: 170px; }
  .home-path-item h3 { margin-top: 20px; font-size: 22px; }
  .home-proof .location-layout { padding-block: 56px; }

  .site-footer { padding: 42px 0 26px; }
  .footer-grid { gap: 24px; }
  .footer-bottom { margin-top: 24px; }
}

@media (max-width: 980px) {
  .academy-page .proof-strip-five { display: none; }
}
/* 2026-07-17 final mobile readability pass */
@media (max-width: 560px) {
  .shell,
  .hero-inner { width: min(calc(100% - 40px), var(--fz-shell)); }

  .hero h1,
  .home-hero-polished h1 {
    max-width: 100%;
    font-size: 35px;
    line-height: 1.09;
    word-break: keep-all;
  }

  .hero-actions .btn-ghost {
    width: fit-content;
    min-height: 40px;
    justify-self: start;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.55);
    border-radius: 0;
    background: transparent;
  }

  .academy-page .hero { min-height: 520px; }
  .academy-page .proof-strip-five { display: none; }

  .home-principles > div {
    min-height: 0;
    display: block;
    padding: 20px 18px;
  }
  .home-principles small { display: block; margin-bottom: 10px; }
  .home-principles strong { display: block; font-size: 21px; }
  .home-principles span { display: block; margin-top: 8px; }

  .home-data-role {
    display: block;
    padding: 22px 18px;
  }
  .home-data-role small { display: block; margin-bottom: 10px; }
  .home-data-role h3 { margin: 0; }
  .home-data-role p { margin-top: 8px; }

  .route-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .route-item small { grid-column: auto; }
  .route-item p { display: block; margin-top: 6px; }

  .support-item {
    min-height: 0;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .partner-use-cases article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px 12px;
  }
  .partner-use-cases span {
    display: block;
    grid-column: 2;
    font-size: 12px;
  }
  .partner-location-proof .location-facts { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero h1,
  .home-hero-polished h1 { font-size: 32px; }
  .program-tab-copy small { font-size: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* 2026-07-19 mobile navigation and typography polish */
@media (max-width: 980px) {
  :root { --fz-header: 72px; }
  .site-header { height: var(--fz-header); background: rgba(6, 14, 26, .985); backdrop-filter: blur(20px); }
  .nav-shell { width: min(calc(100% - 40px), var(--fz-shell)); grid-template-columns: minmax(0, 1fr) 48px; gap: 12px; }
  .brand-logo { width: 164px; height: var(--fz-header); overflow: visible; }
  .brand-logo img { width: 164px; max-height: 66px; margin-left: 0; }
  .nav-actions { width: 48px; justify-content: flex-end; }
  .menu-toggle { position: relative; z-index: 105; width: 48px; height: 48px; overflow: hidden; border-color: rgba(255,255,255,.28); border-radius: 6px; background: rgba(255,255,255,.03); }
  .menu-toggle span { position: absolute; left: 14px; width: 20px; height: 2px; margin: 0; border-radius: 2px; transition: transform .24s ease, opacity .18s ease; }
  .menu-toggle span:nth-child(1) { transform: translateY(-6px); }
  .menu-toggle span:nth-child(2) { transform: translateY(0); }
  .menu-toggle span:nth-child(3) { transform: translateY(6px); }
  .main-nav { inset: var(--fz-header) 0 0; z-index: 101; width: 100%; height: calc(100dvh - var(--fz-header)); max-height: none; grid-template-columns: minmax(0, 1fr); align-content: start; grid-auto-rows: minmax(64px, auto); padding: 18px 20px 164px; overscroll-behavior: contain; background: rgba(6, 14, 26, .99); border-top: 1px solid rgba(255,255,255,.1); box-shadow: none; }
  .main-nav a { width: min(100%, 520px); min-height: 64px; justify-self: center; justify-content: flex-start; padding: 0 4px; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.12); border-radius: 0; font-size: 18px; font-weight: 800; }
  .main-nav a:hover { color: #fff; background: rgba(255,255,255,.035); }
  .main-nav a[aria-current="page"] { padding-left: 18px; color: #fff; background: rgba(255,255,255,.045); box-shadow: inset 3px 0 0 var(--fz-blue); }
  body.menu-open { overflow: hidden; overscroll-behavior: none; }
  body.menu-open .site-header { background: #060e1a; backdrop-filter: none; -webkit-backdrop-filter: none; }
  body.menu-open .menu-toggle { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.07); }
  body.menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg); }
  body.menu-open .nav-cta { position: fixed; z-index: 104; right: 20px; bottom: calc(76px + env(safe-area-inset-bottom)); left: 20px; min-height: 52px; display: inline-flex; font-size: 15px; }
  body.menu-open .header-socials { position: fixed; z-index: 104; bottom: calc(18px + env(safe-area-inset-bottom)); left: 20px; display: flex; gap: 10px; }
  body.menu-open .header-socials .icon-link { width: 44px; height: 44px; background: rgba(255,255,255,.04); }
  .menu-toggle:focus-visible, .main-nav a:focus-visible, body.menu-open .nav-cta:focus-visible, body.menu-open .header-socials a:focus-visible { outline: 2px solid var(--fz-lime); outline-offset: -2px; }
}
/* 2026-07-20 partner documents and editorial news */
.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.document-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(210px, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--fz-line);
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.document-card:hover {
  border-color: rgba(47,98,255,.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(7,17,31,.1);
}
.document-card figure {
  min-height: 300px;
  overflow: hidden;
  background: var(--fz-navy);
}
.document-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.document-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
}
.document-card-copy small {
  color: var(--fz-blue);
  font-size: 11px;
  font-weight: 900;
}
.document-card-copy h3 {
  margin-top: 18px;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 900;
  word-break: keep-all;
}
.document-card-copy p {
  margin-top: 14px;
  color: var(--fz-muted);
  font-size: 14px;
  line-height: 1.68;
  font-weight: 620;
  word-break: keep-all;
}
.document-card-copy > span {
  margin-top: auto;
  padding-top: 28px;
  color: var(--fz-blue);
  font-size: 14px;
  font-weight: 900;
}
.document-card-copy b { margin-left: 5px; font-size: 15px; }

.news-hero {
  padding: 112px 0 88px;
  color: #fff;
  background: var(--fz-deep);
}
.news-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 80px;
  align-items: end;
}
.news-hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.02;
  font-weight: 950;
  word-break: keep-all;
  text-wrap: balance;
}
.news-hero-copy {
  max-width: 500px;
  padding-bottom: 8px;
}
.news-hero-copy p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 620;
  word-break: keep-all;
}
.news-hero-copy .text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.news-feature-section { padding: 64px 0 112px; }
.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  overflow: hidden;
  border: 1px solid var(--fz-line);
  border-radius: 8px;
  background: #fff;
}
.news-feature figure {
  min-height: 520px;
  overflow: hidden;
  background: var(--fz-navy);
}
.news-feature figure img,
.news-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.news-feature:hover figure img,
.news-card a:hover figure img { transform: scale(1.025); }
.news-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--fz-muted);
  font-size: 11px;
  font-weight: 820;
}
.news-meta span {
  color: var(--fz-blue);
  font-weight: 950;
}
.news-feature h2 {
  margin-top: 30px;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.12;
  font-weight: 930;
  word-break: keep-all;
}
.news-feature-copy > p {
  margin-top: 22px;
  color: var(--fz-muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 620;
  word-break: keep-all;
}
.news-feature-copy > strong {
  margin-top: 36px;
  color: var(--fz-blue);
  font-size: 14px;
  font-weight: 900;
}
.news-section-head { margin-bottom: 42px; }
.news-section-head .section-heading { font-size: clamp(38px, 4.5vw, 58px); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--fz-line);
  border-radius: 8px;
  background: #fff;
}
.news-card a {
  height: 100%;
  display: grid;
  grid-template-rows: 250px 1fr;
}
.news-card figure { overflow: hidden; background: var(--fz-navy); }
.news-card-copy {
  min-width: 0;
  padding: 26px 24px 30px;
}
.news-card h3 {
  margin-top: 24px;
  font-size: 23px;
  line-height: 1.28;
  font-weight: 900;
  word-break: keep-all;
}
.news-card p {
  margin-top: 14px;
  color: var(--fz-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 620;
  word-break: keep-all;
}
.news-channel-band {
  padding: 84px 0;
  color: #fff;
  background: var(--fz-blue-dark);
}
.news-channel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
  align-items: center;
}
.news-channel-layout h2 {
  margin-top: 12px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 930;
}
.news-channel-layout p {
  margin-top: 16px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.65;
}
.news-channel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 1080px) {
  .document-card { grid-template-columns: 1fr; }
  .document-card figure { min-height: 280px; }
  .news-feature { grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); }
}
@media (max-width: 980px) {
  .document-grid,
  .news-hero-layout,
  .news-feature,
  .news-channel-layout { grid-template-columns: 1fr; }
  .document-card { grid-template-columns: minmax(220px,.8fr) minmax(0,1.2fr); }
  .news-hero { padding: 84px 0 70px; }
  .news-hero-layout { gap: 34px; }
  .news-hero-copy { padding-bottom: 0; }
  .news-feature figure { min-height: 460px; }
  .news-feature-copy { padding: 38px 34px 42px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card:last-child { grid-column: 1 / -1; }
  .news-channel-actions { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .document-grid,
  .news-grid { grid-template-columns: 1fr; }
  .document-card { grid-template-columns: 1fr; }
  .document-card figure { min-height: 0; aspect-ratio: 16 / 9; }
  .document-card-copy { padding: 26px 22px; }
  .document-card-copy h3 { font-size: 24px; }
  .news-hero { padding: 68px 0 58px; }
  .news-hero h1 { font-size: 42px; }
  .news-hero-copy p { font-size: 16px; }
  .news-feature-section { padding: 36px 0 74px; }
  .news-feature figure { min-height: 0; aspect-ratio: 4 / 3; }
  .news-feature-copy { padding: 28px 22px 32px; }
  .news-feature h2 { margin-top: 22px; font-size: 31px; }
  .news-feature-copy > p { font-size: 15px; }
  .news-grid { gap: 18px; }
  .news-card:last-child { grid-column: auto; }
  .news-card a { grid-template-rows: 220px 1fr; }
  .news-channel-band { padding: 64px 0; }
  .news-channel-actions { display: grid; grid-template-columns: 1fr; }
  .news-channel-actions .btn { width: 100%; }
}

/* 2026-07-20 partner document library layout correction */
.partner-resources .document-grid {
  align-items: stretch;
}
.partner-resources .document-card {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  height: 100%;
}
.partner-resources .document-card figure {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--fz-line);
  background: #f3f6fa;
}
.partner-resources .document-card figure img {
  display: block;
  object-fit: contain;
}
.partner-resources .document-card-copy {
  min-height: 238px;
}
@media (max-width: 980px) {
  .partner-resources .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner-resources .document-card-copy {
    min-height: 250px;
    padding: 26px 24px;
  }
}
@media (max-width: 720px) {
  .partner-resources .document-grid {
    grid-template-columns: 1fr;
  }
  .partner-resources .document-card-copy {
    min-height: 0;
    padding: 24px 22px 26px;
  }
  .partner-resources .document-card-copy > span {
    padding-top: 22px;
  }
}