: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; }
.analysis-page main [id],
.report-page main section[id] { scroll-margin-top: calc(var(--fz-header) + 24px); }
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/story-20260710/home-hero-anyang-led-v2.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; }

.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; }
.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; }

.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) auto; 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; }
.route-item .route-arrow { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--fz-line); border-radius: 50%; font-size: 20px; }
.route-item:hover .route-arrow { color: #fff; border-color: var(--fz-blue); background: var(--fz-blue); }

.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-tabs { display: flex; gap: 6px; margin-bottom: 24px; overflow-x: auto; scrollbar-width: none; }
.program-tabs::-webkit-scrollbar { display: none; }
.program-tab { min-height: 48px; flex: 0 0 auto; padding: 0 18px; color: var(--fz-muted); border: 1px solid var(--fz-line); border-radius: 6px; background: #fff; font-weight: 850; cursor: pointer; }
.program-tab[aria-selected="true"] { color: #fff; border-color: var(--fz-blue); background: var(--fz-blue); }
.program-panel { display: none; }
.program-panel.is-active { display: grid; }
.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; }

.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; }
.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; }
.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 #54f0b0; background: #20bd7a; box-shadow: 0 0 12px rgba(32,189,122,.48); }
.tap-line.bottom i { border-color: #8aa8ff; background: #2f62ff; box-shadow: 0 0 12px rgba(47,98,255,.48); }
.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; }

.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; }

.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:590px; 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; }
.pilot-program { display:grid; grid-template-columns:minmax(0,1.32fr) minmax(320px,.68fr); margin-top:46px; overflow:hidden; border:1px solid var(--fz-line); border-radius:6px; background:#fff; box-shadow:0 24px 64px rgba(9,24,47,.07); }
.pilot-journey { padding:44px 48px 40px; }
.pilot-journey-head small, .pilot-summary-kicker { color:var(--fz-blue); font-size:10px; line-height:1; font-weight:950; }
.pilot-journey-head h3 { margin-top:14px; font-size:clamp(28px,3vw,40px); line-height:1.16; font-weight:920; letter-spacing:0; word-break:keep-all; }
.pilot-deliverables { margin-top:30px; border-top:1px solid var(--fz-line); }
.pilot-deliverable { display:grid; grid-template-columns:48px minmax(0,1fr) 92px; gap:18px; align-items:center; min-height:116px; padding:20px 0; border-bottom:1px solid var(--fz-line); }
.pilot-deliverable > span { color:var(--fz-blue); font-size:12px; font-weight:950; }
.pilot-deliverable h4 { font-size:17px; line-height:1.3; font-weight:900; }
.pilot-deliverable p { max-width:520px; margin-top:6px; color:var(--fz-muted); font-size:13px; line-height:1.58; font-weight:640; word-break:keep-all; }
.pilot-deliverable > strong { justify-self:end; color:var(--fz-ink); font-size:13px; font-weight:950; white-space:nowrap; }
.pilot-summary { display:flex; flex-direction:column; padding:44px 38px 38px; border-left:1px solid var(--fz-line); background:#f5f7fb; }
.pilot-beta-mark { display:flex; align-items:center; justify-content:space-between; gap:16px; padding-bottom:22px; border-bottom:1px solid var(--fz-line); }
.pilot-beta-mark span { display:inline-flex; align-items:center; min-height:28px; padding:0 10px; color:#fff; border-radius:3px; background:var(--fz-blue); font-size:10px; font-weight:950; }
.pilot-beta-mark strong { color:var(--fz-ink); font-size:12px; font-weight:950; }
.pilot-summary-kicker { margin-top:28px; }
.pilot-summary h3 { margin-top:12px; color:var(--fz-ink); font-size:28px; line-height:1.2; font-weight:920; }
.pilot-summary-copy { margin-top:12px; color:var(--fz-muted); font-size:13px; line-height:1.65; font-weight:640; word-break:keep-all; }
.pilot-price { display:grid; gap:8px; margin-top:28px; padding:24px 0; border-top:1px solid var(--fz-line); border-bottom:1px solid var(--fz-line); }
.pilot-price strong { color:var(--fz-ink); font-size:40px; line-height:1; font-weight:950; }
.pilot-price span { color:var(--fz-muted); font-size:11px; font-weight:800; }
.pilot-summary-facts { display:grid; margin-top:22px; }
.pilot-summary-facts > div { display:grid; grid-template-columns:46px 1fr; gap:12px; padding:11px 0; border-bottom:1px solid var(--fz-line); }
.pilot-summary-facts dt { color:var(--fz-blue); font-size:11px; line-height:1.55; font-weight:950; }
.pilot-summary-facts dd { color:var(--fz-muted); font-size:12px; line-height:1.55; font-weight:680; word-break:keep-all; }
.pilot-apply-button { width:100%; margin-top:26px; border:0; cursor:pointer; }
.pilot-application-note { margin-top:14px; color:var(--fz-muted); font-size:10px; line-height:1.62; font-weight:650; word-break:keep-all; }
.pilot-application-note strong { color:var(--fz-ink); }

/* 2026-07-17 analysis page: human copy and one responsive grid. */
.analysis-page .analysis-hero .hero-copy { max-width: 880px; }
.analysis-page .analysis-hero h1 { max-width: 880px; }
.moment-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--fz-ink); border-bottom: 1px solid var(--fz-line); }
.moment-list article { min-height: 240px; padding: 30px 28px; border-right: 1px solid var(--fz-line); }
.moment-list article:last-child { border-right: 0; }
.moment-list small { color: var(--fz-blue); font-size: 11px; font-weight: 900; }
.moment-list h3 { max-width: 330px; margin-top: 48px; font-size: 25px; line-height: 1.28; font-weight: 900; word-break: keep-all; }
.moment-list p { max-width: 340px; margin-top: 14px; color: var(--fz-muted); font-size: 14px; line-height: 1.68; font-weight: 620; word-break: keep-all; }
.analysis-story-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr); gap: 64px; align-items: center; }
.analysis-story-copy .section-lead { margin-top: 22px; }
.analysis-story-visual { overflow: hidden; border: 1px solid var(--fz-line); background: var(--fz-deep); }
.analysis-story-visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.story-steps { display: grid; margin-top: 34px; border-top: 1px solid var(--fz-line); }
.story-steps li { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--fz-line); }
.story-steps span { color: var(--fz-blue); font-size: 11px; font-weight: 950; }
.story-steps h3 { font-size: 17px; line-height: 1.35; font-weight: 900; }
.story-steps p { margin-top: 6px; color: var(--fz-muted); font-size: 13px; line-height: 1.6; font-weight: 620; word-break: keep-all; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--fz-blue); font-size: 14px; font-weight: 900; }
.text-link span { font-size: 20px; line-height: 1; }
.compact-heading { margin-bottom: 40px; }
.pilot-program-compact { grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); margin-top: 0; }
.pilot-deliverables-compact { margin-top: 0; padding: 30px 48px; border-top: 0; }
.pilot-deliverables-compact .pilot-deliverable:first-child { border-top: 1px solid var(--fz-line); }
.analysis-team .team-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 84px; align-items: center; }
.team-facts { border-top: 1px solid rgba(255, 255, 255, .2); }
.team-facts > div { display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.team-facts dt { color: var(--fz-lime); font-size: 12px; line-height: 1.55; font-weight: 900; }
.team-facts dd { color: rgba(255, 255, 255, .7); font-size: 14px; line-height: 1.62; font-weight: 650; word-break: keep-all; }

.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); }
  .partner-screen-layout { grid-template-columns:1fr; }
  .partner-screen-media { height:500px; }
  .pilot-program { grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr); }
  .pilot-journey { padding-inline:36px; }
  .pilot-summary { padding-inline:30px; }
  .analysis-story-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .analysis-team .team-grid { gap: 48px; }
}

@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: 142px; }
  .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; }
  .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; }
  .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 auto; 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; }
  .pilot-program { grid-template-columns:1fr; }
  .pilot-summary { order:-1; border-left:0; border-bottom:1px solid var(--fz-line); }
  .moment-list { grid-template-columns: 1fr; }
  .moment-list article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--fz-line); }
  .moment-list article:last-child { border-bottom: 0; }
  .moment-list h3 { margin-top: 22px; }
  .analysis-story-grid,
  .analysis-team .team-grid { grid-template-columns: 1fr; }
  .pilot-deliverables-compact { padding: 24px 36px; }
}

@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: max-content minmax(0, 1fr); column-gap: 16px; align-items: center; padding: 11px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .proof-strip strong { white-space: nowrap; word-break: keep-all; }
  .proof-strip span { word-break: keep-all; }
  .proof-strip > div:last-child { border-bottom: 0; }
  .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; }
  .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 auto; min-height: 0; padding: 24px 0; }
  .route-item small { grid-column: 1 / -1; }
  .route-item p { max-width: 32rem; font-size: 13px; line-height: 1.58; }
  .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; }
  .network-stop { grid-template-columns:74px 1fr; gap:10px; }
  .network-stop span, .network-stop a { grid-column:2; }
  .partner-screen-media { height:320px; }
  .partner-use-cases article { grid-template-columns:62px 1fr; padding:14px 0; }
  .partner-use-cases span { grid-column:2; }
  .pilot-program { margin-top:32px; }
  .pilot-journey, .pilot-summary { padding:30px 22px; }
  .pilot-journey-head h3 { font-size:30px; }
  .pilot-deliverable { grid-template-columns:38px minmax(0,1fr); gap:12px; min-height:0; padding:20px 0; }
  .pilot-deliverable > strong { grid-column:2; justify-self:start; color:var(--fz-blue); }
  .pilot-price strong { font-size:36px; }
}

/* 2026-07-17 mobile finalization */
@media (max-width: 560px) {
  .shell,
  .hero-inner { width: min(calc(100% - 40px), var(--fz-shell)); }
  .brand-logo { width: 180px; overflow: visible; }
  .brand-logo img { width: 180px; margin-left: -20px; }
  .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 { 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; }
  .proof-strip { margin-top: 24px; }
  .journey-step,
  .process-step { padding: 24px 18px; }
  .experience-media,
  .program-visual,
  .analysis-result-visual,
  .media-frame { min-height: 230px; }
  .report-bridge figure { min-height: 240px; }
  .report-bridge > div,
  .experience-copy,
  .program-copy,
  .analysis-result-copy { padding: 26px 20px; }
  .media-copy h2 { font-size: 34px; line-height: 1.12; }
  .pilot-journey, .pilot-summary { padding-inline: 20px; }
  .analysis-page .analysis-hero { min-height: 640px; }
  .analysis-page .analysis-hero h1 { font-size: 34px; line-height: 1.12; }
  .analysis-page .analysis-hero .hero-lead { max-width: 330px; }
  .analysis-page .proof-strip > div { grid-template-columns: 132px minmax(0, 1fr); column-gap: 10px; }
  .analysis-page .proof-strip strong { font-size: 13px; }
  .analysis-page .proof-strip span { font-size: 11px; line-height: 1.45; }
  .section-head-split { gap: 14px; margin-bottom: 32px; }
  .moment-list article { padding: 24px 0; }
  .moment-list h3 { max-width: none; margin-top: 14px; font-size: 21px; line-height: 1.34; }
  .moment-list p { max-width: none; margin-top: 8px; font-size: 13px; line-height: 1.62; }
  .analysis-story-grid { gap: 30px; }
  .analysis-story-visual { order: -1; }
  .analysis-story-visual img { aspect-ratio: 4 / 3; }
  .story-steps { margin-top: 26px; }
  .story-steps li { grid-template-columns: 32px minmax(0, 1fr); gap: 10px; padding: 16px 0; }
  .story-steps h3 { font-size: 16px; }
  .text-link { margin-top: 22px; }
  .pilot-program-compact { border-radius: 4px; }
  .pilot-deliverables-compact { padding: 12px 20px 24px; }
  .pilot-deliverables-compact .pilot-deliverable { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; padding: 18px 0; }
  .pilot-deliverables-compact .pilot-deliverable > strong { grid-column: 2; }
  .pilot-summary h3 { margin-top: 24px; font-size: 24px; }
  .pilot-price strong { font-size: 34px; }
  .analysis-team .team-grid { gap: 36px; }
  .team-facts > div { grid-template-columns: 62px minmax(0, 1fr); gap: 12px; padding: 16px 0; }
  .team-facts dd { font-size: 13px; }
  .site-footer { padding: 42px 0 26px; }
  .footer-grid { gap: 24px; }
  .footer-bottom { margin-top: 24px; }
}

/* 2026-07-17 mobile copy and action cleanup */
@media (max-width: 560px) {
  .hero 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;
  }

  .analysis-page .analysis-hero { min-height: 620px; }
  .analysis-page .proof-strip > div {
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 8px;
  }
}

@media (max-width: 380px) {
  .hero h1,
  .analysis-page .analysis-hero h1 { font-size: 32px; }
  .analysis-page .proof-strip strong { font-size: 12px; }
}
@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; }
}