/* Hallmark - genre: atmospheric - macrostructure: cinematic scroll narrative - theme: studied-DNA (source: supplied NEX motion page) - enrichment: scrubbed video
 * Audience: insurance operations leaders and operators - Use: explain NEX and open a working session - Tone: technical, cinematic, controlled - anchor hue: cyan-blue
 * Pre-emit critique: P5 H5 E4 S5 R4 V5 - contrast: pass (40-41) - nav: edge-aligned - footer: statement - slop: pass (42-45)
 * Honest: pass (46) - chrome: pass (47) - tokens: pass (48) - responsive: pass (49) - icons: pass (30) - mobile: pass (34, 49, 50-57)
 * Generated assets: images/nex-application-context-v1.webp and images/nex-help-point-v1.webp - model: OpenAI image generation - purposes: application context and assistance-point CTA
 */

@font-face {
  font-family: "NEX Outfit";
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

.nex-motion {
  --color-nex-paper: oklch(10% 0.018 245);
  --color-nex-paper-deep: oklch(6% 0.014 245);
  --color-nex-paper-raised: oklch(14% 0.025 245);
  --color-nex-panel: oklch(16% 0.03 245 / 0.78);
  --color-nex-ink: oklch(96% 0.012 225);
  --color-nex-ink-soft: oklch(78% 0.02 230);
  --color-nex-ink-muted: oklch(65% 0.025 230);
  --color-nex-rule: oklch(52% 0.04 225 / 0.22);
  --color-nex-rule-strong: oklch(77% 0.1 220 / 0.46);
  --color-nex-signal: oklch(72% 0.16 225);
  --color-nex-signal-hot: oklch(85% 0.12 220);
  --color-nex-focus: oklch(84% 0.16 215);
  --color-nex-light-paper: oklch(95% 0.012 220);
  --color-nex-light-ink: oklch(19% 0.025 235);
  --color-nex-light-body: oklch(43% 0.025 230);
  --color-nex-media: oklch(3% 0.006 245);
  --color-nex-overlay-soft: oklch(3% 0.01 245 / 0.34);
  --color-nex-overlay: oklch(3% 0.01 245 / 0.62);
  --color-nex-overlay-strong: oklch(3% 0.01 245 / 0.9);
  --color-nex-surface-clear: oklch(18% 0.03 235 / 0.52);
  --font-nex-display: "NEX Outfit", "Cabinet Grotesk", sans-serif;
  --font-nex-body: "General Sans", "Segoe UI", sans-serif;
  --font-nex-data: "JetBrains Mono", monospace;
  --dur-nex-micro: 120ms;
  --dur-nex-short: 220ms;
  --dur-nex-long: 420ms;
  --z-nex-base: 1;
  --z-nex-raised: 10;
  --z-nex-sticky: 200;
  --z-nex-tooltip: 600;
  margin: 0;
  min-width: 20rem;
  color: var(--color-nex-ink);
  background: var(--color-nex-paper);
  font-family: var(--font-nex-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

html,
body.nex-motion {
  overflow-x: clip;
  scroll-behavior: smooth;
}

.nex-motion *,
.nex-motion *::before,
.nex-motion *::after { box-sizing: border-box; }
.nex-motion button,
.nex-motion a { font: inherit; }
.nex-motion img,
.nex-motion video { display: block; max-width: 100%; }
.nex-motion h1,
.nex-motion h2,
.nex-motion h3,
.nex-motion h4,
.nex-motion h5,
.nex-motion h6 {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-heading);
  font-style: normal;
}

.nex-skip-link {
  position: fixed;
  z-index: var(--z-nex-tooltip);
  inset-block-start: var(--space-4);
  inset-inline-start: var(--space-4);
  padding: 0.8rem var(--space-4);
  color: var(--color-nex-paper);
  background: var(--color-nex-ink);
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform var(--dur-nex-short) var(--ease-out);
}
.nex-skip-link:focus-visible { transform: translateY(0); outline: 3px solid var(--color-nex-focus); outline-offset: 3px; }

.nex-site-nav {
  position: fixed;
  z-index: var(--z-nex-sticky);
  inset: 0 0 auto;
  min-height: 4.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
  padding: 0.8rem max(1rem, env(safe-area-inset-left));
  background: linear-gradient(180deg, var(--color-nex-overlay-strong), transparent);
  opacity: 0;
  transition: opacity var(--dur-nex-short) var(--ease-out);
}
.nex-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: max-content;
  color: var(--color-nex-ink);
  font-family: var(--font-nex-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  white-space: nowrap;
}
.nex-brand img { width: 1.5rem; height: 1.5rem; object-fit: contain; }
.nex-nav-links { display: none; }
.nex-nav-links a { white-space: nowrap; }
.nex-nav-cta,
.nex-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 2.75rem;
  padding: 0.7rem 0.9rem;
  color: var(--color-nex-paper-deep);
  background: var(--color-nex-ink);
  border: 1px solid var(--color-nex-ink);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-nex-short) var(--ease-out), background-color var(--dur-nex-short) var(--ease-out), transform var(--dur-nex-micro) var(--ease-out);
}
.nex-nav-cta span { display: none; }
.nex-nav-cta:hover,
.nex-primary-action:hover { color: var(--color-nex-ink); background: transparent; transform: translateY(-1px); }
.nex-nav-cta:active,
.nex-primary-action:active { transform: translateY(1px); }
.nex-brand:focus-visible,
.nex-nav-links a:focus-visible,
.nex-nav-cta:focus-visible,
.nex-primary-action:focus-visible,
.nex-email-action:focus-visible,
.nex-story-panel > a:focus-visible,
.nex-media-fallback a:focus-visible,
.nex-footer a:focus-visible,
.nex-review-note a:focus-visible,
.nex-intro-skip:focus-visible,
.nex-faq summary:focus-visible,
.nex-capability button:focus-visible {
  outline: 3px solid var(--color-nex-focus);
  outline-offset: 4px;
}

.nex-story { height: 470svh; min-height: 180rem; }
.nex-stage {
  --video-opacity: 0;
  --story-progress: 0;
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 36rem;
  overflow: clip;
  isolation: isolate;
  background: var(--color-nex-media);
}
.nex-media-shell,
.nex-poster,
#nex-story-video,
.nex-media-vignette,
.nex-media-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.nex-poster,
#nex-story-video {
  object-fit: contain;
  object-position: center 44%;
  background: var(--color-nex-media);
}
.nex-poster { z-index: 0; opacity: 1; transition: opacity var(--dur-nex-long) var(--ease-out); }
#nex-story-video { z-index: var(--z-nex-base); opacity: var(--video-opacity); }
.nex-media-vignette {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, var(--color-nex-overlay-soft), transparent 24%, var(--color-nex-overlay-soft) 56%, var(--color-nex-overlay-strong) 84%);
}
.nex-media-grain {
  z-index: 3;
  pointer-events: none;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.nex-opening-mark {
  position: absolute;
  z-index: 7;
  inset-inline-start: 50%;
  inset-block-end: 5rem;
  display: grid;
  justify-items: center;
  gap: var(--space-2);
  color: var(--color-nex-ink-muted);
  font-family: var(--font-nex-data);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.nex-opening-mark p { margin: 0; white-space: nowrap; }
.nex-opening-mark span { width: 1px; height: 2.5rem; overflow: hidden; background: var(--color-nex-rule); }
.nex-opening-mark span::before {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  background: var(--color-nex-signal-hot);
  animation: nex-cue 1.8s var(--ease-in-out) infinite;
}
.nex-intro-skip {
  position: absolute;
  z-index: 24;
  inset: auto 1.25rem max(5.5rem, calc(1.5rem + env(safe-area-inset-bottom)));
  width: max-content;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--color-nex-rule-strong);
  color: var(--color-nex-ink);
  background: var(--color-nex-overlay);
  font-family: var(--font-nex-data);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(0.8rem);
}
.nex-intro-skip:hover { border-color: var(--color-nex-signal-hot); color: var(--color-nex-signal-hot); }
@keyframes nex-cue { from { transform: translateY(-120%); } to { transform: translateY(220%); } }

.nex-story-copy { position: absolute; z-index: 8; inset: 0; pointer-events: none; }
.nex-story-panel,
.nex-story-panel--right,
.nex-story-panel--lower,
.nex-story-panel--resolved {
  --panel-opacity: 0;
  --panel-shift: 1rem;
  position: absolute;
  inset: auto 1.25rem 6.5rem;
  width: auto;
  padding-block-end: var(--space-3);
  border-block-end: 1px solid var(--color-nex-rule-strong);
  opacity: var(--panel-opacity);
  text-align: start;
  transform: translate3d(var(--panel-shift), 0, 0);
  pointer-events: none;
  will-change: opacity, transform;
}
.nex-panel-kicker {
  margin: 0 0 var(--space-2);
  color: var(--color-nex-signal-hot);
  font-family: var(--font-nex-data);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nex-story-panel h1,
.nex-story-panel h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 9.5vw, 3.45rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}
.nex-story-panel > p:not(.nex-panel-kicker) {
  max-width: 36rem;
  margin: 0.8rem 0 0;
  color: var(--color-nex-ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}
.nex-signal-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-block-start: 0.8rem; }
.nex-signal-tags span {
  padding: 0.35rem 0.45rem;
  border: 1px solid var(--color-nex-rule);
  color: var(--color-nex-ink-soft);
  background: var(--color-nex-surface-clear);
  font-family: var(--font-nex-data);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nex-story-panel > a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 2.75rem;
  margin-block-start: var(--space-3);
  color: var(--color-nex-ink);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  pointer-events: auto;
}

.nex-story-telemetry {
  position: absolute;
  z-index: 9;
  inset: auto 1.25rem 2rem;
  display: grid;
  gap: var(--space-2);
  opacity: 0;
}
.nex-telemetry-heading {
  display: flex;
  justify-content: space-between;
  color: var(--color-nex-ink-muted);
  font-family: var(--font-nex-data);
  font-size: 0.6rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nex-telemetry-track { height: 1px; background: var(--color-nex-rule); }
.nex-telemetry-track i { display: block; width: 100%; height: 100%; background: var(--color-nex-signal-hot); transform: scaleX(0); transform-origin: left center; }
.nex-corner-data {
  position: absolute;
  z-index: 8;
  inset-block-start: 5.8rem;
  display: grid;
  gap: 0.3rem;
  color: var(--color-nex-ink-muted);
  font-family: var(--font-nex-data);
  font-size: 0.55rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
  opacity: 0;
}
.nex-corner-data--left { inset-inline-start: 1.25rem; }
.nex-corner-data--right { inset-inline-end: 1.25rem; text-align: end; }
.nex-media-fallback {
  position: absolute;
  z-index: 20;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-nex-paper-deep);
}
.nex-media-fallback[hidden] { display: none; }
.nex-media-fallback p { margin: 0; color: var(--color-nex-ink-soft); }
.nex-media-fallback a { min-height: 2.75rem; display: inline-flex; align-items: center; white-space: nowrap; }

.nex-capabilities,
.nex-process,
.nex-handoff,
.nex-boundaries { position: relative; padding: clamp(7rem, 14vw, 12rem) 1.25rem; }
.nex-capabilities {
  background: linear-gradient(var(--color-nex-rule) 1px, transparent 1px), linear-gradient(90deg, var(--color-nex-rule) 1px, transparent 1px), var(--color-nex-paper);
  background-size: 3.5rem 3.5rem;
}
.nex-capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 16% 12%, color-mix(in oklch, var(--color-nex-signal) 12%, transparent), transparent 26rem);
}
.nex-section-heading,
.nex-process-heading,
.nex-handoff-heading,
.nex-boundaries-heading {
  position: relative;
  z-index: var(--z-nex-raised);
  display: grid;
  gap: var(--space-5);
  max-width: 92rem;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}
.nex-section-heading h2,
.nex-process-heading h2,
.nex-handoff-heading h2,
.nex-boundaries-heading h2 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.9rem, 11vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}
.nex-section-heading > p,
.nex-process-heading > p,
.nex-handoff-heading > p,
.nex-boundaries-heading > p {
  max-width: 40rem;
  margin: 0;
  color: var(--color-nex-ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.nex-capability-grid {
  position: relative;
  z-index: var(--z-nex-raised);
  display: grid;
  max-width: 92rem;
  margin: 0 auto;
  border-block-start: 1px solid var(--color-nex-rule);
  border-inline-start: 1px solid var(--color-nex-rule);
}
.nex-capability {
  min-width: 0;
  border-inline-end: 1px solid var(--color-nex-rule);
  border-block-end: 1px solid var(--color-nex-rule);
  background: var(--color-nex-panel);
  transition: background-color var(--dur-nex-long) var(--ease-out);
}
.nex-capability button {
  width: 100%;
  min-height: 6rem;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) 1rem;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  color: var(--color-nex-ink);
  border: 0;
  background: transparent;
  text-align: start;
  cursor: pointer;
}
.nex-capability-number { color: var(--color-nex-signal-hot); font-family: var(--font-nex-data); font-size: 0.68rem; letter-spacing: 0.1em; }
.nex-capability-title { font-family: var(--font-nex-display); font-size: clamp(1.25rem, 4vw, 2rem); font-weight: 700; letter-spacing: -0.03em; }
.nex-capability-toggle { position: relative; width: 1rem; height: 1rem; justify-self: end; }
.nex-capability-toggle::before,
.nex-capability-toggle::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: var(--color-nex-ink);
  transition: transform var(--dur-nex-short) var(--ease-in-out);
}
.nex-capability-toggle::after { transform: rotate(90deg); }
.nex-capability button[aria-expanded="true"] .nex-capability-toggle::after { transform: rotate(0); }
.nex-capability-body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--dur-nex-long) var(--ease-in-out), opacity var(--dur-nex-short) var(--ease-out);
}
.nex-capability-body[inert] { grid-template-rows: 0fr; opacity: 0; }
.nex-capability-body > div { min-height: 0; overflow: hidden; padding: 0 var(--space-4) var(--space-5) 3.75rem; }
.nex-capability-body p { max-width: 42rem; margin: 0; color: var(--color-nex-ink-soft); font-size: 1rem; line-height: 1.65; }
.nex-capability-body span { display: block; margin-block-start: var(--space-5); color: var(--color-nex-ink-muted); font-family: var(--font-nex-data); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nex-evidence-note { position: relative; z-index: var(--z-nex-raised); max-width: 70rem; margin: var(--space-6) auto 0; color: var(--color-nex-ink-muted); font-size: 0.9rem; line-height: 1.65; }

.nex-context-scene {
  position: relative;
  isolation: isolate;
  min-height: clamp(42rem, 88svh, 64rem);
  display: grid;
  align-items: end;
  overflow: clip;
  padding: clamp(6rem, 12vw, 10rem) 1.25rem;
  color: var(--color-nex-ink);
  background: var(--color-nex-paper-deep);
}
.nex-context-scene__image,
.nex-context-scene__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.nex-context-scene__image { z-index: -2; object-fit: cover; object-position: 68% center; }
.nex-context-scene__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, oklch(5% 0.016 245 / 0.96) 0 22%, oklch(5% 0.016 245 / 0.74) 48%, transparent 78%),
    linear-gradient(0deg, oklch(5% 0.016 245 / 0.82), transparent 48%);
}
.nex-context-scene__copy { max-width: 51rem; }
.nex-context-scene__eyebrow {
  margin: 0 0 var(--space-5);
  color: var(--color-nex-signal-hot);
  font-family: var(--font-nex-data);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.nex-context-scene h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3.1rem, 12vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
}
.nex-context-scene__copy > p:not(.nex-context-scene__eyebrow) { max-width: 41rem; margin: var(--space-6) 0 0; color: var(--color-nex-ink-soft); font-size: clamp(1rem, 2vw, 1.22rem); line-height: 1.65; }
.nex-context-scene__signals { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: var(--space-6) 0 0; padding: 0; list-style: none; }
.nex-context-scene__signals li { display: grid; gap: 0.2rem; padding: 0.58rem 0.72rem; border: 1px solid var(--color-nex-rule-strong); color: var(--color-nex-ink); background: oklch(8% 0.018 245 / 0.72); font-family: var(--font-nex-data); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; }
.nex-context-scene__signals span { color: var(--color-nex-ink-soft); font-size: 0.58rem; font-weight: 400; }

.nex-process { background: var(--color-nex-paper-deep); }
.nex-process-track {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 92rem;
  margin: 0 auto;
  padding: 0;
  border-block-start: 1px solid var(--color-nex-rule);
  list-style: none;
}
.nex-process-track li { position: relative; min-width: 0; padding: var(--space-6) 0 var(--space-7); border-block-end: 1px solid var(--color-nex-rule); }
.nex-process-track li::before { content: ""; position: absolute; inset-block-start: -4px; inset-inline-start: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--color-nex-signal-hot); }
.nex-process-track span { color: var(--color-nex-signal-hot); font-family: var(--font-nex-data); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nex-process-track h3 { margin: var(--space-4) 0 var(--space-3); font-family: var(--font-heading); font-size: 1.65rem; font-weight: 700; letter-spacing: -0.035em; }
.nex-process-track p { max-width: 30rem; margin: 0; color: var(--color-nex-ink-soft); line-height: 1.6; }

.nex-handoff { background: var(--color-nex-paper); }
.nex-handoff-flow {
  display: grid;
  gap: var(--space-4);
  max-width: 92rem;
  margin: 0 auto clamp(7rem, 14vw, 12rem);
}
.nex-handoff-flow > div { display: grid; gap: var(--space-3); padding: var(--space-6); background: var(--color-nex-paper-raised); }
.nex-handoff-flow > div > span { color: var(--color-nex-signal-hot); font-family: var(--font-nex-data); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nex-handoff-flow strong { font-family: var(--font-nex-display); font-size: clamp(2.2rem, 8vw, 4rem); letter-spacing: -0.05em; }
.nex-handoff-flow small { color: var(--color-nex-ink-soft); font-size: 0.9rem; line-height: 1.55; }
.nex-handoff-flow > i { width: 1px; height: 2.5rem; margin-inline: auto; background: var(--color-nex-rule-strong); }
.nex-control-statement { display: grid; gap: var(--space-7); max-width: 92rem; margin: 0 auto; padding-block-start: clamp(5rem, 10vw, 9rem); border-block-start: 1px solid var(--color-nex-rule); }
.nex-control-statement > h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(3.2rem, 11vw, 4rem); font-weight: 700; letter-spacing: -0.065em; line-height: 0.9; }
.nex-guardrail-ledger { border-block-start: 1px solid var(--color-nex-rule); }
.nex-guardrail-ledger article { display: grid; grid-template-columns: 2rem minmax(0, 1fr); gap: var(--space-4); padding-block: var(--space-5); border-block-end: 1px solid var(--color-nex-rule); }
.nex-guardrail-ledger article > span { color: var(--color-nex-signal-hot); font-family: var(--font-nex-data); font-size: 0.65rem; }
.nex-guardrail-ledger h3 { margin: 0 0 var(--space-2); font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; }
.nex-guardrail-ledger p { max-width: 36rem; margin: 0; color: var(--color-nex-ink-soft); line-height: 1.6; }
.nex-review-note { display: grid; gap: var(--space-5); max-width: 92rem; margin: var(--space-8) auto 0; padding: var(--space-5); border: 1px solid var(--color-nex-rule-strong); }
.nex-review-note p { max-width: 58rem; margin: 0; color: var(--color-nex-ink-soft); line-height: 1.65; }
.nex-review-note p strong { color: var(--color-nex-ink); }
.nex-review-note > div { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.nex-review-note a { min-height: 2.75rem; display: inline-flex; align-items: center; font-size: 0.8rem; font-weight: 600; text-underline-offset: 0.3em; white-space: nowrap; }

.nex-boundaries { color: var(--color-nex-light-ink); background: var(--color-nex-light-paper); }
.nex-boundaries-heading > p { color: var(--color-nex-light-body); }
.nex-faq { max-width: 70rem; margin-inline-start: auto; }
.nex-faq details { border-block-start: 1px solid color-mix(in oklch, var(--color-nex-light-ink) 18%, transparent); }
.nex-faq details:last-child { border-block-end: 1px solid color-mix(in oklch, var(--color-nex-light-ink) 18%, transparent); }
.nex-faq summary { min-height: 4.5rem; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: var(--space-4); padding-block: var(--space-4); font-family: var(--font-nex-display); font-size: clamp(1.15rem, 4vw, 1.55rem); font-weight: 700; cursor: pointer; list-style: none; }
.nex-faq summary::-webkit-details-marker { display: none; }
.nex-faq summary span { font-family: var(--font-nex-body); font-weight: 400; transition: transform var(--dur-nex-short) var(--ease-in-out); }
.nex-faq details[open] summary span { transform: rotate(45deg); }
.nex-faq details p { max-width: 52rem; margin: 0; padding: 0 0 var(--space-6); color: var(--color-nex-light-body); line-height: 1.65; }

.nex-final-cta { display: grid; background: var(--color-nex-paper-deep); }
.nex-final-cta__visual { min-height: 58svh; overflow: clip; border-block-end: 1px solid var(--color-nex-rule); }
.nex-final-cta__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: contrast(1.08) saturate(0.85); transition: transform 1.2s var(--ease-out); }
.nex-final-cta__copy { align-self: center; padding: 7rem 1.25rem; }
.nex-final-cta__copy h2 { max-width: 10ch; margin: 0; font-family: var(--font-heading); font-size: clamp(3.2rem, 12vw, 4rem); font-weight: 700; letter-spacing: -0.065em; line-height: 0.92; }
.nex-final-cta__copy > p { max-width: 38rem; margin: var(--space-6) 0 var(--space-7); color: var(--color-nex-ink-soft); font-size: 1.05rem; line-height: 1.65; }
.nex-primary-action { width: max-content; }
.nex-email-action { display: flex; width: max-content; min-height: 2.75rem; align-items: center; margin-block-start: var(--space-3); color: var(--color-nex-ink-soft); font-size: 0.8rem; text-decoration-thickness: 1px; text-underline-offset: 0.3em; white-space: nowrap; }

.nex-footer {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-6) 1.25rem max(var(--space-6), env(safe-area-inset-bottom));
  border-block-start: 1px solid var(--color-nex-rule);
  color: var(--color-nex-ink-muted);
  background: var(--color-nex-paper-deep);
  font-size: 0.76rem;
}
.nex-footer p { max-width: 32rem; margin: 0; line-height: 1.55; }
.nex-footer > div { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); }
.nex-footer > div a { min-height: 2.75rem; display: inline-flex; align-items: center; color: var(--color-nex-ink); text-decoration: none; white-space: nowrap; }
.nex-footer > div span { align-self: center; }

@media (hover: hover) and (pointer: fine) {
  .nex-capability:hover { background: var(--color-nex-paper-raised); }
  .nex-final-cta__visual:hover img { transform: scale(1.025); }
  .nex-nav-links a:hover,
  .nex-email-action:hover,
  .nex-footer a:hover,
  .nex-review-note a:hover { color: var(--color-nex-signal-hot); }
}

@media (min-width: 42rem) {
  .nex-site-nav { min-height: 5.25rem; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); padding-inline: 3vw; }
  .nex-nav-links { display: flex; align-items: center; gap: var(--space-5); }
  .nex-nav-links a { min-height: 2.75rem; display: inline-flex; align-items: center; color: var(--color-nex-ink-soft); font-size: 0.75rem; text-decoration: none; white-space: nowrap; }
  .nex-nav-cta { justify-self: end; padding-inline: var(--space-4); }
  .nex-nav-cta span { display: inline; }
  .nex-brand { gap: var(--space-3); font-size: 0.75rem; letter-spacing: 0.2em; }
  .nex-brand img { width: 1.65rem; height: 1.65rem; }
  .nex-story { height: 520svh; min-height: 210rem; }
  .nex-corner-data { inset-block-start: 6.5rem; }
  .nex-process-track { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .nex-process-track li { padding: var(--space-6) var(--space-4) var(--space-7); border-block-end: 0; border-inline-end: 1px solid var(--color-nex-rule); }
  .nex-process-track li:last-child { border-inline-end: 0; }
  .nex-process-track li::before { inset-inline-start: var(--space-4); }
  .nex-process-track h3 { font-size: 1.3rem; }
  .nex-review-note { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
  .nex-final-cta__copy { padding: 8rem 7vw; }
  .nex-footer { grid-template-columns: auto minmax(12rem, 1fr); align-items: center; }
  .nex-footer > div { grid-column: 1 / -1; }
}

@media (min-width: 62rem) {
  .nex-intro-skip { inset-inline-end: 3vw; }
  .nex-handoff-flow { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr); align-items: stretch; }
  .nex-handoff-flow > i { width: 3rem; height: 1px; align-self: center; }
  .nex-media-vignette { background: linear-gradient(90deg, var(--color-nex-overlay) 0%, transparent 28%, transparent 72%, var(--color-nex-overlay) 100%), linear-gradient(180deg, var(--color-nex-overlay-soft), transparent 25%, transparent 72%, var(--color-nex-overlay) 100%); }
  .nex-poster,
  #nex-story-video { object-position: center center; }
  .nex-story-panel,
  .nex-story-panel--right,
  .nex-story-panel--lower,
  .nex-story-panel--resolved {
    inset: 27% auto auto clamp(2rem, 5vw, 6rem);
    width: min(31rem, 34vw);
    padding: 0 0 0 var(--space-5);
    border-block-end: 0;
    border-inline-start: 1px solid var(--color-nex-rule-strong);
    text-align: start;
  }
  .nex-story-panel--right,
  .nex-story-panel--resolved {
    inset: 29% clamp(2rem, 5vw, 6rem) auto auto;
    padding: 0 var(--space-5) 0 0;
    border-inline: 0 1px solid var(--color-nex-rule-strong);
    text-align: end;
  }
  .nex-story-panel--lower { inset-block: auto 18%; }
  .nex-story-panel--resolved { inset-block-start: 30%; }
  .nex-story-panel--right h2,
  .nex-story-panel--right > p:not(.nex-panel-kicker),
  .nex-story-panel--resolved h2,
  .nex-story-panel--resolved > p:not(.nex-panel-kicker) { margin-inline-start: auto; }
  .nex-story-panel--right .nex-signal-tags { justify-content: flex-end; }
  .nex-story-panel h1,
  .nex-story-panel h2 { font-size: clamp(2.4rem, 3.6vw, 4.8rem); }
  .nex-story-panel > p:not(.nex-panel-kicker) { font-size: 1rem; }
  .nex-story-telemetry { inset: auto 3vw 3vh; grid-template-columns: minmax(12rem, 22rem) minmax(0, 1fr); align-items: end; gap: var(--space-5); }
  .nex-corner-data--left { inset-inline-start: 3vw; }
  .nex-corner-data--right { inset-inline-end: 3vw; }
  .nex-capabilities,
  .nex-process,
  .nex-handoff,
  .nex-boundaries { padding-inline: 4vw; }
  .nex-section-heading,
  .nex-process-heading,
  .nex-handoff-heading,
  .nex-boundaries-heading { grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.55fr); align-items: end; gap: 6vw; }
  .nex-capability-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; }
  .nex-capability--wide { grid-column: span 7; }
  .nex-capability--narrow { grid-column: span 5; }
  .nex-capability--full { grid-column: span 12; }
  .nex-capability button { min-height: 7rem; grid-template-columns: 2.5rem minmax(0, 1fr) 2rem; padding: var(--space-5) var(--space-6); }
  .nex-capability-body > div { padding: 0 var(--space-6) var(--space-6) 5.5rem; }
  .nex-context-scene { padding-inline: 6vw; }
  .nex-context-scene__image { object-position: center; }
  .nex-control-statement { grid-template-columns: minmax(0, 1fr) minmax(30rem, 0.9fr); gap: 7vw; }
  .nex-faq { width: 72%; }
  .nex-final-cta { min-height: 100svh; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .nex-final-cta__visual { min-height: 100svh; border-block-end: 0; border-inline-end: 1px solid var(--color-nex-rule); }
  .nex-footer { grid-template-columns: auto minmax(16rem, 1fr) minmax(0, 2fr); padding-inline: 4vw; }
  .nex-footer p { justify-self: center; text-align: center; }
  .nex-footer > div { grid-column: auto; justify-content: flex-end; }
}

@media (min-width: 90rem) {
  .nex-story-panel > p:not(.nex-panel-kicker) { font-size: 1.08rem; }
  .nex-process-track h3 { font-size: 1.5rem; }
}

@media (pointer: coarse) {
  .nex-nav-cta,
  .nex-nav-links a,
  .nex-primary-action,
  .nex-intro-skip,
  .nex-email-action,
  .nex-footer a,
  .nex-review-note a,
  .nex-capability button,
  .nex-faq summary { min-height: 2.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nex-motion *,
  .nex-motion *::before,
  .nex-motion *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .nex-story { height: auto; min-height: 100svh; }
  .nex-stage { position: relative; }
  #nex-story-video { display: none; }
  .nex-poster { opacity: 1 !important; content: url("../images/nex-medallion-reveal.png"); }
  .nex-opening-mark,
  .nex-story-telemetry,
  .nex-corner-data,
  .nex-story-panel:not(.nex-story-panel--resolved) { display: none; }
  .nex-site-nav { opacity: 1 !important; }
  .nex-story-panel--resolved { --panel-opacity: 1 !important; --panel-shift: 0 !important; }
}
