:root[data-experience="native-stack"] {
  --header-height: 5.25rem;
  --viewport-footer-rail-height: 0rem;
  --native-hero-space: clamp(0.75rem, 1.6svh, 1rem);
  --orange-clip: 0%;
  --filter-clip: 0%;
  --analysis-opacity: 1;
  --analysis-copy-opacity: 1;
  --stress-opacity: 0.78;
  --awareness-opacity: 1;
  --intent-opacity: 1;
  --earnings-context-opacity: 1;
  --analysis-hero-line-1-opacity: 1;
  --analysis-hero-line-2-opacity: 1;
  --analysis-hero-line-3-opacity: 1;
  --dissolve-line-1-opacity: 1;
  --dissolve-line-3-opacity: 1;
  --section02-opening-line-2-opacity: 1;
  --section02-opening-line-3-opacity: 1;
  --section02-dawning-line-2-opacity: 1;
  --section02-dawning-line-3-opacity: 1;
  --section02-hardware-line-2-opacity: 1;
  --section02-hardware-line-3-opacity: 1;
  --section02-science-line-2-opacity: 1;
  --section02-science-line-3-opacity: 1;
  --section03-line-2-opacity: 1;
  --section03-line-3-opacity: 1;
  --section04-line-2-opacity: 1;
  --section04-line-3-opacity: 1;
}

html[data-experience="native-stack"],
html[data-experience="native-stack"][data-opening-viewport-locked="true"] {
  height: auto !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scroll-behavior: auto;
  scroll-snap-type: y proximity !important;
  scrollbar-color: color-mix(in srgb, var(--ink) 78%, transparent)
    color-mix(in srgb, var(--ink) 10%, var(--page));
  scrollbar-width: auto;
}

html[data-experience="native-stack"]::-webkit-scrollbar {
  width: 14px;
}

html[data-experience="native-stack"]::-webkit-scrollbar-track {
  border-left: 0.5px solid var(--hairline);
  background: color-mix(in srgb, var(--ink) 8%, var(--page));
}

html[data-experience="native-stack"]::-webkit-scrollbar-thumb {
  min-height: 4rem;
  border: 3px solid color-mix(in srgb, var(--ink) 8%, var(--page));
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
}

html[data-experience="native-stack"]::-webkit-scrollbar-thumb:hover {
  background: var(--ink);
}

html[data-experience="native-stack"] body {
  height: auto !important;
  overflow: visible !important;
}

html[data-experience="native-stack"] body::after {
  display: none;
}

html[data-experience="native-stack"] .site-header {
  position: sticky !important;
  top: 0;
  grid-template-columns: minmax(0, 1fr) clamp(8.25rem, 11vw, 10.5rem);
  background: color-mix(in srgb, var(--page) 96%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

html[data-experience="native-stack"] .section-nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(8.25rem, 1fr));
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

html[data-experience="native-stack"] .section-nav::-webkit-scrollbar {
  display: none;
}

html[data-experience="native-stack"] .section-nav span {
  font-size: clamp(0.5rem, 0.55vw, 0.6rem);
}

html[data-experience="native-stack"] .section-nav strong {
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  line-height: 1.2;
}

html[data-experience="native-stack"] .section-nav__menu button > strong {
  font-size: clamp(0.75rem, 0.78vw, 0.84rem);
}

html[data-experience="native-stack"] main > section[id] {
  scroll-margin-top: var(--header-height) !important;
}

html[data-experience="native-stack"] :is(
  .scroll-story,
  .history-story--section02,
  .section03-story,
  .section04-story,
  .safe-harbor,
  .team-section,
  .faq,
  #account-access
) {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

html[data-experience="native-stack"] :is(
  .section-progress,
  .opening-scroll-cue,
  .opening-gesture-note,
  .section02-scroll-cue,
  .section03-scroll-cue,
  .section04-scroll-cue
) {
  display: none !important;
}

/* Hide leftover scrolly stages until native plates exist. Header/nav stay
   visible. Fail-open when data-native-boot="failed" (HEAD 2s timeout). */
html[data-experience="native-stack"]:not([data-native-boot="failed"]) :is(
  .story-sticky,
  .history-stage,
  .section03-stage,
  .section04-stage
):not([data-native-plates="ready"]) {
  visibility: hidden;
}

/* Section 01: the authored sequence is present immediately instead of being staged by wheel input. */
html[data-experience="native-stack"] .story-sticky {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  background: var(--page) !important;
}

html[data-experience="native-stack"] .story-sticky::before {
  display: none;
}

html[data-experience="native-stack"] .story-copy {
  position: relative !important;
  display: grid;
  width: 100% !important;
  min-height: 0 !important;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: 0 !important;
  pointer-events: auto !important;
}

html[data-experience="native-stack"] .story-sticky[data-native-plates="ready"] > .story-copy {
  display: none !important;
}

html[data-experience="native-stack"] .native-section01-plates {
  display: grid;
  width: 100%;
}

html[data-experience="native-stack"] .native-section01-plate {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  grid-template-rows: auto minmax(0, 1fr);
  row-gap: clamp(1rem, 2.5svh, 1.5rem);
  padding: 0 var(--gutter);
  overflow: hidden;
  border-bottom: 0.5px solid var(--hairline);
  background: var(--page);
}

html[data-experience="native-stack"] .native-section01-plate--overview {
  --native-section01-opening-shift: 0px;
  --native-section01-analysis-shift: 0px;

  height: calc(100svh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: var(--native-hero-space);
  padding-top: var(--native-hero-space);
  padding-bottom: max(
    calc(2.35rem + var(--native-hero-space)),
    calc(env(safe-area-inset-bottom) + var(--native-hero-space))
  );
}

html[data-experience="native-stack"] .native-section01-pair {
  display: grid;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr);
  row-gap: clamp(0.5rem, 1svh, 0.75rem);
}

html[data-experience="native-stack"] .native-section01-plate--overview > .story-beat :is(h1, h2) {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(1.6rem, min(2.35vw, 4.8svh), 2.8rem) !important;
  line-height: 1.02 !important;
  text-wrap: wrap;
}

html[data-experience="native-stack"] .native-section01-plate--overview > .story-beat {
  min-width: 0;
}

html[data-experience="native-stack"] .native-section01-plate--overview > .story-beat:first-child {
  transform: translateY(var(--native-section01-opening-shift)) !important;
}

html[data-experience="native-stack"] .native-section01-plate--overview > .story-beat:last-child {
  transform: translateY(var(--native-section01-analysis-shift)) !important;
}

html[data-experience="native-stack"] :is(
  .native-section01-opening-heading > span,
  .native-section01-analysis-copy .story-beat__sequence-line
) {
  display: block;
}

html[data-experience="native-stack"] .native-section01-analysis-copy {
  align-self: end !important;
}

html[data-experience="native-stack"] .native-section01-comparison {
  --native-section01-core-width: 75%;
  --native-section01-core-background-width: 75cqw;

  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto auto;
  align-content: center;
  container-type: size;
  transform: none;
}

html[data-experience="native-stack"] .native-section01-comparison__visual,
html[data-experience="native-stack"] .native-section01-comparison__control {
  position: relative;
  width: min(100cqw, calc(350cqh - 4.95rem));
  max-width: 100%;
  justify-self: start;
}

html[data-experience="native-stack"] .native-section01-comparison__visual {
  align-self: center;
  aspect-ratio: 4.6666667 / 1;
  overflow: visible;
  border-block: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
  container-type: size;
}

/* A narrow fine-pointer aperture can still be very tall. In that composition,
   spend the available middle field on the infographic instead of centering a
   short width-derived strip inside four large bands of empty space. All signal
   layers and continuation rails retain one shared registration scale. */
@media (hover: hover) and (pointer: fine) {
  html[data-experience="native-stack"] .native-section01-comparison__visual {
    /* visual = (available field - control) / 1.3, so the combined
       negative space remains approximately 30% of the infographic height */
    min-height: max(0px, calc(76.923cqh - 3.942rem));
  }
}

html[data-experience="native-stack"] .native-section01-comparison__layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

html[data-experience="native-stack"] .native-section01-comparison__layer::before,
html[data-experience="native-stack"] .native-section01-comparison__layer::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc((100% - var(--native-section01-core-width)) / 2);
  background-repeat: no-repeat;
  background-size: var(--native-section01-core-background-width) 100%;
  content: "";
  pointer-events: none;
}

html[data-experience="native-stack"] .native-section01-comparison__layer::before {
  left: 0;
  background-position: left center;
  transform: scaleX(-1);
}

html[data-experience="native-stack"] .native-section01-comparison__layer::after {
  right: 0;
  background-position: right center;
  transform: scaleX(-1);
}

html[data-experience="native-stack"] .native-section01-comparison__layer--base::before,
html[data-experience="native-stack"] .native-section01-comparison__layer--base::after {
  background-image: url("./webv2-assets/waveform/vector/light/blue.svg");
  filter:
    var(--signal-blue-treatment)
    drop-shadow(0.38px 0 0 var(--blue))
    drop-shadow(-0.38px 0 0 var(--blue));
}

html[data-experience="native-stack"] .native-section01-comparison__layer--analysis::before,
html[data-experience="native-stack"] .native-section01-comparison__layer--analysis::after {
  background-image: url("./webv2-assets/waveform/vector/light/orange.svg");
  filter:
    var(--signal-orange-treatment)
    drop-shadow(0.34px 0 0 var(--orange))
    drop-shadow(-0.34px 0 0 var(--orange));
}

html[data-experience="native-stack"] .native-section01-comparison__layer--analysis {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--native-section01-reveal)) 0 0);
}

html[data-experience="native-stack"] .native-section01-comparison__layer--base {
  z-index: 1;
}

html[data-experience="native-stack"] .native-section01-comparison__layer > .signal-figure {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: var(--native-section01-core-width) !important;
  height: 100% !important;
  aspect-ratio: 3.5 / 1 !important;
  margin: 0 !important;
  overflow: visible;
  border: 0 !important;
  transform: translateX(-50%) !important;
}

/* The per-word score callout belongs to the staged analysis sequence, not this
   manual comparison. Its clipped label and triangle read as an orphaned box. */
html[data-experience="native-stack"] .native-section01-comparison .stress-annotations {
  display: none !important;
}

html[data-experience="native-stack"] .native-section01-comparison__edge {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--native-section01-reveal);
  width: 1px;
  background: var(--ink);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--page) 76%, transparent);
  pointer-events: none;
}

html[data-experience="native-stack"] .native-section01-comparison__handle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: clamp(2.3rem, var(--native-section01-reveal), calc(100% - 2.3rem));
  display: grid;
  width: 4.62rem;
  height: 4.62rem;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 0;
  background: color-mix(in srgb, var(--orange) 16%, var(--page-raised));
  color: var(--orange);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--orange) 42%, transparent),
    0 0 1.35rem color-mix(in srgb, var(--orange) 58%, transparent);
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
  animation: native-mic-pulse 1.7s ease-in-out infinite;
}

html[data-experience="native-stack"] .native-section01-comparison.is-dragging {
  cursor: ew-resize;
  user-select: none;
}

html[data-experience="native-stack"] .native-section01-comparison__microphone {
  width: 2.56rem;
  height: 2.56rem;
  overflow: visible;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

html[data-experience="native-stack"] .native-section01-comparison__control {
  display: grid;
  min-height: 3.9rem;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  padding: 0.8rem clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
  background: color-mix(in srgb, var(--ink) 3%, var(--page));
  color: var(--ink);
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  font-weight: 560;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

html[data-experience="native-stack"] .native-section01-comparison__instruction {
  display: grid;
  gap: 0.22rem;
  padding: 0.46rem 0.62rem;
  border: 1px solid color-mix(in srgb, var(--orange) 42%, transparent);
  background: color-mix(in srgb, var(--orange) 8%, var(--page-raised));
  color: var(--orange);
  box-shadow: 0 0 0.8rem color-mix(in srgb, var(--orange) 22%, transparent);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

html[data-experience="native-stack"] .native-section01-comparison__control:is(:hover, :focus-within) .native-section01-comparison__instruction {
  border-color: color-mix(in srgb, var(--orange) 78%, var(--ink));
  background: color-mix(in srgb, var(--orange) 12%, var(--page-raised));
  box-shadow: 0 0 1.25rem color-mix(in srgb, var(--orange) 48%, transparent);
}

html[data-experience="native-stack"] .native-section01-comparison__instruction-main {
  font-weight: 620;
}

html[data-experience="native-stack"] .native-section01-comparison__instruction-main em {
  font-style: italic;
}

html[data-experience="native-stack"] .native-section01-comparison__instruction-detail {
  font-size: 0.88em;
  font-weight: 400;
  letter-spacing: 0.095em;
}

html[data-experience="native-stack"] .native-section01-comparison__slider {
  width: 100%;
  height: 2.2rem;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(
      to right,
      color-mix(in srgb, var(--cyan) 72%, var(--ink)) var(--native-section01-reveal, 0%),
      color-mix(in srgb, var(--ink) 42%, transparent) var(--native-section01-reveal, 0%)
    );
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 4px;
  cursor: ew-resize;
}

html[data-experience="native-stack"] .native-section01-comparison__slider:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

html[data-experience="native-stack"] .native-section01-comparison__slider::-webkit-slider-runnable-track {
  height: 4px;
  border: 0;
  background: color-mix(in srgb, var(--ink) 48%, transparent);
}

html[data-experience="native-stack"] .native-section01-comparison__slider::-webkit-slider-thumb {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: -0.55rem;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--page);
  box-shadow: 0 0 0.55rem color-mix(in srgb, var(--cyan) 45%, transparent);
}

html[data-experience="native-stack"] .native-section01-comparison__slider::-moz-range-track {
  height: 4px;
  border: 0;
  background: color-mix(in srgb, var(--ink) 48%, transparent);
}

html[data-experience="native-stack"] .native-section01-comparison__slider::-moz-range-thumb {
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: var(--page);
  box-shadow: 0 0 0.55rem color-mix(in srgb, var(--cyan) 45%, transparent);
}

html[data-experience="native-stack"] .native-section01-comparison__output {
  display: none !important;
}

@keyframes native-mic-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--orange) 42%, transparent),
      0 0 0.7rem color-mix(in srgb, var(--orange) 38%, transparent);
  }
  50% {
    box-shadow:
      0 0 0 2px color-mix(in srgb, var(--orange) 70%, transparent),
      0 0 1.85rem color-mix(in srgb, var(--orange) 72%, transparent);
  }
}

html[data-experience="native-stack"] :is(
  .native-section01-plate,
  .native-section01-pair
) > .story-beat {
  z-index: 2;
  align-self: start;
}

html[data-experience="native-stack"] :is(
  .native-section01-plate,
  .native-section01-pair
) > .story-beat :is(h1, h2) {
  width: 100%;
  max-width: none !important;
  margin: 0;
  text-wrap: wrap;
}

html[data-experience="native-stack"] .story-beat {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  pointer-events: auto !important;
}

html[data-experience="native-stack"] .story-beat[data-beat="0"] {
  display: none !important;
}

html[data-experience="native-stack"] .story-beat :is(h1, h2) {
  max-width: 22ch !important;
  font-size: clamp(2.5rem, 5.2vw, 6rem) !important;
  line-height: 0.96 !important;
  white-space: normal !important;
}

html[data-experience="native-stack"] .story-beat[data-beat="2"] :is(h1, h2),
html[data-experience="native-stack"] .story-beat[data-beat="3"] :is(h1, h2) {
  font-size: clamp(2.25rem, 4.35vw, 5rem) !important;
}

html[data-experience="native-stack"] :is(
  .native-section01-pair--opening,
  .native-section01-pair--analysis,
  .native-section01-plate--closing
) > .story-beat :is(h1, h2) {
  font-size: clamp(2rem, min(3.2vw, 5svh), 3.5rem) !important;
}

html[data-experience="native-stack"] .native-section01-plate--overview > .story-beat[data-beat] :is(h1, h2) {
  font-size: clamp(1.6rem, min(2.35vw, 4.8svh), 2.8rem) !important;
  line-height: 1.02 !important;
}

@media (min-width: 56.3125rem) {
  html[data-experience="native-stack"] :is(
    .native-section01-opening-heading > span,
    .native-section01-analysis-copy .story-beat__sequence-line
  ) {
    white-space: nowrap !important;
  }
}

@media (min-width: 106.25rem) and (max-height: 47.5rem) {
  html[data-experience="native-stack"] .native-section01-comparison {
    --native-section01-core-width: 44.444444%;
    --native-section01-core-background-width: 44.444444cqw;
  }

  html[data-experience="native-stack"] .native-section01-comparison__visual,
  html[data-experience="native-stack"] .native-section01-comparison__control {
    width: 100%;
    max-width: 100%;
  }

  html[data-experience="native-stack"] .native-section01-comparison__visual {
    aspect-ratio: 7.875 / 1;
  }

  html[data-experience="native-stack"] .native-section01-plate--closing {
    row-gap: 0.5rem;
  }

  html[data-experience="native-stack"] .native-section01-plate--closing > .story-beat :is(h1, h2) {
    font-size: clamp(1.45rem, 3.4svh, 1.6rem) !important;
  }
}

@media (min-width: 106.25rem) and (min-height: 47.5625rem) and (max-height: 56rem) {
  html[data-experience="native-stack"] .native-section01-comparison {
    --native-section01-core-width: 39.43662%;
    --native-section01-core-background-width: 39.43662cqw;
  }

  html[data-experience="native-stack"] .native-section01-comparison__visual,
  html[data-experience="native-stack"] .native-section01-comparison__control {
    width: 100%;
    max-width: 100%;
  }

  html[data-experience="native-stack"] .native-section01-comparison__visual {
    aspect-ratio: 8.875 / 1;
  }
}

@media (min-width: 50.0625rem) {
  html[data-experience="native-stack"] .native-section01-plate--analysis .story-beat__sequence {
    width: 100%;
    max-width: none !important;
  }

  html[data-experience="native-stack"] .story-beat__sequence-line--analysis-three {
    white-space: nowrap !important;
  }
}

html[data-experience="native-stack"] .story-beat :is(span, em) {
  opacity: 1 !important;
  transform: none !important;
}

html[data-experience="native-stack"] .story-beat__sequence-line--closing-three {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-top: 0.75em !important;
  text-align: left !important;
}

html[data-experience="native-stack"] .signal-figure {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  width: 100% !important;
  height: clamp(18rem, 34vw, 34rem) !important;
  aspect-ratio: auto !important;
  margin: clamp(3rem, 6vw, 6rem) 0 0 !important;
  overflow: hidden;
  border-block: 0.5px solid var(--hairline);
  transform: none !important;
}

html[data-experience="native-stack"] :is(
  .native-section01-plate,
  .native-section01-pair
) > .signal-figure {
  align-self: center;
  height: auto !important;
  aspect-ratio: 3.5 / 1 !important;
  margin: 0 !important;
}

html[data-experience="native-stack"] .native-section01-plate--overview .signal-layer {
  object-fit: fill;
}

html[data-experience="native-stack"] .native-signal-figure--opening :is(
  .signal-layer--stress,
  .stress-annotations,
  .signal-lens,
  [data-health-cycle]
),
html[data-experience="native-stack"] .native-signal-figure--closing :is(
  .signal-layer--orange-full,
  .signal-layer--stress,
  .stress-annotations,
  .signal-lens,
  [data-health-cycle]
) {
  display: none !important;
}

html[data-experience="native-stack"] .native-section01-plate--closing .story-beat__sequence-line--closing-three {
  width: 100%;
  text-align: center !important;
}

html[data-experience="native-stack"] .signal-layer--orange-full {
  clip-path: inset(0) !important;
  opacity: 1 !important;
}

html[data-experience="native-stack"] :is(.signal-layer--stress, .stress-annotation) {
  opacity: 0.78 !important;
}

html[data-experience="native-stack"] .signal-lens {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(0.88) !important;
}

html[data-experience="native-stack"] .health-cycle--parkinsons {
  --health-marker-opacity: 1 !important;
  --health-marker-scale: 1 !important;
  --health-marker-y: 0rem !important;
  --health-matches-opacity: 1 !important;
  --health-target-opacity: 1 !important;
  --health-tether-height: 6rem !important;
  --health-tether-opacity: 1 !important;
}

html[data-experience="native-stack"] .native-section01-pair--analysis .stress-annotation__label {
  top: 18% !important;
}

html[data-experience="native-stack"] .native-section01-pair--analysis .stress-annotation::after {
  top: calc(18% + 1.5rem) !important;
}

html[data-experience="native-stack"] .analysis-actions {
  opacity: 1 !important;
  pointer-events: auto !important;
}

html[data-experience="native-stack"] .analysis-action__cue {
  top: 1rem !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Shared editorial rows for Sections 02 through 04. */
html[data-experience="native-stack"] :is(
  .history-sticky,
  .section03-sticky,
  .section04-sticky
) {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  background: var(--page) !important;
}

html[data-experience="native-stack"] :is(
  .history-stage,
  .section03-stage,
  .section04-stage
) {
  position: relative !important;
  display: grid !important;
  height: auto !important;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.45fr);
  column-gap: clamp(2rem, 5vw, 6rem);
  row-gap: 0;
  padding: clamp(4.5rem, 8vw, 8rem) var(--gutter);
}

html[data-experience="native-stack"] :is(
  .history-copy,
  .history-visuals,
  .section03-copy,
  .section03-visuals,
  .section04-copy,
  .section04-visuals
) {
  position: static !important;
  inset: auto !important;
  display: contents !important;
  min-height: 0 !important;
}

html[data-experience="native-stack"] :is(
  .history-beat,
  .history-scene,
  .section03-beat,
  .section03-scene,
  .section04-beat,
  .section04-scene
) {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
  pointer-events: auto !important;
  will-change: auto !important;
}

html[data-experience="native-stack"] :is(
  .history-beat,
  .section03-beat,
  .section04-beat
) {
  align-self: start;
  padding: 1.25rem 0 clamp(5rem, 10vw, 9rem);
  border-top: 0.5px solid var(--hairline);
}

html[data-experience="native-stack"] :is(
  .history-beat h2,
  .section03-thesis,
  .section04-thesis
) {
  max-width: 18ch !important;
  font-size: clamp(2rem, 3.25vw, 4rem) !important;
  line-height: 1 !important;
  text-wrap: pretty;
}

html[data-experience="native-stack"] :is(
  .history-beat h2 span,
  .section03-thesis span,
  .section04-thesis span
) {
  opacity: 1 !important;
  transform: none !important;
}

html[data-experience="native-stack"] :is(
  .history-scene,
  .section03-scene,
  .section04-scene
) {
  min-height: clamp(28rem, 42vw, 40rem);
  align-self: start;
  margin-bottom: clamp(5rem, 10vw, 9rem) !important;
  overflow: hidden !important;
  border-top: 0.5px solid var(--hairline);
  background: color-mix(in srgb, var(--page-raised) 72%, transparent);
}

html[data-experience="native-stack"] .history-section-number {
  top: 2rem !important;
}

html[data-experience="native-stack"] .section02-beat:nth-child(1),
html[data-experience="native-stack"] .section02-scene--domino,
html[data-experience="native-stack"] .section03-beat[data-section03-beat="0"],
html[data-experience="native-stack"] .section03-scene[data-section03-scene="0"],
html[data-experience="native-stack"] .section04-beat[data-section04-beat="0"],
html[data-experience="native-stack"] .section04-scene[data-section04-scene="0"] { grid-row: 1; }

html[data-experience="native-stack"] .section02-beat:nth-child(2),
html[data-experience="native-stack"] .section02-scene--dawning,
html[data-experience="native-stack"] .section03-beat[data-section03-beat="1"],
html[data-experience="native-stack"] .section03-scene[data-section03-scene="1"],
html[data-experience="native-stack"] .section04-beat[data-section04-beat="1"],
html[data-experience="native-stack"] .section04-scene[data-section04-scene="1"] { grid-row: 2; }

html[data-experience="native-stack"] .section02-beat:nth-child(3),
html[data-experience="native-stack"] .section02-scene--hardware,
html[data-experience="native-stack"] .section03-beat[data-section03-beat="2"],
html[data-experience="native-stack"] .section03-scene[data-section03-scene="2"],
html[data-experience="native-stack"] .section04-beat[data-section04-beat="2"],
html[data-experience="native-stack"] .section04-scene[data-section04-scene="2"] { grid-row: 3; }

html[data-experience="native-stack"] .section02-beat:nth-child(4),
html[data-experience="native-stack"] .section02-scene--science,
html[data-experience="native-stack"] .section03-beat[data-section03-beat="3"],
html[data-experience="native-stack"] .section03-scene[data-section03-scene="3"],
html[data-experience="native-stack"] .section04-beat[data-section04-beat="3"],
html[data-experience="native-stack"] .section04-scene[data-section04-scene="3"] { grid-row: 4; }

html[data-experience="native-stack"] .section03-beat[data-section03-beat="4"],
html[data-experience="native-stack"] .section03-scene[data-section03-scene="4"] { grid-row: 5; }

html[data-experience="native-stack"] :is(
  .section02-beat,
  .section03-beat,
  .section04-beat
) {
  grid-column: 1;
}

html[data-experience="native-stack"] :is(
  .section02-scene,
  .section03-scene,
  .section04-scene
) {
  grid-column: 2;
}

html[data-experience="native-stack"] .section02-domino-hero {
  width: 100% !important;
  height: auto !important;
  align-self: start;
  justify-self: start;
}

html[data-experience="native-stack"] .section02-scene--dawning {
  display: none !important;
}

html[data-experience="native-stack"] .section02-scene--hardware {
  min-height: 46rem;
}

html[data-experience="native-stack"] .section02-scene--science {
  min-height: 35rem;
  overflow: hidden !important;
}

html[data-experience="native-stack"] .section02-dawning,
html[data-experience="native-stack"] .section02-hardware-continuum,
html[data-experience="native-stack"] .section02-science-explorer {
  height: 100% !important;
}

html[data-experience="native-stack"] :is(
  .section03-logo-wall figure,
  [data-section03-funding-card],
  .section03-capability-evidence,
  .section03-capability-evidence a
) {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

html[data-experience="native-stack"] .section03-scene--target {
  min-height: 46rem;
}

html[data-experience="native-stack"] .section04-scene--origin {
  min-height: 38rem;
}

html[data-experience="native-stack"] .section04-filter-composite {
  position: relative !important;
  inset: auto !important;
  width: 100%;
  height: 100%;
}

html[data-experience="native-stack"] .section04-filter-layer--orange {
  clip-path: inset(0) !important;
  opacity: 1 !important;
}

/* The remaining sections already use ordinary document flow; remove viewport-sized staging. */
html[data-experience="native-stack"] :is(.section-grid, .team-section) {
  min-height: 0 !important;
  padding-top: clamp(4.5rem, 8vw, 8rem) !important;
  padding-bottom: clamp(4.5rem, 8vw, 8rem) !important;
}

html[data-experience="native-stack"] #why-it-matters.safe-harbor {
  grid-template-rows: auto auto;
  min-height: calc(100svh - var(--header-height)) !important;
  padding-top: clamp(2rem, 6svh, 3.15rem) !important;
  padding-bottom: clamp(2rem, 6svh, 3.15rem) !important;
}

html[data-experience="native-stack"] .safe-harbor blockquote {
  align-self: start;
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: 0;
}

html[data-experience="native-stack"] #for-agents.team-section {
  grid-template-rows: auto auto auto;
  min-height: calc(100svh - var(--header-height)) !important;
  padding-top: clamp(2rem, 6svh, 3.15rem) !important;
  padding-bottom: clamp(2rem, 6svh, 3.15rem) !important;
}

html[data-experience="native-stack"] .faq .section-content {
  padding-top: 0;
  padding-bottom: 0;
}

html[data-experience="native-stack"] #account-access {
  min-height: calc(100svh - var(--header-height)) !important;
  overscroll-behavior: auto !important;
}

html[data-experience="native-stack"] .close .section-content {
  min-height: 24rem;
  justify-content: flex-start;
  padding-top: 0;
  padding-bottom: 0;
}

html[data-experience="native-stack"] .site-footer {
  position: fixed !important;
  z-index: 90;
  inset: auto auto max(0.7rem, env(safe-area-inset-bottom)) max(0.7rem, env(safe-area-inset-left)) !important;
  display: block;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}

html[data-experience="native-stack"] .site-footer__links {
  pointer-events: auto;
}

html[data-experience="native-stack"] .site-footer__links > :is(a, button) > strong {
  font-size: 0.6rem;
}

@media (max-width: 900px) and (hover: none), (max-width: 900px) and (pointer: coarse) {
  :root[data-experience="native-stack"] {
    --header-height: 5.125rem;
  }

  html[data-experience="native-stack"] .site-header {
    grid-template-columns: minmax(0, 1fr) 7.5rem;
  }

  html[data-experience="native-stack"] .section-nav {
    grid-template-columns: repeat(7, minmax(9rem, 10rem));
  }

  html[data-experience="native-stack"] :is(
    .history-stage,
    .section03-stage,
    .section04-stage
  ) {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 4rem;
  }

  html[data-experience="native-stack"] :is(
    .section02-beat:nth-child(1),
    .section03-beat[data-section03-beat="0"],
    .section04-beat[data-section04-beat="0"]
  ) { grid-row: 1; }

  html[data-experience="native-stack"] :is(
    .section02-scene--domino,
    .section03-scene[data-section03-scene="0"],
    .section04-scene[data-section04-scene="0"]
  ) { grid-row: 2; }

  html[data-experience="native-stack"] :is(
    .section02-beat:nth-child(2),
    .section03-beat[data-section03-beat="1"],
    .section04-beat[data-section04-beat="1"]
  ) { grid-row: 3; }

  html[data-experience="native-stack"] :is(
    .section02-scene--dawning,
    .section03-scene[data-section03-scene="1"],
    .section04-scene[data-section04-scene="1"]
  ) { grid-row: 4; }

  html[data-experience="native-stack"] :is(
    .section02-beat:nth-child(3),
    .section03-beat[data-section03-beat="2"],
    .section04-beat[data-section04-beat="2"]
  ) { grid-row: 5; }

  html[data-experience="native-stack"] :is(
    .section02-scene--hardware,
    .section03-scene[data-section03-scene="2"],
    .section04-scene[data-section04-scene="2"]
  ) { grid-row: 6; }

  html[data-experience="native-stack"] :is(
    .section02-beat:nth-child(4),
    .section03-beat[data-section03-beat="3"],
    .section04-beat[data-section04-beat="3"]
  ) { grid-row: 7; }

  html[data-experience="native-stack"] :is(
    .section02-scene--science,
    .section03-scene[data-section03-scene="3"],
    .section04-scene[data-section04-scene="3"]
  ) { grid-row: 8; }

  html[data-experience="native-stack"] .section03-beat[data-section03-beat="4"] { grid-row: 9; }
  html[data-experience="native-stack"] .section03-scene[data-section03-scene="4"] { grid-row: 10; }

  html[data-experience="native-stack"] :is(
    .section02-beat,
    .section02-scene,
    .section03-beat,
    .section03-scene,
    .section04-beat,
    .section04-scene
  ) {
    grid-column: 1;
  }

  html[data-experience="native-stack"] :is(
    .history-beat,
    .section03-beat,
    .section04-beat
  ) {
    padding-bottom: 2rem;
  }

  html[data-experience="native-stack"] :is(
    .history-scene,
    .section03-scene,
    .section04-scene
  ) {
    min-height: clamp(24rem, 72vw, 36rem);
    margin-bottom: 5rem !important;
  }

  html[data-experience="native-stack"] .section02-scene--dawning,
  html[data-experience="native-stack"] .section02-scene--hardware,
  html[data-experience="native-stack"] .section03-scene--target {
    min-height: 42rem;
  }
}

@media (max-width: 620px) and (hover: none), (max-width: 620px) and (pointer: coarse) {
  :root[data-experience="native-stack"] {
    --header-height: 5.125rem;
  }

  html[data-experience="native-stack"] .site-header {
    grid-template-columns: minmax(0, 1fr) 6.5rem;
  }

  html[data-experience="native-stack"] .site-logo {
    width: 5.6rem;
    height: 2.4rem;
  }

  html[data-experience="native-stack"] .story-beat__progressive-row {
    display: block !important;
    white-space: normal;
  }

  html[data-experience="native-stack"] .story-beat :is(span, em) {
    white-space: normal !important;
  }

  html[data-experience="native-stack"] .signal-figure {
    height: 20rem !important;
  }

  html[data-experience="native-stack"] .signal-lens {
    left: 78%;
    width: 11rem;
  }

  html[data-experience="native-stack"] .analysis-action__copy {
    display: none;
  }

  html[data-experience="native-stack"] .analysis-action__cue {
    width: 3rem !important;
    grid-template-columns: 1fr;
    padding: 0.45rem !important;
  }

  html[data-experience="native-stack"] .section02-scene--dawning,
  html[data-experience="native-stack"] .section02-scene--hardware {
    min-height: 54rem;
  }

  html[data-experience="native-stack"] .section04-scene--origin {
    min-height: 44rem;
  }
}

/* Landing-page snap: only one-viewport plates catch at their top.
   Tall pages (hardware overflow, science, team, FAQ) get no snap so
   they cannot pull back mid-roll. JS measures after layout and
   flips scroll-snap-align to none on anything taller than the frame.
   scroll-padding-top is the only header offset. */
html[data-experience="native-stack"] {
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y proximity !important;
}

html[data-experience="native-stack"] :is(
  .native-section01-plate,
  .native-section02-plate,
  .native-section03-plate,
  .native-section04-plate,
  .safe-harbor
) {
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

html[data-experience="native-stack"] :is(
  .team-section,
  .faq,
  #account-access
) {
  scroll-margin-top: 0;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

html[data-experience="native-stack"] .native-section01-plate--closing > .story-beat {
  width: 100%;
}

html[data-experience="native-stack"] .native-section01-plate--closing .story-beat__sequence--closing {
  display: grid !important;
  grid-template-rows: auto 1fr;
  min-height: clamp(14rem, 37svh, 23rem);
  width: 100%;
  max-width: none !important;
  text-align: center !important;
}

html[data-experience="native-stack"] .native-section01-plate--closing .story-beat__closing-lead,
html[data-experience="native-stack"] .native-section01-plate--closing .story-beat__sequence-line--closing-one,
html[data-experience="native-stack"] .native-section01-plate--closing .story-beat__sequence-line--closing-three {
  display: block;
  width: 100%;
  max-width: none !important;
  text-align: center !important;
}

html[data-experience="native-stack"] .native-section01-plate--closing .story-beat__sequence-line--closing-three {
  align-self: end;
  margin-top: 0 !important;
}

html[data-experience="native-stack"] .history-stage[data-native-plates="ready"] {
  display: block !important;
  padding: 0 !important;
}

html[data-experience="native-stack"] .history-stage[data-native-plates="ready"] > .history-section-number {
  display: none !important;
}

html[data-experience="native-stack"] .native-section02-plates {
  display: grid;
  width: 100%;
}

html[data-experience="native-stack"] .native-section02-plate {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  grid-template-rows: auto minmax(0, 1fr);
  padding: 0 var(--gutter);
  overflow: visible;
  border-bottom: 0.5px solid var(--hairline);
  background: var(--page);
  isolation: isolate;
}

html[data-experience="native-stack"] .native-section02-plate > :is(.section02-beat, .section02-scene) {
  grid-column: 1 !important;
  grid-row: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}

html[data-experience="native-stack"] .native-section02-plate > .section02-beat {
  position: relative;
  z-index: 2;
  padding: clamp(0.9rem, 2svh, 1.4rem) 0 clamp(1rem, 2.5svh, 1.75rem) !important;
  border-top: 0 !important;
  background: var(--page);
}

html[data-experience="native-stack"] .native-section02-plate > .section02-beat h2 {
  width: 100%;
  max-width: none !important;
  margin: 0;
  font-size: clamp(1.9rem, 2.35vw, 2.55rem) !important;
  line-height: 1.06 !important;
}

html[data-experience="native-stack"] :is(
  .native-section01-plate > .story-beat,
  .native-section02-plate > .section02-beat,
  .native-section03-plate > .section03-beat,
  .native-section04-plate > .section04-beat
) > :is(h1, h2) {
  width: 100%;
  max-width: none !important;
  text-wrap: wrap;
  overflow-wrap: normal;
}

html[data-experience="native-stack"] .native-section02-plate--domino > .section02-beat h2 {
  font-size: clamp(2.25rem, 3.2vw, 3.5rem) !important;
}

html[data-experience="native-stack"] .native-section02-plate--science > .section02-beat h2 {
  font-size: clamp(2.2rem, 3.1vw, 3.4rem) !important;
}

html[data-experience="native-stack"] .native-section02-plate > .section02-scene {
  min-height: 0;
  align-self: stretch;
  margin-bottom: 0 !important;
  overflow: hidden !important;
  border-top: 0.5px solid var(--hairline);
  background: transparent;
}

html[data-experience="native-stack"] .native-section02-plate--domino > .section02-scene {
  --section02-domino-slot-top: 0px;

  display: grid !important;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: stretch;
  overflow: hidden !important;
}

html[data-experience="native-stack"] .native-section02-plate--domino .section02-domino-hero {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 100%;
  place-self: start;
  justify-self: start;
  align-self: start;
  margin: 0 !important;
}

html[data-experience="native-stack"] .native-section02-plate--domino :is(
  .section02-domino-labels,
  .section02-terminal-label
) {
  color: color-mix(in srgb, var(--ink) 92%, transparent);
  font-size: clamp(0.74rem, 0.92vw, 1.05rem);
  font-weight: 500;
}

html[data-experience="native-stack"] .native-section02-plate--domino .section02-domino-followthrough {
  display: grid;
  gap: clamp(0.3rem, 0.65svh, 0.65rem);
  padding: clamp(1rem, 2.2svh, 1.75rem) 0 clamp(2.5rem, 6svh, 4.5rem);
}

html[data-experience="native-stack"] .native-section02-plate--domino .section02-domino-followthrough p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1.55vw, 1.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

html[data-experience="native-stack"] .native-section02-plate--domino .section02-domino-followthrough p:last-child {
  margin-top: clamp(0.45rem, 1svh, 0.9rem);
  font-weight: 600;
}

@media (min-width: 56.3125rem) and (max-height: 47.5rem) {
  html[data-experience="native-stack"] .native-section02-plate--domino .section02-domino-followthrough {
    gap: 0.15rem;
    padding: 0.45rem 0 calc(2.35rem + 0.5rem);
  }

  html[data-experience="native-stack"] .native-section02-plate--domino .section02-domino-followthrough p {
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.04;
  }

  html[data-experience="native-stack"] .native-section02-plate--domino .section02-domino-followthrough p:last-child {
    margin-top: 0.2rem;
  }
}

html[data-experience="native-stack"] .native-section02-plate--dawning > .section02-scene {
  min-height: clamp(31rem, 62svh, 38rem);
}

/* James's r321 application ledger: larger, left-led, and allowed to use the open field. */
@media (min-width: 901px) and (min-height: 761px) {
  html[data-experience="native-stack"] .native-section02-plate--dawning .section02-dawning__impact ul {
    position: static;
    width: min(100%, 72rem);
    grid-template-columns: 1fr;
    gap: clamp(0.45rem, 0.75svh, 0.65rem);
    justify-items: start;
    transform: none;
  }

  html[data-experience="native-stack"] .native-section02-plate--dawning .section02-dawning__impact li {
    width: 100%;
    font-size: clamp(1.05rem, 1.2vw, 1.22rem);
    line-height: 1.3;
    text-align: left;
  }
}

@media (min-width: 621px) and (max-width: 900px) and (min-height: 761px) {
  html[data-experience="native-stack"] .native-section02-plate--dawning .section02-dawning__impact ul {
    position: static;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.5rem;
    justify-items: start;
    transform: none;
  }

  html[data-experience="native-stack"] .native-section02-plate--dawning .section02-dawning__impact li {
    width: 100%;
    font-size: clamp(0.92rem, 1.8vw, 1.02rem);
    line-height: 1.3;
    text-align: left;
  }
}

@media (min-width: 621px) and (max-height: 760px) {
  html[data-experience="native-stack"] .native-section02-plate--dawning .section02-dawning__impact ul {
    position: static;
    left: auto;
    width: 100%;
    justify-items: start;
    transform: none;
  }

  html[data-experience="native-stack"] .native-section02-plate--dawning .section02-dawning__impact li {
    width: 100%;
    font-size: clamp(0.8rem, 0.86vw, 0.92rem);
    text-align: left;
  }
}

html[data-experience="native-stack"] .native-section02-plate--hardware > .section02-scene,
html[data-experience="native-stack"] .native-section02-plate--science > .section02-scene {
  min-height: clamp(25rem, 52svh, 32rem);
}

html[data-experience="native-stack"] .native-section02-plate--hardware .section02-hardware-continuum {
  position: relative !important;
  inset: auto !important;
  height: 100% !important;
}

html[data-experience="native-stack"] .native-section02-plate--hardware .section02-hardware-stage {
  opacity: 1 !important;
  transform: none !important;
}

html[data-experience="native-stack"] .section02-hardware-release-pair {
  position: absolute;
  z-index: 8;
  top: clamp(2.25rem, 4.8vw, 3.4rem);
  right: 0.7rem;
  left: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.3rem, 0.55vw, 0.55rem);
}

html[data-experience="native-stack"] .section02-hardware-release-pair > details {
  position: relative;
  min-width: 0;
}

html[data-experience="native-stack"] .section02-hardware-release-pair summary {
  display: grid;
  min-width: 0;
  grid-template-columns: clamp(1.4rem, 2vw, 2rem) minmax(0, 1fr);
  align-items: center;
  gap: 0.38rem;
  padding: clamp(0.3rem, 0.5vw, 0.48rem);
  border: 0.5px solid color-mix(in srgb, var(--ink) 30%, transparent);
  background: color-mix(in srgb, var(--page) 91%, transparent);
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  box-shadow: 0 0.45rem 1rem rgba(20, 22, 24, 0.08);
}

html[data-experience="native-stack"] .section02-hardware-release-pair summary::-webkit-details-marker {
  display: none;
}

html[data-experience="native-stack"] .section02-hardware-release-pair summary:hover,
html[data-experience="native-stack"] .section02-hardware-release-pair summary:focus-visible,
html[data-experience="native-stack"] .section02-hardware-release-pair details[open] summary {
  border-color: color-mix(in srgb, var(--cyan) 72%, var(--ink));
}

html[data-experience="native-stack"] .section02-hardware-release-pair img {
  width: clamp(1.4rem, 2vw, 2rem) !important;
  height: clamp(1.4rem, 2vw, 2rem) !important;
  object-fit: contain !important;
  filter: none !important;
}

html[data-experience="native-stack"] .section02-hardware-release-pair span {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  line-height: 1.05;
}

html[data-experience="native-stack"] .section02-hardware-release-pair time {
  color: var(--muted);
  font-size: clamp(0.42rem, 0.48vw, 0.54rem);
  font-weight: 520;
  letter-spacing: 0.08em;
}

html[data-experience="native-stack"] .section02-hardware-release-pair strong {
  overflow: hidden;
  font-size: clamp(0.52rem, 0.62vw, 0.68rem);
  font-weight: 650;
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html[data-experience="native-stack"] .section02-hardware-release__record {
  position: absolute;
  z-index: 12;
  top: calc(100% + 0.35rem);
  display: none;
  width: min(24rem, calc(200% + 0.55rem));
  padding: clamp(0.65rem, 0.9vw, 0.9rem);
  border: 0.5px solid color-mix(in srgb, var(--ink) 35%, transparent);
  background: color-mix(in srgb, var(--page) 97%, transparent);
  color: var(--ink);
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.58rem, 0.66vw, 0.72rem);
  line-height: 1.25;
  box-shadow: 0 0.8rem 2rem rgba(20, 22, 24, 0.14);
}

html[data-experience="native-stack"] .section02-hardware-release--google .section02-hardware-release__record {
  left: 0;
}

html[data-experience="native-stack"] .section02-hardware-release--openai .section02-hardware-release__record {
  right: 0;
}

html[data-experience="native-stack"] .section02-hardware-release:is(:hover, :focus-within, [open]) .section02-hardware-release__record {
  display: block;
}

html[data-experience="native-stack"] .section02-hardware-release__record > strong {
  display: block;
  overflow: visible;
  margin-bottom: 0.45rem;
  font-size: inherit;
  white-space: normal;
}

html[data-experience="native-stack"] .section02-hardware-release__record ul {
  display: grid;
  gap: 0.28rem;
  margin: 0 0 0.6rem;
  padding: 0 0 0 1rem;
}

html[data-experience="native-stack"] .section02-hardware-release__record a {
  color: var(--ink);
  font-size: 0.9em;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-underline-offset: 0.2rem;
}

html[data-experience="native-stack"] .native-section02-plate--science .section02-timeline-directions {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

html[data-experience="native-stack"] .section02-science-timeline {
  scrollbar-color: color-mix(in srgb, var(--ink) 78%, transparent)
    color-mix(in srgb, var(--ink) 10%, var(--page));
  scrollbar-width: auto;
}

html[data-experience="native-stack"] .section02-science-timeline::-webkit-scrollbar {
  height: 14px;
}

html[data-experience="native-stack"] .section02-science-timeline::-webkit-scrollbar-track {
  border-top: 0.5px solid var(--hairline);
  background: color-mix(in srgb, var(--ink) 8%, var(--page));
}

html[data-experience="native-stack"] .section02-science-timeline::-webkit-scrollbar-thumb {
  min-width: 4rem;
  border: 3px solid color-mix(in srgb, var(--ink) 8%, var(--page));
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
}

html[data-experience="native-stack"] .section02-science-timeline::-webkit-scrollbar-thumb:hover {
  background: var(--ink);
}

html[data-experience="native-stack"] :is(
  .section03-stage,
  .section04-stage
)[data-native-plates="ready"] {
  display: block !important;
  padding: 0 !important;
}

html[data-experience="native-stack"] :is(
  .section03-stage,
  .section04-stage
)[data-native-plates="ready"] > :is(.section03-section-number, .section04-section-number) {
  display: none !important;
}

html[data-experience="native-stack"] :is(
  .native-section03-plates,
  .native-section04-plates
) {
  display: grid;
  width: 100%;
}

html[data-experience="native-stack"] :is(
  .native-section03-plate,
  .native-section04-plate
) {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  grid-template-rows: auto minmax(0, 1fr);
  padding: 0 var(--gutter);
  border-bottom: 0.5px solid var(--hairline);
  background: var(--page);
}

html[data-experience="native-stack"] :is(
  .native-section03-plate,
  .native-section04-plate
) > :is(.section03-beat, .section03-scene, .section04-beat, .section04-scene) {
  grid-column: 1 !important;
  grid-row: auto !important;
  width: 100% !important;
  margin: 0 !important;
}

html[data-experience="native-stack"] :is(
  .native-section03-plate > .section03-beat,
  .native-section04-plate > .section04-beat
) {
  padding: clamp(0.9rem, 2svh, 1.4rem) 0 clamp(1rem, 2.5svh, 1.75rem) !important;
  border-top: 0 !important;
}

html[data-experience="native-stack"] :is(
  .native-section03-plate > .section03-beat h2,
  .native-section04-plate > .section04-beat h2
) {
  width: 100%;
  max-width: none !important;
  margin: 0;
  font-size: clamp(2.25rem, 3.2vw, 3.5rem) !important;
  line-height: 1.06 !important;
}

html[data-experience="native-stack"] :is(
  .native-section03-plate > .section03-scene,
  .native-section04-plate > .section04-scene
) {
  min-height: clamp(27rem, 58svh, 38rem);
  align-self: stretch;
  margin-bottom: 0 !important;
  overflow: hidden !important;
  border-top: 0.5px solid var(--hairline);
  background: transparent;
}

html[data-experience="native-stack"] :is(
  .native-section04-plate--1 > .section04-scene
) {
  min-height: clamp(36rem, 68svh, 46rem);
}

html[data-experience="native-stack"] .native-section03-plate--4 > .section03-beat h2 {
  font-size: clamp(1.9rem, 2.35vw, 2.55rem) !important;
}

html[data-experience="native-stack"] .native-section03-plate--4 > .section03-scene {
  min-height: clamp(27rem, 58svh, 33rem);
}

html[data-experience="native-stack"] .native-section03-plate--4 .section03-attack-figure {
  position: absolute !important;
  inset: 0 0 auto !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3.5 / 1 !important;
  margin: 0 !important;
}

html[data-experience="native-stack"] .native-section04-plate--origin-combined {
  grid-template-rows: auto minmax(19rem, 1fr) auto;
  padding-bottom: max(
    calc(2.35rem + var(--native-hero-space)),
    calc(env(safe-area-inset-bottom) + var(--native-hero-space))
  );
}

html[data-experience="native-stack"] .native-section04-plate--origin-combined > .section04-beat {
  padding: clamp(0.65rem, 1.25svh, 0.95rem) 0 !important;
}

html[data-experience="native-stack"] .native-section04-plate--origin-combined > .section04-beat h2 {
  font-size: clamp(1.4rem, 1.78vw, 1.95rem) !important;
  line-height: 1.04 !important;
}

html[data-experience="native-stack"] .native-section04-plate--origin-combined > .section04-scene {
  min-height: clamp(19rem, 47svh, 27rem);
}

html[data-experience="native-stack"] .native-section04-plate--origin-combined > [data-section04-beat="0"] {
  border-top: 0.5px solid var(--hairline) !important;
}

html[data-experience="native-stack"] .native-section04-plate--2 > .section04-scene,
html[data-experience="native-stack"] .native-section04-plate--3 > .section04-scene {
  min-height: clamp(24rem, 52svh, 30rem);
}

html[data-experience="native-stack"] .native-section04-plate--2 {
  height: calc(100svh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  max-height: calc(100svh - var(--header-height));
  overflow: hidden;
}

html[data-experience="native-stack"] .native-section04-plate--2 > .section04-scene {
  height: 100%;
  min-width: 0;
  min-height: 0;
}

html[data-experience="native-stack"] .native-section04-plate--3 > .section04-scene {
  height: auto;
  min-width: 0;
  min-height: 0;
  align-self: start;
}

html[data-experience="native-stack"] .native-section04-plate--3 {
  height: calc(100svh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  max-height: calc(100svh - var(--header-height));
  grid-template-rows: auto auto;
  align-content: start;
  row-gap: 1.1rem;
  padding-top: clamp(2.35rem, 6.2dvh, 4rem);
  overflow: hidden;
}

html[data-experience="native-stack"] .native-section04-plate--3 > .section04-beat {
  padding-top: 0 !important;
  padding-bottom: 0.2rem !important;
}

html[data-experience="native-stack"] .native-section04-plate--3 > .section04-scene img {
  width: 100% !important;
  height: 100% !important;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

/* One hero rhythm across completed native plates; long authored lines get only the room they need. */
html[data-experience="native-stack"] :is(
  .native-section02-plate > .section02-beat,
  .native-section03-plate > .section03-beat,
  .native-section04-plate > .section04-beat
) {
  padding-top: var(--native-hero-space) !important;
  padding-bottom: var(--native-hero-space) !important;
}

html[data-experience="native-stack"] :is(
  .native-section02-plate > .section02-beat h2,
  .native-section03-plate > .section03-beat h2,
  .native-section04-plate > .section04-beat h2
) {
  line-height: 1.02 !important;
}

html[data-experience="native-stack"] :is(
  .native-section02-plate > .section02-beat h2,
  .native-section03-plate > .section03-beat h2,
  .native-section04-plate > .section04-beat h2
) > span {
  display: block;
}

html[data-experience="native-stack"] .native-section02-plate--hardware > .section02-beat h2 {
  font-size: clamp(1.5rem, 1.94vw, 2.25rem) !important;
}

html[data-experience="native-stack"] .native-section02-plate--domino > .section02-beat h2 {
  font-size: clamp(1.55rem, 1.95vw, 2.35rem) !important;
}

html[data-experience="native-stack"] .native-section02-plate--companies > .section02-beat h2 {
  font-size: clamp(2rem, 2.8vw, 3rem) !important;
}

html[data-experience="native-stack"] .native-section02-plate--companies {
  padding-bottom: max(2.35rem, env(safe-area-inset-bottom));
}

html[data-experience="native-stack"] .native-section02-plate--companies > .section02-scene {
  position: relative !important;
  min-height: 0;
  overflow: hidden !important;
}

html[data-experience="native-stack"] .native-section02-plate--companies .section03-capital-stage {
  position: absolute !important;
  inset: 0 !important;
}

html[data-experience="native-stack"] .native-section02-plate--companies .section03-authority-layer--logos {
  pointer-events: auto;
}

html[data-experience="native-stack"] .native-section04-plate--origin-combined > .section04-beat h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.75rem) !important;
}

html[data-experience="native-stack"] :is(
  .native-section04-plate--2,
  .native-section04-plate--3
) > .section04-beat h2 {
  font-size: clamp(2rem, 2.72vw, 3rem) !important;
}

@media (min-width: 56.3125rem) {
  html[data-experience="native-stack"] :is(
    .native-section02-plate > .section02-beat h2,
    .native-section03-plate > .section03-beat h2,
    .native-section04-plate > .section04-beat h2
  ) > span {
    white-space: nowrap;
  }
}

html[data-experience="native-stack"] .section03-authority-layer--logos[data-native-funding="ready"] .voice-logo-card {
  position: relative;
  cursor: pointer;
  outline-offset: -3px;
  pointer-events: auto;
}

html[data-experience="native-stack"] .section03-authority-layer--logos[data-native-funding="ready"] .voice-logo-card:focus-visible {
  outline: 2px solid var(--cyan);
}

html[data-experience="native-stack"] .native-funding-overlay {
  position: absolute !important;
  z-index: 4;
  inset: 0;
  display: block;
  grid-column: auto !important;
  grid-row: auto !important;
  padding: clamp(0.7rem, 1.2vw, 1.15rem);
  overflow: visible;
  overscroll-behavior: auto;
  border: 0 !important;
  background: color-mix(in srgb, var(--page) 97%, transparent);
  opacity: 0 !important;
  visibility: hidden;
  transform: translateY(0.45rem) !important;
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms linear;
  pointer-events: none !important;
}

html[data-experience="native-stack"] .voice-logo-card:is(
  :hover,
  :focus,
  [data-native-funding-open="true"]
) > .native-funding-overlay {
  opacity: 1 !important;
  visibility: visible;
  transform: translateY(0) !important;
  pointer-events: none !important;
}

html[data-experience="native-stack"] .native-funding-overlay a,
html[data-experience="native-stack"] .native-funding-overlay .native-funding-close {
  pointer-events: auto !important;
}

html[data-experience="native-stack"] .native-funding-overlay h3 {
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  font-size: clamp(0.62rem, 0.75vw, 0.78rem);
}

html[data-experience="native-stack"] .native-funding-overlay ol {
  gap: 0.3rem;
}

html[data-experience="native-stack"] .native-funding-overlay li {
  gap: 0.2rem;
  padding: 0.42rem;
}

html[data-experience="native-stack"] .native-funding-overlay li > span {
  font-size: clamp(0.68rem, 0.9vw, 0.95rem);
}

html[data-experience="native-stack"] .native-funding-overlay.funding-company--deepgram li:nth-child(3),
html[data-experience="native-stack"] .native-funding-overlay.funding-company--markets-eq li:first-child,
html[data-experience="native-stack"] .native-funding-overlay.funding-company--hume .funding-company__deal-note {
  border-color: var(--orange);
}

@media (max-width: 620px) and (hover: none), (max-width: 620px) and (pointer: coarse) {
  html[data-experience="native-stack"] .native-section02-plate--domino .section02-domino-hero {
    width: min(100%, 27svh) !important;
    height: auto !important;
    max-height: none;
  }

  html[data-experience="native-stack"] .native-section01-plate {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    grid-template-rows: auto auto;
    row-gap: 1rem;
    padding-bottom: 2.5rem;
  }

  html[data-experience="native-stack"] .native-section01-plate--overview {
    height: calc(100svh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 0.5rem;
    padding-top: 0.45rem;
    padding-bottom: max(3.1rem, env(safe-area-inset-bottom));
  }

  html[data-experience="native-stack"] .native-section01-plate--overview > .story-beat,
  html[data-experience="native-stack"] .native-section01-plate--overview > .story-beat :is(h1, h2),
  html[data-experience="native-stack"] .native-section01-plate--overview > .story-beat :is(h1, h2) > span {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  html[data-experience="native-stack"] .native-section01-plate--overview > .story-beat[data-beat] :is(h1, h2) {
    font-size: clamp(1.1rem, 4.9vw, 1.4rem) !important;
    line-height: 1.02 !important;
  }

  html[data-experience="native-stack"] .native-section01-comparison__visual,
  html[data-experience="native-stack"] .native-section01-comparison__control {
    width: 100%;
  }

  html[data-experience="native-stack"] .native-section01-comparison__control {
    min-height: 6.2rem;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.4rem 0.75rem;
    padding: 0.7rem 1rem;
  }

  html[data-experience="native-stack"] .native-section01-comparison__instruction {
    grid-column: 1 / -1;
  }

  html[data-experience="native-stack"] .native-section01-plate--closing {
    height: calc(100svh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    grid-template-rows: auto minmax(0, 1fr);
  }

  html[data-experience="native-stack"] .native-section01-plate--closing > .signal-figure {
    align-self: center;
  }

  html[data-experience="native-stack"] :is(
    .native-section01-plate,
    .native-section01-pair
  ) > .signal-figure {
    align-self: start;
    height: clamp(12rem, 55vw, 15rem) !important;
    aspect-ratio: auto !important;
  }

  html[data-experience="native-stack"] .native-section01-pair--analysis > .signal-figure {
    height: clamp(28rem, 125vw, 34rem) !important;
  }

  html[data-experience="native-stack"] .native-section01-plate--overview .native-section01-pair > .signal-figure {
    height: 100% !important;
  }

  html[data-experience="native-stack"] :is(.native-section01-plate, .native-section01-pair) > .story-beat,
  html[data-experience="native-stack"] :is(.native-section01-plate, .native-section01-pair) > .story-beat :is(h1, h2),
  html[data-experience="native-stack"] :is(.native-section01-plate, .native-section01-pair) > .story-beat :is(h1, h2) > span {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  html[data-experience="native-stack"] :is(.native-section01-plate, .native-section01-pair) > .story-beat :is(h1, h2) {
    font-size: clamp(1.4rem, 6.25vw, 1.85rem) !important;
    line-height: 0.96 !important;
  }

  html[data-experience="native-stack"] .native-section01-plate .story-beat__progressive-row,
  html[data-experience="native-stack"] .native-section01-plate .story-beat__progressive-consequence {
    width: 100% !important;
    max-width: 100% !important;
  }

  html[data-experience="native-stack"] .native-section01-plate--closing .story-beat__sequence--closing {
    min-height: 12rem;
  }

  html[data-experience="native-stack"] .native-section02-plate > .section02-beat h2 {
    font-size: clamp(1.45rem, 6.2vw, 1.9rem) !important;
  }

  html[data-experience="native-stack"] .native-section02-plate--dawning > .section02-scene,
  html[data-experience="native-stack"] .native-section02-plate--hardware > .section02-scene {
    min-height: 54rem;
  }

  html[data-experience="native-stack"] .native-section02-plate--dawning .section02-dawning__impact {
    display: block;
  }

  html[data-experience="native-stack"] .native-section02-plate--dawning .section02-dawning__impact ul {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  html[data-experience="native-stack"] .native-section02-plate--dawning .section02-dawning__impact li {
    font-size: 0.82rem;
    line-height: 1.25;
    text-align: left;
  }

  html[data-experience="native-stack"] .native-section02-plate--science > .section02-scene {
    min-height: 34rem;
  }

  html[data-experience="native-stack"] :is(
    .native-section03-plate > .section03-beat h2,
    .native-section04-plate > .section04-beat h2
  ) {
    font-size: clamp(1.45rem, 6.2vw, 1.9rem) !important;
  }

  html[data-experience="native-stack"] :is(
    .native-section03-plate > .section03-scene,
    .native-section04-plate > .section04-scene
  ) {
    min-height: 44rem;
  }

  html[data-experience="native-stack"] .native-section04-plate--origin-combined {
    grid-template-rows: auto auto auto;
  }

  html[data-experience="native-stack"] .native-section04-plate--origin-combined > .section04-beat h2 {
    font-size: clamp(1.45rem, 6.2vw, 1.9rem) !important;
  }

  html[data-experience="native-stack"] .native-section04-plate--origin-combined > .section04-scene {
    min-height: 34rem;
  }

  html[data-experience="native-stack"] :is(
    .native-section04-plate--2,
    .native-section04-plate--3
  ) {
    height: auto;
    max-height: none;
  }
}

/* Remove the retired editorial guide rules while retaining real component frames. */
html[data-experience="native-stack"] body::before,
html[data-experience="native-stack"] body::after {
  display: none;
}

html[data-experience="native-stack"] .site-header,
html[data-experience="native-stack"] .site-footer,
html[data-experience="native-stack"] :is(
  .scroll-story,
  .native-section01-plate,
  .native-section02-plate,
  .native-section03-plate,
  .native-section04-plate,
  .team-section,
  .section-grid:not(.faq)
) {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

html[data-experience="native-stack"] .section-grid:not(.faq) {
  background: var(--page) !important;
}

html[data-experience="native-stack"] :is(
  .history-beat,
  .section03-beat,
  .section04-beat,
  .native-section02-plate > .section02-scene,
  .native-section03-plate > .section03-scene,
  .native-section04-plate > .section04-scene,
  .team-card__bio-trigger,
  .team-detail__lead,
  .team-detail__source,
  .terms-dialog__lead,
  .terms-dialog__record-note
) {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

html[data-experience="native-stack"] .native-section04-plate--origin-combined > [data-section04-beat="0"] {
  border-top: 0 !important;
}

html[data-experience="native-stack"] .section02-dawning__milestones::before,
html[data-experience="native-stack"] .section02-dawning__impact::after {
  display: none;
}

html[data-experience="native-stack"] :is(
  .section02-science-library-heading,
  .section02-capital-detail__thesis
) {
  border-bottom: 0 !important;
}

html[data-experience="native-stack"] .section02-science-library-heading,
html[data-experience="native-stack"] .section02-domino-hero::before,
html[data-experience="native-stack"] .section02-domino-hero::after,
html[data-experience="native-stack"] .section02-dawning__impact::after {
  left: 0;
  width: 100%;
  max-width: 100%;
  transform: none;
}

html[data-experience="native-stack"] .skip-link {
  position: fixed;
  z-index: 10000;
  top: 0.75rem;
  left: 0.75rem;
}

html[data-experience="native-stack"] .skip-link:focus,
html[data-experience="native-stack"] .skip-link:focus-visible {
  transform: none;
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  html[data-experience="native-stack"] {
    scroll-behavior: auto;
  }

  html[data-experience="native-stack"] .native-section01-comparison__handle {
    animation: none;
  }
}
