/* SolTrench home navigation and static launch hero styles.
   The launch page has no WebGL module, canvas, or auto-play hero runtime. */

/* ===== Home view: full-width content shell (no sidebar margin) ===== */
/* When the active page is home, the content shell goes full-width and
   the fixed sidebar is hidden (the floating top nav replaces it). */
html[data-active-page="home"] body > aside.sidebar {
  display: none;
}

html[data-active-page="home"] body > main.content-shell {
  width: 100%;
  margin-left: 0;
  padding: 0;
}

#view-home {
  gap: clamp(20px, 3vw, 34px);
  padding-bottom: 30px;
}

#view-home > :not(.journey-wrapper) {
  width: min(1460px, calc(100% - 40px));
  margin-inline: auto;
}

html[data-active-page="home"] .site-footer {
  width: min(1460px, calc(100% - 40px));
  margin-inline: auto;
}

/* ===== Floating top navigation bar (home view only) ===== */

.home-topnav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(1320px, calc(100% - 28px));
  border: 1px solid rgba(245, 130, 85, 0.14);
  border-radius: 12px;
  background: rgba(9, 10, 12, 0.88);
  backdrop-filter: blur(14px);
  padding: 8px 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.home-topnav[hidden] {
  display: none;
}

.topnav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo-topnav {
  width: clamp(146px, 13vw, 178px);
}

.topnav-links {
  display: flex;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
}

.topnav-links a {
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted, #9aa5b1);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.topnav-links a:hover,
.topnav-links a.active {
  border-color: rgba(245, 130, 85, 0.22);
  background: rgba(217, 105, 67, 0.08);
  color: #f2efe7;
}

.topnav-links a.active {
  color: var(--green-2, #f58255);
}

.topnav-links a:focus-visible {
  outline: none;
  box-shadow: var(--focus, 0 0 0 4px rgba(217, 105, 67, 0.22));
}

.topnav-menu {
  position: relative;
  display: none;
}

.topnav-menu summary {
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(245, 130, 85, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink, #f2efe7);
  padding: 7px 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  list-style: none;
}

.topnav-menu summary::-webkit-details-marker {
  display: none;
}

.topnav-menu summary:focus-visible {
  outline: none;
  box-shadow: var(--focus, 0 0 0 4px rgba(217, 105, 67, 0.22));
}

.topnav-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 24px));
  gap: 4px;
  border: 1px solid rgba(245, 130, 85, 0.2);
  border-radius: 8px;
  background: #090a0c;
  padding: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.topnav-menu-panel a {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted, #9aa5b1);
  padding: 11px 12px;
  font-size: 12px;
  font-weight: 800;
}

.topnav-menu-panel a:hover,
.topnav-menu-panel a.active {
  border-color: rgba(245, 130, 85, 0.22);
  background: rgba(217, 105, 67, 0.08);
  color: #f2efe7;
}

.topnav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line, rgba(154, 165, 177, 0.14));
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 8px;
  color: var(--muted, #9aa5b1);
  font-size: 11px;
  font-weight: 760;
  white-space: nowrap;
}

.topnav-status .dot {
  width: 7px;
  height: 7px;
}

.page-view [aria-invalid="true"] {
  border-color: var(--red, #f4756b);
  box-shadow: 0 0 0 3px rgba(244, 117, 107, 0.2);
}

.form-help {
  display: block;
  margin-top: 5px;
  color: var(--muted, #9aa5b1);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.topnav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 130, 85, 0.5);
  border-radius: 6px;
  background: linear-gradient(180deg, #f58255, #d96943);
  color: #1b0c08;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms ease, box-shadow 150ms ease;
}

.topnav-cta:hover {
  background: linear-gradient(180deg, #f58255, #d96943);
  box-shadow: 0 6px 18px rgba(217, 105, 67, 0.28);
}

.topnav-cta:focus-visible {
  outline: none;
  box-shadow: var(--focus, 0 0 0 4px rgba(217, 105, 67, 0.22));
}

/* ===== 3D active state ===== */

.home-hero.is-3d-active {
  /* Full-bleed hero: taller, no grid split, canvas fills everything. */
  display: block;
  min-height: 100svh;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero.is-3d-active::before {
  display: none;
}

.home-hero.is-3d-active #heroCanvas {
  opacity: 1;
  visibility: visible;
  z-index: 0;
}

/* Copy layer sits above the canvas with a localized radial scrim
   behind the copy text for readability, rather than darkening the
   entire scene. Copy is constrained to ~44% of desktop width. */
.home-hero.is-3d-active .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 44%;
  min-height: 100svh;
  padding: clamp(60px, 8vw, 100px) clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Localized radial scrim behind the copy only. */
  background: radial-gradient(
    ellipse 120% 90% at 0% 50%,
    rgba(5, 10, 15, 0.88) 0%,
    rgba(5, 10, 15, 0.72) 30%,
    rgba(5, 10, 15, 0.35) 55%,
    rgba(5, 10, 15, 0.08) 75%,
    transparent 90%
  );
}

/* Responsive headline sizing — must not dominate or clip. */
.home-hero.is-3d-active .hero-copy h1 {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
  text-wrap: balance;
  margin-bottom: 16px;
}

.home-hero.is-3d-active .hero-copy .hero-text {
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 100%;
  margin-bottom: 22px;
}

.home-hero.is-3d-active .hero-copy .hero-actions button,
.home-hero.is-3d-active .hero-copy .hero-actions a.primary-action {
  min-width: 160px;
}

.home-hero.is-3d-active .hero-copy .hero-proof {
  width: 100%;
  max-width: 100%;
}

/* The 2D visual card is hidden when 3D is active. */
.home-hero.is-3d-active .hero-visual {
  display: none;
}

/* HUD: status chips at top-right of the full-bleed hero. */
.home-hero.is-3d-active .hero-hud-status {
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  right: clamp(20px, 4vw, 48px);
  z-index: 3;
  display: flex;
  gap: 10px;
  pointer-events: none;
}

.home-hero.is-3d-active .hero-hud-status .hud-chip {
  padding: 6px 12px;
  border: 1px solid rgba(245, 130, 85, 0.28);
  border-radius: 999px;
  background: rgba(8, 16, 24, 0.78);
  backdrop-filter: blur(8px);
  color: rgba(242, 239, 231, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* HUD: stage legend as a restrained strip at the bottom of the hero. */
.home-hero.is-3d-active .hero-hud-legend {
  position: absolute;
  bottom: clamp(20px, 4vw, 40px);
  left: clamp(20px, 4vw, 48px);
  right: clamp(20px, 4vw, 48px);
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: none;
  counter-reset: stage;
}

.home-hero.is-3d-active .hero-hud-legend li {
  position: relative;
  padding: 7px 14px;
  border: 1px solid rgba(245, 130, 85, 0.2);
  border-radius: 6px;
  background: rgba(8, 16, 24, 0.72);
  backdrop-filter: blur(8px);
  color: rgba(242, 239, 231, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
  counter-increment: stage;
}

.home-hero.is-3d-active .hero-hud-legend li::before {
  content: counter(stage, decimal-leading-zero);
  display: inline-block;
  margin-right: 6px;
  color: var(--cyan, #55a7ff);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-hero.is-3d-active .hero-hud-legend li.is-stage-active {
  border-color: rgba(245, 130, 85, 0.65);
  background: rgba(217, 105, 67, 0.16);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(245, 130, 85, 0.18);
}

.home-hero.is-3d-active .hero-hud-legend li.is-stage-done {
  border-color: rgba(245, 130, 85, 0.34);
  color: rgba(242, 239, 231, 0.88);
}

.home-hero.is-3d-active .hero-hud-legend li.is-stage-failed {
  border-color: rgba(244, 117, 107, 0.6);
  background: rgba(244, 117, 107, 0.12);
  color: #ffffff;
}

/* ===== Journey sticky stage (3D active only) ===== */

/* Keep the 3D scene as one bounded hero. Product content and measured
   evidence begin immediately after the opening viewport. */
.journey-wrapper.is-3d-active {
  display: block;
  position: relative;
  min-height: 100svh;
}

.journey-wrapper.is-3d-active .journey-stage {
  display: block;
  position: relative;
  top: 0;
  height: 100svh;
  z-index: 1;
  overflow: hidden;
}

.journey-wrapper.is-3d-active .journey-stage .home-hero {
  height: 100svh;
  min-height: 100svh;
}

.journey-wrapper.is-3d-active .journey-chapters {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.journey-wrapper.is-3d-active .journey-chapter {
  min-height: 100svh;
  pointer-events: none;
}

.journey-wrapper.is-3d-active .journey-chapter .chapter-annotation {
  pointer-events: auto;
  margin: 0 clamp(20px, 5vw, 80px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.journey-wrapper.is-3d-active .journey-chapter.is-chapter-visible .chapter-annotation {
  opacity: 1;
  transform: translateY(0);
}

/* Alternate chapter cards left/right. */
.journey-wrapper.is-3d-active .journey-chapter[data-chapter="0"],
.journey-wrapper.is-3d-active .journey-chapter[data-chapter="2"],
.journey-wrapper.is-3d-active .journey-chapter[data-chapter="4"] {
  justify-content: flex-start;
}

.journey-wrapper.is-3d-active .journey-chapter[data-chapter="1"],
.journey-wrapper.is-3d-active .journey-chapter[data-chapter="3"] {
  justify-content: flex-end;
}

/* Opening headline fades away after the first chapter. */
.journey-wrapper.is-3d-active.is-past-opening .home-hero .hero-copy {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 600ms ease, transform 600ms ease;
  pointer-events: none;
}

.journey-wrapper.is-3d-active.is-past-opening .home-hero .hero-copy .hero-actions,
.journey-wrapper.is-3d-active.is-past-opening .home-hero .hero-copy .hero-proof {
  /* Keep CTAs accessible even when faded — they're in the DOM. */
  pointer-events: auto;
}

/* Progress indicator — shown when 3D is active. */
.journey-wrapper.is-3d-active ~ .journey-progress,
.journey-progress.is-3d-active {
  display: flex;
  position: fixed;
  top: 50%;
  right: clamp(12px, 2vw, 24px);
  transform: translateY(-50%);
  z-index: 40;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.journey-progress.is-3d-active li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(242, 239, 231, 0.4);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 220ms ease;
}

.journey-progress.is-3d-active li span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(245, 130, 85, 0.18);
  border-radius: 999px;
  background: rgba(8, 16, 24, 0.6);
  color: rgba(242, 239, 231, 0.5);
  font-size: 9px;
  font-weight: 900;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.journey-progress.is-3d-active li.is-stage-active {
  color: #ffffff;
}

.journey-progress.is-3d-active li.is-stage-active span {
  border-color: rgba(245, 130, 85, 0.7);
  background: rgba(217, 105, 67, 0.2);
  color: var(--green-2, #f58255);
  box-shadow: 0 0 12px rgba(245, 130, 85, 0.3);
}

.journey-progress.is-3d-active li.is-stage-done {
  color: rgba(242, 239, 231, 0.7);
}

.journey-progress.is-3d-active li.is-stage-done span {
  border-color: rgba(245, 130, 85, 0.34);
  color: rgba(242, 239, 231, 0.7);
}

/* ===== 2D fallback legend (inside .hero-visual) ===== */

.hero-flow-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  width: min(100%, 760px);
  counter-reset: stage;
}

.hero-flow-legend li {
  position: relative;
  min-height: 30px;
  border: 1px solid rgba(245, 130, 85, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 8px;
  color: rgba(242, 239, 231, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
  counter-increment: stage;
}

.hero-flow-legend li::before {
  content: counter(stage, decimal-leading-zero);
  display: block;
  margin-bottom: 2px;
  color: var(--cyan, #55a7ff);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-flow-legend li.is-stage-active {
  border-color: rgba(245, 130, 85, 0.6);
  background: rgba(217, 105, 67, 0.14);
  color: #ffffff;
}

.hero-flow-legend li.is-stage-done {
  border-color: rgba(245, 130, 85, 0.32);
  color: rgba(242, 239, 231, 0.9);
}

.hero-flow-legend li.is-stage-failed {
  border-color: rgba(244, 117, 107, 0.6);
  background: rgba(244, 117, 107, 0.12);
  color: #ffffff;
}

.hero-flow-legend:focus {
  outline: none;
}

/* ===== Restyled home sections (3D active only) ===== */
/* Dark translucent technical panels that belong to the trench aesthetic. */

.journey-wrapper.is-3d-active ~ .metric-grid {
  gap: 12px;
}

.journey-wrapper.is-3d-active ~ .metric-grid .metric,
.journey-wrapper.is-3d-active ~ .evidence-section,
.journey-wrapper.is-3d-active ~ .wide-section .flow-grid article {
  border: 1px solid rgba(245, 130, 85, 0.12);
  border-radius: 10px;
  background: rgba(10, 18, 26, 0.72);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.journey-wrapper.is-3d-active ~ .evidence-section {
  border-color: rgba(245, 130, 85, 0.16);
}

.journey-wrapper.is-3d-active ~ .evidence-section::before,
.journey-wrapper.is-3d-active ~ .metric-grid .metric::before,
.journey-wrapper.is-3d-active ~ .wide-section .flow-grid article::before {
  background: linear-gradient(90deg, var(--green, #d96943), var(--cyan, #55a7ff), var(--violet, #9aa5b1));
  opacity: 0.7;
}

/* Evidence console look — monospace tabular numbers, grid lines. */
.journey-wrapper.is-3d-active ~ .evidence-section .evidence-grid article {
  border: 1px solid rgba(245, 130, 85, 0.1);
  border-radius: 8px;
  background: rgba(6, 12, 18, 0.6);
}

.journey-wrapper.is-3d-active ~ .evidence-section .evidence-grid strong {
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(245, 130, 85, 0.2);
}

.journey-wrapper.is-3d-active ~ .evidence-section .benchmark-table {
  border-color: rgba(245, 130, 85, 0.12);
  background: rgba(6, 12, 18, 0.65);
}

.journey-wrapper.is-3d-active ~ .evidence-section .benchmark-row.highlight {
  background: rgba(217, 105, 67, 0.08);
}

.journey-wrapper.is-3d-active ~ .evidence-section .evidence-note-grid article {
  border: 1px solid rgba(245, 130, 85, 0.1);
  border-radius: 8px;
  background: rgba(6, 12, 18, 0.5);
}

/* Flow grid continues the journey visually — numbered steps. */
.journey-wrapper.is-3d-active ~ .wide-section .flow-grid article {
  position: relative;
}

.journey-wrapper.is-3d-active ~ .wide-section .flow-grid span {
  color: var(--green-2, #f58255);
}

/* ===== Responsive ===== */

@media (max-width: 860px) {
  .home-topnav {
    top: 8px;
    width: calc(100% - 16px);
    gap: 8px;
    padding: 6px 10px;
    border-radius: 10px;
  }

  .topnav-links {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .topnav-links::-webkit-scrollbar {
    display: none;
  }

  .topnav-links a {
    padding: 5px 8px;
    font-size: 11px;
  }

  .topnav-status {
    display: none;
  }

  .topnav-cta {
    padding: 6px 10px;
    font-size: 11px;
  }

  .hero-flow-legend {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }
  .hero-flow-legend li {
    padding: 5px 4px;
    font-size: 10px;
  }

  .home-hero.is-3d-active .hero-copy {
    max-width: 100%;
    min-height: 100svh;
    padding: clamp(48px, 12vw, 80px) clamp(20px, 5vw, 32px);
    background: linear-gradient(
      180deg,
      rgba(5, 10, 15, 0.9) 0%,
      rgba(5, 10, 15, 0.75) 50%,
      rgba(5, 10, 15, 0.45) 100%
    );
  }

  .home-hero.is-3d-active .hero-copy h1 {
    font-size: clamp(22px, 5.5vw, 32px);
  }

  .home-hero.is-3d-active .hero-hud-status {
    top: 64px;
    right: 12px;
    gap: 6px;
  }

  .home-hero.is-3d-active .hero-hud-status .hud-chip {
    padding: 4px 8px;
    font-size: 9px;
  }

  .home-hero.is-3d-active .hero-hud-legend {
    bottom: 16px;
    left: 12px;
    right: 12px;
    gap: 5px;
  }

  .home-hero.is-3d-active .hero-hud-legend li {
    padding: 5px 8px;
    font-size: 10px;
  }

  .journey-chapter .chapter-annotation {
    max-width: 85%;
    margin: 16px;
  }

  .journey-progress.is-3d-active {
    display: none;
  }
}

@media (max-width: 620px) {
  .home-topnav {
    justify-content: space-between;
  }

  .brand-logo-topnav {
    width: 144px;
  }

  .topnav-links {
    display: none;
  }

  .topnav-menu {
    display: block;
  }

  .topnav-menu-panel {
    position: fixed;
    top: 62px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .topnav-cta {
    margin-left: 0;
  }

  .hero-flow-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero.is-3d-active .hero-hud-legend {
    flex-wrap: wrap;
    gap: 4px;
  }

  .home-hero.is-3d-active .hero-hud-legend li {
    padding: 4px 7px;
    font-size: 9px;
  }

  .topnav-links a {
    font-size: 10px;
    padding: 4px 6px;
  }
}

@media (max-width: 430px) {
  #view-home > :not(.journey-wrapper),
  html[data-active-page="home"] .site-footer {
    width: calc(100% - 24px);
  }

  .topnav-brand-text {
    display: none;
  }

  .topnav-cta {
    padding-inline: 9px;
  }
}

@media (max-width: 360px) {
  .home-topnav {
    gap: 6px;
    padding-inline: 8px;
  }

  .brand-logo-topnav {
    width: 106px;
  }

  .topnav-menu summary {
    padding-inline: 8px;
  }

  .topnav-cta {
    padding-inline: 8px;
  }

  .topnav-cta-long {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #heroCanvas {
    transition: none;
  }
  .hero-flow-legend li,
  .home-hero.is-3d-active .hero-hud-legend li {
    transition: none;
  }
  .journey-chapter .chapter-annotation {
    transition: none;
  }
  .journey-wrapper.is-3d-active .journey-chapter .chapter-annotation {
    opacity: 1;
    transform: none;
  }
}

/* ===== Static launch hero =====
   The launch surface deliberately avoids WebGL, canvas, auto-play motion,
   and product claims embedded in probabilistic visuals. */

#view-home > .home-hero-static {
  width: min(1460px, calc(100% - 40px));
  margin: 14px auto 0;
}

.home-hero-static {
  min-height: 650px;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  border-radius: 14px;
  border-color: rgba(245, 130, 85, 0.2);
  background:
    radial-gradient(circle at 82% 14%, rgba(85, 167, 255, 0.08), transparent 33%),
    linear-gradient(140deg, #061019 0%, #071018 48%, #09131c 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.home-hero-static::before {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  opacity: 0.78;
}

.home-hero-static::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(154, 165, 177, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 165, 177, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, 0.55) 62%, #000 100%);
  opacity: 0.5;
}

.home-hero-static .hero-copy {
  padding: 94px clamp(38px, 4.5vw, 68px) 54px;
}

.hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.hero-kicker-row .eyebrow {
  margin: 0;
}

.beta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  border: 1px solid rgba(245, 130, 85, 0.2);
  border-radius: 999px;
  background: rgba(217, 105, 67, 0.07);
  color: rgba(242, 239, 231, 0.74);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.beta-pill > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 3px rgba(245, 130, 85, 0.1);
}

.home-hero-static .hero-copy h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.home-hero-static .hero-text {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(242, 239, 231, 0.7);
  font-size: 17px;
  line-height: 1.62;
}

.home-hero-static .hero-proof {
  margin-top: 26px;
}

.home-hero-static .hero-proof div {
  background: rgba(7, 17, 25, 0.72);
}

.home-hero-static .hero-proof div:hover {
  border-color: rgba(245, 130, 85, 0.16);
  background: rgba(7, 17, 25, 0.72);
}

.hero-console {
  padding: 90px clamp(26px, 3.2vw, 48px) 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 42%),
    rgba(3, 9, 14, 0.34);
}

.console-shell {
  width: min(100%, 640px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(245, 130, 85, 0.2);
  border-radius: 12px;
  background: rgba(4, 11, 17, 0.94);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.console-topbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(154, 165, 177, 0.12);
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.025);
}

.console-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.console-title > span:last-child {
  display: grid;
  gap: 3px;
}

.console-title strong {
  color: #f4fffb;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.console-title small {
  color: rgba(242, 239, 231, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.console-status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 4px rgba(245, 130, 85, 0.09);
}

.console-mode {
  flex: 0 0 auto;
  border: 1px solid rgba(85, 167, 255, 0.2);
  border-radius: 5px;
  background: rgba(85, 167, 255, 0.06);
  color: rgba(188, 229, 250, 0.8);
  padding: 5px 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.console-endpoints {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.console-endpoint {
  display: grid;
  min-width: 0;
  grid-template-columns: 48px minmax(135px, 0.8fr) minmax(170px, 1.2fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.018);
  padding: 10px 12px;
}

.endpoint-method {
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 3px 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
}

.endpoint-method-ws {
  color: var(--green-2);
}

.endpoint-method-post {
  color: var(--cyan);
}

.console-endpoint code {
  min-width: 0;
  overflow: hidden;
  color: #f0fff9;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-endpoint small {
  min-width: 0;
  color: rgba(242, 239, 231, 0.5);
  font-size: 10px;
  line-height: 1.4;
  text-align: right;
}

.execution-flow {
  margin: 0 16px 16px;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(154, 165, 177, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 165, 177, 0.026) 1px, transparent 1px),
    rgba(3, 9, 14, 0.62);
  background-size: 24px 24px;
  padding: 14px;
}

.execution-flow-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
}

.execution-flow-heading span {
  color: #f0fff9;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.execution-flow-heading small {
  color: rgba(242, 239, 231, 0.46);
  font-size: 9px;
  text-align: right;
}

.execution-flow ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.execution-flow ol::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 130, 85, 0.48), rgba(85, 167, 255, 0.48));
}

.execution-flow li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: rgba(242, 239, 231, 0.72);
  text-align: center;
}

.execution-flow li > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(245, 130, 85, 0.42);
  border-radius: 50%;
  background: #07151b;
  color: var(--green-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 900;
}

.execution-flow li.customer-step > span {
  border-color: rgba(85, 167, 255, 0.48);
  background: #08141e;
  color: #78d4ff;
}

.execution-flow li strong {
  color: rgba(244, 255, 251, 0.9);
  font-size: 10px;
}

.execution-flow li small {
  color: rgba(242, 239, 231, 0.42);
  font-size: 8px;
  line-height: 1.25;
}

.execution-flow li.customer-step small {
  color: rgba(120, 212, 255, 0.72);
}

.console-assertions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0 16px 16px;
}

.console-assertions div {
  min-width: 0;
  border: 1px solid rgba(245, 130, 85, 0.12);
  border-radius: 7px;
  background: rgba(217, 105, 67, 0.035);
  padding: 9px 10px;
}

.console-assertions dt,
.console-assertions dd {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.console-assertions dt {
  overflow: hidden;
  color: rgba(242, 239, 231, 0.46);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-assertions dd {
  margin-top: 4px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 850;
}

.console-note {
  margin: 0;
  border-top: 1px solid rgba(154, 165, 177, 0.1);
  background: rgba(255, 255, 255, 0.016);
  padding: 13px 16px 15px;
  color: rgba(242, 239, 231, 0.53);
  font-size: 10px;
  line-height: 1.55;
}

.journey-shell {
  border-color: rgba(245, 130, 85, 0.28);
  background:
    radial-gradient(circle at 92% 6%, rgba(85, 167, 255, 0.07), transparent 28%),
    rgba(4, 11, 17, 0.97);
}

.journey-flow {
  margin: 16px;
  border: 1px solid rgba(154, 165, 177, 0.13);
  border-radius: 9px;
  background:
    linear-gradient(rgba(154, 165, 177, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 165, 177, 0.028) 1px, transparent 1px),
    rgba(3, 9, 14, 0.68);
  background-size: 26px 26px;
  padding: 16px;
}

.journey-flow .execution-flow-heading small {
  max-width: 58%;
  color: rgba(214, 210, 200, 0.74);
  font-size: 11px;
  line-height: 1.4;
}

.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 130, 85, 0.58), rgba(85, 167, 255, 0.52));
}

.journey-timeline li {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.journey-timeline li > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(245, 130, 85, 0.5);
  border-radius: 50%;
  background: #07151b;
  color: #ff956c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 900;
}

.journey-timeline li.external-step > span {
  border-color: rgba(85, 167, 255, 0.52);
  background: #08141e;
  color: #78d4ff;
}

.journey-timeline li > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.journey-timeline strong {
  color: #f5f7f2;
  font-size: 12px;
  line-height: 1.2;
}

.journey-timeline small {
  min-height: 45px;
  color: rgba(214, 210, 200, 0.74);
  font-size: 11px;
  line-height: 1.35;
}

.journey-timeline output {
  max-width: 100%;
  border: 1px solid rgba(154, 165, 177, 0.14);
  border-radius: 999px;
  background: rgba(3, 9, 14, 0.76);
  color: rgba(242, 239, 231, 0.75);
  padding: 5px 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

.journey-timeline li[data-home-primary-benchmark] output {
  border-color: rgba(245, 130, 85, 0.28);
  color: #ff9a70;
}

.journey-timeline li.external-step output {
  border-color: rgba(85, 167, 255, 0.2);
  color: #8edcff;
}

.route-boundary {
  display: grid;
  gap: 6px;
  margin: 0 16px 16px;
  border: 1px solid rgba(245, 130, 85, 0.18);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(217, 105, 67, 0.055), transparent 52%),
    rgba(8, 18, 26, 0.82);
  padding: 16px;
}

.route-boundary > span {
  color: #ff9a70;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.route-boundary > strong {
  color: #f5f7f2;
  font-size: 16px;
  line-height: 1.3;
}

.route-boundary > p,
.route-guidance p {
  margin: 0;
  color: rgba(214, 210, 200, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.route-guidance {
  margin-top: 6px;
  border-top: 1px solid rgba(154, 165, 177, 0.12);
  padding-top: 10px;
}

.route-guidance summary {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #8edcff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  list-style: none;
}

.route-guidance summary::-webkit-details-marker {
  display: none;
}

.route-guidance summary::after {
  content: "+";
  color: #ff9a70;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 16px;
}

.route-guidance[open] summary::after {
  content: "−";
}

.route-guidance summary:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(85, 167, 255, 0.72);
  outline-offset: 3px;
}

.route-guidance p {
  padding: 2px 0 4px;
}

[data-home-archive][hidden] {
  display: none !important;
}

[data-home-archive][hidden] *::before,
[data-home-archive][hidden] *::after {
  content: none !important;
}

.home-topnav .dot {
  animation: none;
}

@media (max-width: 1180px) {
  .home-hero-static {
    grid-template-columns: 1fr;
  }

  .home-hero-static .hero-copy {
    padding: 96px clamp(30px, 6vw, 64px) 42px;
  }

  .hero-console {
    min-height: 0;
    border-top: 1px solid rgba(245, 130, 85, 0.14);
    border-left: 0;
    padding: 32px clamp(22px, 6vw, 64px) 44px;
  }
}

@media (max-width: 620px) {
  #view-home > .home-hero-static {
    width: calc(100% - 16px);
    margin-top: 8px;
  }

  .home-hero-static {
    border-radius: 10px;
  }

  .home-hero-static .hero-copy {
    padding: 88px 20px 28px;
  }

  .hero-kicker-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

  .home-hero-static .hero-copy h1 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.03;
  }

  .home-hero-static .hero-text {
    font-size: 15px;
  }

  .hero-console {
    padding: 18px 12px 24px;
  }

  .console-topbar {
    padding-inline: 12px;
  }

  .console-endpoints {
    padding: 12px;
  }

  .console-endpoint {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 8px;
    padding: 9px;
  }

  .console-endpoint small {
    grid-column: 2;
    text-align: left;
  }

  .execution-flow {
    margin: 0 12px 12px;
    padding: 12px;
  }

  .execution-flow-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
  }

  .execution-flow-heading small {
    text-align: left;
  }

  .execution-flow ol {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .execution-flow ol::before {
    top: 14px;
    bottom: 14px;
    left: 14px;
    width: 1px;
    height: auto;
  }

  .execution-flow li {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
    gap: 9px;
    text-align: left;
  }

  .execution-flow li > span {
    width: 29px;
    height: 29px;
  }

  .execution-flow li strong {
    font-size: 11px;
  }

  .execution-flow li small {
    font-size: 9px;
    text-align: right;
  }

  .console-assertions {
    grid-template-columns: 1fr;
    padding: 0 12px 12px;
  }

  .console-assertions div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .console-assertions dd {
    margin-top: 0;
  }

  .console-note {
    padding-inline: 12px;
  }

  .journey-flow,
  .route-boundary {
    margin: 12px;
    padding: 13px;
  }

  .journey-timeline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .journey-timeline::before {
    top: 16px;
    bottom: 16px;
    left: 17px;
    width: 1px;
    height: auto;
  }

  .journey-timeline li {
    grid-template-columns: 35px minmax(0, 1fr) minmax(78px, auto);
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .journey-timeline li > div {
    justify-items: start;
  }

  .journey-timeline small {
    min-height: 30px;
  }

  .journey-timeline output {
    justify-self: end;
    text-align: right;
  }

}

/* ===== Home product story ===== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.home-section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 32%),
    #091119;
  padding: clamp(28px, 4.2vw, 62px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.home-section::before,
.home-launch-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  opacity: 0.72;
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.home-section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 3.4vw, 48px);
  letter-spacing: -0.025em;
}

.home-section-heading > p {
  max-width: 610px;
  margin: 0;
  color: rgba(214, 210, 200, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  display: flex;
  min-width: 0;
  min-height: 350px;
  flex-direction: column;
  border: 1px solid rgba(154, 165, 177, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 46%),
    #0c151e;
  padding: clamp(20px, 2.2vw, 28px);
}

.capability-card-primary {
  border-color: rgba(245, 130, 85, 0.26);
  background:
    radial-gradient(circle at 92% 0%, rgba(217, 105, 67, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(217, 105, 67, 0.045), transparent 52%),
    #0c151e;
}

.capability-topline {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}

.capability-topline > span {
  color: rgba(245, 130, 85, 0.64);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.capability-topline code,
.rollout-endpoints code,
.timing-table code {
  min-height: 0;
  border-radius: 5px;
  background: rgba(3, 9, 14, 0.74);
  padding: 5px 7px;
  color: #75d9ff;
  font-size: 10px;
  line-height: 1.2;
  box-shadow: none;
}

.capability-topline small {
  color: rgba(154, 165, 177, 0.74);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-card h3 {
  margin-bottom: 10px;
  color: #f2fbff;
  font-size: 22px;
  letter-spacing: -0.015em;
}

.capability-card > p {
  min-height: 76px;
  margin-bottom: 18px;
  color: rgba(214, 210, 200, 0.72);
  font-size: 14px;
}

.capability-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: rgba(214, 210, 200, 0.72);
  font-size: 13px;
  list-style: none;
}

.capability-card li {
  position: relative;
  padding-left: 16px;
}

.capability-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.capability-card li code {
  display: inline;
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(117, 217, 255, 0.9);
  box-shadow: none;
}

.api-link {
  min-height: 38px;
  align-self: flex-start;
  margin-top: auto;
  border-color: rgba(245, 130, 85, 0.2);
  background: rgba(217, 105, 67, 0.055);
  color: var(--green-2);
  padding-inline: 12px;
  font-size: 12px;
}

.custody-boundary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(85, 167, 255, 0.17);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(217, 105, 67, 0.055), transparent 45%, rgba(85, 167, 255, 0.055)),
    #071018;
  padding: 18px 22px;
}

.custody-boundary > div {
  display: grid;
  gap: 4px;
}

.custody-boundary > div:last-child {
  text-align: right;
}

.custody-boundary span {
  color: rgba(154, 165, 177, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.custody-boundary strong {
  color: rgba(242, 239, 231, 0.92);
  font-size: 13px;
  line-height: 1.45;
}

.custody-boundary > p {
  margin: 0;
  border: 1px solid rgba(245, 130, 85, 0.22);
  border-radius: 999px;
  background: rgba(217, 105, 67, 0.07);
  color: var(--green-2);
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.availability-note {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  border: 1px solid rgba(242, 176, 78, 0.14);
  border-radius: 9px;
  background: rgba(242, 176, 78, 0.035);
  padding: 13px 16px;
}

.availability-note strong {
  color: rgba(242, 239, 231, 0.92);
  font-size: 12px;
}

.availability-note span {
  color: rgba(154, 165, 177, 0.72);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

/* Current-release unsigned evidence, funded evidence, release qualification, unsigned-build evidence,
   and historical one-run evidence stay visually distinct. */

.release-evidence-section {
  scroll-margin-top: 92px;
}

.qualification-panel,
.current-release-evidence,
.current-benchmark,
.historical-benchmark {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.14);
  border-radius: 11px;
  background: #0b141d;
}

.current-release-evidence {
  min-width: 0;
  overflow: hidden;
  margin-bottom: 16px;
  border-color: rgba(245, 130, 85, 0.44);
  background:
    radial-gradient(circle at 96% 0%, rgba(245, 130, 85, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(217, 105, 67, 0.08), transparent 46%),
    #09131b;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}

.current-release-masthead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(245, 130, 85, 0.18);
  padding: clamp(22px, 3vw, 32px);
}

.current-release-masthead h3 {
  max-width: 850px;
  margin: 6px 0 8px;
  color: #f5f7f2;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.current-release-masthead p {
  max-width: 780px;
  margin: 0;
  color: rgba(214, 210, 200, 0.76);
  font-size: 12px;
  line-height: 1.6;
}

.status-badge-qualified {
  border-color: rgba(245, 130, 85, 0.4);
  background: rgba(217, 105, 67, 0.11);
  color: #ffad8d;
}

.current-release-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 16px 18px 0;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.14);
  border-radius: 9px;
  background: rgba(3, 9, 14, 0.36);
}

.current-release-highlight-grid > div {
  min-width: 0;
  border-left: 1px solid rgba(154, 165, 177, 0.11);
  padding: 18px;
}

.current-release-highlight-grid > div:first-child {
  border-left: 0;
}

.current-release-highlight-grid span,
.current-release-highlight-grid strong,
.current-release-highlight-grid small {
  display: block;
}

.current-release-highlight-grid span {
  color: rgba(178, 187, 194, 0.86);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.current-release-highlight-grid strong {
  margin-top: 11px;
  color: #ff9a70;
  font-size: clamp(23px, 2.6vw, 36px);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.current-release-highlight-grid small {
  margin-top: 8px;
  color: rgba(214, 210, 200, 0.7);
  font-size: 10px;
  line-height: 1.45;
}

.current-release-boundary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  margin: 12px 18px 0;
  border: 1px solid rgba(85, 167, 255, 0.2);
  border-left: 3px solid #55a7ff;
  border-radius: 8px;
  background: rgba(85, 167, 255, 0.045);
  padding: 13px 15px;
}

.current-release-boundary strong {
  color: #8bdcff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.current-release-boundary p {
  margin: 0;
  color: rgba(214, 210, 200, 0.76);
  font-size: 11px;
  line-height: 1.6;
}

.current-release-mode-table {
  min-width: 1040px;
}

.current-release-mode-table th:not(:first-child),
.current-release-mode-table td {
  width: auto;
  color: rgba(242, 239, 231, 0.88);
  font-size: 12px;
  text-align: right;
}

.current-release-identity {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 12px 18px 0;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 8px;
  background: rgba(154, 165, 177, 0.1);
}

.current-release-identity > div {
  min-width: 0;
  background: rgba(3, 9, 14, 0.72);
  padding: 13px 15px;
}

.current-release-identity dt,
.current-release-identity dd {
  margin: 0;
}

.current-release-identity dt {
  margin-bottom: 6px;
  color: rgba(178, 187, 194, 0.82);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.current-release-identity dd {
  color: rgba(242, 239, 231, 0.86);
  font-size: 10px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.current-release-identity code {
  border: 0;
  background: transparent;
  padding: 0;
  color: #8bdcff;
  box-shadow: none;
}

.current-release-detail-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 15px 18px 18px;
  color: rgba(214, 210, 200, 0.72);
  font-size: 10px;
  line-height: 1.5;
}

.current-release-detail-link button {
  flex: 0 0 auto;
}

.qualification-panel {
  border-color: rgba(245, 130, 85, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 105, 67, 0.09), transparent 30%),
    #0b151d;
}

.current-benchmark {
  margin-top: 14px;
  border-color: rgba(245, 130, 85, 0.24);
  background:
    linear-gradient(135deg, rgba(217, 105, 67, 0.055), transparent 38%),
    #09131c;
}

.live-beta-benchmark {
  margin-top: 0;
  margin-bottom: 14px;
  border-color: rgba(245, 130, 85, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 130, 85, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(217, 105, 67, 0.075), transparent 44%),
    #09131c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.live-beta-benchmark .benchmark-context {
  border-color: rgba(245, 130, 85, 0.26);
  background: rgba(217, 105, 67, 0.06);
}

.live-beta-benchmark .benchmark-context strong,
.live-beta-benchmark .current-benchmark-table td strong {
  color: #ff9a70;
}

.historical-benchmark {
  margin-top: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    #080f16;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(154, 165, 177, 0.12);
  padding: 20px 22px;
}

.panel-heading h3 {
  margin: 5px 0 0;
  color: #f2fbff;
  font-size: 22px;
  letter-spacing: -0.015em;
}

.evidence-date {
  color: rgba(154, 165, 177, 0.76);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  min-height: 27px;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(154, 165, 177, 0.2);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-badge-live {
  border-color: rgba(245, 130, 85, 0.28);
  background: rgba(217, 105, 67, 0.08);
  color: var(--green-2);
}

.status-badge-history {
  border-color: rgba(242, 176, 78, 0.24);
  background: rgba(242, 176, 78, 0.055);
  color: #f4c77f;
}

.status-badge-next {
  border-color: rgba(85, 167, 255, 0.25);
  background: rgba(85, 167, 255, 0.06);
  color: #8bdcff;
}

.status-badge-roadmap {
  color: rgba(214, 210, 200, 0.7);
}

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qualification-grid > div {
  min-width: 0;
  border-left: 1px solid rgba(154, 165, 177, 0.11);
  padding: 22px;
}

.qualification-grid > div:first-child {
  border-left: 0;
}

.qualification-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(111, 123, 136, 0.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualification-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green-2);
  font-size: 18px;
}

.qualification-grid p {
  margin: 0;
  color: rgba(214, 210, 200, 0.66);
  font-size: 12px;
  line-height: 1.55;
}

.qualification-limit {
  margin: 0;
  border-top: 1px solid rgba(154, 165, 177, 0.11);
  background: rgba(3, 9, 14, 0.32);
  padding: 13px 22px;
  color: rgba(214, 210, 200, 0.66);
  font-size: 11px;
  line-height: 1.55;
}

.benchmark-context {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 18px 0;
  border: 1px solid rgba(242, 176, 78, 0.15);
  border-radius: 8px;
  background: rgba(242, 176, 78, 0.035);
  padding: 11px 13px;
}

.benchmark-context strong {
  color: #f4c77f;
  font-size: 11px;
}

.benchmark-context span {
  color: rgba(214, 210, 200, 0.62);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.current-benchmark .benchmark-context {
  border-color: rgba(245, 130, 85, 0.2);
  background: rgba(217, 105, 67, 0.045);
}

.current-benchmark .benchmark-context strong {
  color: var(--copper-active);
}

.benchmark-table-wrap {
  overflow-x: auto;
  margin: 12px 18px 0;
  border: 1px solid rgba(154, 165, 177, 0.13);
  border-radius: 8px;
}

.timing-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.timing-table th,
.timing-table td {
  border-top: 1px solid rgba(154, 165, 177, 0.11);
  padding: 15px 17px;
  text-align: left;
  vertical-align: middle;
}

.timing-table thead th {
  border-top: 0;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(111, 123, 136, 0.96);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timing-table thead th:not(:first-child) {
  width: 17%;
  text-align: right;
}

.timing-table tbody th {
  font-weight: 400;
}

.timing-table tbody th strong,
.timing-table tbody th span {
  display: block;
}

.timing-table tbody th strong {
  color: rgba(242, 239, 231, 0.9);
  font-size: 13px;
}

.timing-table tbody th span {
  margin-top: 4px;
  color: rgba(154, 165, 177, 0.62);
  font-size: 10px;
  line-height: 1.45;
}

.timing-table td {
  color: var(--copper-active);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.timing-table tr.timing-total {
  background: rgba(217, 105, 67, 0.05);
}

.current-benchmark-table thead th:not(:first-child) {
  width: 28%;
}

.current-benchmark-table td {
  color: rgba(214, 210, 200, 0.78);
  font-size: 13px;
}

.current-benchmark-table td strong,
.current-benchmark-table td span {
  display: inline;
}

.current-benchmark-table td strong {
  color: var(--copper-active);
  font-size: clamp(18px, 1.6vw, 23px);
}

.current-benchmark-table td span {
  margin-left: 3px;
  white-space: nowrap;
}

.current-benchmark-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.012);
}

.benchmark-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 12px 18px 0;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 8px;
  background: rgba(3, 9, 14, 0.24);
}

.benchmark-proof-grid > div {
  min-width: 0;
  border-left: 1px solid rgba(154, 165, 177, 0.1);
  padding: 13px 15px;
}

.benchmark-proof-grid > div:first-child {
  border-left: 0;
}

.benchmark-proof-grid strong,
.benchmark-proof-grid span {
  display: block;
}

.benchmark-proof-grid strong {
  color: rgba(242, 239, 231, 0.92);
  font-size: 13px;
}

.benchmark-proof-grid span {
  margin-top: 4px;
  color: rgba(154, 165, 177, 0.68);
  font-size: 9px;
  line-height: 1.45;
}

.benchmark-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  padding: 15px 20px 19px;
}

.benchmark-notes p {
  margin: 0;
  color: rgba(154, 165, 177, 0.72);
  font-size: 10px;
  line-height: 1.55;
}

.benchmark-notes strong {
  color: rgba(214, 210, 200, 0.9);
}

.benchmark-notes .benchmark-pending-note {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(154, 165, 177, 0.09);
  padding-top: 12px;
}

.current-benchmark-notes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.current-benchmark-notes .benchmark-mode-note {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(154, 165, 177, 0.09);
  padding-top: 12px;
}

.historical-benchmark-details > summary {
  list-style: none;
}

.historical-benchmark-details > summary::-webkit-details-marker {
  display: none;
}

.historical-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 16px 20px;
}

.historical-summary:focus-visible {
  outline: 2px solid var(--copper-active);
  outline-offset: -3px;
}

.historical-summary-copy,
.historical-summary-copy strong,
.historical-summary-copy small {
  display: block;
}

.historical-summary-copy strong {
  margin-top: 5px;
  color: rgba(242, 239, 231, 0.82);
  font-size: 14px;
}

.historical-summary-copy small {
  margin-top: 4px;
  color: rgba(154, 165, 177, 0.62);
  font-size: 10px;
  line-height: 1.45;
}

.historical-summary-action {
  display: inline-flex;
  min-height: 28px;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(242, 176, 78, 0.2);
  border-radius: 999px;
  color: #f4c77f;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.historical-summary-action .when-open,
.historical-benchmark-details[open] .historical-summary-action .when-closed {
  display: none;
}

.historical-benchmark-details[open] .historical-summary-action .when-open {
  display: inline;
}

.historical-benchmark-details[open] .historical-summary {
  border-bottom: 1px solid rgba(154, 165, 177, 0.11);
}

.historical-benchmark-body {
  padding-bottom: 2px;
}

/* Availability is deliberately more prominent than roadmap work. */

.rollout-section {
  scroll-margin-top: 92px;
}

.rollout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 14px;
}

.rollout-live,
.rollout-pending article {
  min-width: 0;
  border: 1px solid rgba(154, 165, 177, 0.14);
  border-radius: 11px;
  background: #0b141d;
  padding: clamp(20px, 2.4vw, 30px);
}

.rollout-live {
  border-color: rgba(245, 130, 85, 0.27);
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 105, 67, 0.12), transparent 35%),
    linear-gradient(145deg, rgba(217, 105, 67, 0.045), transparent 52%),
    #0b151d;
}

.rollout-pending {
  display: grid;
  gap: 14px;
}

.rollout-pending article {
  background: rgba(12, 21, 30, 0.74);
}

.rollout-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.rollout-index {
  color: rgba(111, 123, 136, 0.6);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.rollout-live h3,
.rollout-pending h3 {
  margin-bottom: 10px;
  color: #f2fbff;
  font-size: 24px;
  letter-spacing: -0.018em;
}

.rollout-live > p,
.rollout-pending p {
  color: rgba(214, 210, 200, 0.7);
  font-size: 13px;
  line-height: 1.65;
}

.rollout-live > p {
  max-width: 730px;
}

.rollout-endpoints {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 28px 0 24px;
}

.rollout-endpoints div {
  min-width: 0;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 7px;
  background: rgba(3, 9, 14, 0.44);
  padding: 11px 12px;
}

.rollout-endpoints dt {
  margin-bottom: 7px;
  color: rgba(111, 123, 136, 0.9);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rollout-endpoints dd {
  min-width: 0;
  margin: 0;
  color: rgba(242, 239, 231, 0.86);
  font-size: 11px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.rollout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.rollout-actions button,
.rollout-actions a.primary-action {
  min-width: 150px;
}

.rollout-actions a.primary-action,
.home-launch-actions a.primary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 130, 85, 0.5);
  border-radius: 8px;
  padding: 0 15px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.rollout-actions a.primary-action:hover,
.home-launch-actions a.primary-action:hover {
  border-color: rgba(134, 255, 226, 0.8);
  box-shadow: 0 12px 30px rgba(217, 105, 67, 0.28);
  transform: translateY(-1px);
}

.rollout-disclosure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  border: 1px solid rgba(154, 165, 177, 0.13);
  border-radius: 9px;
  background: rgba(3, 9, 14, 0.34);
  padding: 14px 16px;
}

.rollout-disclosure > div {
  display: grid;
  gap: 3px;
}

.rollout-disclosure strong {
  color: rgba(242, 239, 231, 0.9);
  font-size: 12px;
}

.rollout-disclosure span {
  color: rgba(154, 165, 177, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

.rollout-disclosure .api-link {
  flex: 0 0 auto;
  margin-top: 0;
}

.home-launch-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(245, 130, 85, 0.19);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 12%, rgba(85, 167, 255, 0.09), transparent 30%),
    linear-gradient(125deg, rgba(217, 105, 67, 0.075), transparent 52%),
    #08121a;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.home-launch-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.025em;
}

.home-launch-cta p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(214, 210, 200, 0.7);
  font-size: 14px;
}

.home-launch-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.home-launch-actions button,
.home-launch-actions a.primary-action {
  min-width: 140px;
}

/* Homepage evidence summary and first-class benchmark dashboard. */

.hero-trust-strip {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid rgba(245, 130, 85, 0.16);
  border-bottom: 1px solid rgba(245, 130, 85, 0.12);
  padding: 0;
  list-style: none;
}

.hero-trust-strip li {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 8px;
  border-left: 1px solid rgba(154, 165, 177, 0.1);
  color: rgba(242, 239, 231, 0.72);
  padding: 10px 9px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-trust-strip li:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-trust-strip li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 3px rgba(245, 130, 85, 0.08);
}

.performance-summary-section {
  border-color: rgba(245, 130, 85, 0.3);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 130, 85, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(217, 105, 67, 0.055), transparent 50%),
    #081119;
}

.performance-summary-heading {
  align-items: center;
  margin-bottom: 24px;
}

.performance-summary-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.performance-summary-meta span,
.performance-summary-meta code {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(154, 165, 177, 0.15);
  border-radius: 999px;
  background: rgba(3, 9, 14, 0.42);
  padding: 5px 10px;
  color: rgba(214, 210, 200, 0.74);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.performance-summary-meta code {
  min-height: 30px;
  color: #ff9a70;
  box-shadow: none;
}

.performance-summary-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.2fr 1.2fr 0.9fr 0.9fr;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.14);
  border-radius: 10px;
  background: rgba(3, 9, 14, 0.42);
}

.performance-summary-grid article {
  min-width: 0;
  border-left: 1px solid rgba(154, 165, 177, 0.11);
  padding: clamp(16px, 2vw, 24px);
}

.performance-summary-grid article:first-child {
  border-left: 0;
}

.performance-summary-grid span,
.performance-summary-grid strong,
.performance-summary-grid p {
  display: block;
}

.performance-summary-grid span {
  margin-bottom: 12px;
  color: rgba(154, 165, 177, 0.78);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.performance-summary-grid strong {
  color: #f5f7f2;
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.performance-summary-grid p {
  margin: 9px 0 0;
  color: rgba(154, 165, 177, 0.78);
  font-size: 10px;
  line-height: 1.5;
}

.performance-summary-grid .performance-latency-card {
  background: linear-gradient(180deg, rgba(217, 105, 67, 0.06), transparent);
}

.performance-summary-grid .performance-latency-card strong {
  color: #ff9a70;
}

.performance-summary-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 16px;
}

.performance-summary-footer p {
  max-width: 800px;
  margin: 0;
  color: rgba(214, 210, 200, 0.68);
  font-size: 12px;
}

.performance-summary-footer button {
  flex: 0 0 auto;
}

[data-evidence-gated][hidden],
[data-evidence-fallback][hidden] {
  display: none !important;
}

.benchmark-dashboard {
  gap: 16px;
  color: var(--ink);
}

.page-view h1[tabindex="-1"]:focus,
.page-view h2[tabindex="-1"]:focus,
.page-view h3[tabindex="-1"]:focus {
  outline: none;
  box-shadow: none;
}

.page-view h1[tabindex="-1"]:focus-visible,
.page-view h2[tabindex="-1"]:focus-visible,
.page-view h3[tabindex="-1"]:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(245, 130, 85, 0.72);
  outline-offset: 6px;
}

.benchmark-dashboard-header {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  border-color: rgba(245, 130, 85, 0.26);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 130, 85, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(217, 105, 67, 0.045), transparent 52%),
    #081119;
  padding: clamp(28px, 3vw, 44px);
}

.benchmark-dashboard-header h1 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(42px, 3.4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: pretty;
}

.benchmark-dashboard-header > div > p:not(.eyebrow) {
  max-width: 800px;
  color: rgba(214, 210, 200, 0.72);
}

.benchmark-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.benchmark-header-actions button {
  min-width: 190px;
}

.benchmark-status-card {
  align-self: stretch;
  border: 1px solid rgba(245, 130, 85, 0.21);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(217, 105, 67, 0.08), transparent 46%),
    rgba(3, 9, 14, 0.58);
  padding: 20px;
}

.benchmark-status-card > div {
  margin: 28px 0 22px;
}

.benchmark-status-card > div span,
.benchmark-status-card > div strong,
.benchmark-status-card > div small {
  display: block;
}

.benchmark-status-card > div span {
  color: rgba(154, 165, 177, 0.78);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benchmark-status-card > div strong {
  margin-top: 8px;
  color: #ff9a70;
  font-size: clamp(38px, 3.7vw, 54px);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.benchmark-status-card > div small {
  margin-top: 8px;
  color: rgba(214, 210, 200, 0.64);
  font-size: 11px;
}

.benchmark-status-card dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(154, 165, 177, 0.12);
}

.benchmark-status-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(154, 165, 177, 0.1);
  padding: 10px 0;
}

.benchmark-status-card dt,
.benchmark-status-card dd {
  margin: 0;
}

.benchmark-status-card dt {
  color: rgba(154, 165, 177, 0.78);
  font-size: 10px;
}

.benchmark-status-card dd {
  color: rgba(242, 239, 231, 0.9);
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.benchmark-dashboard-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.14);
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%),
    #0a131b;
  padding: clamp(24px, 3.4vw, 42px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.benchmark-overview-panel,
.benchmark-latency-panel {
  border-color: rgba(245, 130, 85, 0.24);
}

.current-release-dashboard-panel {
  border-color: rgba(245, 130, 85, 0.4);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 130, 85, 0.11), transparent 30%),
    linear-gradient(145deg, rgba(217, 105, 67, 0.055), transparent 44%),
    #09131b;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.current-release-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.14);
  border-radius: 9px;
  background: rgba(3, 9, 14, 0.4);
}

.current-release-kpi-grid article {
  min-width: 0;
  border-top: 1px solid rgba(154, 165, 177, 0.1);
  border-left: 1px solid rgba(154, 165, 177, 0.1);
  padding: 20px;
}

.current-release-kpi-grid article:nth-child(-n + 3) {
  border-top: 0;
}

.current-release-kpi-grid article:nth-child(3n + 1) {
  border-left: 0;
}

.current-release-kpi-grid span,
.current-release-kpi-grid strong {
  display: block;
}

.current-release-kpi-grid span {
  color: rgba(178, 187, 194, 0.84);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.current-release-kpi-grid strong {
  margin-top: 11px;
  color: #ff9a70;
  font-size: clamp(27px, 3vw, 40px);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.current-release-kpi-grid p {
  margin: 9px 0 0;
  color: rgba(178, 187, 194, 0.82);
  font-size: 10px;
  line-height: 1.5;
}

.current-release-fast-kpi {
  background: linear-gradient(180deg, rgba(85, 167, 255, 0.045), transparent);
}

.current-release-boundary-dashboard {
  margin: 14px 0;
}

.current-release-mode-summary {
  margin-bottom: 30px;
}

.current-release-subheading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: 2px 0 16px;
}

.current-release-subheading h3 {
  margin: 4px 0 0;
  color: #f5f7f2;
  font-size: clamp(22px, 2.4vw, 31px);
  letter-spacing: -0.02em;
}

.current-release-subheading > p {
  max-width: 420px;
  margin: 0;
  color: rgba(178, 187, 194, 0.84);
  font-size: 11px;
  text-align: right;
}

.current-release-cohort-table {
  min-width: 900px;
}

.current-release-cohort-table tbody th strong,
.current-release-cohort-table tbody th span {
  display: inline-block;
}

.current-release-cohort-table tbody th span {
  margin-left: 6px;
  color: rgba(178, 187, 194, 0.84);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.publication-guard-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: 22px;
  margin-top: 14px;
  border: 1px solid rgba(245, 130, 85, 0.22);
  border-left: 3px solid #f58255;
  border-radius: 8px;
  background: rgba(217, 105, 67, 0.045);
  padding: 16px;
}

.publication-guard-card > div > span,
.publication-guard-card > div > strong {
  display: block;
}

.publication-guard-card > div > span {
  color: #ffad8d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-guard-card > div > strong {
  margin-top: 9px;
  color: rgba(242, 239, 231, 0.9);
  font-size: 11px;
  line-height: 1.55;
}

.publication-guard-card dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.11);
  border-radius: 7px;
  background: rgba(154, 165, 177, 0.1);
}

.publication-guard-card dl div {
  min-width: 0;
  background: #081119;
  padding: 9px 10px;
}

.publication-guard-card dt,
.publication-guard-card dd {
  margin: 0;
}

.publication-guard-card dt {
  color: rgba(178, 187, 194, 0.8);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.publication-guard-card dd {
  margin-top: 5px;
  color: #f5f7f2;
  font-size: 11px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.current-release-evidence-identity {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.funded-boundary-separation {
  margin: 12px 0 0;
  border: 1px solid rgba(242, 176, 78, 0.16);
  border-radius: 7px;
  background: rgba(242, 176, 78, 0.035);
  padding: 13px 15px;
  color: rgba(214, 210, 200, 0.72);
  font-size: 11px;
  line-height: 1.6;
}

.funded-boundary-separation strong {
  color: #f4c77f;
}

.benchmark-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.benchmark-section-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -0.025em;
}

.benchmark-section-heading > p {
  max-width: 600px;
  margin: 0;
  color: rgba(154, 165, 177, 0.75);
  font-size: 13px;
  line-height: 1.65;
}

.benchmark-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.13);
  border-radius: 9px;
  background: rgba(3, 9, 14, 0.34);
}

.benchmark-overview-grid article {
  min-width: 0;
  border-top: 1px solid rgba(154, 165, 177, 0.1);
  border-left: 1px solid rgba(154, 165, 177, 0.1);
  padding: 21px;
}

.benchmark-overview-grid article:nth-child(-n + 3) {
  border-top: 0;
}

.benchmark-overview-grid article:nth-child(3n + 1) {
  border-left: 0;
}

.benchmark-overview-grid span,
.benchmark-overview-grid strong {
  display: block;
}

.benchmark-overview-grid span {
  color: rgba(154, 165, 177, 0.75);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benchmark-overview-grid strong {
  margin-top: 13px;
  color: #ff9a70;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.benchmark-overview-grid p {
  margin: 9px 0 0;
  color: rgba(154, 165, 177, 0.75);
  font-size: 10px;
  line-height: 1.5;
}

.benchmark-progress-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.benchmark-progress-grid > div {
  border: 1px solid rgba(154, 165, 177, 0.13);
  border-radius: 8px;
  background: rgba(3, 9, 14, 0.28);
  padding: 15px;
}

.benchmark-progress-grid > div > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.benchmark-progress-grid span {
  color: rgba(214, 210, 200, 0.7);
  font-size: 11px;
  font-weight: 800;
}

.benchmark-progress-grid strong {
  color: rgba(242, 239, 231, 0.92);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

progress {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(154, 165, 177, 0.12);
  color: var(--green-2);
}

progress::-webkit-progress-bar {
  border-radius: 999px;
  background: rgba(154, 165, 177, 0.12);
}

progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

.benchmark-identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 12px 0 0;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 8px;
  background: rgba(154, 165, 177, 0.1);
}

.benchmark-identity-grid > div {
  min-width: 0;
  background: #081119;
  padding: 14px 16px;
}

.benchmark-identity-grid dt,
.benchmark-identity-grid dd {
  margin: 0;
}

.benchmark-identity-grid dt {
  margin-bottom: 7px;
  color: rgba(154, 165, 177, 0.75);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benchmark-identity-grid dd {
  color: rgba(242, 239, 231, 0.84);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.benchmark-identity-grid code,
.benchmark-history-grid code,
.measurement-definition-grid code {
  display: inline;
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: #83d7ff;
  box-shadow: none;
  overflow-wrap: anywhere;
}

.benchmark-public-wording {
  margin: 12px 0 0;
  border: 1px solid rgba(245, 130, 85, 0.2);
  border-left: 3px solid var(--green-2);
  border-radius: 7px;
  background: rgba(217, 105, 67, 0.045);
  padding: 15px 17px;
  color: rgba(214, 210, 200, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.benchmark-warning {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 14px;
  border: 1px solid rgba(242, 176, 78, 0.2);
  border-radius: 8px;
  background: rgba(242, 176, 78, 0.045);
  padding: 13px 15px;
}

.benchmark-warning strong {
  flex: 0 0 auto;
  color: #f4c77f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benchmark-warning span {
  max-width: 850px;
  color: rgba(214, 210, 200, 0.7);
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.benchmark-filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 12px;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 8px;
  background: rgba(3, 9, 14, 0.28);
  padding: 11px;
}

.benchmark-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.benchmark-filter-group > span {
  margin-right: 3px;
  color: rgba(154, 165, 177, 0.7);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benchmark-filter-group button {
  min-height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0 10px;
  color: rgba(214, 210, 200, 0.72);
  font-size: 10px;
}

.benchmark-filter-group button[aria-pressed="true"] {
  border-color: rgba(245, 130, 85, 0.4);
  background: rgba(217, 105, 67, 0.12);
  color: #ffad8d;
}

.benchmark-filter-status {
  margin: 0 0 0 auto;
  color: rgba(154, 165, 177, 0.75);
  font-size: 10px;
}

.benchmark-dashboard-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(154, 165, 177, 0.13);
  border-radius: 8px;
}

.benchmark-dashboard-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: rgba(214, 210, 200, 0.8);
  font-variant-numeric: tabular-nums;
}

.benchmark-dashboard-table caption {
  padding: 13px 15px;
  color: rgba(154, 165, 177, 0.75);
  font-size: 10px;
  line-height: 1.5;
  text-align: left;
}

.benchmark-dashboard-table th,
.benchmark-dashboard-table td {
  border-top: 1px solid rgba(154, 165, 177, 0.1);
  padding: 13px 15px;
  text-align: left;
  white-space: nowrap;
}

.benchmark-dashboard-table thead th {
  background: rgba(255, 255, 255, 0.026);
  color: rgba(154, 165, 177, 0.78);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benchmark-dashboard-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.012);
}

.benchmark-dashboard-table tbody th {
  color: rgba(242, 239, 231, 0.9);
  font-size: 11px;
}

.benchmark-dashboard-table tbody td {
  font-size: 11px;
}

.benchmark-dashboard-table tbody td:nth-last-child(-n + 2) {
  color: rgba(242, 239, 231, 0.86);
  font-size: 14px;
  text-align: right;
}

.benchmark-dashboard-table tbody td strong {
  color: #ff9a70;
}

.benchmark-mode-chip {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border: 1px solid rgba(245, 130, 85, 0.24);
  border-radius: 999px;
  background: rgba(217, 105, 67, 0.07);
  padding: 4px 8px;
  color: #ff9a70;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benchmark-mode-chip-fast {
  border-color: rgba(85, 167, 255, 0.25);
  background: rgba(85, 167, 255, 0.06);
  color: #8bdcff;
}

.timing-table tbody th .benchmark-mode-chip {
  display: inline-flex;
  margin-top: 0;
  color: #ffad8d;
  font-size: 9px;
  line-height: 1.45;
}

.timing-table tbody th .benchmark-mode-chip-fast {
  color: #8bdcff;
}

.benchmark-table-note {
  margin: 11px 0 0;
  color: rgba(154, 165, 177, 0.75);
  font-size: 10px;
  line-height: 1.55;
}

.measurement-definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.measurement-definition-grid > div {
  min-width: 0;
  border: 1px solid rgba(154, 165, 177, 0.13);
  border-radius: 8px;
  background: rgba(3, 9, 14, 0.3);
  padding: 20px;
}

.measurement-definition-grid dt,
.measurement-definition-grid dd {
  margin: 0;
}

.measurement-definition-grid dt {
  margin-bottom: 12px;
  color: #ff9a70;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.measurement-definition-grid dd {
  color: rgba(214, 210, 200, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.benchmark-coverage-table progress {
  min-width: 180px;
}

.benchmark-coverage-table td strong {
  color: rgba(242, 239, 231, 0.9);
}

.benchmark-coverage-warning {
  margin: 14px 0 0;
}

.benchmark-history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benchmark-history-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(242, 176, 78, 0.15);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(242, 176, 78, 0.035), transparent 46%),
    rgba(3, 9, 14, 0.32);
  padding: 21px;
}

.benchmark-history-grid article > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.benchmark-history-grid time {
  color: rgba(154, 165, 177, 0.75);
  font-size: 10px;
}

.benchmark-history-grid h3 {
  margin-top: 23px;
  color: rgba(242, 239, 231, 0.9);
  font-size: 21px;
}

.benchmark-history-grid p {
  color: rgba(154, 165, 177, 0.75);
  font-size: 11px;
}

.benchmark-history-grid article > strong {
  margin-top: auto;
  color: #f4c77f;
  font-size: 10px;
  line-height: 1.5;
}

.benchmark-history-grid button {
  align-self: flex-start;
  margin-top: 18px;
  min-height: 36px;
  background: rgba(242, 176, 78, 0.045);
  color: #f4c77f;
  font-size: 10px;
}

.benchmark-history-rule {
  margin: 12px 0 0;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 7px;
  background: rgba(3, 9, 14, 0.26);
  padding: 12px 14px;
  color: rgba(214, 210, 200, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.measurement-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.13);
  border-radius: 9px;
  background: rgba(3, 9, 14, 0.3);
}

.measurement-roadmap-grid article {
  min-width: 0;
  border-left: 1px solid rgba(154, 165, 177, 0.1);
  padding: 18px;
}

.measurement-roadmap-grid article:first-child {
  border-left: 0;
}

.measurement-roadmap-grid span,
.measurement-roadmap-grid strong {
  display: block;
}

.measurement-roadmap-grid span {
  min-height: 31px;
  color: rgba(154, 165, 177, 0.75);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.measurement-roadmap-grid strong {
  margin-top: 12px;
  color: rgba(242, 239, 231, 0.82);
  font-size: 13px;
  line-height: 1.3;
}

.measurement-roadmap-grid p {
  margin: 8px 0 0;
  color: rgba(154, 165, 177, 0.75);
  font-size: 10px;
  line-height: 1.5;
}

.measurement-roadmap-grid .measurement-roadmap-published {
  background: linear-gradient(180deg, rgba(217, 105, 67, 0.085), transparent);
}

.measurement-roadmap-grid .measurement-roadmap-published span {
  color: #ffad8d;
}

.measurement-roadmap-grid .measurement-roadmap-published strong {
  color: #f5f7f2;
}

.measurement-roadmap-verified {
  margin: 12px 0 0;
  color: rgba(154, 165, 177, 0.75);
  font-size: 10px;
  text-align: right;
}

@media (max-width: 1180px) {
  .benchmark-dashboard-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  .home-section-heading,
  .rollout-grid,
  .home-launch-cta,
  .benchmark-section-heading {
    grid-template-columns: 1fr;
  }

  .home-section-heading {
    gap: 12px;
    align-items: start;
  }

  .performance-summary-meta {
    justify-content: flex-start;
  }

  .performance-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .current-release-highlight-grid,
  .current-release-identity,
  .current-release-evidence-identity,
  .publication-guard-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .current-release-highlight-grid > div:nth-child(odd),
  .current-release-identity > div:nth-child(odd) {
    border-left: 0;
  }

  .current-release-highlight-grid > div:nth-child(n + 3) {
    border-top: 1px solid rgba(154, 165, 177, 0.1);
  }

  .performance-summary-grid article {
    border-top: 1px solid rgba(154, 165, 177, 0.11);
  }

  .performance-summary-grid article:nth-child(-n + 2) {
    border-top: 0;
  }

  .performance-summary-grid article:nth-child(odd) {
    border-left: 0;
  }

  .benchmark-section-heading {
    gap: 12px;
    align-items: start;
  }

  .benchmark-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benchmark-overview-grid article {
    border-top: 1px solid rgba(154, 165, 177, 0.1);
    border-left: 1px solid rgba(154, 165, 177, 0.1);
  }

  .benchmark-overview-grid article:nth-child(-n + 2) {
    border-top: 0;
  }

  .benchmark-overview-grid article:nth-child(odd) {
    border-left: 0;
  }

  .measurement-roadmap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .measurement-roadmap-grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(154, 165, 177, 0.1);
  }

  .measurement-roadmap-grid article:nth-child(5) {
    border-top: 1px solid rgba(154, 165, 177, 0.1);
  }

  .measurement-roadmap-grid article:nth-child(6) {
    border-top: 1px solid rgba(154, 165, 177, 0.1);
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-card:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .rollout-pending {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-launch-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  #view-home {
    gap: 16px;
  }

  .hero-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trust-strip li {
    min-height: 48px;
    border-top: 1px solid rgba(154, 165, 177, 0.1);
  }

  .hero-trust-strip li:nth-child(-n + 2) {
    border-top: 0;
  }

  .hero-trust-strip li:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .hero-trust-strip li:last-child {
    grid-column: 1 / -1;
  }

  .brand-logo-topnav {
    width: 138px;
  }

  #view-home > .home-section,
  #view-home > .home-launch-cta {
    width: calc(100% - 16px);
  }

  .home-section,
  .home-launch-cta {
    border-radius: 10px;
    padding: 24px 16px;
  }

  .capability-grid,
  .qualification-grid,
  .rollout-pending,
  .current-release-highlight-grid,
  .current-release-identity,
  .current-release-kpi-grid,
  .current-release-evidence-identity,
  .benchmark-notes,
  .benchmark-proof-grid,
  .performance-summary-grid,
  .benchmark-overview-grid,
  .benchmark-progress-grid,
  .benchmark-identity-grid,
  .measurement-definition-grid,
  .benchmark-history-grid,
  .measurement-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .current-release-masthead,
  .current-release-subheading,
  .current-release-detail-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .current-release-subheading > p {
    text-align: left;
  }

  .current-release-highlight-grid > div,
  .current-release-highlight-grid > div:nth-child(odd),
  .current-release-identity > div,
  .current-release-kpi-grid article,
  .current-release-kpi-grid article:nth-child(-n + 3),
  .current-release-kpi-grid article:nth-child(3n + 1) {
    border-top: 1px solid rgba(154, 165, 177, 0.1);
    border-left: 0;
  }

  .current-release-highlight-grid > div:first-child,
  .current-release-identity > div:first-child,
  .current-release-kpi-grid article:first-child {
    border-top: 0;
  }

  .current-release-boundary,
  .publication-guard-card {
    grid-template-columns: 1fr;
  }

  .current-release-boundary strong {
    white-space: normal;
  }

  .publication-guard-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .current-release-detail-link button {
    width: 100%;
  }

  .performance-summary-grid article,
  .benchmark-overview-grid article,
  .measurement-roadmap-grid article,
  .measurement-roadmap-grid article:nth-child(4),
  .measurement-roadmap-grid article:nth-child(5) {
    border-top: 1px solid rgba(154, 165, 177, 0.1);
    border-left: 0;
  }

  .performance-summary-grid article:first-child,
  .benchmark-overview-grid article:first-child,
  .measurement-roadmap-grid article:first-child {
    border-top: 0;
  }

  .performance-summary-footer,
  .benchmark-warning {
    align-items: flex-start;
    flex-direction: column;
  }

  .performance-summary-footer button {
    width: 100%;
  }

  .benchmark-dashboard-header,
  .benchmark-dashboard-panel {
    padding: 20px 16px;
  }

  .benchmark-dashboard-header h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .benchmark-header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .benchmark-header-actions button {
    width: 100%;
    min-width: 0;
  }

  .benchmark-warning span {
    text-align: left;
  }

  .benchmark-filter-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .benchmark-filter-group {
    width: 100%;
  }

  .benchmark-filter-group button {
    min-height: 42px;
  }

  .benchmark-filter-status {
    width: 100%;
    margin-left: 0;
  }

  .benchmark-dashboard-table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  .benchmark-history-grid article > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .measurement-roadmap-verified {
    text-align: left;
  }

  .capability-card,
  .capability-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .capability-card > p {
    min-height: 0;
  }

  .console-endpoint small,
  .execution-flow li small {
    display: none;
  }

  .console-endpoint {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .execution-flow li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .execution-flow li strong {
    font-size: 12px;
  }

  .console-note {
    color: rgba(242, 239, 231, 0.66);
    font-size: 11px;
  }

  .custody-boundary {
    grid-template-columns: 1fr;
    gap: 13px;
    align-items: start;
    padding: 16px;
  }

  .custody-boundary > div:last-child {
    text-align: left;
  }

  .custody-boundary > p {
    width: fit-content;
    white-space: normal;
  }

  .availability-note,
  .benchmark-context,
  .rollout-disclosure {
    align-items: flex-start;
    flex-direction: column;
  }

  .availability-note span,
  .benchmark-context span {
    text-align: left;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column-reverse;
    padding: 18px 16px;
  }

  .qualification-grid > div {
    border-top: 1px solid rgba(154, 165, 177, 0.11);
    border-left: 0;
    padding: 18px 16px;
  }

  .qualification-grid > div:first-child {
    border-top: 0;
  }

  .qualification-limit {
    padding-inline: 16px;
  }

  .benchmark-context,
  .benchmark-table-wrap,
  .benchmark-proof-grid {
    margin-inline: 12px;
  }

  .benchmark-proof-grid > div {
    border-top: 1px solid rgba(154, 165, 177, 0.1);
    border-left: 0;
  }

  .benchmark-proof-grid > div:first-child {
    border-top: 0;
  }

  .timing-table {
    min-width: 0;
  }

  .timing-table thead {
    display: none;
  }

  .timing-table tbody,
  .timing-table tr {
    display: block;
  }

  .timing-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(154, 165, 177, 0.11);
  }

  .timing-table tbody tr:first-child {
    border-top: 0;
  }

  .timing-table tbody th {
    grid-column: 1 / -1;
    border-top: 0;
    padding: 15px 14px 12px;
  }

  .timing-table td {
    display: grid;
    gap: 5px;
    border-top: 1px solid rgba(154, 165, 177, 0.09);
    padding: 11px 14px 14px;
    font-size: 19px;
    text-align: left;
  }

  .timing-table td + td {
    border-left: 1px solid rgba(154, 165, 177, 0.09);
  }

  .page-view:not([hidden]) .timing-table td::before {
    content: attr(data-label);
    color: rgba(111, 123, 136, 0.92);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .benchmark-notes {
    padding-inline: 14px;
  }

  .historical-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-inline: 16px;
  }

  .rollout-endpoints {
    grid-template-columns: 1fr;
  }

  .home-launch-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-launch-actions button,
  .home-launch-actions a.primary-action,
  .rollout-actions button,
  .rollout-actions a.primary-action {
    width: 100%;
  }
}

/* Benchmarks: answer-first narrative, August 2026. */
.benchmark-dashboard-header {
  min-height: min(650px, calc(100dvh - 48px));
  align-items: center;
  border-color: rgba(66, 197, 157, 0.22);
  background:
    radial-gradient(circle at 88% 12%, rgba(66, 197, 157, 0.11), transparent 28%),
    radial-gradient(circle at 6% 100%, rgba(245, 130, 85, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(85, 167, 255, 0.04), transparent 50%),
    #081119;
}

.benchmark-dashboard-header::after {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 0;
  left: clamp(24px, 4vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 197, 157, 0.5), transparent);
  content: "";
}

.benchmark-header-kicker {
  margin: 16px 0 8px;
  color: #83d7ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.benchmark-dashboard-header h1 {
  max-width: 14ch;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(46px, 4.6vw, 74px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.benchmark-dashboard-header > div > .benchmark-header-lede {
  max-width: 760px;
  color: rgba(226, 228, 223, 0.82);
  font-size: 15px;
  line-height: 1.72;
}

.benchmark-status-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(66, 197, 157, 0.3);
  background:
    linear-gradient(180deg, rgba(66, 197, 157, 0.09), transparent 44%),
    rgba(3, 9, 14, 0.68);
  padding: 24px;
}

.benchmark-status-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #42c59d, rgba(66, 197, 157, 0.08));
  content: "";
}

.benchmark-status-card .status-badge-qualified {
  border-color: rgba(66, 197, 157, 0.38);
  background: rgba(66, 197, 157, 0.1);
  color: #8ce3c7;
}

.benchmark-status-card > div strong {
  color: #8ce3c7;
  font-size: clamp(44px, 4.2vw, 62px);
}

.benchmark-status-card dt {
  color: rgba(194, 202, 207, 0.76);
  font-size: 11px;
}

.benchmark-status-card dd {
  font-size: 13px;
}

.benchmark-dashboard > #benchmarkEvidenceLoadStatus {
  margin: 0;
  border: 1px solid rgba(66, 197, 157, 0.14);
  border-radius: 7px;
  background: rgba(66, 197, 157, 0.035);
  padding: 10px 14px;
  color: rgba(196, 213, 207, 0.8);
  font-size: 11px;
}

.benchmark-story-nav {
  position: sticky;
  z-index: 8;
  top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(154, 165, 177, 0.18);
  border-radius: 10px;
  background: rgba(8, 17, 25, 0.94);
  padding: 12px 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.benchmark-story-nav p,
.benchmark-story-nav p span,
.benchmark-story-nav p strong {
  display: block;
  margin: 0;
}

.benchmark-story-nav p span {
  color: #8ce3c7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.benchmark-story-nav p strong {
  margin-top: 3px;
  color: rgba(226, 228, 223, 0.8);
  font-size: 12px;
}

.benchmark-story-nav > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.benchmark-story-nav button {
  min-height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0 12px;
  color: rgba(226, 228, 223, 0.78);
  font-size: 11px;
}

.benchmark-story-nav button:hover,
.benchmark-story-nav button:focus-visible {
  border-color: rgba(66, 197, 157, 0.38);
  background: rgba(66, 197, 157, 0.08);
  color: #baf0df;
}

.benchmark-takeaways {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(66, 197, 157, 0.25);
  border-radius: 12px;
  background:
    radial-gradient(circle at 95% 0%, rgba(66, 197, 157, 0.1), transparent 26%),
    linear-gradient(145deg, rgba(85, 167, 255, 0.035), transparent 52%),
    #09131b;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.benchmark-takeaways-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 30px;
}

.benchmark-takeaways-heading h2 {
  max-width: 17ch;
  margin: 7px 0 0;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.benchmark-takeaways-heading > p {
  margin: 0;
  color: rgba(205, 211, 212, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.benchmark-verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.benchmark-verdict-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.15);
  border-radius: 10px;
  background: rgba(3, 9, 14, 0.48);
  padding: 22px;
}

.benchmark-verdict-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #42c59d, transparent 72%);
  content: "";
}

.benchmark-verdict-fast::before {
  background: linear-gradient(90deg, #55a7ff, transparent 72%);
}

.benchmark-verdict-observe::before {
  background: linear-gradient(90deg, #f58255, transparent 72%);
}

.benchmark-verdict-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(194, 202, 207, 0.8);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.benchmark-verdict-label span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(66, 197, 157, 0.3);
  border-radius: 50%;
  color: #8ce3c7;
  font-size: 9px;
}

.benchmark-verdict-fast .benchmark-verdict-label span {
  border-color: rgba(85, 167, 255, 0.32);
  color: #8bdcff;
}

.benchmark-verdict-observe .benchmark-verdict-label span {
  border-color: rgba(245, 130, 85, 0.34);
  color: #ffad8d;
}

.benchmark-verdict-card h3 {
  min-height: 2.4em;
  margin: 20px 0 0;
  color: #f5f7f2;
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.benchmark-verdict-value {
  display: block;
  margin-top: 24px;
  color: #8ce3c7;
  font-size: clamp(42px, 4vw, 58px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.benchmark-verdict-card > p {
  margin: 10px 0 0;
  color: rgba(194, 202, 207, 0.76);
  font-size: 12px;
  line-height: 1.6;
}

.benchmark-verdict-card ul {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.benchmark-verdict-card li {
  position: relative;
  padding-left: 17px;
  color: rgba(216, 222, 220, 0.74);
  font-size: 11px;
  line-height: 1.5;
}

.benchmark-verdict-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42c59d;
  content: "";
}

.benchmark-verdict-metrics,
.benchmark-observe-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 8px;
  background: rgba(154, 165, 177, 0.1);
}

.benchmark-verdict-metrics > div,
.benchmark-observe-metrics > div {
  min-width: 0;
  background: #081119;
  padding: 13px;
}

.benchmark-verdict-metrics span,
.benchmark-verdict-metrics strong,
.benchmark-verdict-metrics small,
.benchmark-observe-metrics span,
.benchmark-observe-metrics strong,
.benchmark-observe-metrics small {
  display: block;
}

.benchmark-verdict-metrics span,
.benchmark-observe-metrics span {
  color: rgba(194, 202, 207, 0.76);
  font-size: 10px;
  font-weight: 800;
}

.benchmark-verdict-metrics strong,
.benchmark-observe-metrics strong {
  margin-top: 9px;
  color: #8bdcff;
  font-size: clamp(22px, 2.6vw, 34px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
}

.benchmark-observe-metrics strong {
  color: #ffad8d;
}

.benchmark-verdict-metrics small,
.benchmark-observe-metrics small {
  margin-top: 7px;
  color: rgba(194, 202, 207, 0.68);
  font-size: 9px;
  line-height: 1.45;
}

.benchmark-observe-label {
  display: block;
  margin-top: 19px;
  color: #ffad8d;
  font-size: 12px;
}

.benchmark-clock-story {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 40px;
  margin-top: 14px;
  border: 1px solid rgba(85, 167, 255, 0.19);
  border-radius: 10px;
  background: rgba(7, 14, 21, 0.62);
  padding: clamp(22px, 3vw, 34px);
}

.benchmark-clock-story-copy h3 {
  margin: 7px 0 11px;
  color: #f5f7f2;
  font-size: clamp(25px, 2.5vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.benchmark-clock-story-copy > p:last-child {
  margin: 0;
  color: rgba(194, 202, 207, 0.75);
  font-size: 12px;
  line-height: 1.65;
}

.benchmark-clock-ladder {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benchmark-clock-ladder::before {
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(85, 167, 255, 0.16), rgba(85, 167, 255, 0.74));
  content: "";
}

.benchmark-clock-ladder li {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 1px solid rgba(85, 167, 255, 0.15);
  border-radius: 8px;
  background: #081119;
  padding: 15px;
}

.benchmark-clock-ladder li > span,
.benchmark-clock-ladder li > strong,
.benchmark-clock-ladder li > small {
  display: block;
}

.benchmark-clock-ladder li > span {
  color: rgba(194, 202, 207, 0.78);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.benchmark-clock-ladder b {
  margin-right: 5px;
  color: #55a7ff;
  font-size: 9px;
}

.benchmark-clock-ladder li > strong {
  margin-top: 24px;
  color: #8bdcff;
  font-size: clamp(26px, 2.6vw, 38px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.benchmark-clock-ladder li > small {
  margin-top: 9px;
  color: rgba(194, 202, 207, 0.68);
  font-size: 9px;
  line-height: 1.45;
}

.benchmark-clock-ladder .benchmark-clock-primary {
  border-color: rgba(66, 197, 157, 0.32);
  background: linear-gradient(180deg, rgba(66, 197, 157, 0.07), #081119);
}

.benchmark-clock-ladder .benchmark-clock-primary > strong,
.benchmark-clock-ladder .benchmark-clock-primary b {
  color: #8ce3c7;
}

.benchmark-scope-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.benchmark-scope-split > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  border: 1px solid rgba(66, 197, 157, 0.16);
  border-radius: 8px;
  background: rgba(66, 197, 157, 0.035);
  padding: 16px;
}

.benchmark-scope-split > div:last-child {
  border-color: rgba(242, 176, 78, 0.18);
  background: rgba(242, 176, 78, 0.035);
}

.benchmark-scope-icon {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(66, 197, 157, 0.28);
  border-radius: 50%;
  color: #8ce3c7;
  font-size: 13px;
  font-weight: 900;
}

.benchmark-scope-split > div:last-child .benchmark-scope-icon {
  border-color: rgba(242, 176, 78, 0.3);
  color: #f4c77f;
}

.benchmark-scope-split strong {
  color: rgba(242, 239, 231, 0.92);
  font-size: 12px;
}

.benchmark-scope-split p {
  margin: 5px 0 0;
  color: rgba(194, 202, 207, 0.72);
  font-size: 11px;
  line-height: 1.55;
}

.benchmark-percentile-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.12);
  border-radius: 8px;
  background: rgba(154, 165, 177, 0.1);
}

.benchmark-percentile-guide p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: baseline;
  margin: 0;
  background: #081119;
  padding: 13px 14px;
}

.benchmark-percentile-guide strong {
  color: #8bdcff;
  font-size: 12px;
}

.benchmark-percentile-guide span {
  color: rgba(194, 202, 207, 0.72);
  font-size: 10px;
  line-height: 1.5;
}

.current-release-dashboard-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(85, 167, 255, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(217, 105, 67, 0.04), transparent 44%),
    #09131b;
}

.benchmark-mode-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benchmark-mode-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 130, 85, 0.18);
  border-radius: 10px;
  background: rgba(3, 9, 14, 0.42);
}

.benchmark-mode-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(154, 165, 177, 0.12);
  padding: 18px 20px;
}

.benchmark-mode-card h3 {
  margin: 10px 0 0;
  color: #f5f7f2;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.benchmark-mode-card header p,
.benchmark-mode-card header p strong,
.benchmark-mode-card header p span {
  display: block;
  margin: 0;
}

.benchmark-mode-card header p {
  text-align: right;
}

.benchmark-mode-card header p strong {
  color: #ffad8d;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.benchmark-mode-card header p span {
  margin-top: 4px;
  color: rgba(194, 202, 207, 0.68);
  font-size: 9px;
}

.benchmark-mode-fast {
  border-color: rgba(85, 167, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(85, 167, 255, 0.055), transparent 34%),
    rgba(3, 9, 14, 0.46);
}

.benchmark-mode-fast header p strong {
  color: #8bdcff;
}

.benchmark-mode-metrics {
  display: grid;
  gap: 1px;
  background: rgba(154, 165, 177, 0.1);
}

.benchmark-mode-metrics > section {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  background: #081119;
  padding: 18px 20px;
}

.benchmark-mode-metrics > section > div span,
.benchmark-mode-metrics > section > div small {
  display: block;
}

.benchmark-mode-metrics > section > div span {
  color: rgba(242, 239, 231, 0.9);
  font-size: 12px;
  font-weight: 850;
}

.benchmark-mode-metrics > section > div small {
  margin-top: 5px;
  color: rgba(194, 202, 207, 0.65);
  font-size: 9px;
  line-height: 1.4;
}

.benchmark-mode-metrics dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.benchmark-mode-metrics dl div {
  min-width: 0;
  border-left: 1px solid rgba(154, 165, 177, 0.12);
  padding-left: 11px;
}

.benchmark-mode-metrics dt,
.benchmark-mode-metrics dd {
  margin: 0;
}

.benchmark-mode-metrics dt {
  color: rgba(194, 202, 207, 0.7);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benchmark-mode-metrics dt small {
  display: block;
  margin-top: 2px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.benchmark-mode-metrics dd {
  margin-top: 8px;
  color: #ffad8d;
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.benchmark-mode-fast .benchmark-mode-metrics dd {
  color: #8bdcff;
}

.benchmark-mode-metrics .benchmark-mode-primary-metric {
  background: rgba(66, 197, 157, 0.035);
}

.benchmark-mode-metrics .benchmark-mode-primary-metric > div span {
  color: #8ce3c7;
}

.benchmark-mode-metrics .benchmark-mode-secondary-metric {
  opacity: 0.82;
}

.benchmark-audit-details,
.benchmark-secondary-details {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 177, 0.16);
  border-radius: 10px;
  background: rgba(3, 9, 14, 0.34);
}

.benchmark-audit-details {
  margin-top: 16px;
}

.benchmark-audit-details > summary,
.benchmark-secondary-details > summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  padding: 16px 54px 16px 20px;
  list-style: none;
}

.benchmark-audit-details > summary::-webkit-details-marker,
.benchmark-secondary-details > summary::-webkit-details-marker {
  display: none;
}

.benchmark-audit-details > summary::after,
.benchmark-secondary-details > summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(85, 167, 255, 0.26);
  border-radius: 50%;
  color: #8bdcff;
  content: "+";
  font-size: 17px;
  line-height: 1;
}

.benchmark-audit-details[open] > summary::after,
.benchmark-secondary-details[open] > summary::after {
  content: "−";
}

.benchmark-audit-details > summary:hover,
.benchmark-audit-details > summary:focus-visible,
.benchmark-secondary-details > summary:hover,
.benchmark-secondary-details > summary:focus-visible {
  background: rgba(85, 167, 255, 0.045);
}

.benchmark-audit-details > summary:focus-visible,
.benchmark-secondary-details > summary:focus-visible {
  outline: 2px solid rgba(85, 167, 255, 0.68);
  outline-offset: -3px;
}

.benchmark-audit-details summary span,
.benchmark-audit-details summary small,
.benchmark-audit-details summary strong,
.benchmark-secondary-details summary span,
.benchmark-secondary-details summary small,
.benchmark-secondary-details summary strong {
  display: block;
}

.benchmark-audit-details summary small,
.benchmark-secondary-details summary small {
  color: #8bdcff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.benchmark-audit-details summary strong,
.benchmark-secondary-details summary strong {
  margin-top: 5px;
  color: rgba(242, 239, 231, 0.92);
  font-size: 16px;
}

.benchmark-audit-details > summary > span:last-child,
.benchmark-secondary-details > summary > span:last-child {
  color: rgba(194, 202, 207, 0.7);
  font-size: 11px;
  text-align: right;
}

.benchmark-audit-details-body,
.benchmark-secondary-details-body {
  border-top: 1px solid rgba(154, 165, 177, 0.12);
  padding: 20px;
}

.benchmark-audit-details:not([open]) > .benchmark-audit-details-body,
.benchmark-secondary-details:not([open]) > .benchmark-secondary-details-body {
  display: none;
}

.benchmark-audit-details-body > *:first-child {
  margin-top: 0;
}

.benchmark-audit-details-body > *:last-child {
  margin-bottom: 0;
}

.benchmark-secondary-details {
  border-color: rgba(242, 176, 78, 0.2);
  background:
    linear-gradient(145deg, rgba(242, 176, 78, 0.035), transparent 44%),
    rgba(3, 9, 14, 0.34);
}

.benchmark-secondary-details > summary::after {
  border-color: rgba(242, 176, 78, 0.3);
  color: #f4c77f;
}

.benchmark-secondary-details summary small {
  color: #f4c77f;
}

.benchmark-secondary-details-body {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.benchmark-secondary-details-body > .benchmark-dashboard-panel {
  box-shadow: none;
}

.benchmark-definitions-panel {
  border-color: rgba(85, 167, 255, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(85, 167, 255, 0.07), transparent 26%),
    #0a131b;
}

.measurement-definition-grid > div {
  padding: 22px;
}

.measurement-definition-grid dt {
  color: #8bdcff;
  font-size: 12px;
}

.measurement-definition-grid dd {
  color: rgba(216, 222, 220, 0.78);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .benchmark-dashboard-header {
    min-height: 0;
  }

  .benchmark-takeaways-heading,
  .benchmark-clock-story {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benchmark-verdict-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benchmark-verdict-observe {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .benchmark-story-nav {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .benchmark-story-nav > div {
    width: 100%;
    justify-content: flex-start;
  }

  .benchmark-mode-comparison,
  .benchmark-scope-split {
    grid-template-columns: 1fr;
  }

  .benchmark-clock-ladder {
    grid-template-columns: 1fr;
  }

  .benchmark-clock-ladder::before {
    top: 8%;
    right: auto;
    bottom: 8%;
    left: 29px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(85, 167, 255, 0.16), rgba(85, 167, 255, 0.74));
  }

  .benchmark-clock-ladder li {
    padding-left: 47px;
  }

  .benchmark-clock-ladder li > strong {
    margin-top: 12px;
  }
}

@media (max-width: 720px) {
  .benchmark-dashboard-header h1 {
    max-width: 15ch;
    font-size: clamp(40px, 12.2vw, 58px);
  }

  .benchmark-dashboard-header > div > .benchmark-header-lede,
  .benchmark-takeaways-heading > p {
    font-size: 14px;
  }

  .benchmark-takeaways {
    padding: 24px 16px;
  }

  .benchmark-takeaways-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .benchmark-verdict-grid,
  .benchmark-percentile-guide {
    grid-template-columns: 1fr;
  }

  .benchmark-verdict-observe {
    grid-column: auto;
  }

  .benchmark-verdict-card h3 {
    min-height: 0;
  }

  .benchmark-verdict-metrics,
  .benchmark-observe-metrics {
    grid-template-columns: 1fr;
  }

  .benchmark-clock-story {
    padding: 20px 16px;
  }

  .benchmark-story-nav > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benchmark-story-nav button {
    width: 100%;
  }

  .benchmark-mode-card > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .benchmark-mode-card header p {
    text-align: left;
  }

  .benchmark-mode-metrics > section {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 17px 15px;
  }

  .benchmark-mode-metrics dl div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(154, 165, 177, 0.1);
    border-left: 0;
    padding: 8px 0;
  }

  .benchmark-mode-metrics dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benchmark-mode-metrics dl div:first-child {
    border-top: 0;
  }

  .benchmark-mode-metrics dt small {
    display: inline;
    margin: 0 0 0 3px;
  }

  .benchmark-mode-metrics dd {
    margin-top: 0;
    font-size: 15px;
    white-space: normal;
  }

  .benchmark-audit-details > summary,
  .benchmark-secondary-details > summary {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 16px 48px 16px 16px;
  }

  .benchmark-audit-details > summary > span:last-child,
  .benchmark-secondary-details > summary > span:last-child {
    text-align: left;
  }

  .benchmark-audit-details-body {
    padding: 12px;
  }

  .current-release-cohort-table {
    min-width: 0;
  }

  .current-release-cohort-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .current-release-cohort-table tbody,
  .current-release-cohort-table tr,
  .current-release-cohort-table th,
  .current-release-cohort-table td {
    display: block;
    white-space: normal;
  }

  .current-release-cohort-table tbody {
    display: grid;
    gap: 10px;
    padding: 10px;
  }

  .current-release-cohort-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(154, 165, 177, 0.13);
    border-radius: 8px;
    background: rgba(3, 9, 14, 0.4);
  }

  .current-release-cohort-table tbody th {
    grid-column: 1 / -1;
    border-top: 0;
    padding: 14px;
  }

  .current-release-cohort-table tbody td {
    min-width: 0;
    border-top: 1px solid rgba(154, 165, 177, 0.1);
    padding: 12px 14px;
    font-size: 13px;
    text-align: left;
  }

  .current-release-cohort-table tbody td:nth-child(even) {
    border-right: 1px solid rgba(154, 165, 177, 0.1);
  }

  .current-release-cohort-table tbody td:nth-child(4),
  .current-release-cohort-table tbody td:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 0;
    color: rgba(242, 239, 231, 0.9);
    font-size: 15px;
  }

  .current-release-cohort-table tbody td::before {
    display: block;
    margin-bottom: 6px;
    color: rgba(194, 202, 207, 0.7);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .current-release-cohort-table tbody td:nth-child(2)::before {
    content: "Mode" / "";
  }

  .current-release-cohort-table tbody td:nth-child(3)::before {
    content: "Passed / measured" / "";
  }

  .current-release-cohort-table tbody td:nth-child(4)::before {
    content: "Same-host HTTP · p50 / p95 / p99" / "";
  }

  .current-release-cohort-table tbody td:nth-child(5)::before {
    content: "Server build · p50 / p95 / p99" / "";
  }

  .measurement-definition-grid > div {
    padding: 18px 16px;
  }

  .measurement-definition-grid dd {
    font-size: 13px;
  }
}
