:root {
  color-scheme: light;
  --navy-1000: #020a19;
  --navy-950: #030f24;
  --navy-900: #061a38;
  --navy-800: #0a2a55;
  --cobalt-700: #0756d9;
  --cobalt-600: #0872f9;
  --cyan-400: #35d6ff;
  --cyan-200: #a4ecff;
  --ice: #eaf8ff;
  --white: #ffffff;
  --paper: #f5f8fb;
  --line: #c7d5e2;
  --ink: #06172f;
  --muted: #53677c;
  --success: #156f57;
  --error: #a12c3a;
  --max: 1280px;
  --gutter: clamp(20px, 4.8vw, 78px);
  --header-height: 76px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 500;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--cyan-400); outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 var(--gutter);
  background: rgba(3, 15, 36, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(164, 236, 255, .19);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; }
.brand-mark { position: relative; width: 54px; height: 34px; display: grid; align-content: center; }
.brand-mark i { display: block; width: 23px; height: 3px; margin: 2px 0; background: currentColor; border-radius: 9px 0 0 9px; }
.brand-mark i:nth-child(1) { width: 17px; margin-left: 6px; }
.brand-mark i:nth-child(3) { width: 17px; margin-left: 6px; }
.brand-mark b { position: absolute; right: 0; top: -7px; color: var(--cyan-400); font-size: 42px; font-style: italic; line-height: 1; letter-spacing: -.12em; }
.brand-type { display: grid; line-height: 1; }
.brand-type strong { font-size: 21px; font-style: italic; letter-spacing: -.03em; }
.brand-type small { margin-top: 4px; font-size: 8px; font-weight: 750; letter-spacing: .32em; }
.primary-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 32px); }
.primary-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #c7d7e9;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--cyan-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .nav-cta { padding: 0 18px; background: var(--cobalt-600); color: var(--white); }
.primary-nav .nav-cta:hover { background: #1d84ff; }
.menu-button { display: none; }

.technical-label {
  margin: 0 0 18px;
  color: var(--cobalt-700);
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.technical-label span { margin-right: 18px; color: var(--cyan-400); }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(490px, 1.02fr);
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(53,214,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(53,214,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0 52%, transparent 73%);
}
.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 760px;
  padding: clamp(78px, 10vh, 124px) clamp(36px, 4.8vw, 78px) clamp(110px, 13vh, 165px);
}
.hero .technical-label { color: var(--cyan-200); }
.hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 5.7vw, 88px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .93;
}
.hero h1 em { display: block; margin-top: .16em; color: var(--cyan-400); font-style: normal; font-weight: 550; }
.hero-lede { max-width: 650px; margin: 30px 0 0; color: #bed0e3; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.48; }
.hero-lede strong { color: var(--white); font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  border: 1px solid var(--cobalt-600);
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cobalt-600); color: var(--white); }
.button-primary:hover { background: #1d84ff; border-color: #1d84ff; }
.button-ghost { border-color: rgba(164,236,255,.42); color: var(--ice); }
.button-ghost:hover { border-color: var(--cyan-400); background: rgba(53,214,255,.09); }
.button-light { border-color: var(--white); background: var(--white); color: var(--navy-950); }
.button-light:hover { background: var(--cyan-200); border-color: var(--cyan-200); }
.hero-visual { position: relative; z-index: 2; min-height: 680px; margin: 0; overflow: hidden; background: #03122b; }
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-950), transparent 24%), linear-gradient(0deg, rgba(3,15,36,.7), transparent 36%);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: saturate(.92) contrast(1.08); }
.visual-corners i { position: absolute; z-index: 4; width: 34px; height: 34px; border-color: var(--cyan-400); border-style: solid; }
.visual-corners i:nth-child(1) { top: 35px; left: 35px; border-width: 1px 0 0 1px; }
.visual-corners i:nth-child(2) { top: 35px; right: 35px; border-width: 1px 1px 0 0; }
.visual-corners i:nth-child(3) { right: 35px; bottom: 35px; border-width: 0 1px 1px 0; }
.visual-corners i:nth-child(4) { bottom: 35px; left: 35px; border-width: 0 0 1px 1px; }
.price-module {
  position: absolute;
  z-index: 5;
  right: var(--gutter);
  bottom: 0;
  width: min(360px, 31vw);
  padding: 24px 28px 27px;
  background: var(--cyan-400);
  color: var(--navy-1000);
}
.price-module p { margin: 0; font: 800 10px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .14em; text-transform: uppercase; }
.price-module strong { display: block; margin: 8px 0 6px; font-size: clamp(56px, 6vw, 82px); line-height: .9; letter-spacing: -.065em; font-variant-numeric: tabular-nums; }
.price-module strong span { font-size: .46em; vertical-align: top; }
.price-module small { display: block; max-width: 28ch; font-size: 12px; font-weight: 700; line-height: 1.4; }

.hero-enter { animation: enter .7s var(--ease) both; }
.hero-enter:nth-child(2) { animation-delay: .05s; }
.hero-enter:nth-child(3) { animation-delay: .1s; }
.hero-enter:nth-child(4) { animation-delay: .15s; }
.hero-enter:nth-child(5) { animation-delay: .2s; }
@keyframes enter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.section { position: relative; padding: clamp(72px, 8vw, 112px) var(--gutter); }
.section-code { position: absolute; top: 32px; right: var(--gutter); color: #91a5b8; font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; }
.section-heading { width: min(900px, 100%); }
.section-heading h2, .process-intro h2, .audience-intro h2, .faq-heading h2, .start-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 780;
  letter-spacing: -.06em;
  line-height: .98;
}
.section-heading > p:last-child, .process-intro > p, .audience-intro > p, .start-intro > p { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: clamp(17px, 1.4vw, 20px); }

.why-section { background: var(--white); }
.why-section .section-heading h2 { max-width: 13ch; }
.precision-points { width: min(var(--max), 100%); display: grid; grid-template-columns: repeat(3, 1fr); margin: clamp(46px, 6vw, 72px) auto 0; border-top: 1px solid var(--line); }
.precision-point { min-height: 270px; padding: 28px clamp(24px, 3vw, 48px) 34px 0; border-bottom: 1px solid var(--line); }
.precision-point + .precision-point { padding-left: clamp(24px, 3vw, 48px); border-left: 1px solid var(--line); }
.precision-point > span { color: var(--cobalt-600); font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; }
.precision-point h3 { max-width: 12ch; margin: 40px 0 18px; font-size: clamp(25px, 2.35vw, 36px); letter-spacing: -.045em; line-height: 1.03; }
.precision-point p { max-width: 37ch; margin: 0; color: var(--muted); }

.process-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 140px); background: var(--navy-950); color: var(--white); }
.process-intro { align-self: start; position: sticky; top: calc(var(--header-height) + 46px); }
.process-intro .technical-label { color: var(--cyan-400); }
.process-intro h2 { color: var(--white); }
.process-intro > p { color: #9db2c7; }
.process-rail { margin: 0; padding: 0; list-style: none; }
.process-rail li { display: grid; grid-template-columns: 82px 1fr; gap: 28px; min-height: 170px; padding: 26px 0 36px; border-top: 1px solid rgba(164,236,255,.23); }
.process-rail li:last-child { border-bottom: 1px solid rgba(164,236,255,.23); }
.step-index { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--cyan-400); font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.step-index i { display: block; height: 1px; margin-top: 5px; background: var(--cyan-400); }
.process-rail h3 { max-width: 17ch; margin: -6px 0 13px; font-size: clamp(26px, 2.6vw, 38px); line-height: 1.02; letter-spacing: -.045em; }
.process-rail p { max-width: 540px; margin: 0; color: #a9bed1; }

.audience-section { background: var(--paper); }
.audience-intro { width: min(820px, 100%); }
.audience-intro h2 { max-width: 13ch; }
.audience-paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(var(--max), 100%); margin: clamp(46px, 6vw, 72px) auto 0; }
.audience-path { min-width: 0; display: flex; flex-direction: column; padding: clamp(34px, 4vw, 54px); border: 1px solid var(--line); }
.audience-path-institution { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); box-shadow: 10px 10px 0 var(--cyan-400); z-index: 1; }
.audience-path-property { background: var(--white); border-left: 0; }
.audience-kicker { margin: 0; color: var(--cobalt-700); font: 800 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; }
.audience-path-institution .audience-kicker { color: var(--cyan-200); }
.audience-path h3 { max-width: 13ch; margin: 34px 0 18px; font-size: clamp(30px, 3.1vw, 46px); letter-spacing: -.05em; line-height: 1; }
.audience-path > p:not(.audience-kicker) { max-width: 47ch; margin: 0; color: var(--muted); }
.audience-path-institution > p:not(.audience-kicker) { color: #b6c9db; }
.audience-path ul { margin: 36px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.audience-path-institution ul { border-color: rgba(164,236,255,.23); }
.audience-path li { display: grid; grid-template-columns: minmax(88px, .4fr) 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.audience-path-institution li { border-color: rgba(164,236,255,.17); }
.audience-path li span { color: #72869a; font: 700 10px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; text-transform: uppercase; }
.audience-path li strong { font-size: 14px; }
.audience-path-institution li span { color: #829bb3; }
.audience-path .button { align-self: flex-start; margin-top: auto; }

.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(60px, 10vw, 150px); background: var(--paper); }
.faq-heading h2 { max-width: 12ch; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; min-height: 72px; cursor: pointer; padding: 23px 54px 23px 0; font-size: clamp(18px, 1.7vw, 24px); font-weight: 780; letter-spacing: -.025em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 4px; color: var(--cobalt-600); font: 400 34px/1 Arial, sans-serif; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details[open] summary { color: var(--cobalt-700); }
.faq-list details p { max-width: 760px; margin: -2px 54px 28px 0; color: var(--muted); }

.start-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(56px, 9vw, 130px); background: var(--navy-950); color: var(--white); }
.start-intro { align-self: start; position: sticky; top: calc(var(--header-height) + 44px); }
.start-intro .technical-label { color: var(--cyan-400); }
.start-intro h2 { max-width: 9ch; color: var(--white); }
.start-intro > p { color: #9db2c7; }
.start-price { display: grid; grid-template-columns: auto 1fr; align-items: end; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(164,236,255,.25); }
.start-price span { grid-column: 1 / -1; color: var(--cyan-200); font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; }
.start-price strong { margin-top: 14px; font-size: clamp(62px, 7vw, 92px); line-height: .8; letter-spacing: -.07em; font-variant-numeric: tabular-nums; }
.start-price small { padding: 0 0 3px 12px; color: #9db2c7; font-weight: 750; }
.lead-shell { min-width: 0; background: var(--white); color: var(--ink); border: 1px solid rgba(164,236,255,.28); }
.audience-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.audience-tabs button { min-height: 64px; padding: 16px; border: 0; border-right: 1px solid var(--line); background: #e9f0f6; color: var(--muted); cursor: pointer; font-weight: 800; }
.audience-tabs button:last-child { border-right: 0; }
.audience-tabs button:hover { color: var(--cobalt-700); }
.audience-tabs button[aria-selected="true"] { background: var(--white); color: var(--navy-950); box-shadow: inset 0 -4px var(--cobalt-600); }
.lead-form { padding: clamp(28px, 4vw, 52px); }
.lead-form[hidden] { display: none; }
.lead-form > h3 { max-width: 15ch; margin: 0; color: var(--ink); font-size: clamp(28px, 3.1vw, 44px); letter-spacing: -.05em; line-height: 1.02; }
.lead-form > h3 + p { max-width: 55ch; margin: 20px 0 0; color: var(--muted); }
.lead-shell .button-ghost { border-color: var(--cobalt-600); color: var(--cobalt-700); }
.lead-shell .button-ghost:hover { background: var(--ice); color: var(--navy-950); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field-grid label { display: grid; gap: 8px; color: #364b61; font-size: 13px; font-weight: 750; }
.field-wide { grid-column: 1 / -1; }
input, select, textarea { width: 100%; min-height: 50px; padding: 11px 12px; border: 1px solid #9eafbf; border-radius: 0; background: var(--white); color: var(--ink); }
textarea { min-height: 116px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: var(--cobalt-700); }
input:focus, select:focus, textarea:focus { border-color: var(--cobalt-600); outline: 2px solid rgba(8,114,249,.22); outline-offset: 0; }
input:user-invalid, select:user-invalid, textarea:user-invalid { border-color: var(--error); box-shadow: inset 4px 0 var(--error); }
.field-grid .consent-field { display: grid; grid-template-columns: 20px minmax(0, 1fr); align-items: start; gap: 10px; color: #364b61; font-size: 12px; font-weight: 650; line-height: 1.5; }
.consent-field input { width: 18px; min-height: 18px; height: 18px; margin: 1px 0 0; padding: 0; accent-color: var(--cobalt-600); }
.form-submit { margin-top: 28px; cursor: pointer; }
.form-submit:disabled, .audience-tabs button:disabled { cursor: wait; opacity: .64; }
.lead-form[aria-busy="true"] input,
.lead-form[aria-busy="true"] select,
.lead-form[aria-busy="true"] textarea { opacity: .72; }
.turnstile-shell { margin-top: 18px; min-height: 0; }
.turnstile-shell:empty { display: none; }
.form-caption { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.form-result { margin-top: 22px; padding: 18px; border-left: 4px solid var(--success); background: #e9f6f0; color: #104f3c; }
.form-result.is-error { border-left-color: var(--error); background: #fff0f0; color: #7d2020; }

.site-footer { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px 70px; padding: 58px var(--gutter) 36px; background: var(--navy-1000); color: #d8e6f4; border-top: 1px solid rgba(164,236,255,.16); }
.footer-brand { display: grid; }
.footer-brand strong { color: var(--white); font-size: 22px; font-style: italic; letter-spacing: -.02em; }
.footer-brand span { color: #829bb3; font: 700 10px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; }
.footer-position { max-width: 510px; margin: 0; color: #9db2c7; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer-contact a, .site-footer nav a { min-height: 44px; display: inline-flex; align-items: center; color: var(--white); text-decoration: none; }
.footer-contact a:hover, .site-footer nav a:hover { text-decoration: underline; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; justify-content: flex-end; }
.footer-note { grid-column: 1 / -1; margin: 16px 0 0; padding-top: 24px; border-top: 1px solid rgba(164,236,255,.12); color: #6d849b; font-size: 11px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .62s var(--ease), transform .62s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .primary-nav { gap: 15px; }
  .primary-nav a { font-size: 12px; }
  .hero { grid-template-columns: minmax(0, 1.05fr) minmax(410px, .95fr); }
  .hero-copy { padding-right: 38px; }
  .hero h1 { font-size: clamp(48px, 6.4vw, 76px); }
  .price-module { width: min(320px, 34vw); }
}

@media (max-width: 860px) {
  :root { --header-height: 68px; }
  .site-header { padding-inline: 20px; }
  .menu-button { min-width: 74px; min-height: 44px; display: inline-flex; align-items: center; justify-content: flex-end; gap: 10px; border: 0; background: transparent; color: var(--white); cursor: pointer; font-size: 13px; font-weight: 750; }
  .menu-button i, .menu-button i::before, .menu-button i::after { width: 20px; height: 1px; background: currentColor; }
  .menu-button i { position: relative; display: block; }
  .menu-button i::before, .menu-button i::after { content: ""; position: absolute; left: 0; }
  .menu-button i::before { top: -6px; }
  .menu-button i::after { top: 6px; }
  .primary-nav { position: absolute; top: 100%; right: 0; left: 0; z-index: 120; display: none; height: calc(100dvh - var(--header-height)); align-content: start; align-items: stretch; gap: 0; padding: 30px 20px; background: var(--navy-950); border-top: 1px solid rgba(164,236,255,.18); overflow-y: auto; }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: 12px 0; border-bottom: 1px solid rgba(164,236,255,.16); font-size: 20px; }
  .primary-nav .nav-cta { justify-content: center; margin-top: 20px; padding: 14px 18px; border: 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 78px 20px 64px; }
  .hero h1 { max-width: 13ch; font-size: clamp(48px, 10vw, 76px); }
  .hero-visual { min-height: 540px; }
  .hero-visual::before { background: linear-gradient(0deg, rgba(3,15,36,.82), transparent 45%); }
  .price-module { position: relative; right: auto; bottom: auto; width: 100%; padding: 28px 20px; }
  .price-module strong { font-size: 72px; }
  .price-module small { max-width: none; }
  .section { padding-inline: 20px; }
  .precision-points { grid-template-columns: 1fr; }
  .precision-point, .precision-point + .precision-point { min-height: auto; padding: 28px 0 40px; border-left: 0; }
  .precision-point h3 { max-width: 16ch; margin-top: 38px; }
  .process-section, .faq-section, .start-section { grid-template-columns: 1fr; }
  .process-intro, .start-intro { position: static; }
  .process-rail { margin-top: 50px; }
  .audience-paths { grid-template-columns: 1fr; }
  .audience-path-property { border-top: 0; border-left: 1px solid var(--line); }
  .faq-list { margin-top: 10px; }
  .site-footer { grid-template-columns: 1fr; gap: 22px; padding-inline: 20px; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .brand-mark { width: 47px; transform: scale(.88); transform-origin: left center; }
  .brand-type strong { font-size: 18px; }
  .hero-copy { padding-top: 62px; }
  .hero h1 { font-size: clamp(43px, 12vw, 62px); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .visual-corners i:nth-child(1), .visual-corners i:nth-child(4) { left: 20px; }
  .visual-corners i:nth-child(2), .visual-corners i:nth-child(3) { right: 20px; }
  .process-rail li { grid-template-columns: 55px 1fr; gap: 16px; min-height: 0; }
  .step-index { grid-template-columns: 1fr; }
  .step-index i { display: none; }
  .audience-path { padding: 30px 24px; }
  .audience-path-institution { box-shadow: 6px 6px 0 var(--cyan-400); }
  .audience-path h3 { margin-top: 28px; }
  .audience-path li { grid-template-columns: 1fr; gap: 3px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .audience-tabs { grid-template-columns: 1fr; }
  .audience-tabs button { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-contact { display: grid; }
}

@media (max-width: 640px) {
  .why-section,
  .process-section,
  .audience-section { padding-block: 44px; }
  .why-section .section-code { top: 20px; }
  .precision-points,
  .audience-paths { margin-top: 32px; }
  .precision-point,
  .precision-point + .precision-point { padding-block: 22px 28px; }
  .precision-point h3 { margin: 26px 0 12px; }
  .process-rail { margin-top: 32px; }
  .process-rail li { padding-block: 22px 28px; }
  .audience-path { padding: 28px 24px; }
  .audience-path h3 { margin-top: 26px; }
  .audience-path ul { margin-block: 28px; }
}

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