@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #070a0c;
  --bg-raised: #0b1013;
  --bg-soft: #0f1519;
  --surface: #12191d;
  --surface-hover: #151e23;
  --surface-glass: rgba(13, 19, 22, 0.84);
  --text: #f4f7f5;
  --text-soft: #b1bbb6;
  --text-muted: #77827d;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --green: #82e8bd;
  --green-strong: #58d8a3;
  --green-dark: #0f6d51;
  --blue: #8fc5ff;
  --amber: #efb85c;
  --red: #ef8b83;
  --white: #ffffff;
  --black: #080a0b;
  --shell: 1180px;
  --header-height: 72px;
  --radius: 8px;
  --radius-small: 6px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 440;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(130, 232, 189, 0.28);
  color: var(--white);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 144px 0;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  padding: 0 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 140ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.button span {
  font-size: 18px;
  font-weight: 450;
  transform: translateY(-1px);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.96);
}

.button-light {
  background: var(--white);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 14px 34px rgba(0, 0, 0, 0.18);
  color: #111514;
}

.button-light:hover {
  background: #eef8f3;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 40px rgba(0, 0, 0, 0.24);
}

.button-light.registration-link {
  background: #f4f6f5;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 150ms var(--ease-out);
}

.button-light.registration-link:hover {
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 14px 34px rgba(0, 0, 0, 0.18);
  transform: none;
}

.button-light.registration-link span {
  transition: transform 180ms var(--ease-out);
}

.button-light.registration-link:hover span {
  transform: translate(3px, -1px);
}

.button-dark {
  background: #0a1411;
  color: var(--white);
}

.button-dark:hover {
  background: #11221c;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 570;
  transition:
    color 180ms ease,
    transform 180ms var(--ease-out);
}

.text-link:hover {
  color: var(--white);
}

.text-link:active {
  transform: scale(0.96);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */

.lab-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.lab-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(130, 232, 189, 0.82) 0,
      rgba(130, 232, 189, 0.82) var(--scroll-progress, 0%),
      rgba(255, 255, 255, 0.09) var(--scroll-progress, 0%),
      rgba(255, 255, 255, 0.09) 100%
    );
  content: "";
}

.lab-header.is-scrolled,
.lab-header.menu-open {
  background: rgba(7, 10, 12, 0.82);
  backdrop-filter: blur(18px) saturate(1.15);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), 1720px);
  height: 100%;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a,
.quiet-link {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 570;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.quiet-link:hover {
  color: var(--white);
}

.header-contact {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 3px;
  margin-left: 18px;
  padding: 0 19px;
}

.header-contact::before,
.header-contact::after {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
  translate: 0 -50%;
}

.header-contact::before {
  left: 0;
}

.header-contact::after {
  right: 0;
}

.header-phone {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 590;
  font-variant-numeric: tabular-nums;
  transition: color 180ms ease;
}

.header-phone:hover {
  color: var(--white);
}

.contact-toggle {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.contact-toggle:hover,
.contact-toggle:focus-visible,
.header-contact.is-open .contact-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.contact-toggle svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms var(--ease-out);
}

.header-contact.is-open .contact-toggle svg,
.header-contact:hover .contact-toggle svg,
.header-contact:focus-within .contact-toggle svg {
  transform: rotate(180deg);
}

.contact-popover {
  position: absolute;
  top: calc(100% - 6px);
  right: 0;
  width: 286px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(13, 17, 19, 0.96);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 160ms ease,
    transform 220ms var(--ease-out);
  backdrop-filter: blur(20px) saturate(1.12);
}

.header-contact:hover .contact-popover,
.header-contact:focus-within .contact-popover,
.header-contact.is-open .contact-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-popover-label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-email-row {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-email-row a {
  color: var(--white);
  font-size: 15px;
  font-weight: 580;
}

.copy-email {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.64);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.copy-email:hover,
.copy-email:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.copy-email.is-copied {
  border-color: rgba(130, 232, 189, 0.36);
  background: rgba(130, 232, 189, 0.12);
  color: rgb(130, 232, 189);
}

.copy-email svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-popover small {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 28px;
}

.header-cta {
  min-height: 40px;
  gap: 12px;
  padding-inline: 19px;
  font-size: 12px;
}

.header-cta span {
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  outline: none;
}

.menu-toggle:focus-visible {
  border-color: rgba(130, 232, 189, 0.55);
  box-shadow: 0 0 0 3px rgba(130, 232, 189, 0.12);
}

.menu-toggle span {
  position: absolute;
  width: 15px;
  height: 1px;
  background: currentColor;
  transition:
    transform 180ms var(--ease-out),
    translate 180ms var(--ease-out);
}

.menu-toggle span:first-child {
  translate: 0 -3px;
}

.menu-toggle span:last-child {
  translate: 0 3px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  translate: 0 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  translate: 0 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #09110f;
}

.grainient,
.hero-shade {
  position: absolute;
  inset: 0;
}

.grainient {
  background:
    radial-gradient(circle at 13% 18%, rgba(117, 223, 184, 0.72), transparent 40%),
    radial-gradient(circle at 76% 8%, rgba(55, 118, 226, 0.88), transparent 50%),
    linear-gradient(145deg, #284f48 0%, #123241 47%, #101e3d 76%, #07100d 100%);
}

.grainient canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 180ms ease;
}

.grainient.is-fallback {
  background:
    radial-gradient(circle at 13% 18%, rgba(117, 223, 184, 0.72), transparent 40%),
    radial-gradient(circle at 76% 8%, rgba(55, 118, 226, 0.88), transparent 50%),
    linear-gradient(145deg, #284f48 0%, #123241 47%, #101e3d 76%, #07100d 100%);
}

.grainient.is-fallback canvas {
  opacity: 0;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(6, 10, 11, 0.08) 0%, rgba(6, 10, 11, 0.2) 48%, rgba(7, 10, 12, 0.58) 78%, #070a0c 100%),
    linear-gradient(90deg, rgba(7, 10, 12, 0.28), transparent 55%);
}

.hero-product-preview {
  position: absolute;
  z-index: 1;
  right: -118px;
  bottom: -14px;
  width: min(960px, 66vw);
  aspect-ratio: 2200 / 1391;
  margin: 0;
  opacity: 0.98;
  pointer-events: none;
}

.hero-product-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    brightness(0.88)
    saturate(0.8)
    contrast(1.04)
    drop-shadow(0 38px 68px rgba(0, 0, 0, 0.34));
}

.hero-radar {
  position: absolute;
  z-index: 1;
  top: calc(var(--header-height) + 30px);
  right: clamp(12px, 2.2vw, 32px);
  width: min(700px, 54vw);
  aspect-ratio: 1;
  contain: layout paint;
  opacity: 0.74;
  filter: saturate(0.7) brightness(0.93) contrast(1.08);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-radar::before {
  position: absolute;
  z-index: -1;
  inset: 18%;
  border-radius: 50%;
  background: rgba(100, 172, 220, 0.12);
  filter: blur(72px);
  content: "";
}

.hero-radar-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-radar-grid {
  fill: none;
  stroke: rgba(186, 220, 236, 0.19);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.hero-radar-boundary {
  stroke: rgba(201, 228, 241, 0.28);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.hero-radar-scan {
  transform-box: view-box;
  transform-origin: center;
  animation: hero-radar-rotate 7.2s linear infinite;
}

.hero-radar-beam {
  stroke: rgba(210, 239, 252, 0.76);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.hero-radar-center {
  fill: rgba(207, 235, 248, 0.74);
  stroke: rgba(217, 241, 252, 0.28);
  stroke-width: 8;
}

@keyframes hero-radar-rotate {
  to { transform: rotate(360deg); }
}

.radar-tender-layer {
  position: absolute;
  z-index: 3;
  top: calc(var(--header-height) + 30px);
  right: clamp(12px, 2.2vw, 32px);
  width: min(700px, 54vw);
  aspect-ratio: 1;
  pointer-events: none;
}

.radar-tender-pin {
  position: absolute;
  z-index: 1;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
}

.radar-tender-pin-a {
  top: 68%;
  left: 70%;
}

.radar-tender-pin-b {
  top: 55%;
  left: 20%;
}

.radar-tender-pin-c {
  top: 29%;
  left: 28%;
}

.radar-tender-dot,
.radar-tender-dot::before,
.radar-tender-dot::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.radar-tender-dot {
  inset: 19px;
  background: var(--verdict-color, #dcf4ff);
  box-shadow:
    0 0 0 4px rgba(var(--verdict-rgb, 220, 244, 255), 0.2),
    0 0 20px rgba(var(--verdict-rgb, 220, 244, 255), 0.82);
  animation: hero-tender-dot 2.8s ease-in-out infinite;
}

.radar-tender-dot::before,
.radar-tender-dot::after {
  inset: -7px;
  border: 1px solid rgba(var(--verdict-rgb, 220, 244, 255), 0.72);
  animation: hero-tender-pulse 2.8s ease-out infinite;
}

.radar-tender-dot::after {
  animation-delay: 1.4s;
}

.verdict-positive {
  --verdict-color: #83e8b9;
  --verdict-rgb: 131, 232, 185;
}

.verdict-conditional {
  --verdict-color: #f3c96f;
  --verdict-rgb: 243, 201, 111;
}

.verdict-negative {
  --verdict-color: #ff8585;
  --verdict-rgb: 255, 133, 133;
}

.radar-tender-pin-b .radar-tender-dot,
.radar-tender-pin-b .radar-tender-dot::before,
.radar-tender-pin-b .radar-tender-dot::after {
  animation-delay: 0.65s;
}

.radar-tender-pin-c .radar-tender-dot,
.radar-tender-pin-c .radar-tender-dot::before,
.radar-tender-pin-c .radar-tender-dot::after {
  animation-delay: 1.2s;
}

.radar-tender-card {
  position: absolute;
  top: 50%;
  right: 62px;
  display: grid;
  width: 366px;
  gap: 13px;
  border: 1px solid rgba(var(--verdict-rgb, 218, 237, 245), 0.28);
  border-radius: 14px;
  padding: 21px 22px 20px;
  background:
    linear-gradient(145deg, rgba(122, 179, 210, 0.1), transparent 50%),
    rgba(8, 15, 19, 0.91);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 24px 64px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate3d(8px, -50%, 0) scale(0.97);
  transform-origin: right center;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    visibility 0s linear 220ms;
  visibility: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.radar-tender-card::before {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--verdict-rgb, 175, 220, 243), 0.18), rgba(var(--verdict-rgb, 175, 220, 243), 0.58));
  content: "";
}

.radar-tender-pin-c .radar-tender-card,
.radar-tender-pin-b .radar-tender-card {
  right: auto;
  left: 62px;
  transform: translate3d(-8px, -50%, 0) scale(0.97);
  transform-origin: left center;
}

.radar-tender-pin-c .radar-tender-card::before,
.radar-tender-pin-b .radar-tender-card::before {
  right: 100%;
  left: auto;
  background: linear-gradient(90deg, rgba(var(--verdict-rgb, 175, 220, 243), 0.58), rgba(var(--verdict-rgb, 175, 220, 243), 0.18));
}

.radar-tender-pin.is-open .radar-tender-card {
  border-color: rgba(var(--verdict-rgb, 190, 225, 242), 0.44);
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
  transition-delay: 0s;
  visibility: visible;
}

.radar-tender-pin-c.is-open .radar-tender-card,
.radar-tender-pin-b.is-open .radar-tender-card {
  transform: translate3d(0, -50%, 0) scale(1);
}

.radar-tender-pin.is-open {
  z-index: 10;
}

.radar-tender-pin.is-open .radar-tender-dot {
  background: var(--verdict-color, #f0fbff);
  box-shadow:
    0 0 0 4px rgba(var(--verdict-rgb, 172, 222, 247), 0.2),
    0 0 22px rgba(var(--verdict-rgb, 143, 207, 241), 0.92);
}

.radar-tender-pin.is-pinned .radar-tender-card {
  border-color: rgba(156, 226, 194, 0.36);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.4);
}

.radar-tender-pin:focus-visible {
  outline: 2px solid rgba(201, 233, 250, 0.82);
  outline-offset: 4px;
}

.radar-tender-meta {
  color: rgba(190, 211, 220, 0.66);
  font-size: 11px;
  font-weight: 580;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.radar-tender-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.radar-tender-card-head em {
  flex: 0 0 auto;
  color: var(--verdict-color, #a9ddc8);
  font-size: 11px;
  font-style: normal;
  font-weight: 620;
}

.radar-tender-card > strong {
  color: #f1f7f5;
  font-size: 19px;
  font-weight: 570;
  line-height: 1.3;
}

.radar-tender-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(205, 226, 235, 0.12);
  padding-top: 13px;
}

.radar-tender-details b {
  color: #a9ddc8;
  font-size: 14px;
  font-weight: 620;
}

.radar-tender-details i {
  color: rgba(190, 211, 220, 0.7);
  font-size: 11px;
  font-style: normal;
}

@keyframes hero-tender-dot {
  0%, 100% { opacity: 0.7; transform: scale(0.84); }
  48% { opacity: 1; transform: scale(1.16); }
}

@keyframes hero-tender-pulse {
  0% { opacity: 0; transform: scale(0.45); }
  18% { opacity: 0.78; }
  72%, 100% { opacity: 0; transform: scale(2.15); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 780px;
  flex-direction: column;
  justify-content: center;
  padding-top: 116px;
  padding-bottom: 36px;
}

.hero-copy {
  width: min(100%, 980px);
}

.hero-monitoring-benefit {
  display: block;
  width: fit-content;
  margin-top: 28px;
  color: rgba(229, 239, 235, 0.68);
  font-size: 13px;
  font-weight: 450;
  letter-spacing: 0.005em;
}

.hero-monitoring-benefit i {
  display: none;
}

.hero-monitoring-benefit strong {
  color: #9de3c1;
  font-weight: 570;
}

.hero-monitoring-benefit span {
  color: inherit;
}

.hero h1 {
  max-width: 860px;
  color: var(--white);
  font-size: 68px;
  font-weight: 620;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 span {
  color: #e4eee9;
}

.hero-copy > p {
  max-width: 590px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  font-weight: 430;
  line-height: 1.48;
  text-wrap: pretty;
}

@media (min-width: 821px) {
  .hero h1,
  .hero-copy > p {
    transform: translateY(-46px);
  }
}

@media (max-width: 820px) {
  .hero-copy-break {
    display: none;
  }
}

/* Mobile polish: one authoritative layout layer for the production landing. */
@media (max-width: 560px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .site-header {
    height: var(--header-height);
    background: rgba(5, 11, 14, 0.9);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    backdrop-filter: blur(18px) saturate(120%);
  }

  .site-header .header-inner {
    min-height: var(--header-height);
    padding-inline: 14px;
  }

  .site-logo img,
  .site-logo svg {
    width: 104px;
    height: auto;
  }

  .header-cta {
    min-height: 38px;
    border-radius: 999px;
    padding-inline: 17px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
  }

  .hero-search,
  .hero-search .hero-inner {
    min-height: 660px;
  }

  .hero-search .hero-inner {
    padding-top: 88px;
    padding-bottom: 84px;
  }

  .hero-search-copy {
    width: 100%;
  }

  .hero-search h1 {
    max-width: 360px;
    font-size: clamp(38px, 10.7vw, 44px);
    line-height: 1.01;
    text-wrap: balance;
  }

  .hero-search-lead {
    max-width: 350px;
    margin-top: 17px;
    color: rgba(235, 243, 240, 0.69);
    font-size: 15px;
    line-height: 1.48;
    text-wrap: pretty;
  }

  .ai-search-composer {
    width: 100%;
    min-height: 66px;
    margin-top: 25px;
    gap: 11px;
    border-color: rgba(255, 255, 255, 0.62);
    border-radius: 19px;
    padding: 6px 6px 6px 17px;
    background: rgba(251, 253, 252, 0.96);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 18px 46px rgba(2, 10, 16, 0.18);
    -webkit-backdrop-filter: blur(18px) saturate(110%);
    backdrop-filter: blur(18px) saturate(110%);
  }

  .ai-search-composer:hover,
  .ai-search-composer:focus-within {
    border-color: rgba(255, 255, 255, 0.82);
    background: #fbfdfc;
    box-shadow:
      0 1px 0 #fff inset,
      0 0 0 3px rgba(116, 226, 181, 0.11),
      0 20px 52px rgba(2, 10, 16, 0.2);
  }

  .ai-search-composer input {
    height: 54px;
    min-width: 0;
    color: #15201c;
    caret-color: #0b9d6a;
    font-size: 16px;
  }

  .ai-search-composer input::placeholder {
    color: #78847f;
  }

  .ai-search-icon {
    stroke: #119c6d;
  }

  .ai-search-submit,
  .ai-search-submit[aria-disabled="true"] {
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    border-color: rgba(13, 36, 27, 0.08);
    border-radius: 14px;
    background: #edf2ef;
    box-shadow: 0 1px 0 #fff inset;
    color: #72807a;
  }

  .platform-section {
    margin-top: -18px;
    padding-top: 0;
  }

  .story-stack {
    overflow: visible;
  }

  .story-chapter.scroll-stack-card {
    height: 548px;
    min-height: 548px;
    max-height: 548px;
    margin-bottom: clamp(300px, 48svh, 350px);
    overflow: hidden;
    border: 1px solid rgba(16, 30, 24, 0.13);
    border-radius: 14px;
    background: #f0f0f4;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 18px 50px rgba(0, 0, 0, 0.18);
  }

  .story-chapter.scroll-stack-card .chapter-copy {
    min-height: 300px;
    flex: 0 0 300px;
    justify-content: center;
    padding: 32px 24px 30px;
  }

  .story-chapter.scroll-stack-card .chapter-copy h3 {
    max-width: 300px;
    margin: 0;
    font-size: 29px;
    font-weight: 610;
    line-height: 1.07;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .story-chapter.scroll-stack-card .chapter-copy > p:not(.chapter-label) {
    max-width: 310px;
    margin-top: 16px;
    color: #55605b;
    font-size: 14.5px;
    line-height: 1.48;
    text-wrap: pretty;
  }

  .story-chapter.scroll-stack-card .chapter-visual,
  .story-chapter.scroll-stack-card .monitoring-screenshot,
  .story-chapter.scroll-stack-card .concept-illustration {
    height: 248px;
    min-height: 248px;
    flex: 0 0 248px;
    border-top: 1px solid rgba(14, 34, 26, 0.1);
    background: #f8faf9;
  }

  .story-chapter.scroll-stack-card .chapter-visual img,
  .story-chapter.scroll-stack-card .monitoring-screenshot img,
  .story-chapter.scroll-stack-card .concept-illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .monitoring-chapter > .chapter-copy {
    border-radius: 13px 13px 0 0;
  }

  .monitoring-chapter > .chapter-visual {
    border-radius: 0 0 13px 13px;
  }

  .chapter-trial-rail {
    top: -76px;
    min-height: 96px;
    gap: 13px;
    border-radius: 18px 18px 0 0;
    padding: 16px 18px 24px;
  }

  .chapter-trial-offer {
    flex: 0 0 43%;
    gap: 9px;
  }

  .trial-gift-icon {
    width: 20px;
    height: 20px;
  }

  .chapter-trial-offer strong,
  .chapter-trial-coverage strong {
    font-size: 16px;
    line-height: 1.05;
  }

  .chapter-trial-coverage {
    padding-left: 14px;
  }

  .chapter-trial-coverage span {
    margin-top: 3px;
    font-size: 9.5px;
    line-height: 1.25;
  }

  .pricing-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .pricing-heading {
    gap: 22px;
    margin-bottom: 25px;
  }

  .pricing-heading h2 {
    font-size: 42px;
    line-height: 1;
  }

  .billing-switch {
    min-height: 52px;
    border-radius: 16px;
    padding: 4px;
  }

  .billing-option {
    min-height: 42px;
    border-radius: 12px;
  }

  .monitoring-free-band {
    gap: 8px;
    margin-bottom: 28px;
    padding-block: 17px 19px;
  }

  .pricing-grid {
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
    background: rgba(223, 225, 228, 0.94);
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.22);
  }

  .plan-card,
  .plan-card:hover {
    min-height: 0;
    padding: 27px 23px 22px;
    border-radius: 14px;
  }

  .plan-head h3 {
    font-size: 19px;
  }

  .plan-price {
    margin-top: 24px;
  }

  .plan-price strong {
    font-size: 36px;
  }

  .plan-summary {
    margin-top: 12px;
    font-size: 13px;
  }

  .plan-features {
    gap: 11px;
    margin-top: 20px;
    padding-top: 19px;
  }

  .plan-features li {
    min-height: 20px;
    padding-left: 24px;
    font-size: 13.5px;
    line-height: 1.42;
  }

  .plan-features li::before,
  .plan-features li:nth-child(4)::before,
  .plan-features li:nth-child(5)::before {
    top: 2px;
    left: 0;
  }

  .plan-features li:nth-child(5) {
    padding-top: 14px;
  }

  .plan-features li:nth-child(5)::before {
    top: 16px;
  }

  .plan-button,
  .plan-button:hover,
  .plan-button:active,
  .plan-card-featured .plan-button-accent {
    min-height: 50px;
    margin-top: 22px;
    border-radius: 13px;
  }

  .corporate-plan {
    border-radius: 16px;
  }

  .corporate-summary {
    min-height: 104px;
    padding: 21px 20px;
  }

  .extras-section {
    margin-top: 48px;
  }

  .extras-grid {
    gap: 6px;
    border-radius: 16px;
  }

  .extra-item,
  .extra-item:first-child {
    min-height: 106px;
    padding: 20px;
  }

  .access-section {
    min-height: 530px;
    padding-block: 82px;
  }

  .access-copy-centered h2 {
    max-width: 350px;
    font-size: clamp(36px, 10.3vw, 43px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .access-copy-centered .fold-text-line,
  .access-copy-centered .fold-text-source > span {
    white-space: normal;
  }

  .access-copy-centered > p:not(.eyebrow) {
    max-width: 310px;
    font-size: 15px;
    line-height: 1.5;
  }

  .faq-section {
    padding-top: 82px;
  }

  .faq-list details {
    padding-inline: 0;
  }

  .faq-list summary {
    min-height: 68px;
    padding-block: 19px;
    font-size: 16px;
    line-height: 1.35;
  }

  .footer-inner,
  .footer-main,
  .footer-bottom {
    gap: 26px;
  }
}

@media (max-width: 380px) {
  .hero-search h1 {
    font-size: 37px;
  }

  .story-chapter.scroll-stack-card {
    height: 530px;
    min-height: 530px;
    max-height: 530px;
  }

  .story-chapter.scroll-stack-card .chapter-copy {
    min-height: 286px;
    flex-basis: 286px;
    padding-inline: 21px;
  }

  .story-chapter.scroll-stack-card .chapter-visual,
  .story-chapter.scroll-stack-card .monitoring-screenshot,
  .story-chapter.scroll-stack-card .concept-illustration {
    height: 244px;
    min-height: 244px;
    flex-basis: 244px;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

/* Platform story */

.platform-section {
  padding-top: 112px;
  background:
    linear-gradient(180deg, #070a0c 0%, #090d0f 48%, #070a0c 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  column-gap: 64px;
  align-items: end;
  margin-bottom: 84px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.section-heading h2 {
  max-width: 820px;
  color: var(--text);
  font-size: 58px;
  font-weight: 590;
  line-height: 1.06;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 480px;
  padding-bottom: 6px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.62;
  text-wrap: pretty;
}

.section-heading-compact {
  display: block;
  max-width: 1120px;
  margin-bottom: 72px;
}

.section-heading-compact h2 {
  max-width: 1120px;
  font-weight: 560;
}

.section-heading-compact h2 span {
  white-space: nowrap;
}

.story-chapter {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 1180 / 520;
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.6fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.035) inset,
    0 28px 70px rgba(0, 0, 0, 0.16);
}

.story-stack {
  position: relative;
}

.story-stack-inner {
  min-height: 100vh;
}

.story-chapter.scroll-stack-card {
  position: sticky;
  top: calc(92px + var(--stack-offset, 0px));
  margin-bottom: 112px;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(var(--stack-scale, 1));
  transform-origin: top center;
  transition:
    transform 260ms cubic-bezier(0.2, 0, 0, 1),
    border-color 180ms ease;
  will-change: transform;
}

.story-chapter.scroll-stack-card.is-stack-behind {
  border-color: rgba(255, 255, 255, 0.07);
}

.story-stack.is-static .story-chapter.scroll-stack-card {
  position: relative;
  top: auto;
  transform: none;
}

.story-stack .scroll-stack-end {
  height: 30vh;
}

.story-stack.is-static .scroll-stack-end {
  height: 0;
}

.story-chapter::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(130, 232, 189, 0.5), transparent 72%);
  content: "";
  pointer-events: none;
}

.story-chapter::after {
  position: absolute;
  z-index: 10;
  inset: 0;
  border-radius: inherit;
  background: rgba(3, 8, 10, 0.08);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.story-chapter.is-stack-behind::after {
  opacity: 1;
}

.story-chapter + .story-chapter {
  margin-top: 0;
}

.monitoring-chapter {
  border-color: rgba(190, 201, 208, 0.24);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.055) inset,
    0 28px 70px rgba(0, 0, 0, 0.16);
}

.monitoring-chapter::before {
  background: linear-gradient(90deg, transparent, rgba(206, 216, 222, 0.46), transparent 72%);
}

.chapter-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 76px 52px 58px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent 42%),
    #e9edeb;
  box-shadow:
    inset -1px 0 rgba(255, 255, 255, 0.76),
    inset 0 1px rgba(255, 255, 255, 0.86),
    24px 0 54px rgba(2, 8, 6, 0.14);
}

.chapter-copy::after {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -38px;
  bottom: 0;
  width: 38px;
  background: linear-gradient(90deg, rgba(1, 7, 5, 0.17), transparent);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.story-chapter.is-stack-behind .chapter-copy::after {
  opacity: 0.42;
}

.story-chapter.is-motion-active .chapter-copy {
  filter: none;
}

.story-chapter.is-motion-active .chapter-copy::after {
  opacity: 0.86;
}

.chapter-label {
  position: absolute;
  top: 34px;
  left: 52px;
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #207557;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.chapter-label i {
  width: 32px;
  height: 1px;
  border-radius: 0;
  background: currentColor;
  box-shadow: none;
}

.chapter-copy h3 {
  max-width: 360px;
  margin-top: 0;
  color: #0b1210;
  font-size: 40px;
  font-weight: 590;
  line-height: 1.08;
  text-wrap: balance;
}

.chapter-copy > p:not(.chapter-label) {
  max-width: 350px;
  margin-top: 24px;
  color: #4c5953;
  font-size: 16px;
  font-weight: 420;
  line-height: 1.58;
  text-wrap: pretty;
}

.chapter-insight {
  display: grid;
  width: 100%;
  max-width: 350px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  margin-top: 26px;
  border-top: 1px solid rgba(11, 18, 16, 0.13);
  padding-top: 19px;
  color: #0b1210;
}

.chapter-insight > svg {
  width: 28px;
  height: 28px;
  margin-top: 1px;
  fill: none;
  stroke: #207557;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.chapter-insight p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.chapter-insight strong {
  color: #18211e;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.35;
}

.chapter-insight span {
  color: #617069;
  font-size: 12px;
  font-weight: 450;
  line-height: 1.45;
}

.chapter-free-monitoring {
  display: grid;
  width: 100%;
  max-width: 350px;
  grid-template-columns: 9px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 26px;
  border-top: 1px solid rgba(11, 18, 16, 0.13);
  padding-top: 19px;
}

.chapter-free-monitoring > i {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  background: #23815f;
  box-shadow: 0 0 0 4px rgba(35, 129, 95, 0.1);
}

.chapter-free-monitoring > span {
  display: grid;
  gap: 3px;
  color: #66736d;
  font-size: 12px;
  line-height: 1.45;
}

.chapter-free-monitoring strong {
  color: #1d5f48;
  font-size: 13px;
  font-weight: 630;
}

.chapter-free-monitoring small {
  color: inherit;
  font: inherit;
}

.chapter-label,
.chapter-copy h3,
.chapter-copy > p:not(.chapter-label),
.chapter-insight {
  opacity: 0;
  transform: translateY(12px);
}

.story-chapter.is-visible .chapter-label,
.story-chapter.is-visible .chapter-copy h3,
.story-chapter.is-visible .chapter-copy > p:not(.chapter-label),
.story-chapter.is-visible .chapter-insight {
  animation: chapter-copy-in 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.story-chapter.is-visible .chapter-label {
  animation-delay: 100ms;
}

.story-chapter.is-visible .chapter-copy h3 {
  animation-delay: 190ms;
}

.story-chapter.is-visible .chapter-copy > p:not(.chapter-label) {
  animation-delay: 280ms;
}

.story-chapter.is-visible .chapter-insight {
  animation-delay: 350ms;
}

@keyframes chapter-copy-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chapter-points {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.chapter-points li {
  position: relative;
  padding-left: 20px;
  color: #d2d9d5;
  font-size: 13px;
  line-height: 1.45;
}

.chapter-points li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.chapter-visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: #0d1316;
}

.analysis-chapter {
  min-height: 0;
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.6fr);
}

.analysis-chapter::before {
  background: linear-gradient(90deg, transparent 24%, rgba(143, 197, 255, 0.52), transparent);
}

.analysis-chapter .chapter-copy {
  order: 0;
}

.analysis-chapter .chapter-visual {
  order: 0;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.analysis-chapter .chapter-label {
  color: #20694f;
}

.analysis-chapter .chapter-points li::before {
  background: var(--blue);
}

.analysis-screenshot {
  min-height: 0;
  aspect-ratio: 2368 / 1624;
  margin: 0;
  background: #f5f5f3;
}

.analysis-screenshot::after {
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    inset 28px 0 42px rgba(5, 8, 10, 0.07);
  content: "";
  pointer-events: none;
}

.analysis-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.monitoring-screenshot {
  min-height: 0;
  aspect-ratio: 2370 / 1622;
  margin: 0;
  background: #f5f5f3;
}

.monitoring-screenshot::after {
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    inset 28px 0 42px rgba(5, 8, 10, 0.07);
  content: "";
  pointer-events: none;
}

.monitoring-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.communication-chapter::before {
  background: linear-gradient(90deg, transparent 28%, rgba(255, 126, 82, 0.46), transparent);
}

.communication-chapter .chapter-label {
  color: #20694f;
}

.communication-screenshot {
  min-height: 0;
  aspect-ratio: 2368 / 1626;
  margin: 0;
  background: #f5f5f3;
}

.communication-screenshot::after {
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    inset 28px 0 42px rgba(5, 8, 10, 0.07);
  content: "";
  pointer-events: none;
}

.communication-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.assistant-chapter::before {
  background: linear-gradient(90deg, transparent 28%, rgba(239, 122, 84, 0.5), transparent);
}

.assistant-chapter .chapter-label {
  color: #20694f;
}

.assistant-screenshot {
  min-height: 0;
  aspect-ratio: 2368 / 1624;
  margin: 0;
  background: #f5f5f3;
}

.assistant-screenshot::after {
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    inset 28px 0 42px rgba(5, 8, 10, 0.07);
  content: "";
  pointer-events: none;
}

.assistant-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sourcing-screenshot {
  min-height: 0;
  aspect-ratio: 2368 / 1624;
  margin: 0;
  background: #f5f5f3;
}

.sourcing-screenshot::after {
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    inset 28px 0 42px rgba(5, 8, 10, 0.07);
  content: "";
  pointer-events: none;
}

.sourcing-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sourcing-chapter::before {
  background: linear-gradient(90deg, transparent 30%, rgba(239, 184, 92, 0.42), transparent);
}

.sourcing-chapter .chapter-label {
  color: #20694f;
}

.sourcing-chapter .chapter-points li::before {
  background: var(--amber);
}

/* Monitoring UI */

.monitoring-ui {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background:
    linear-gradient(145deg, rgba(130, 232, 189, 0.06), transparent 42%),
    #0c1215;
}

.ui-topbar,
.filter-line,
.tender-list,
.ui-footer {
  position: relative;
  z-index: 1;
}

.ui-topbar {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.ui-topbar > div:first-child,
.auto-mode {
  display: flex;
  align-items: center;
}

.ui-topbar > div:first-child {
  gap: 10px;
}

.ui-topbar > div:first-child > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(130, 232, 189, 0.8);
}

.ui-topbar span {
  color: var(--text);
  font-size: 13px;
  font-weight: 620;
}

.ui-topbar b {
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.auto-mode {
  gap: 10px;
}

.auto-mode span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 520;
}

.auto-mode i {
  position: relative;
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: rgba(130, 232, 189, 0.24);
}

.auto-mode i::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(130, 232, 189, 0.5);
  content: "";
}

.filter-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.filter-line span,
.filter-line button {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 11px;
  background: transparent;
  color: var(--text-soft);
  font-size: 10px;
  line-height: 28px;
}

.filter-line button {
  margin-left: auto;
  border-color: rgba(130, 232, 189, 0.3);
  color: var(--green);
}

.tender-list {
  display: grid;
}

.tender-row {
  display: grid;
  min-height: 102px;
  grid-template-columns: 66px minmax(0, 1fr) auto 24px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 14px 4px;
  transition:
    background-color 180ms ease,
    padding 180ms var(--ease-out);
}

.tender-row.is-highlighted {
  margin-inline: -12px;
  border: 1px solid rgba(130, 232, 189, 0.24);
  border-radius: var(--radius-small);
  padding-inline: 15px;
  background: rgba(130, 232, 189, 0.05);
}

.match-score {
  display: flex;
  width: 58px;
  flex-direction: column;
}

.match-score b {
  color: var(--green);
  font-size: 21px;
  font-variant-numeric: tabular-nums;
  font-weight: 610;
  line-height: 1;
}

.match-score small,
.tender-row small {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 480;
}

.tender-row > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.tender-row > div strong {
  overflow: hidden;
  color: var(--text);
  font-size: 12px;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tender-price {
  color: #e6ebe8;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 560;
  white-space: nowrap;
}

.row-action {
  color: var(--text-muted);
  font-size: 17px;
}

.ui-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  color: var(--text-muted);
  font-size: 10px;
}

.ui-footer b {
  color: var(--green);
  font-weight: 580;
}

.monitoring-chapter.is-visible .tender-row {
  animation: tender-row-in 560ms var(--ease-out) both;
}

.monitoring-chapter.is-visible .tender-row:nth-child(2) {
  animation-delay: 90ms;
}

.monitoring-chapter.is-visible .tender-row:nth-child(3) {
  animation-delay: 180ms;
}

@keyframes tender-row-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Analysis UI */

.analysis-ui {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background:
    linear-gradient(155deg, rgba(143, 197, 255, 0.07), transparent 48%),
    #0c1216;
}

.analysis-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.analysis-head > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.analysis-head > div span,
.analysis-summary span,
.risk-list > span {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 640;
  text-transform: uppercase;
}

.analysis-head > div strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 590;
}

.analysis-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(130, 232, 189, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green);
  font-size: 9px;
  font-weight: 620;
}

.analysis-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.analysis-summary {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1fr;
  border-bottom: 1px solid var(--line);
}

.analysis-summary > div {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1320px) {
  .hero-copy {
    left: clamp(-48px, -3vw, -30px);
    position: relative;
  }
}

.analysis-summary > div + div {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.analysis-summary strong {
  margin-top: 5px;
  color: var(--text);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  font-weight: 590;
}

.analysis-summary strong.amber {
  color: var(--amber);
}

.analysis-summary small {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 9px;
}

.analysis-body {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 32px;
  padding-top: 24px;
}

.position-table {
  display: grid;
}

.position-table > div {
  display: grid;
  min-height: 48px;
  grid-template-columns: minmax(0, 1fr) 64px 86px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.position-table .table-head {
  min-height: 32px;
  color: var(--text-muted);
  font-size: 8px;
  font-weight: 640;
  text-transform: uppercase;
}

.position-table strong {
  overflow: hidden;
  color: #d8dedb;
  font-size: 10px;
  font-weight: 540;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.position-table span,
.position-table b {
  color: var(--text-soft);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.position-table b {
  color: var(--green);
}

.risk-list {
  display: grid;
  align-content: start;
  gap: 0;
}

.risk-list > span {
  min-height: 32px;
  line-height: 32px;
}

.risk-list > div {
  display: grid;
  min-height: 70px;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.risk-list > div > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.risk-high {
  background: var(--red);
  box-shadow: 0 0 10px rgba(239, 139, 131, 0.45);
}

.risk-medium {
  background: var(--amber);
  box-shadow: 0 0 10px rgba(239, 184, 92, 0.4);
}

.risk-low {
  background: var(--green);
  box-shadow: 0 0 10px rgba(130, 232, 189, 0.35);
}

.risk-list p {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.risk-list strong {
  color: #d8dedb;
  font-size: 10px;
  font-weight: 550;
}

.risk-list small {
  color: var(--text-muted);
  font-size: 8px;
}

/* Supplier UI */

.monitoring-radar-visual {
  background: #0b0d0f;
}

.monitoring-radar-visual .monitoring-radar {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-right: 0;
  background: #0b0d0f;
  opacity: 1;
}

.monitoring-radar-visual .monitoring-radar::after {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 50%, transparent 18%, rgba(11, 13, 15, 0.08) 50%, #0b0d0f 94%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 30%, rgba(0, 0, 0, 0.18));
}

.monitoring-radar-visual .monitoring-radar .radar-container {
  width: 760px;
  height: 760px;
  filter: grayscale(1) saturate(0) brightness(0.68) contrast(1.18);
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

.monitoring-radar .radar-target {
  border-color: rgba(225, 230, 234, 0.82);
  background: #c3cbd0;
  box-shadow: 0 0 10px rgba(211, 220, 226, 0.64);
}

.monitoring-radar .radar-target::after {
  border-color: rgba(199, 208, 214, 0.48);
}

.sourcing-ui {
  display: block;
  background: #0b1115;
}

.sourcing-radar {
  position: relative;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.sourcing-radar::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, #0b1115 100%);
  content: "";
  pointer-events: none;
}

.sourcing-radar .radar-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-52%, -50%);
}

.supplier-panel {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 46px 42px;
  background: rgba(11, 17, 21, 0.86);
  backdrop-filter: blur(8px);
}

.sourcing-chapter .supplier-panel {
  height: 100%;
  padding-right: 58px;
  padding-left: 58px;
}

.supplier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.supplier-head span {
  color: var(--text);
  font-size: 12px;
  font-weight: 610;
}

.supplier-head b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 9px;
  font-weight: 580;
}

.supplier-head b::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  content: "";
}

.supplier-row {
  display: grid;
  min-height: 104px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.supplier-row > span {
  color: var(--text-muted);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.supplier-row > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.supplier-row > div strong {
  color: #e4e9e6;
  font-size: 11px;
  font-weight: 570;
}

.supplier-row > div small {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.supplier-row > div:nth-of-type(2) {
  align-items: flex-end;
}

.supplier-row > div:nth-of-type(2) strong {
  font-variant-numeric: tabular-nums;
}

.supplier-row > b {
  display: none;
}

.supplier-row.is-best {
  position: relative;
  margin-inline: -12px;
  border: 1px solid rgba(130, 232, 189, 0.25);
  border-radius: var(--radius-small);
  padding-inline: 12px;
  background: rgba(130, 232, 189, 0.05);
}

.supplier-row.is-best > b {
  position: absolute;
  top: 8px;
  right: 10px;
  display: block;
  color: var(--green);
  font-size: 7px;
  font-weight: 650;
  text-transform: uppercase;
}

.supplier-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
}

.supplier-actions span {
  color: var(--text-muted);
  font-size: 9px;
}

.supplier-actions button {
  min-height: 34px;
  border: 1px solid rgba(130, 232, 189, 0.35);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(130, 232, 189, 0.1);
  color: var(--green);
  font-size: 9px;
  font-weight: 620;
}

/* Decision bridge */

.decision-bridge {
  margin-top: 112px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 70px 0 0;
}

.decision-copy {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 58px;
}

.decision-copy h3 {
  max-width: 850px;
  font-size: 46px;
  font-weight: 590;
  line-height: 1.08;
  text-wrap: balance;
}

.decision-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.decision-flow > div {
  min-height: 154px;
  padding: 28px 24px 30px 0;
}

.decision-flow > div + div {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.decision-flow span {
  color: var(--text-muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 620;
}

.decision-flow p {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 12px;
}

.decision-flow strong {
  display: block;
  max-width: 210px;
  margin-top: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 580;
  line-height: 1.45;
}

/* Automation */

.automation-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(76, 123, 187, 0.16), transparent 38%),
    linear-gradient(290deg, rgba(87, 191, 147, 0.12), transparent 42%),
    #080d10;
}

.automation-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 46%, black);
}

.automation-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 84px;
  align-items: center;
}

.automation-copy h2 {
  max-width: 620px;
  margin-top: 0;
  font-size: 50px;
  font-weight: 590;
  line-height: 1.06;
  text-wrap: balance;
}

.automation-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 26px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.62;
  text-wrap: pretty;
}

.automation-copy .button {
  margin-top: 34px;
}

.automation-console {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(8, 13, 16, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 32px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.automation-console::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 16%;
  left: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 197, 255, 0.72), transparent);
  content: "";
  pointer-events: none;
}

.console-head,
.console-step,
.console-result {
  padding-inline: 28px;
}

.console-head {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.console-head span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 620;
}

.console-head span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(130, 232, 189, 0.8);
}

.console-head b {
  color: var(--green);
  font-size: 9px;
  font-weight: 630;
  text-transform: uppercase;
}

.console-step {
  display: grid;
  min-height: 102px;
  grid-template-columns: 1fr auto;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.console-step > span {
  color: var(--text);
  font-size: 13px;
  font-weight: 570;
}

.console-step > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.console-step > div i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: console-pulse 2.4s ease-in-out infinite;
}

.console-step:nth-child(3) > div i {
  animation-delay: 500ms;
}

.console-step:nth-child(4) > div i {
  animation-delay: 1000ms;
}

.console-step > div b {
  color: var(--green);
  font-size: 10px;
  font-weight: 590;
}

.console-step small {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 10px;
}

.console-result {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-left: 2px solid rgba(130, 232, 189, 0.42);
  background: linear-gradient(90deg, rgba(130, 232, 189, 0.1), rgba(130, 232, 189, 0.035));
}

.console-result span {
  color: var(--text-muted);
  font-size: 9px;
  text-transform: uppercase;
}

.console-result strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 590;
}

@keyframes console-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(130, 232, 189, 0);
    opacity: 0.58;
  }
  50% {
    box-shadow: 0 0 0 5px rgba(130, 232, 189, 0.08);
    opacity: 1;
  }
}

/* Pricing */

.pricing-section {
  background: #080b0d;
}

.monitoring-free-band {
  display: grid;
  grid-template-columns: 52px minmax(210px, 0.7fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(130, 232, 189, 0.22);
  border-radius: 12px;
  padding: 20px 24px;
  background:
    radial-gradient(circle at 5% 50%, rgba(130, 232, 189, 0.09), transparent 18%),
    linear-gradient(105deg, rgba(130, 232, 189, 0.075), rgba(130, 232, 189, 0.018) 62%, transparent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025) inset;
}

.monitoring-free-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(130, 232, 189, 0.26);
  border-radius: 50%;
}

.monitoring-free-mark::before,
.monitoring-free-mark::after {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(130, 232, 189, 0.22);
  border-radius: 50%;
  content: "";
}

.monitoring-free-mark::after {
  inset: 19px;
  border: 0;
  background: var(--green);
  box-shadow: 0 0 10px rgba(130, 232, 189, 0.72);
}

.monitoring-free-mark i {
  position: absolute;
  top: 21px;
  left: 21px;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: rotate(var(--r, -38deg));
  transform-origin: left center;
}

.monitoring-free-mark i:nth-child(2) { --r: 8deg; }
.monitoring-free-mark i:nth-child(3) { --r: 54deg; }

.monitoring-free-band > div:nth-child(2) {
  display: grid;
  gap: 4px;
}

.monitoring-free-band span {
  color: rgba(130, 232, 189, 0.72);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.monitoring-free-band strong {
  color: var(--white);
  font-size: 17px;
  font-weight: 590;
}

.monitoring-free-band > p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.access-monitoring-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 0;
  border-top: 1px solid rgba(225, 238, 243, 0.12);
  padding-top: 18px;
  color: rgba(239, 251, 246, 0.72);
  font-size: 11.5px;
}

.access-monitoring-note i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(130, 232, 189, 0.1);
}

.pricing-heading {
  margin-bottom: 64px;
}

.pricing-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0c1215;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
}

.pricing-main,
.pricing-included {
  min-height: 480px;
  padding: 52px;
}

.pricing-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(130, 232, 189, 0.11), transparent 54%),
    #0b1114;
}

.pricing-badge {
  border: 1px solid rgba(130, 232, 189, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green);
  font-size: 9px;
  font-weight: 650;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 38px;
}

.price strong {
  color: var(--white);
  font-size: 58px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 1;
}

.price span {
  color: var(--text-muted);
  font-size: 15px;
}

.pricing-quota {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
}

.pricing-quota strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 570;
}

.pricing-quota span {
  color: var(--text-muted);
  font-size: 12px;
}

.pricing-main .button {
  margin-top: auto;
}

.pricing-main > p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 10px;
}

.pricing-included {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-included > span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 44px;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0 17px 24px;
  color: #d9dfdc;
  font-size: 13px;
  line-height: 1.4;
}

.check-list li::before {
  position: absolute;
  top: 22px;
  left: 0;
  color: var(--green);
  content: "✓";
  font-size: 11px;
  font-weight: 700;
}

.addon-list {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.addon {
  display: grid;
  min-height: 108px;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-inline: 8px;
}

.addon > span {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 640;
  text-transform: uppercase;
}

.addon > div {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.addon strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 580;
}

.addon p {
  color: var(--text-muted);
  font-size: 12px;
}

.addon > b {
  color: var(--green);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 590;
  white-space: nowrap;
}

/* Access */

.access-section {
  min-height: 620px;
  overflow: hidden;
  padding: 104px 0;
}

.grainient-form,
.access-shade {
  position: absolute;
  inset: 0;
}

.access-shade {
  background:
    radial-gradient(circle at 8% 28%, rgba(100, 205, 162, 0.34), transparent 48%),
    radial-gradient(circle at 92% 20%, rgba(50, 105, 230, 0.3), transparent 50%),
    linear-gradient(90deg, rgba(7, 10, 12, 0.22), rgba(7, 10, 12, 0.58)),
    linear-gradient(180deg, rgba(7, 10, 12, 0.18), rgba(7, 10, 12, 0.46));
}

.access-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 100px;
  align-items: center;
}

.access-copy h2 {
  max-width: 700px;
  margin-top: 22px;
  font-size: 62px;
  font-weight: 600;
  line-height: 1.04;
  text-wrap: balance;
}

.access-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.access-layout-cta {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.72fr);
  gap: clamp(64px, 8vw, 132px);
}

.access-layout-cta .access-copy h2 {
  margin-top: 0;
}

.access-action {
  display: grid;
  gap: 24px;
  align-content: center;
  border: 1px solid rgba(226, 239, 244, 0.14);
  border-radius: 20px;
  padding: 34px 36px 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(4, 12, 18, 0.56);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.055) inset,
    0 28px 70px rgba(1, 8, 14, 0.2);
  backdrop-filter: blur(20px);
}

.access-offer-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.01em;
}

.access-offer-label i {
  width: 18px;
  height: 1px;
  border-radius: 1px;
  background: #8ae2bd;
  box-shadow: none;
}

.access-bonuses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.access-bonuses span {
  display: flex;
  min-width: 0;
  min-height: 88px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 0 22px;
  color: rgba(236, 244, 247, 0.66);
  font-size: 11px;
  line-height: 1.35;
}

.access-bonuses span:first-child {
  padding-left: 0;
}

.access-bonuses span:last-child {
  padding-right: 0;
}

.access-bonuses span + span {
  border-left: 1px solid rgba(225, 238, 243, 0.13);
}

.access-bonuses b {
  color: var(--white);
  font-size: 34px;
  font-variant-numeric: tabular-nums;
  font-weight: 590;
  line-height: 1;
  white-space: nowrap;
}

.access-action > .button {
  width: 100%;
  min-height: 54px;
  justify-content: center;
}

.form-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 40px 100px rgba(0, 0, 0, 0.25);
  color: var(--black);
  backdrop-filter: blur(18px);
}

.lead-form {
  display: grid;
  gap: 20px;
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-out);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label > span {
  color: #4d5752;
  font-size: 11px;
  font-weight: 620;
}

.lead-form input {
  width: 100%;
  height: 56px;
  border: 1px solid rgba(12, 27, 21, 0.16);
  border-radius: var(--radius-small);
  outline: none;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.62);
  color: #0a110e;
  font-size: 16px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.lead-form input::placeholder {
  color: #8e9792;
}

.lead-form input:focus {
  border-color: rgba(15, 109, 81, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(88, 216, 163, 0.12);
}

.lead-form label.has-error input {
  border-color: #b8544d;
  box-shadow: 0 0 0 4px rgba(184, 84, 77, 0.09);
}

.field-error {
  min-height: 14px;
  color: #a8443e;
  font-size: 10px;
}

.lead-form .button {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  color: #747d78;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.success-panel {
  position: absolute;
  inset: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 260ms ease,
    transform 260ms var(--ease-out);
}

.success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #dff6eb;
  color: #0f6d51;
  font-size: 18px;
  font-weight: 700;
}

.success-panel h3 {
  margin-top: 24px;
  color: #0a110e;
  font-size: 30px;
  font-weight: 620;
}

.success-panel p {
  max-width: 300px;
  margin-top: 10px;
  color: #69736e;
  font-size: 14px;
}

.form-wrap.is-sent .lead-form {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.form-wrap.is-sent .success-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* FAQ */

.faq-section {
  background: #080b0d;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 110px;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  margin-top: 18px;
  font-size: 50px;
  font-weight: 590;
  line-height: 1.04;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  align-items: center;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 540;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 19px;
  font-weight: 380;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 220ms var(--ease-out);
}

.faq-list details[open] summary span {
  border-color: rgba(130, 232, 189, 0.35);
  color: var(--green);
  transform: rotate(45deg);
}

.faq-list details > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--ease-out);
}

.faq-list details[open] > div {
  grid-template-rows: 1fr;
}

.faq-list details > div > p {
  max-width: 660px;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.68;
}

.faq-list details[open] > div > p {
  padding-bottom: 28px;
}

/* Footer */

.lab-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 8%, rgba(83, 152, 130, 0.065), transparent 30%),
    #060809;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) minmax(120px, 0.62fr) minmax(190px, 0.86fr) minmax(250px, 1fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: start;
  padding-block: 68px 58px;
}

.footer-brand .brand {
  width: 124px;
}

.footer-brand p {
  max-width: 260px;
  margin-top: 24px;
  color: rgba(220, 229, 232, 0.52);
  font-size: 13px;
  line-height: 1.58;
}

.footer-column {
  display: grid;
  justify-items: start;
  gap: 13px;
  color: rgba(231, 238, 240, 0.72);
  font-size: 14px;
}

.footer-label {
  margin-bottom: 8px;
  color: rgba(136, 226, 188, 0.72);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-label-secondary {
  margin-top: 18px;
}

.footer-column a {
  position: relative;
  transition: color 180ms ease;
}

.footer-column a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease-out);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  opacity: 0.42;
  transform: scaleX(1);
}

.footer-action {
  display: grid;
  justify-items: start;
}

.footer-action p {
  max-width: 260px;
  margin-bottom: 22px;
  color: rgba(220, 229, 232, 0.52);
  font-size: 13px;
  line-height: 1.5;
}

.footer-cta {
  display: inline-flex;
  min-width: 210px;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 999px;
  padding: 0 20px 0 22px;
  background: #f4f6f5;
  color: #0a0d0e;
  font-size: 13px;
  font-weight: 650;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 10px 28px rgba(0, 0, 0, 0.2);
  transition:
    background-color 180ms ease,
    transform 150ms var(--ease-out);
}

.footer-cta:hover {
  background: #ffffff;
}

.footer-cta:active {
  transform: scale(0.96);
}

.footer-cta-icon {
  font-size: 17px;
  line-height: 1;
  transition: transform 180ms var(--ease-out);
}

.footer-cta:hover .footer-cta-icon {
  transform: translateX(3px);
}

.footer-bottom {
  display: grid;
  min-height: 68px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 10px;
}

.footer-bottom span:first-child {
  white-space: nowrap;
}

.footer-bottom span:nth-child(2) {
  justify-self: center;
}

.footer-bottom span:last-child {
  justify-self: end;
}

/* Tablet */

@media (max-width: 1050px) {
  :root {
    --shell: 920px;
  }

  .desktop-nav {
    gap: 19px;
  }

  .header-actions {
    margin-left: 20px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-product-preview {
    right: -90px;
    bottom: -10px;
    width: min(840px, 68vw);
    opacity: 0.96;
  }

  .story-chapter {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.6fr);
  }

  .analysis-chapter {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.6fr);
  }

  .chapter-copy {
    padding: 52px 38px;
  }

  .chapter-copy h3 {
    font-size: 34px;
  }

  .monitoring-ui,
  .analysis-ui {
    padding: 34px;
  }

  .sourcing-ui {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .supplier-panel {
    padding: 34px 28px;
  }

  .automation-layout {
    gap: 60px;
  }

  .analysis-body {
    grid-template-columns: 1fr;
  }

  .risk-list {
    display: none;
  }

  .addon > div {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

/* Mobile navigation and layout */

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(calc(100% - 32px), 680px);
  }

  .section {
    padding: 96px 0;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 104px;
  }

  .desktop-nav,
  .header-contact,
  .quiet-link {
    display: none;
  }

  .header-actions {
    gap: 9px;
    margin-left: auto;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 16px;
  }

  .header-cta span {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #070a0c;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      height 280ms var(--ease-out),
      opacity 180ms ease,
      transform 220ms var(--ease-out),
      padding 220ms var(--ease-out);
  }

  .mobile-nav.is-open {
    height: calc(100svh - var(--header-height));
    padding-top: 22px;
    padding-bottom: 30px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav > a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 18px;
    font-weight: 560;
  }

  .mobile-nav > a::after {
    color: var(--text-muted);
    content: "↘";
  }

  .mobile-nav-meta {
    display: grid;
    gap: 6px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 12px;
  }

  .hero,
  .hero-inner {
    min-height: 1000px;
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: 116px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .hero-product-preview {
    display: none;
  }

  .hero-radar {
    top: 530px;
    right: auto;
    left: 50%;
    display: block;
    width: min(430px, 112vw);
    opacity: 0.48;
    filter: saturate(0.6) brightness(0.86) contrast(1.06);
    transform: translateX(-50%);
  }

  .radar-tender-layer {
    top: 530px;
    right: auto;
    left: 50%;
    display: block;
    width: min(430px, 112vw);
    transform: translateX(-50%);
  }

  .radar-tender-pin {
    width: 52px;
    height: 52px;
  }

  .radar-tender-card,
  .radar-tender-pin-b .radar-tender-card,
  .radar-tender-pin-c .radar-tender-card {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(358px, calc(100vw - 32px));
    gap: 9px;
    padding: 16px 17px 15px;
    border-radius: 12px;
    transform: translate3d(0, 8px, 0) scale(0.98);
    transform-origin: center top;
  }

  .radar-tender-pin-a .radar-tender-card {
    top: -80px;
    left: -265px;
  }

  .radar-tender-pin-b .radar-tender-card {
    top: -26px;
    left: -50px;
  }

  .radar-tender-pin-c .radar-tender-card {
    top: 85px;
    left: -84px;
  }

  .radar-tender-card::before,
  .radar-tender-pin-b .radar-tender-card::before,
  .radar-tender-pin-c .radar-tender-card::before {
    display: none;
  }

  .radar-tender-pin.is-open .radar-tender-card,
  .radar-tender-pin-b.is-open .radar-tender-card,
  .radar-tender-pin-c.is-open .radar-tender-card {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .radar-tender-card > strong {
    font-size: 17px;
  }

  .radar-tender-card-head em {
    font-size: 10px;
  }

  .hero-copy > p {
    max-width: 580px;
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 32px;
  }

  .section-heading {
    display: block;
    margin-bottom: 58px;
  }

  .section-heading-compact h2 span {
    white-space: normal;
  }

  .section-heading h2 {
    font-size: 45px;
  }

  .section-heading > p:last-child {
    max-width: 620px;
    margin-top: 24px;
    font-size: 15px;
  }

  .story-chapter {
    display: flex;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    flex-direction: column;
  }

  .analysis-chapter .chapter-copy {
    order: 0;
  }

  .analysis-chapter .chapter-visual {
    order: 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .chapter-copy {
    padding: 48px 30px;
  }

  .chapter-label {
    position: static;
  }

  .chapter-copy::after {
    top: auto;
    right: 0;
    bottom: -28px;
    left: 0;
    width: auto;
    height: 28px;
    background: linear-gradient(180deg, rgba(1, 7, 5, 0.15), transparent);
  }

  .chapter-copy h3 {
    max-width: 600px;
    margin-top: 26px;
    font-size: 38px;
  }

  .chapter-copy > p:not(.chapter-label) {
    max-width: 620px;
  }

  .chapter-visual {
    height: auto;
    min-height: 520px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .sourcing-radar {
    min-height: 520px;
  }

  .decision-bridge {
    margin-top: 80px;
    padding-top: 52px;
  }

  .decision-copy {
    display: block;
    padding-bottom: 44px;
  }

  .decision-copy h3 {
    margin-top: 18px;
    font-size: 38px;
  }

  .decision-flow {
    grid-template-columns: 1fr 1fr;
  }

  .decision-flow > div {
    min-height: 138px;
  }

  .decision-flow > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .decision-flow > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .automation-layout,
  .access-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .automation-layout {
    gap: 64px;
  }

  .automation-copy h2,
  .access-copy h2 {
    font-size: 48px;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .pricing-main,
  .pricing-included {
    min-height: auto;
    padding: 42px;
  }

  .pricing-main {
    min-height: 410px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .check-list {
    column-gap: 28px;
  }

  .addon {
    grid-template-columns: 100px 1fr auto;
    gap: 18px;
  }

  .addon > div {
    display: block;
  }

  .addon p {
    margin-top: 4px;
  }

  .access-layout {
    gap: 52px;
  }

  .access-layout-cta {
    grid-template-columns: 1fr;
  }

  .access-action {
    width: min(100%, 560px);
  }

  .form-wrap {
    width: min(100%, 520px);
  }

  .faq-layout {
    gap: 48px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    font-size: 44px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > .text-link {
    display: none;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding: 80px 0;
  }

  .header-cta {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .hero-inner {
    padding-top: 104px;
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h1 br {
    display: none;
  }

  .hero-copy > p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .platform-section {
    padding-top: 28px;
  }

  .section-heading .eyebrow {
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .chapter-copy {
    padding: 38px 22px 42px;
  }

  .chapter-copy h3 {
    margin-top: 20px;
    font-size: 32px;
  }

  .chapter-copy > p:not(.chapter-label) {
    margin-top: 20px;
    font-size: 14px;
  }

  .chapter-points {
    margin-top: 26px;
  }

  .chapter-points li {
    font-size: 12px;
  }

  .decision-bridge {
    margin-top: 64px;
    padding-top: 44px;
  }

  .decision-copy {
    padding-bottom: 36px;
  }

  .decision-copy h3 {
    font-size: 32px;
  }

  .decision-flow {
    grid-template-columns: 1fr;
  }

  .decision-flow > div {
    min-height: 122px;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
    padding: 24px 0;
  }

  .decision-flow p {
    margin-top: 14px;
  }

  .chapter-visual {
    min-height: 430px;
  }

  .analysis-screenshot {
    min-height: 0;
    aspect-ratio: 2368 / 1624;
  }

  .monitoring-screenshot {
    min-height: 0;
    aspect-ratio: 2370 / 1622;
  }

  .communication-screenshot {
    min-height: 0;
    aspect-ratio: 2368 / 1626;
  }

  .assistant-screenshot {
    min-height: 0;
    aspect-ratio: 2368 / 1624;
  }

  .sourcing-screenshot {
    min-height: 0;
    aspect-ratio: 2368 / 1624;
  }

  .monitoring-ui,
  .analysis-ui {
    padding: 22px;
  }

  .auto-mode span,
  .filter-line span:nth-child(3) {
    display: none;
  }

  .filter-line button {
    display: none;
  }

  .tender-row {
    min-height: 92px;
    grid-template-columns: 46px minmax(0, 1fr) 16px;
    gap: 10px;
  }

  .tender-row.is-highlighted {
    margin-inline: -7px;
    padding-inline: 8px;
  }

  .match-score {
    width: 42px;
  }

  .match-score b {
    font-size: 18px;
  }

  .match-score small {
    font-size: 7px;
  }

  .tender-row > div strong {
    white-space: normal;
  }

  .tender-price {
    display: none;
  }

  .ui-footer {
    justify-content: flex-end;
  }

  .ui-footer span {
    display: none;
  }

  .analysis-summary {
    grid-template-columns: 0.7fr 0.7fr 1fr;
  }

  .analysis-summary > div {
    min-height: 92px;
  }

  .analysis-summary > div + div {
    padding-left: 12px;
  }

  .analysis-summary strong {
    font-size: 17px;
  }

  .analysis-summary small {
    display: none;
  }

  .position-table > div {
    grid-template-columns: minmax(0, 1fr) 50px 66px;
  }

  .sourcing-ui {
    display: block;
  }

  .sourcing-radar {
    position: absolute;
    inset: 0;
    min-height: 430px;
    opacity: 0.44;
  }

  .sourcing-radar::after {
    background: linear-gradient(180deg, transparent, #0b1115 82%);
  }

  .sourcing-radar .radar-container {
    width: 560px;
    height: 560px;
    transform: translate(-60%, -58%);
  }

  .supplier-panel {
    min-height: 430px;
    justify-content: flex-end;
    padding: 22px;
    background: linear-gradient(180deg, rgba(11, 17, 21, 0.1), rgba(11, 17, 21, 0.98) 40%);
    backdrop-filter: none;
  }

  .supplier-row {
    min-height: 78px;
  }

  .supplier-row > div:nth-of-type(2) {
    display: none;
  }

  .automation-copy h2,
  .access-copy h2 {
    font-size: 40px;
  }

  .automation-copy > p:not(.eyebrow),
  .access-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .console-head,
  .console-step,
  .console-result {
    padding-inline: 20px;
  }

  .console-step {
    min-height: 112px;
  }

  .console-step > span,
  .console-step > div {
    grid-column: 1 / -1;
  }

  .console-step > div {
    margin-top: 6px;
  }

  .console-result {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .pricing-heading h2 {
    font-size: 36px;
  }

  .pricing-main,
  .pricing-included {
    padding: 30px 24px;
  }

  .price strong {
    font-size: 46px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .addon {
    min-height: 132px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-block: 20px;
  }

  .addon > span {
    grid-column: 1 / -1;
  }

  .addon > b {
    align-self: start;
    font-size: 11px;
  }

  .access-section {
    min-height: 0;
    padding: 84px 0;
  }

  .access-layout {
    gap: 42px;
  }

  .access-layout-cta {
    gap: 36px;
  }

  .access-action {
    gap: 18px;
    border-radius: 20px;
    padding: 18px;
  }

  .access-bonuses span {
    min-height: 90px;
    padding: 14px 10px;
    font-size: 9px;
  }

  .access-bonuses b {
    font-size: 21px;
  }

  .form-wrap {
    min-height: 416px;
    padding: 26px 20px;
  }

  .success-panel {
    inset: 26px 20px;
  }

  .faq-list summary {
    min-height: 84px;
    font-size: 16px;
  }

  .footer-top {
    min-height: 220px;
    grid-template-columns: 1fr;
    gap: 30px;
    align-content: center;
  }

  .footer-bottom {
    min-height: 78px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
}

/* Autopilot illustration */

.automation-strands {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
}

.automation-strands-canvas,
.automation-strands-canvas .strands-container,
.automation-strands-canvas canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.automation-strands-canvas {
  transform: scale(1.16);
}

.automation-strands-canvas canvas {
  -webkit-mask-image: radial-gradient(ellipse 76% 56% at center, #000 42%, transparent 92%);
  mask-image: radial-gradient(ellipse 76% 56% at center, #000 42%, transparent 92%);
}

.automation-orbit {
  position: relative;
  min-height: 520px;
  overflow: visible;
  isolation: isolate;
}

.orbit-glow {
  position: absolute;
  inset: 5% -2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 210, 174, 0.15), rgba(112, 160, 220, 0.06) 38%, transparent 68%);
  filter: blur(8px);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(205, 220, 214, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.orbit-ring::before {
  inset: 14%;
  border: 1px solid rgba(205, 220, 214, 0.07);
}

.orbit-ring::after {
  inset: -1px;
  border-top: 1px solid rgba(130, 232, 189, 0.58);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  animation: orbit-turn 14s linear infinite;
}

.orbit-ring-outer {
  width: 400px;
  height: 400px;
}

.orbit-ring-inner {
  width: 270px;
  height: 270px;
}

.orbit-ring i {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #0c1215;
  border-radius: 50%;
  background: #aab5b0;
  box-shadow: 0 0 14px rgba(193, 207, 201, 0.4);
}

.orbit-ring-outer i:first-child {
  top: 14%;
  right: 18%;
}

.orbit-ring-outer i:last-child {
  bottom: 11%;
  left: 24%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(130, 232, 189, 0.58);
}

.orbit-ring-inner i {
  top: 48%;
  right: -4px;
  background: #8fc5ff;
  box-shadow: 0 0 18px rgba(143, 197, 255, 0.52);
}

.orbit-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(226, 235, 231, 0.18);
  border-radius: 50%;
  background: rgba(10, 17, 20, 0.88);
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.018),
    0 24px 70px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.orbit-core img {
  width: 48px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.orbit-core > span {
  margin-top: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 620;
}

.orbit-core > b {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--green);
  font-size: 9px;
  font-weight: 590;
}

.orbit-core > b i,
.orbit-caption > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.orbit-caption {
  position: absolute;
  z-index: 4;
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(220, 230, 226, 0.13);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(8, 13, 16, 0.78);
  color: #b9c4bf;
  font-size: 10px;
  font-weight: 570;
  backdrop-filter: blur(10px);
}

.orbit-caption-monitoring {
  top: 19%;
  left: 5%;
}

.orbit-caption-analysis {
  top: 25%;
  right: 4%;
  color: #a8cbed;
}

.orbit-caption-supply {
  right: 8%;
  bottom: 19%;
  color: #91d7ba;
}

@keyframes orbit-turn {
  to {
    transform: rotate(360deg);
  }
}

/* Pricing v2 */

.pricing-section {
  background:
    radial-gradient(circle at 50% 14%, rgba(83, 123, 109, 0.09), transparent 34%),
    #080b0d;
}

.pricing-heading {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}

.pricing-heading h2 {
  max-width: 680px;
}

.billing-switch {
  position: relative;
  display: grid;
  width: 304px;
  min-width: 304px;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(225, 233, 229, 0.12);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.38),
    0 10px 30px rgba(0, 0, 0, 0.16);
}

.billing-switch-thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: #eef3f0;
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.7) inset,
    0 5px 16px rgba(0, 0, 0, 0.25);
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.billing-switch.is-annual .billing-switch-thumb {
  transform: translateX(100%);
}

.billing-option {
  position: relative;
  z-index: 1;
  min-height: 42px;
  border: 0;
  padding: 0 13px;
  background: transparent;
  color: #8e9994;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 570;
  transition:
    color 180ms ease,
    transform 140ms cubic-bezier(0.23, 1, 0.32, 1);
}

.billing-option.is-active {
  color: #111715;
}

.billing-option:active {
  transform: scale(0.96);
}

.billing-option:focus-visible {
  border-radius: 999px;
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.billing-option small {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  margin-left: 5px;
  border-radius: 999px;
  padding: 0 6px;
  background: rgba(130, 232, 189, 0.12);
  color: #85dcb3;
  font-size: 9px;
  font-weight: 670;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.billing-option.is-active small {
  background: #d5f5e5;
  color: #166241;
}

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

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 590px;
  align-items: stretch;
  flex-direction: column;
  border: 1px solid rgba(225, 233, 229, 0.11);
  border-radius: 8px;
  padding: 34px 30px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent 30%),
    #0b0f11;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.035) inset,
    0 24px 64px rgba(0, 0, 0, 0.2);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.plan-card:hover {
  border-color: rgba(225, 233, 229, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 76px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.plan-card-featured {
  border-color: rgba(130, 232, 189, 0.4);
  background:
    linear-gradient(180deg, rgba(130, 232, 189, 0.075), transparent 34%),
    #0b1112;
  box-shadow:
    0 0 0 1px rgba(130, 232, 189, 0.05) inset,
    0 32px 86px rgba(0, 0, 0, 0.3);
}

.plan-card-featured:hover {
  border-color: rgba(130, 232, 189, 0.58);
}

.plan-choice {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--green);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-head {
  display: flex;
  align-items: center;
  min-height: 30px;
}

.plan-head h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 590;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 34px;
  transition:
    opacity 140ms ease,
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1),
    filter 140ms ease;
}

.plan-price.is-changing {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(5px);
}

.plan-price strong {
  color: var(--white);
  font-size: 39px;
  font-variant-numeric: tabular-nums;
  font-weight: 610;
  line-height: 1;
  white-space: nowrap;
}

.plan-price span {
  color: var(--text-muted);
  font-size: 12px;
  white-space: nowrap;
}

.plan-summary {
  min-height: 52px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.plan-features {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  border-top: 1px solid rgba(225, 233, 229, 0.09);
  padding-top: 26px;
}

.plan-features li {
  position: relative;
  padding-left: 21px;
  color: #b8c1bd;
  font-size: 13px;
  line-height: 1.45;
}

.plan-features li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  color: var(--green);
  content: "✓";
  font-size: 12px;
  font-weight: 700;
}

.plan-features strong {
  color: #edf2ef;
  font-weight: 620;
}

.plan-button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(228, 235, 231, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 140ms cubic-bezier(0.23, 1, 0.32, 1);
}

.plan-button:active {
  transform: scale(0.96);
}

.plan-button:hover {
  border-color: rgba(228, 235, 231, 0.3);
  background: rgba(255, 255, 255, 0.055);
}

.plan-button-accent {
  border-color: transparent;
  background: var(--green);
  color: #07100c;
}

.plan-button-accent:hover {
  border-color: transparent;
  background: #9becbf;
}

.corporate-plan {
  display: grid;
  min-height: 190px;
  grid-template-columns: 1.1fr 1.25fr auto;
  gap: 48px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(225, 233, 229, 0.12);
  border-radius: 8px;
  padding: 32px 34px;
  background:
    linear-gradient(105deg, rgba(143, 197, 255, 0.065), transparent 40%),
    #0b0f12;
}

.corporate-kicker {
  color: #9eb7ca;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.corporate-plan h3 {
  margin-top: 9px;
  color: var(--white);
  font-size: 28px;
  font-weight: 590;
}

.corporate-plan p {
  max-width: 370px;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.corporate-plan ul {
  display: grid;
  gap: 11px;
}

.corporate-plan li {
  position: relative;
  padding-left: 18px;
  color: #bbc5c0;
  font-size: 12px;
}

.corporate-plan li::before {
  position: absolute;
  left: 0;
  color: #9fc5df;
  content: "✓";
}

.corporate-plan .plan-button {
  width: auto;
  min-width: 196px;
  margin-top: 0;
}

.extras-section {
  margin-top: 92px;
}

.extras-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.extras-heading h3 {
  max-width: 580px;
  color: var(--white);
  font-size: 30px;
  font-weight: 580;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.extra-item {
  display: flex;
  min-width: 0;
  min-height: 154px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  padding: 24px;
}

.extra-item:first-child {
  border-left: 0;
}

.extra-item > span {
  min-height: 36px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.extra-item strong {
  margin-top: 16px;
  color: var(--white);
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  font-weight: 590;
}

.extra-item small {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 9px;
}

.tokens-note {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid rgba(130, 232, 189, 0.14);
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(110deg, rgba(130, 232, 189, 0.07), transparent 48%),
    #0a0f11;
}

.tokens-symbol {
  position: relative;
  width: 122px;
  height: 92px;
}

.tokens-symbol i {
  position: absolute;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(130, 232, 189, 0.3);
  border-radius: 50%;
  background: rgba(130, 232, 189, 0.035);
}

.tokens-symbol i:nth-child(1) {
  top: 4px;
  left: 4px;
}

.tokens-symbol i:nth-child(2) {
  top: 24px;
  left: 34px;
}

.tokens-symbol i:nth-child(3) {
  top: 4px;
  left: 60px;
}

.tokens-note span {
  color: var(--green);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tokens-note h3 {
  margin-top: 9px;
  color: var(--white);
  font-size: 24px;
  font-weight: 580;
}

.tokens-note p {
  max-width: 850px;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .automation-strands {
    min-height: 470px;
  }

  .automation-orbit {
    min-height: 470px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-summary {
    min-height: 0;
  }

  .plan-button {
    margin-top: 34px;
  }

  .corporate-plan {
    grid-template-columns: 1fr 1fr;
  }

  .corporate-plan .plan-button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .extras-grid {
    grid-template-columns: 1fr 1fr;
  }

  .extra-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .extra-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .automation-strands {
    min-height: 430px;
  }

  .automation-orbit {
    min-height: 430px;
  }

  .orbit-ring-outer {
    width: 350px;
    height: 350px;
  }

  .orbit-ring-inner {
    width: 240px;
    height: 240px;
  }

  .orbit-caption-monitoring {
    left: 2%;
  }

  .orbit-caption-analysis {
    right: 0;
  }

  .pricing-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .billing-switch {
    width: 100%;
    max-width: 360px;
    min-width: 0;
  }

  .plan-card {
    padding: 30px 24px 24px;
  }

  .corporate-plan {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 24px;
  }

  .corporate-plan .plan-button {
    grid-column: auto;
  }

  .extras-section {
    margin-top: 72px;
  }

  .extras-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .extras-heading h3 {
    font-size: 26px;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }

  .extra-item,
  .extra-item:nth-child(3),
  .extra-item:nth-child(4) {
    min-height: 116px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 22px 4px;
  }

  .extra-item:first-child {
    border-top: 0;
  }

  .extra-item > span {
    min-height: 0;
  }

  .extra-item strong {
    margin-top: 10px;
  }

  .tokens-note {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }

  .tokens-symbol {
    transform: scale(0.8);
    transform-origin: left center;
  }
}

@media (max-width: 560px) {
  .automation-strands {
    min-height: 340px;
    margin-inline: -14px;
  }

  .automation-strands-canvas {
    transform: scale(1.28);
  }

  .automation-orbit {
    min-height: 370px;
    margin-inline: -14px;
  }

  .orbit-ring-outer {
    width: 300px;
    height: 300px;
  }

  .orbit-ring-inner {
    width: 202px;
    height: 202px;
  }

  .orbit-core {
    width: 132px;
    height: 132px;
  }

  .orbit-caption {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .orbit-caption-monitoring {
    top: 8%;
    left: 2%;
  }

  .orbit-caption-analysis {
    top: 18%;
  }

  .orbit-caption-supply {
    right: 2%;
    bottom: 8%;
  }

  .plan-price strong {
    font-size: 35px;
  }

  .plan-choice {
    position: static;
    order: -1;
    margin-bottom: 14px;
  }

  .tokens-note h3 {
    font-size: 21px;
  }
}

/* Mobile refinement */

@media (max-width: 820px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .chapter-label,
  .chapter-copy h3,
  .chapter-copy > p:not(.chapter-label),
  .chapter-insight {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-content: initial;
  }

  .mobile-nav > a {
    min-height: 66px;
    flex: 0 0 66px;
    font-size: 17px;
  }

  .mobile-nav > a::after {
    font-size: 15px;
    transform: translateY(-1px);
  }

  .mobile-nav-meta {
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding: 22px 0 4px;
    font-size: 14px;
    line-height: 1.5;
  }

  .section-heading-compact {
    margin-bottom: 36px;
  }

  .story-stack-inner {
    min-height: 100vh;
  }

  .story-chapter.scroll-stack-card {
    top: calc(var(--header-height) + 14px + var(--stack-offset, 0px));
    margin-bottom: 70px;
    border-radius: 12px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 18px 48px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }

  .story-chapter.scroll-stack-card.is-stack-behind {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.045) inset,
      0 10px 30px rgba(0, 0, 0, 0.16);
  }

  .story-stack .scroll-stack-end {
    height: 42vh;
  }

  .story-stack.is-static .story-chapter.scroll-stack-card {
    position: relative;
    top: auto;
    margin-bottom: 28px;
    transform: none;
  }

  .story-stack.is-static .story-chapter.scroll-stack-card:last-of-type {
    margin-bottom: 0;
  }

  .story-stack.is-static .scroll-stack-end {
    display: none;
  }

  .chapter-copy {
    min-height: 240px;
    justify-content: flex-start;
    padding: 32px 28px 34px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 44%),
      #f0f3f1;
  }

  .chapter-copy::after {
    display: none;
  }

  .chapter-label {
    min-height: 20px;
    gap: 10px;
    font-size: 11px;
  }

  .chapter-label i {
    width: 24px;
  }

  .chapter-copy h3 {
    margin-top: 22px;
    color: #0a110f;
    font-size: 34px;
    line-height: 1.08;
    text-wrap: balance;
  }

  .chapter-copy > p:not(.chapter-label) {
    margin-top: 18px;
    color: #46524d;
    font-size: 15px;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .chapter-visual,
  .monitoring-screenshot,
  .analysis-screenshot,
  .sourcing-screenshot,
  .communication-screenshot,
  .assistant-screenshot,
  .monitoring-radar-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 2368 / 1624;
  }

  .chapter-insight {
    max-width: 620px;
    margin-top: 22px;
    padding-top: 17px;
  }

  .monitoring-radar-visual .monitoring-radar {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }

  .monitoring-radar-visual .monitoring-radar .radar-container {
    width: 540px;
    height: 540px;
  }

  .automation-layout {
    gap: 34px;
  }

  .automation-copy > p:not(.eyebrow) {
    max-width: 36rem;
  }

  .pricing-heading {
    gap: 24px;
  }

  .plan-card,
  .corporate-plan,
  .tokens-note {
    border-radius: 12px;
  }

  .plan-summary {
    min-height: 0;
  }

  .extra-item small,
  .tokens-note span,
  .plan-choice,
  .corporate-kicker {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero-inner {
    min-height: 950px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.7vw, 40px);
    line-height: 1.04;
    text-wrap: balance;
  }

  .hero-radar {
    top: 530px;
    right: auto;
    left: 0;
    width: 100vw;
    opacity: 0.48;
    transform: none;
  }

  .radar-tender-layer {
    top: 530px;
    left: 0;
    width: 100vw;
    transform: none;
  }

  .radar-tender-card,
  .radar-tender-pin-b .radar-tender-card,
  .radar-tender-pin-c .radar-tender-card {
    width: calc(100vw - 32px);
  }

  .radar-tender-pin-a {
    top: 32%;
    left: 72%;
  }

  .radar-tender-pin-b {
    top: 31%;
    left: 20%;
  }

  .radar-tender-pin-c {
    top: 20%;
    left: 30%;
  }

  .radar-tender-pin-a .radar-tender-card {
    top: calc(180px - 32vw);
    left: calc(16px - 72vw);
  }

  .radar-tender-pin-b .radar-tender-card {
    top: calc(180px - 31vw);
    left: calc(16px - 20vw);
  }

  .radar-tender-pin-c .radar-tender-card {
    top: calc(180px - 20vw);
    left: calc(16px - 30vw);
  }

  .hero-copy > p {
    font-size: 15px;
    line-height: 1.58;
    text-wrap: pretty;
  }

  .hero-actions .button {
    min-height: 54px;
  }

  .platform-section {
    padding-top: 46px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .chapter-copy {
    min-height: 0;
    padding: 28px 22px 30px;
  }

  .story-chapter.scroll-stack-card {
    margin-bottom: 58px;
  }

  .chapter-label {
    font-size: 10px;
  }

  .chapter-copy h3 {
    margin-top: 20px;
    font-size: clamp(29px, 8vw, 33px);
  }

  .chapter-copy > p:not(.chapter-label) {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.55;
  }

  .chapter-insight {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 11px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .chapter-insight > svg {
    width: 25px;
    height: 25px;
  }

  .monitoring-radar-visual .monitoring-radar .radar-container {
    width: 500px;
    height: 500px;
  }

  .automation-section {
    padding-top: 88px;
    padding-bottom: 84px;
  }

  .automation-copy h2,
  .access-copy h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .automation-strands {
    min-height: 290px;
  }

  .pricing-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .pricing-heading {
    margin-bottom: 30px;
  }

  .billing-option {
    min-height: 46px;
    font-size: 13px;
  }

  .plan-card {
    padding: 28px 24px 24px;
  }

  .plan-price {
    margin-top: 26px;
  }

  .plan-features {
    margin-top: 24px;
    padding-top: 22px;
  }

  .plan-features li {
    font-size: 14px;
  }

  .corporate-plan {
    padding: 28px 24px;
  }

  .corporate-plan p,
  .corporate-plan li {
    font-size: 13px;
  }

  .extras-section {
    margin-top: 64px;
  }

  .extra-item,
  .extra-item:nth-child(3),
  .extra-item:nth-child(4) {
    min-height: 102px;
    padding: 18px 2px;
  }

  .extra-item > span {
    font-size: 13px;
  }

  .extra-item small {
    font-size: 11px;
  }

  .tokens-note {
    padding: 26px 22px;
  }

  .tokens-note span {
    font-size: 10px;
  }

  .access-section {
    padding: 76px 0;
  }

  .access-action {
    border-radius: 22px;
    padding: 20px;
  }

  .access-bonuses span {
    min-height: 92px;
    padding: 15px 10px;
    font-size: 10px;
    line-height: 1.35;
  }

  .access-bonuses b {
    margin-bottom: 7px;
    font-size: 23px;
  }

  .faq-section {
    padding-top: 84px;
  }

  .faq-list summary {
    min-height: 74px;
  }
}

@media (max-width: 350px) {
  .brand img {
    width: 98px;
  }

  .header-cta {
    padding-inline: 13px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .access-bonuses {
    grid-template-columns: 1fr;
  }

  .access-bonuses span {
    display: grid;
    min-height: 68px;
    align-items: center;
    grid-template-columns: 54px 1fr;
    text-align: left;
  }

  .access-bonuses b {
    margin-bottom: 0;
  }

  .access-action .button {
    gap: 12px;
    padding-inline: 16px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (hover: none) {
  .button:hover,
  .plan-card:hover {
    transform: none;
  }

  .button:active {
    transform: scale(0.96);
  }
}

@media (max-width: 1259px) {
  .radar-tender-layer {
    display: none;
  }

  .monitoring-free-band {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .monitoring-free-band > p {
    grid-column: 2;
    margin-top: -10px;
  }
}

@media (max-width: 820px) {
  .radar-tender-layer {
    display: block;
  }
}

@media (max-width: 620px) {
  .hero-monitoring-benefit {
    display: block;
    width: 100%;
    margin-top: 24px;
    font-size: 12px;
    white-space: nowrap;
  }

  .monitoring-free-band {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .monitoring-free-mark {
    width: 38px;
    height: 38px;
  }

  .monitoring-free-mark::before {
    inset: 8px;
  }

  .monitoring-free-mark::after {
    inset: 17px;
  }

  .monitoring-free-mark i {
    top: 18px;
    left: 18px;
    width: 15px;
  }

  .monitoring-free-band strong {
    font-size: 15px;
  }

  .monitoring-free-band > p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .chapter-free-monitoring {
    max-width: none;
  }

  .access-monitoring-note {
    align-items: flex-start;
    line-height: 1.45;
  }

  .access-monitoring-note i {
    margin-top: 5px;
  }
}

/* Visual refinement: hierarchy, depth and section rhythm */

.platform-section {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, #070a0c 0%, #090d0f 44%, #070a0c 100%);
}

.platform-section::before {
  display: none;
}

.section-heading-compact {
  position: relative;
  z-index: 1;
  margin-bottom: 62px;
}

.section-heading-compact h2 {
  max-width: 980px;
  font-size: clamp(48px, 4.5vw, 66px);
  font-weight: 540;
  letter-spacing: 0;
  line-height: 1.02;
}

.story-chapter {
  aspect-ratio: 1180 / 438;
  border-color: rgba(225, 233, 229, 0.14);
  border-radius: 16px;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.72fr);
  background: #eef2f0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 1px 0 rgba(0, 0, 0, 0.42),
    0 30px 80px rgba(0, 0, 0, 0.24);
}

.story-chapter::before {
  display: none;
}

.story-chapter.scroll-stack-card {
  transition:
    transform 300ms cubic-bezier(0.2, 0, 0, 1),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.story-chapter.scroll-stack-card.is-stack-behind {
  border-color: rgba(225, 233, 229, 0.075);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.035) inset,
    0 22px 64px rgba(0, 0, 0, 0.22);
}

.chapter-copy {
  padding: 58px 40px 42px;
  background: #f0f0f4;
  box-shadow:
    inset -1px 0 rgba(19, 36, 29, 0.1),
    inset 0 1px rgba(255, 255, 255, 0.9);
}

.chapter-copy::after {
  display: none;
}

.chapter-label {
  top: 30px;
  left: 40px;
  color: #557168;
  font-size: 11px;
  font-weight: 590;
  letter-spacing: 0;
  text-transform: none;
}

.chapter-label i {
  display: none;
}

.chapter-copy h3 {
  max-width: 315px;
  font-size: 35px;
  font-weight: 580;
  line-height: 1.06;
}

.chapter-copy > p:not(.chapter-label) {
  max-width: 310px;
  margin-top: 20px;
  color: #485650;
  font-size: 15px;
  line-height: 1.56;
}

.chapter-free-monitoring,
.chapter-insight {
  max-width: 310px;
  border-top-color: rgba(11, 18, 16, 0.11);
}

.chapter-free-monitoring {
  display: flex;
  width: auto;
  max-width: none;
  align-items: center;
  margin-top: 24px;
  border-top: 0;
  padding-top: 0;
}

.chapter-free-monitoring > i {
  display: none;
}

.chapter-free-monitoring > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #68756f;
  font-size: 12px;
  line-height: 1.3;
}

.chapter-free-monitoring strong {
  color: #23674f;
  font-size: 12px;
  font-weight: 620;
}

.chapter-free-monitoring small {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font: inherit;
}

.chapter-free-monitoring small::before {
  width: 1px;
  height: 13px;
  margin-right: 10px;
  background: rgba(22, 44, 35, 0.18);
  content: "";
}

.chapter-label,
.chapter-copy h3,
.chapter-copy > p:not(.chapter-label),
.chapter-insight,
.chapter-free-monitoring,
.story-chapter.is-visible .chapter-label,
.story-chapter.is-visible .chapter-copy h3,
.story-chapter.is-visible .chapter-copy > p:not(.chapter-label),
.story-chapter.is-visible .chapter-insight {
  opacity: 1;
  transform: none;
  animation: none;
}

.chapter-visual {
  width: 100%;
  aspect-ratio: auto;
  border-left-color: rgba(19, 36, 29, 0.1);
  background: #f6f8f7;
}

.chapter-visual img {
  filter: saturate(0.88) contrast(1.02) brightness(0.995);
}

.monitoring-screenshot img,
.story-chapter.scroll-stack-card .monitoring-screenshot img {
  object-fit: cover;
  object-position: center;
}

.chapter-copy h3 {
  margin-top: 0;
}

.automation-section {
  position: relative;
  overflow: clip;
  border-top: 1px solid rgba(151, 189, 214, 0.09);
  border-bottom: 1px solid rgba(130, 232, 189, 0.08);
  background:
    linear-gradient(102deg, rgba(70, 108, 153, 0.1), transparent 31%, transparent 68%, rgba(61, 131, 101, 0.08)),
    #080d10;
}

.automation-grid {
  opacity: 0.38;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 48%, #000);
  mask-image: linear-gradient(90deg, #000, transparent 48%, #000);
}

.automation-layout {
  min-height: 760px;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: 72px;
}

.automation-copy {
  position: relative;
  z-index: 3;
}

.automation-copy h2 {
  max-width: 580px;
  color: #f2f6f4;
  font-size: clamp(48px, 4.4vw, 64px);
  font-weight: 540;
  line-height: 1.02;
}

.automation-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 30px;
  color: #aeb9b5;
  font-size: 17px;
  line-height: 1.68;
}

.automation-copy .button {
  min-height: 54px;
  margin-top: 36px;
  padding-inline: 27px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 14px 34px rgba(0, 0, 0, 0.25);
}

.automation-strands {
  min-height: 600px;
  margin-right: -4vw;
}

.automation-strands::after {
  position: absolute;
  z-index: 2;
  inset: 12% 2% 12% 0;
  border: 1px solid rgba(205, 224, 216, 0.055);
  border-radius: 50%;
  content: "";
  opacity: 0.65;
  pointer-events: none;
}

.pricing-section {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  background:
    linear-gradient(180deg, rgba(49, 86, 73, 0.075), transparent 320px),
    #080b0d;
}

.pricing-heading {
  margin-bottom: 44px;
}

.pricing-heading h2 {
  font-size: clamp(48px, 4vw, 60px);
  font-weight: 540;
}

.billing-switch {
  border-color: rgba(225, 233, 229, 0.15);
  background: rgba(255, 255, 255, 0.045);
}

.monitoring-free-band {
  border-color: rgba(130, 232, 189, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(100deg, rgba(130, 232, 189, 0.085), transparent 55%),
    rgba(10, 16, 17, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 18px 50px rgba(0, 0, 0, 0.16);
}

.pricing-grid {
  gap: 16px;
}

.plan-card {
  min-height: 630px;
  border-color: rgba(225, 233, 229, 0.12);
  border-radius: 16px;
  padding: 38px 32px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 34%),
    #0b0f11;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.045) inset,
    0 24px 68px rgba(0, 0, 0, 0.18);
}

.plan-card:hover {
  border-color: rgba(225, 233, 229, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.055) inset,
    0 32px 84px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.plan-card-featured {
  border-color: rgba(130, 232, 189, 0.43);
  background:
    linear-gradient(180deg, rgba(130, 232, 189, 0.105), transparent 38%),
    #0b1112;
  box-shadow:
    0 0 0 1px rgba(130, 232, 189, 0.04) inset,
    0 32px 86px rgba(0, 0, 0, 0.26);
}

.plan-choice {
  top: 22px;
  right: 22px;
  border: 1px solid rgba(130, 232, 189, 0.18);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(130, 232, 189, 0.075);
}

.plan-price {
  margin-top: 38px;
}

.plan-price strong {
  font-size: 41px;
}

.plan-features {
  border-top-color: rgba(225, 233, 229, 0.1);
}

.plan-button {
  border-radius: 999px;
}

.corporate-plan {
  min-height: 184px;
  border-color: rgba(159, 197, 223, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(105deg, rgba(143, 197, 255, 0.09), transparent 42%),
    #0b0f12;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.16);
}

.extras-section {
  margin-top: 104px;
}

.extras-heading {
  margin-bottom: 34px;
}

.extras-grid {
  gap: 12px;
  border: 0;
}

.extra-item {
  min-height: 164px;
  border: 1px solid rgba(225, 233, 229, 0.1);
  border-radius: 14px;
  padding: 28px 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.03), transparent 55%),
    rgba(11, 15, 17, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.extra-item:first-child {
  border-left: 1px solid rgba(225, 233, 229, 0.1);
}

.extra-item strong {
  font-size: 27px;
}

.tokens-note {
  margin-top: 16px;
  border-color: rgba(130, 232, 189, 0.17);
  border-radius: 16px;
  padding: 40px;
  background:
    linear-gradient(110deg, rgba(130, 232, 189, 0.09), transparent 52%),
    #0a0f11;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.16);
}

.tokens-symbol {
  filter: drop-shadow(0 14px 24px rgba(94, 190, 151, 0.1));
}

.access-section {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.access-copy h2 {
  font-weight: 530;
  line-height: 1.03;
}

.access-action {
  border-color: rgba(226, 239, 244, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(4, 12, 18, 0.56);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.055) inset,
    0 28px 70px rgba(1, 8, 14, 0.2);
  backdrop-filter: blur(20px);
}

.access-bonuses {
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.access-action > .button {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 18px 40px rgba(1, 9, 16, 0.22);
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(42, 77, 64, 0.035), transparent 320px),
    #080b0d;
}

.faq-heading h2 {
  font-weight: 540;
}

.faq-list details {
  border-top-color: rgba(225, 233, 229, 0.115);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.faq-list details[open] {
  border-top-color: rgba(130, 232, 189, 0.25);
  background: transparent;
}

.faq-list summary {
  padding-inline: 0 2px;
}

.faq-list summary span {
  background: rgba(255, 255, 255, 0.015);
}

.faq-list details[open] summary span {
  border-color: rgba(130, 232, 189, 0.3);
  background: rgba(130, 232, 189, 0.055);
}

.lab-footer {
  border-top-color: rgba(225, 233, 229, 0.09);
  background:
    radial-gradient(circle at 78% 8%, rgba(83, 152, 130, 0.065), transparent 30%),
    #060809;
}

@media (max-width: 1050px) {
  .automation-layout {
    min-height: 680px;
    grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
    gap: 34px;
  }

  .automation-strands {
    min-height: 500px;
    margin-right: -8vw;
  }

  .plan-card {
    min-height: 0;
  }

  .extra-item:nth-child(3),
  .extra-item:nth-child(4) {
    border: 1px solid rgba(225, 233, 229, 0.1);
  }
}

@media (max-width: 820px) {
  .section-heading-compact {
    margin-bottom: 42px;
  }

  .section-heading-compact h2 {
    font-size: clamp(38px, 8vw, 52px);
  }

  .story-chapter {
    border-radius: 14px;
  }

  .chapter-copy {
    padding: 32px 28px 34px;
  }

  .chapter-label {
    position: static;
  }

  .chapter-copy h3 {
    margin-top: 22px;
    font-size: 36px;
  }

  .automation-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .automation-strands {
    min-height: 430px;
    margin-right: 0;
  }

  .automation-strands::after {
    inset: 13% 5%;
  }

  .pricing-heading h2 {
    font-size: clamp(40px, 8vw, 52px);
  }

  .plan-card,
  .corporate-plan,
  .tokens-note,
  .monitoring-free-band {
    border-radius: 14px;
  }

  .extras-grid {
    gap: 10px;
  }

  .extra-item,
  .extra-item:first-child,
  .extra-item:nth-child(3),
  .extra-item:nth-child(4) {
    min-height: 112px;
    border: 1px solid rgba(225, 233, 229, 0.1);
    border-radius: 12px;
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .platform-section::before {
    height: 220px;
    opacity: 0.7;
  }

  .section-heading-compact h2 {
    font-size: 36px;
  }

  .story-chapter.scroll-stack-card {
    margin-bottom: 54px;
  }

  .chapter-copy {
    padding: 27px 22px 29px;
  }

  .chapter-copy h3 {
    margin-top: 18px;
    font-size: 31px;
  }

  .automation-section {
    padding-top: 86px;
    padding-bottom: 76px;
  }

  .automation-copy h2 {
    font-size: 39px;
  }

  .automation-copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 15px;
  }

  .automation-copy .button {
    width: 100%;
    justify-content: center;
    margin-top: 28px;
  }

  .automation-strands {
    min-height: 300px;
    margin-inline: -28px;
  }

  .automation-strands::after {
    inset: 13% 8%;
  }

  .pricing-heading h2 {
    font-size: 38px;
  }

  .monitoring-free-band {
    padding: 18px;
  }

  .plan-card {
    padding: 30px 24px 24px;
  }

  .plan-price strong {
    font-size: 37px;
  }

  .extras-heading {
    margin-bottom: 24px;
  }

  .extras-heading h3 {
    font-size: 28px;
  }

  .tokens-note {
    padding: 28px 22px;
  }

  .access-action {
    border-radius: 16px;
  }

  .faq-list details[open] {
    background: transparent;
  }
}

@media (max-width: 1050px) {
  .footer-main {
    grid-template-columns: 1.2fr 0.65fr 0.9fr 1.1fr;
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 56px;
    padding-block: 56px 46px;
  }

  .footer-brand,
  .footer-action {
    grid-column: 1 / -1;
  }

  .footer-action {
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 30px;
    border-top: 1px solid rgba(225, 233, 229, 0.09);
    padding-top: 32px;
  }

  .footer-action .footer-label,
  .footer-action p {
    grid-column: 1;
  }

  .footer-action p {
    margin-bottom: 0;
  }

  .footer-cta {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    padding-block: 46px 38px;
  }

  .footer-brand p {
    max-width: 230px;
    margin-top: 18px;
  }

  .footer-action {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    padding-top: 30px;
  }

  .footer-action .footer-label,
  .footer-action p,
  .footer-cta {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-action p {
    margin-bottom: 20px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-bottom {
    min-height: 112px;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    padding-block: 22px;
  }

  .footer-bottom span:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom span:nth-child(2),
  .footer-bottom span:last-child {
    justify-self: start;
  }

  .footer-bottom span:last-child {
    justify-self: end;
  }
}

@media (max-width: 380px) {
  .radar-tender-pin-a {
    top: 22%;
  }

  .radar-tender-pin-b {
    top: 21%;
  }

  .radar-tender-pin-c {
    top: 12%;
  }

  .radar-tender-pin-a .radar-tender-card {
    top: calc(140px - 22vw);
  }

  .radar-tender-pin-b .radar-tender-card {
    top: calc(140px - 21vw);
  }

  .radar-tender-pin-c .radar-tender-card {
    top: calc(140px - 12vw);
  }
}

/* Unified 16:9 product illustrations for the lab4 story stack. */
.story-chapter.scroll-stack-card .concept-illustration {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #f5f7f6;
}

.story-chapter.scroll-stack-card .concept-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Compact mobile radar: discovery stays visual without becoming a second hero. */
@media (max-width: 820px) {
  .hero,
  .hero-inner {
    min-height: 880px;
  }

  .hero-radar {
    top: 524px;
    right: -58px;
    left: auto;
    width: min(340px, 88vw);
    opacity: 0.62;
    filter: saturate(0.48) brightness(0.82) contrast(1.14);
    transform: none;
  }

  .hero-radar::before {
    inset: 24%;
    background: rgba(107, 176, 211, 0.1);
    filter: blur(48px);
  }

  .hero-radar-grid {
    stroke: rgba(205, 229, 239, 0.24);
  }

  .hero-radar-boundary {
    stroke: rgba(214, 236, 245, 0.32);
  }

  .radar-tender-layer {
    top: 524px;
    right: auto;
    left: 0;
    width: 100vw;
    transform: none;
  }

  .radar-tender-pin-a {
    top: 22%;
    left: 84%;
  }

  .radar-tender-pin-b {
    top: 11%;
    left: 57%;
  }

  .radar-tender-pin-c {
    top: 28%;
    left: 73%;
  }

  .radar-tender-pin-a .radar-tender-card {
    top: calc(156px - 22vw);
    left: calc(16px - 84vw);
  }

  .radar-tender-pin-b .radar-tender-card {
    top: calc(156px - 11vw);
    left: calc(16px - 57vw);
  }

  .radar-tender-pin-c .radar-tender-card {
    top: calc(156px - 28vw);
    left: calc(16px - 73vw);
  }

  .radar-tender-card,
  .radar-tender-pin-b .radar-tender-card,
  .radar-tender-pin-c .radar-tender-card {
    width: calc(100vw - 32px);
    background:
      linear-gradient(145deg, rgba(113, 175, 204, 0.08), transparent 48%),
      rgba(7, 14, 18, 0.94);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.055) inset,
      0 18px 48px rgba(0, 0, 0, 0.34);
  }

  .story-chapter.scroll-stack-card {
    width: 100%;
    height: calc(100svh - var(--header-height) - 24px);
    min-height: 680px;
    max-height: 780px;
    aspect-ratio: auto;
    margin-bottom: calc(100svh - var(--header-height) - 24px);
  }

  .story-chapter.scroll-stack-card .chapter-copy {
    min-height: 0;
    flex: 0 0 48%;
  }

  .story-chapter.scroll-stack-card .chapter-visual,
  .story-chapter.scroll-stack-card .monitoring-screenshot,
  .story-chapter.scroll-stack-card .analysis-screenshot,
  .story-chapter.scroll-stack-card .sourcing-screenshot,
  .story-chapter.scroll-stack-card .communication-screenshot,
  .story-chapter.scroll-stack-card .assistant-screenshot {
    min-height: 0;
    flex: 1 1 auto;
    aspect-ratio: auto;
  }

  .story-chapter.scroll-stack-card .chapter-visual img {
    object-fit: cover;
    object-position: top center;
  }

  .story-chapter.scroll-stack-card .monitoring-screenshot img {
    object-fit: contain;
    object-position: center;
  }

  .chapter-free-monitoring small {
    display: none;
  }

  .story-stack .scroll-stack-end {
    height: 18vh;
  }
}

@media (max-width: 380px) {
  .hero,
  .hero-inner {
    min-height: 850px;
  }

  .story-chapter.scroll-stack-card {
    min-height: 650px;
  }

  .hero-radar,
  .radar-tender-layer {
    top: 516px;
  }

  .radar-tender-pin-a .radar-tender-card {
    top: calc(148px - 22vw);
  }

  .radar-tender-pin-b .radar-tender-card {
    top: calc(148px - 11vw);
  }

  .radar-tender-pin-c .radar-tender-card {
    top: calc(148px - 28vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .chapter-label,
  .chapter-copy h3,
  .chapter-copy > p:not(.chapter-label) {
    opacity: 1;
    transform: none;
    animation-delay: 0ms !important;
  }

}

/* Lab 4: natural-language tender search hero */

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

.hero-search {
  min-height: 740px;
  background: #07100f;
}

.hero-search .grainient {
  background:
    radial-gradient(circle at 5% 8%, rgba(103, 214, 174, 0.4), transparent 42%),
    radial-gradient(circle at 84% 0%, rgba(50, 112, 224, 0.5), transparent 52%),
    linear-gradient(145deg, #1d3d39 0%, #12303a 43%, #101c35 76%, #070b0c 100%);
}

.hero-search .grainient canvas {
  opacity: 0.62;
}

.hero-search .hero-shade {
  background:
    linear-gradient(180deg, rgba(6, 10, 12, 0.08) 0%, rgba(7, 10, 12, 0.12) 48%, rgba(7, 10, 12, 0.58) 84%, #070a0c 100%),
    linear-gradient(90deg, rgba(6, 10, 12, 0.1), rgba(6, 10, 12, 0.02) 52%, rgba(6, 10, 12, 0.15));
}

.hero-search .hero-inner {
  min-height: 740px;
  align-items: center;
  justify-content: center;
  padding-top: 116px;
  padding-bottom: 52px;
}

.hero-search-copy {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1160px);
  grid-template-columns: minmax(0, 1.52fr) minmax(280px, 0.72fr);
  align-items: end;
  column-gap: 72px;
  text-align: left;
}

.hero-search-kicker {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  grid-column: 1 / -1;
  margin-bottom: 20px;
  color: rgba(239, 250, 246, 0.62);
  font-size: 11px;
  font-weight: 560;
}

.hero-search-kicker::before {
  width: 28px;
  height: 1px;
  margin-right: 10px;
  background: rgba(139, 228, 188, 0.74);
  content: "";
}

.hero-search h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(58px, 5.2vw, 76px);
  font-weight: 570;
  line-height: 0.98;
  text-align: left;
  text-wrap: balance;
  transform: none;
}

.hero-search h1 span {
  color: inherit;
}

.hero-search h1 .hero-title-line {
  display: block;
}

.hero-search-lead {
  max-width: 360px;
  margin-bottom: 7px;
  color: rgba(242, 248, 245, 0.66);
  font-size: 17px;
  font-weight: 420;
  line-height: 1.58;
  text-wrap: pretty;
}

.ai-search-composer {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  grid-column: 1 / -1;
  gap: 13px;
  margin-top: 44px;
  padding: 8px 8px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(4, 12, 15, 0.5);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 70px rgba(1, 6, 10, 0.2);
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 220ms var(--ease-out);
}

.ai-search-composer:focus-within {
  border-color: rgba(151, 231, 197, 0.52);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 3px rgba(130, 232, 189, 0.1),
    0 22px 72px rgba(1, 6, 10, 0.22);
}

.ai-search-icon {
  width: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: rgba(236, 247, 242, 0.5);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.ai-search-composer input {
  display: block;
  min-width: 0;
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 12px;
  padding: 0;
  background: transparent;
  color: #f5faf7;
  font: inherit;
  font-size: 17px;
  font-weight: 430;
  line-height: 1;
  outline: none;
}

.ai-search-composer input::placeholder {
  color: rgba(235, 245, 241, 0.5);
  opacity: 1;
}

.ai-search-composer-footer {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(10, 20, 17, 0.09);
  padding: 8px 0 0 15px;
}

.ai-search-mode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #717a76;
  font-size: 11px;
  font-weight: 560;
}

.ai-search-mode svg {
  width: 16px;
  fill: none;
  stroke: #278064;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.ai-search-submit {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 13px;
  padding: 0 21px;
  background: #f5f8f6;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 8px 24px rgba(1, 6, 8, 0.18);
  color: #101715;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  transition:
    background-color 160ms ease,
    box-shadow 180ms ease,
    opacity 160ms ease,
    transform 140ms var(--ease-out);
}

.ai-search-submit:hover:not([aria-disabled="true"]) {
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 28px rgba(1, 6, 8, 0.22);
}

.ai-search-submit:active:not([aria-disabled="true"]) {
  transform: scale(0.96);
}

.ai-search-submit[aria-disabled="true"] {
  cursor: default;
  opacity: 0.88;
}

.ai-search-submit svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.ai-search-examples {
  display: flex;
  width: min(100%, 820px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-top: 15px;
  color: rgba(239, 247, 243, 0.48);
  font-size: 11px;
}

.ai-search-examples > span {
  color: rgba(239, 247, 243, 0.4);
}

.ai-search-examples button {
  position: relative;
  border: 0;
  padding: 2px 0;
  background: transparent;
  color: rgba(244, 250, 247, 0.67);
  cursor: pointer;
  font: inherit;
  transition: color 160ms ease;
}

.ai-search-examples button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.28;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.ai-search-examples button:hover,
.ai-search-examples button:focus-visible {
  color: #fff;
  outline: none;
}

.ai-search-examples button:hover::after,
.ai-search-examples button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-search-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-column: 1 / -1;
  gap: 14px;
  margin-top: 24px;
  color: rgba(237, 247, 242, 0.5);
  font-size: 11px;
  font-weight: 500;
}

.hero-search-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-search-meta span + span::before {
  display: block;
  width: 1px;
  height: 14px;
  margin-right: 6px;
  background: rgba(237, 247, 242, 0.26);
  content: "";
}

.hero-search-meta span:first-child {
  color: rgba(158, 231, 200, 0.78);
}

@media (max-width: 820px) {
  .hero-search,
  .hero-search .hero-inner {
    min-height: 780px;
  }

  .hero-search .hero-inner {
    justify-content: flex-start;
    padding-top: 108px;
    padding-bottom: 50px;
  }

  .hero-search-copy {
    display: flex;
    width: min(100%, 700px);
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .hero-search-kicker {
    margin-bottom: 16px;
  }

  .hero-search h1 {
    max-width: 700px;
    font-size: clamp(42px, 8.2vw, 58px);
    line-height: 1.01;
    text-align: center;
  }

  .hero-search-lead {
    max-width: 620px;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
  }

  .ai-search-composer {
    width: min(100%, 700px);
    margin-top: 30px;
  }

  .hero-search-meta {
    width: min(100%, 700px);
  }
}

/* Pricing: compact trial message, on-demand corporate plan and contextual AI help. */
.corporate-disclosure {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.corporate-disclosure > summary {
  list-style: none;
}

.corporate-disclosure > summary::-webkit-details-marker {
  display: none;
}

.corporate-summary {
  display: grid;
  min-height: 112px;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  cursor: pointer;
  user-select: none;
}

.corporate-summary:focus-visible {
  outline: 2px solid rgba(130, 232, 189, 0.7);
  outline-offset: -3px;
}

.corporate-summary-copy {
  display: grid;
  gap: 6px;
}

.corporate-summary-copy strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 590;
  line-height: 1.1;
}

.corporate-summary-copy small {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.corporate-summary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c9d4cf;
  font-size: 12px;
  font-weight: 580;
}

.corporate-summary-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms cubic-bezier(0.2, 0, 0, 1);
}

.corporate-disclosure[open] .corporate-summary-action svg {
  transform: rotate(180deg);
}

.corporate-disclosure > .corporate-details-clip,
.corporate-disclosure:not([open]) > .corporate-details-clip {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.2, 0, 0, 1);
}

.corporate-disclosure[open] > .corporate-details-clip {
  grid-template-rows: 1fr;
}

.corporate-details {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) auto;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(225, 233, 229, 0.09);
  padding: 0 30px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    padding 280ms cubic-bezier(0.2, 0, 0, 1),
    opacity 180ms ease,
    transform 280ms cubic-bezier(0.2, 0, 0, 1);
}

.corporate-disclosure[open] .corporate-details {
  padding-block: 28px 30px;
  opacity: 1;
  transform: translateY(0);
}

.corporate-details p {
  margin-top: 0;
}

.corporate-details .plan-button {
  width: auto;
  min-width: 196px;
  margin-top: 0;
}

.token-tooltip {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  vertical-align: middle;
  transform: translateY(-1px);
}

.token-help {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(198, 212, 205, 0.28);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.035);
  color: #aebbb5;
  cursor: help;
  font: 600 11px/1 Inter, sans-serif;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
}

.token-help:hover,
.token-help:focus-visible {
  border-color: rgba(130, 232, 189, 0.55);
  background: rgba(130, 232, 189, 0.1);
  color: var(--green);
  outline: none;
}

.token-tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  width: 272px;
  border: 1px solid rgba(225, 233, 229, 0.14);
  border-radius: 10px;
  padding: 13px 14px;
  background: #141a1c;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 48px rgba(0, 0, 0, 0.34);
  color: #d1d9d5;
  font-size: 12px;
  font-weight: 430;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  visibility: hidden;
  transition:
    opacity 140ms ease,
    transform 180ms cubic-bezier(0.2, 0, 0, 1),
    visibility 140ms ease;
}

.token-tooltip-content::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(225, 233, 229, 0.14);
  border-bottom: 1px solid rgba(225, 233, 229, 0.14);
  background: #141a1c;
  content: "";
  transform: translate(-50%, -4px) rotate(45deg);
}

.token-tooltip:hover .token-tooltip-content,
.token-tooltip:focus-within .token-tooltip-content {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.extra-item > span .token-tooltip {
  margin-left: 4px;
}

@media (max-width: 820px) {
  .corporate-summary {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    padding: 24px;
  }

  .corporate-summary .corporate-kicker {
    grid-column: 1 / -1;
  }

  .corporate-details {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-inline: 24px;
  }

  .corporate-disclosure[open] .corporate-details {
    padding-block: 24px 26px;
  }

  .corporate-details .plan-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .corporate-summary {
    min-height: 106px;
    padding: 21px 20px;
  }

  .corporate-summary-copy strong {
    font-size: 21px;
  }

  .corporate-summary-copy small {
    max-width: 220px;
    font-size: 12px;
  }

  .corporate-summary-action {
    font-size: 0;
  }

  .corporate-summary-action svg {
    width: 18px;
    height: 18px;
  }

  .corporate-details {
    padding-inline: 20px;
  }

  .token-tooltip-content {
    right: -36px;
    left: auto;
    width: min(260px, calc(100vw - 64px));
    transform: translateY(5px);
  }

  .token-tooltip-content::after {
    right: 39px;
    left: auto;
  }

  .token-tooltip:hover .token-tooltip-content,
  .token-tooltip:focus-within .token-tooltip-content {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .corporate-details-clip,
  .corporate-details,
  .corporate-summary-action svg,
  .token-tooltip-content {
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 560px) {
  .hero-search,
  .hero-search .hero-inner {
    min-height: 750px;
  }

  .hero-search .hero-inner {
    padding-top: 98px;
    padding-bottom: 38px;
  }

  .hero-search-kicker {
    min-height: 18px;
    margin-bottom: 13px;
    font-size: 11px;
  }

  .hero-search-kicker > span {
    width: 5px;
    height: 5px;
  }

  .hero-search h1 {
    font-size: clamp(34px, 9.4vw, 39px);
    line-height: 1.035;
  }

  .hero-search-lead {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.52;
  }

  .ai-search-composer {
    margin-top: 25px;
    gap: 6px;
    padding: 6px 6px 6px 13px;
    border-radius: 17px;
  }

  .ai-search-icon {
    width: 18px;
    flex-basis: 18px;
  }

  .ai-search-composer input {
    height: 48px;
    padding: 0;
    font-size: 16px;
  }

  .ai-search-composer-footer {
    min-height: 48px;
    gap: 8px;
    padding: 7px 0 0 10px;
  }

  .ai-search-mode {
    gap: 6px;
    font-size: 10px;
  }

  .ai-search-mode svg {
    width: 14px;
  }

  .ai-search-submit {
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 12px;
  }

  .ai-search-submit svg {
    width: 17px;
  }

  .ai-search-submit span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .ai-search-examples {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px 14px;
    margin-top: 14px;
    text-align: left;
  }

  .ai-search-examples > span {
    width: 100%;
  }

  .ai-search-examples button:last-child {
    display: none;
  }

  .hero-search-meta {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 24px;
    text-align: left;
  }

  .hero-search-meta span + span::before {
    margin-right: 2px;
  }
}

@media (max-width: 380px) {
  .hero-search,
  .hero-search .hero-inner {
    min-height: 730px;
  }

  .hero-search h1 {
    font-size: 34px;
  }

  .ai-search-mode {
    font-size: 0;
  }

  .ai-search-mode svg {
    width: 15px;
  }
}

/* Mobile capability cards: keep the full 16:9 artwork visible and readable. */
@media (max-width: 560px) {
  .story-chapter.scroll-stack-card {
    height: min(570px, calc(100svh - var(--header-height) - 42px));
    min-height: 520px;
    max-height: 570px;
    margin-bottom: calc(100svh - var(--header-height) - 24px);
  }

  .story-chapter.scroll-stack-card .chapter-copy {
    min-height: 0;
    flex: 1 1 auto;
    justify-content: center;
    padding: 30px 24px 28px;
  }

  .story-chapter.scroll-stack-card .chapter-copy h3 {
    margin-top: 0;
    font-size: clamp(28px, 7.6vw, 31px);
    line-height: 1.08;
  }

  .story-chapter.scroll-stack-card .chapter-copy > p:not(.chapter-label) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.5;
  }

  .story-chapter.scroll-stack-card .chapter-visual,
  .story-chapter.scroll-stack-card .monitoring-screenshot,
  .story-chapter.scroll-stack-card .concept-illustration {
    width: 100%;
    height: 248px;
    min-height: 248px;
    flex: 0 0 248px;
    aspect-ratio: auto;
    background: #f7f9f8;
  }

  .story-chapter.scroll-stack-card .chapter-visual img,
  .story-chapter.scroll-stack-card .monitoring-screenshot img,
  .story-chapter.scroll-stack-card .concept-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* Hero search composer: compact command bar integrated into the hero. */
.ai-search-composer {
  min-height: 74px;
  gap: 14px;
  padding: 8px 8px 8px 20px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 19px;
  background: rgba(5, 19, 27, 0.56);
  -webkit-backdrop-filter: blur(24px) saturate(118%);
  backdrop-filter: blur(24px) saturate(118%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 24px 70px rgba(0, 8, 15, 0.2);
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 180ms, 180ms, 220ms;
  transition-timing-function: ease, ease, var(--ease-out);
}

.ai-search-composer:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(5, 19, 27, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 26px 74px rgba(0, 8, 15, 0.23);
}

.ai-search-composer:focus-within {
  border-color: rgba(142, 235, 197, 0.62);
  background: rgba(4, 17, 24, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 3px rgba(119, 226, 181, 0.1),
    0 28px 76px rgba(0, 8, 15, 0.26);
}

.ai-search-icon {
  box-sizing: border-box;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  stroke: #78e2b8;
  stroke-width: 1.55;
}

.ai-search-composer input {
  height: 56px;
  color: #f7fbf9;
  caret-color: #7de4bb;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.25;
}

.ai-search-composer input::placeholder {
  color: rgba(226, 236, 233, 0.66);
}

.ai-search-submit {
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 13px;
  padding-inline: 25px 21px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 24px rgba(0, 8, 14, 0.16);
  color: #10221c;
  font-size: 13px;
  font-weight: 650;
  transition-property: background-color, box-shadow, opacity, transform;
  transition-duration: 160ms, 180ms, 160ms, 140ms;
  transition-timing-function: ease, ease, ease, var(--ease-out);
}

.ai-search-submit:hover:not([aria-disabled="true"]) {
  background: #dff9ed;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 26px rgba(0, 8, 14, 0.2);
}

.ai-search-submit[aria-disabled="true"] {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: rgba(231, 240, 237, 0.48);
  opacity: 1;
}

.ai-search-submit svg {
  transition: transform 160ms var(--ease-out);
}

.ai-search-submit:hover:not([aria-disabled="true"]) svg {
  transform: translateX(2px);
}

@media (max-width: 560px) {
  .ai-search-composer {
    min-height: 64px;
    gap: 10px;
    padding: 6px 6px 6px 16px;
    border-radius: 17px;
  }

  .ai-search-icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .ai-search-composer input {
    height: 52px;
    font-size: 16px;
  }

  .ai-search-submit {
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 12px;
    padding: 0;
  }
}

/* Keep a clear preview of the first capability card below the hero. */
@media (min-width: 821px) {
  .hero-search,
  .hero-search .hero-inner {
    min-height: min(740px, calc(100svh - 96px));
  }

  .platform-section {
    padding-top: 30px;
  }
}

@media (max-width: 820px) {
  .platform-section {
    margin-top: -20px;
    padding-top: 0;
  }
}

/* Desktop hero: one centered AI-search composition. */
@media (min-width: 821px) {
  .hero-search-copy {
    display: flex;
    width: min(100%, 1040px);
    align-items: center;
    flex-direction: column;
    column-gap: 0;
    text-align: center;
  }

  .hero-search h1 {
    max-width: 900px;
    font-size: clamp(58px, 5vw, 72px);
    line-height: 1;
    text-align: center;
    text-wrap: balance;
  }

  .hero-search-lead {
    max-width: 620px;
    margin-top: 24px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
    text-align: center;
    text-wrap: pretty;
  }

  .ai-search-composer {
    width: min(100%, 780px);
    margin-top: 34px;
  }

  .hero-search-meta {
    width: min(100%, 780px);
    justify-content: center;
    margin-top: 20px;
    text-align: center;
  }
}

/* Mobile composition pass: denser hero, clean card stacking and safe anchors. */
@media (max-width: 820px) {
  #platform,
  #pricing,
  #faq,
  #access {
    scroll-margin-top: calc(var(--header-height) + 18px);
  }

  .hero-search,
  .hero-search .hero-inner {
    min-height: 690px;
  }

  .hero-search .hero-inner {
    padding-top: 96px;
    padding-bottom: 88px;
  }

  .hero-search-copy {
    width: min(100%, 580px);
  }

  .hero-search h1 {
    max-width: 540px;
  }

  .hero-search-lead {
    max-width: 510px;
  }

  .hero-search-meta {
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    margin-top: 20px;
    text-align: center;
  }

  .hero-search-meta span {
    justify-content: center;
  }

  .hero-search-meta span + span::before {
    display: none;
  }

  .platform-section {
    position: relative;
    z-index: 3;
    margin-top: -54px;
    padding-top: 0;
  }

  .story-stack {
    position: relative;
    z-index: 1;
  }

  .story-chapter.scroll-stack-card {
    top: calc(var(--header-height) + 14px);
    overflow: hidden;
    border-radius: 12px;
  }

  .story-chapter.scroll-stack-card.is-stack-behind {
    opacity: 1;
  }

  .pricing-section,
  .faq-section {
    padding-top: 76px;
  }

  .pricing-heading,
  .faq-heading {
    margin-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .hero-search,
  .hero-search .hero-inner {
    min-height: clamp(620px, calc(100svh - 180px), 674px);
  }

  .hero-search .hero-inner {
    padding-top: 92px;
    padding-bottom: 82px;
  }

  .hero-search h1 {
    max-width: 390px;
    font-size: clamp(34px, 9.2vw, 36px);
    line-height: 1.02;
  }

  .hero-search-lead {
    max-width: 348px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.48;
  }

  .ai-search-composer {
    width: 100%;
    margin-top: 26px;
  }

  .hero-search-meta {
    max-width: 350px;
    margin-top: 18px;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-search-meta span:first-child {
    font-size: 11px;
    font-weight: 620;
  }

  .platform-section {
    margin-top: -48px;
  }

  .story-chapter.scroll-stack-card {
    height: min(548px, calc(100svh - var(--header-height) - 34px));
    min-height: 510px;
    max-height: 548px;
    margin-bottom: calc(100svh - var(--header-height) - 18px);
  }

  .story-chapter.scroll-stack-card .chapter-copy {
    padding: 27px 24px 25px;
  }

  .story-chapter.scroll-stack-card .chapter-copy h3 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.06;
  }

  .story-chapter.scroll-stack-card .chapter-copy > p:not(.chapter-label) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.48;
  }

  .chapter-free-monitoring {
    margin-top: 20px;
  }

  .story-chapter.scroll-stack-card .chapter-visual,
  .story-chapter.scroll-stack-card .monitoring-screenshot,
  .story-chapter.scroll-stack-card .concept-illustration {
    height: 230px;
    min-height: 230px;
    flex-basis: 230px;
  }

  .pricing-heading h2,
  .faq-heading h2 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.04;
  }

  .plan-card {
    border-radius: 14px;
    padding: 26px 22px 22px;
  }

  .faq-list details {
    padding-inline: 0;
  }

  .faq-list summary {
    min-height: 70px;
    gap: 16px;
    font-size: 15px;
    line-height: 1.35;
  }
}

/* Light AI search surface. */
.ai-search-composer {
  padding: 7px 7px 7px 21px;
  border-color: rgba(255, 255, 255, 0.82);
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 248, 0.96));
  -webkit-backdrop-filter: blur(18px) saturate(110%);
  backdrop-filter: blur(18px) saturate(110%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 0 1px rgba(8, 52, 42, 0.08),
    0 24px 64px rgba(0, 9, 15, 0.24),
    0 6px 18px rgba(0, 20, 16, 0.08);
}

.ai-search-composer:hover {
  border-color: rgba(255, 255, 255, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 248, 0.96));
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 0 0 1px rgba(8, 52, 42, 0.11),
    0 26px 68px rgba(0, 9, 15, 0.26),
    0 7px 20px rgba(0, 20, 16, 0.09);
}

.ai-search-composer:focus-within {
  border-color: rgba(255, 255, 255, 0.98);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 248, 0.96));
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 0 0 4px rgba(105, 226, 178, 0.2),
    0 28px 72px rgba(0, 9, 15, 0.27),
    0 8px 22px rgba(0, 20, 16, 0.1);
}

.ai-search-icon {
  stroke: #17956d;
}

.ai-search-composer input {
  color: #13201c;
  caret-color: #0b9d6c;
  font-weight: 470;
}

.ai-search-composer input::placeholder {
  color: #6e7b76;
}

.ai-search-submit {
  border-color: rgba(7, 93, 69, 0.28);
  border-radius: 14px;
  background: #087052;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 20px rgba(5, 90, 66, 0.2);
  color: #ffffff;
}

.ai-search-submit:hover:not([aria-disabled="true"]) {
  background: #075f47;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 24px rgba(5, 90, 66, 0.25);
}

.ai-search-submit[aria-disabled="true"] {
  border-color: rgba(15, 39, 31, 0.06);
  background: #e9eeeb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: #89938f;
}

@media (max-width: 560px) {
  .ai-search-composer {
    padding: 6px 6px 6px 16px;
    border-radius: 18px;
  }

  .ai-search-submit {
    border-radius: 12px;
  }
}

.hero-search-meta {
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .hero-search-meta {
    font-size: 11px;
  }

  .hero-search-meta span:first-child {
    font-size: 12px;
  }
}

/* Lab 4 pricing: restrained surfaces with one clear recommendation. */
.pricing-section {
  border-top-color: rgba(255, 255, 255, 0.05);
  background: #080b0d;
}

.pricing-heading {
  align-items: center;
  margin-bottom: 34px;
}

.pricing-heading h2 {
  font-size: clamp(46px, 4vw, 58px);
  font-weight: 540;
}

.billing-switch {
  width: 286px;
  min-width: 286px;
  border-color: rgba(225, 233, 229, 0.12);
  background: #0d1214;
  box-shadow: none;
}

.billing-switch-thumb {
  background: #f0f0f4;
  box-shadow: 0 1px 0 #fff inset;
}

.monitoring-free-band {
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 36px;
  margin-bottom: 24px;
  border-width: 1px 0;
  border-color: rgba(225, 233, 229, 0.1);
  border-radius: 0;
  padding: 18px 2px;
  background: transparent;
  box-shadow: none;
}

.monitoring-free-mark {
  display: none;
}

.monitoring-free-band > div:nth-child(2) {
  position: relative;
  gap: 3px;
  padding-left: 17px;
}

.monitoring-free-band > div:nth-child(2)::before {
  position: absolute;
  top: 7px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(130, 232, 189, 0.08);
  content: "";
}

.monitoring-free-band span {
  color: rgba(157, 228, 198, 0.68);
}

.monitoring-free-band strong {
  font-size: 16px;
}

.monitoring-free-band > p {
  max-width: 520px;
  color: rgba(210, 220, 215, 0.56);
}

.pricing-grid {
  gap: 12px;
}

.plan-card {
  min-height: 604px;
  border-color: rgba(225, 233, 229, 0.1);
  border-radius: 14px;
  padding: 34px 30px 28px;
  background: #0c1012;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035) inset;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.plan-card:hover {
  border-color: rgba(225, 233, 229, 0.19);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transform: none;
}

.plan-card-featured {
  border-color: rgba(255, 255, 255, 0.84);
  background: #f0f0f4;
  box-shadow:
    0 1px 0 #fff inset,
    0 22px 58px rgba(0, 0, 0, 0.2);
}

.plan-card-featured:hover {
  border-color: #fff;
  box-shadow:
    0 1px 0 #fff inset,
    0 26px 64px rgba(0, 0, 0, 0.23);
}

.plan-card-featured .plan-head h3,
.plan-card-featured .plan-price strong {
  color: #101714;
}

.plan-card-featured .plan-price span,
.plan-card-featured .plan-summary {
  color: #6a736f;
}

.plan-card-featured .plan-features {
  border-top-color: rgba(15, 25, 21, 0.12);
}

.plan-card-featured .plan-features li {
  color: #4e5854;
}

.plan-card-featured .plan-features li::before {
  color: #087052;
}

.plan-card-featured .plan-features strong {
  color: #15201c;
}

.plan-card-featured .plan-choice {
  border-color: rgba(8, 112, 82, 0.14);
  background: rgba(8, 112, 82, 0.075);
  color: #087052;
}

.plan-card-featured .token-help {
  border-color: rgba(15, 38, 30, 0.18);
  background: rgba(255, 255, 255, 0.56);
  color: #52605a;
}

.plan-card-featured .token-help:hover,
.plan-card-featured .token-help:focus-visible {
  border-color: rgba(8, 112, 82, 0.42);
  background: rgba(8, 112, 82, 0.08);
  color: #087052;
}

.plan-head h3 {
  font-size: 21px;
}

.plan-price {
  margin-top: 32px;
}

.plan-price strong {
  font-size: 39px;
}

.plan-summary {
  margin-top: 16px;
}

.plan-features {
  gap: 13px;
  margin-top: 25px;
  padding-top: 23px;
}

.plan-button {
  min-height: 50px;
  border-radius: 12px;
}

.plan-card-featured .plan-button-accent {
  border-color: #0d1713;
  background: #0d1713;
  color: #fff;
}

.plan-card-featured .plan-button-accent:hover {
  border-color: #17241f;
  background: #17241f;
}

@media (max-width: 820px) {
  .pricing-heading {
    align-items: stretch;
    margin-bottom: 28px;
  }

  .billing-switch {
    width: 100%;
    min-width: 0;
  }

  .monitoring-free-band {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 17px;
  }

  .monitoring-free-band > p {
    padding-left: 17px;
  }

  .plan-card {
    min-height: 0;
    padding: 30px 24px 24px;
  }
}

/* Lab 4 pricing v2: one comparison surface instead of three competing cards. */
.pricing-section {
  padding-top: clamp(92px, 9vw, 142px);
}

.pricing-heading {
  margin-bottom: 30px;
}

.monitoring-free-band {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 22px;
  padding: 15px 2px;
  border-top: 1px solid rgba(228, 235, 232, 0.1);
  border-bottom: 0;
}

.monitoring-free-band > div:nth-child(2) {
  min-width: 180px;
}

.monitoring-free-band > p {
  justify-self: end;
  align-self: center;
  max-width: none;
  font-size: 14px;
  line-height: 1.45;
  text-align: right;
}

.pricing-grid {
  gap: 1px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #dfe1e4;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 28px 80px rgba(0, 0, 0, 0.26);
}

.plan-card,
.plan-card:hover {
  min-height: 574px;
  padding: 34px 30px 28px;
  border: 0;
  border-radius: 18px;
  background: #fafafb;
  box-shadow: none;
  color: #111714;
  transform: none;
}

.plan-card-featured,
.plan-card-featured:hover {
  position: relative;
  z-index: 1;
  background: #f0f0f4;
  box-shadow:
    0 0 0 1px rgba(15, 30, 24, 0.07),
    0 12px 34px rgba(21, 35, 29, 0.09);
}

.plan-card .plan-head h3,
.plan-card .plan-price strong,
.plan-card-featured .plan-head h3,
.plan-card-featured .plan-price strong {
  color: #111714;
}

.plan-card .plan-price span,
.plan-card .plan-summary,
.plan-card-featured .plan-price span,
.plan-card-featured .plan-summary {
  color: #6d7471;
}

.plan-card .plan-features,
.plan-card-featured .plan-features {
  border-top-color: rgba(15, 25, 21, 0.1);
}

.plan-card .plan-features li,
.plan-card-featured .plan-features li {
  color: #4f5753;
}

.plan-card .plan-features li::before,
.plan-card-featured .plan-features li::before {
  color: #16815f;
}

.plan-card .plan-features strong,
.plan-card-featured .plan-features strong {
  color: #15201c;
}

.plan-head h3 {
  font-size: 20px;
  font-weight: 650;
}

.plan-price {
  margin-top: 28px;
}

.plan-price strong {
  font-size: clamp(34px, 3vw, 42px);
  letter-spacing: 0;
}

.plan-summary {
  min-height: 44px;
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.55;
}

.plan-features {
  gap: 12px;
  margin-top: 22px;
  padding-top: 21px;
}

.plan-features li {
  font-size: 14px;
  line-height: 1.45;
}

.plan-choice {
  top: 22px;
  right: 22px;
}

.plan-card .token-help,
.plan-card-featured .token-help {
  border-color: rgba(15, 38, 30, 0.16);
  background: rgba(15, 38, 30, 0.035);
  color: #64706b;
}

.plan-card .token-help:hover,
.plan-card .token-help:focus-visible,
.plan-card-featured .token-help:hover,
.plan-card-featured .token-help:focus-visible {
  border-color: rgba(8, 112, 82, 0.38);
  background: rgba(8, 112, 82, 0.08);
  color: #087052;
}

.plan-button,
.plan-card-featured .plan-button-accent {
  min-height: 48px;
  border: 1px solid rgba(13, 23, 19, 0.16);
  border-radius: 12px;
  background: transparent;
  color: #111714;
}

.plan-button:hover {
  border-color: rgba(13, 23, 19, 0.42);
  background: rgba(13, 23, 19, 0.04);
  color: #111714;
}

.plan-card-featured .plan-button-accent,
.plan-card-featured .plan-button-accent:hover {
  border-color: #0c1712;
  background: #0c1712;
  color: #fff;
}

@media (max-width: 820px) {
  .monitoring-free-band {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-inline: 0;
  }

  .monitoring-free-band > p {
    justify-self: start;
    padding-left: 17px;
    text-align: left;
  }

  .pricing-grid {
    gap: 6px;
    padding: 6px;
    overflow: visible;
    border-radius: 22px;
  }

  .plan-card,
  .plan-card:hover {
    min-height: 0;
    padding: 29px 24px 23px;
    border-radius: 16px;
  }

  .plan-summary {
    min-height: 0;
  }
}

/* Final mobile composition. Keep this last: the file contains legacy experiment layers. */
@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .hero-search,
  .hero-search .hero-inner {
    min-height: 660px;
  }

  .hero-search .hero-inner {
    padding-top: 88px;
    padding-bottom: 84px;
  }

  .hero-search h1 {
    max-width: 360px;
    font-size: clamp(38px, 10.7vw, 44px);
    line-height: 1.01;
    text-wrap: balance;
  }

  .hero-search-lead {
    max-width: 350px;
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.48;
    text-wrap: pretty;
  }

  .ai-search-composer,
  .ai-search-composer:hover,
  .ai-search-composer:focus-within {
    width: 100%;
    min-height: 66px;
    margin-top: 25px;
    gap: 11px;
    border-color: rgba(255, 255, 255, 0.66);
    border-radius: 19px;
    padding: 6px 6px 6px 17px;
    background: rgba(251, 253, 252, 0.97);
    box-shadow:
      0 1px 0 #fff inset,
      0 18px 46px rgba(2, 10, 16, 0.18);
  }

  .ai-search-composer:focus-within {
    box-shadow:
      0 1px 0 #fff inset,
      0 0 0 3px rgba(116, 226, 181, 0.11),
      0 20px 52px rgba(2, 10, 16, 0.2);
  }

  .ai-search-composer input {
    height: 54px;
    color: #15201c;
    caret-color: #0b9d6a;
    font-size: 16px;
  }

  .ai-search-composer input::placeholder {
    color: #78847f;
  }

  .ai-search-icon {
    stroke: #119c6d;
  }

  .ai-search-submit,
  .ai-search-submit[aria-disabled="true"] {
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    border-color: rgba(13, 36, 27, 0.08);
    border-radius: 14px;
    background: #edf2ef;
    box-shadow: 0 1px 0 #fff inset;
    color: #72807a;
  }

  .platform-section {
    margin-top: -18px;
    padding-top: 0;
  }

  .story-chapter.scroll-stack-card {
    height: 548px;
    min-height: 548px;
    max-height: 548px;
    margin-bottom: clamp(300px, 48svh, 350px);
    overflow: hidden;
    border: 1px solid rgba(16, 30, 24, 0.13);
    border-radius: 14px;
    background: #f0f0f4;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 18px 50px rgba(0, 0, 0, 0.18);
  }

  .story-chapter.scroll-stack-card .chapter-copy {
    min-height: 300px;
    flex: 0 0 300px;
    justify-content: center;
    padding: 32px 24px 30px;
  }

  .story-chapter.scroll-stack-card .chapter-copy h3 {
    margin: 0;
    font-size: 29px;
    font-weight: 610;
    line-height: 1.07;
    text-wrap: balance;
  }

  .story-chapter.scroll-stack-card .chapter-copy > p:not(.chapter-label) {
    margin-top: 16px;
    color: #55605b;
    font-size: 14.5px;
    line-height: 1.48;
    text-wrap: pretty;
  }

  .story-chapter.scroll-stack-card .chapter-visual,
  .story-chapter.scroll-stack-card .monitoring-screenshot,
  .story-chapter.scroll-stack-card .concept-illustration {
    height: 248px;
    min-height: 248px;
    flex: 0 0 248px;
    border-top: 1px solid rgba(14, 34, 26, 0.1);
  }

  .chapter-trial-rail {
    top: -76px;
    min-height: 96px;
    gap: 13px;
    border-radius: 18px 18px 0 0;
    padding: 16px 18px 24px;
  }

  .chapter-trial-offer {
    flex: 0 0 43%;
    gap: 9px;
  }

  .chapter-trial-offer strong,
  .chapter-trial-coverage strong {
    font-size: 16px;
  }

  .chapter-trial-coverage {
    padding-left: 14px;
  }

  .chapter-trial-coverage span {
    margin-top: 3px;
    font-size: 9.5px;
    line-height: 1.25;
  }

  .pricing-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .pricing-heading {
    gap: 22px;
    margin-bottom: 25px;
  }

  .pricing-heading h2 {
    font-size: 42px;
  }

  .pricing-grid {
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
  }

  .plan-card,
  .plan-card:hover {
    min-height: 0;
    padding: 27px 23px 22px;
    border-radius: 14px;
  }

  .plan-features {
    gap: 11px;
  }

  .plan-features li {
    min-height: 20px;
    padding-left: 24px;
    font-size: 13.5px;
    line-height: 1.42;
  }

  .plan-features li::before,
  .plan-features li:nth-child(4)::before {
    top: 2px;
    left: 0;
  }

  .plan-features li:nth-child(5)::before {
    top: 16px;
    left: 0;
  }

  .plan-button,
  .plan-button:hover,
  .plan-button:active,
  .plan-card-featured .plan-button-accent {
    min-height: 50px;
    margin-top: 22px;
    border-radius: 13px;
  }

  .access-section {
    min-height: 530px;
    padding-block: 82px;
  }

  .access-copy-centered h2 {
    max-width: 350px;
    font-size: clamp(36px, 10.3vw, 43px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .access-copy-centered .fold-text-line,
  .access-copy-centered .fold-text-source > span {
    white-space: normal;
  }

  .faq-section {
    padding-top: 82px;
  }
}

/* Mobile release 46: tighter story rhythm and calmer lower-page composition. */
@media (max-width: 560px) {
  .lab-header {
    background: rgba(4, 9, 11, 0.94);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
  }

  .platform-section {
    padding-bottom: 34px;
  }

  .story-chapter.scroll-stack-card {
    height: 520px;
    min-height: 520px;
    max-height: 520px;
    margin-bottom: clamp(112px, 15svh, 128px);
    border-radius: 16px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.94) inset,
      0 16px 38px rgba(0, 0, 0, 0.16);
    clip-path: inset(0 0 0 0 round 16px);
    transition:
      clip-path 220ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 180ms ease;
    will-change: auto;
  }

  .story-chapter.scroll-stack-card.is-stack-behind {
    clip-path: inset(0 0 calc(100% - 14px) 0 round 16px 16px 0 0);
    pointer-events: none;
  }

  .story-chapter.scroll-stack-card:last-of-type {
    margin-bottom: 72px;
  }

  .story-chapter.scroll-stack-card .chapter-copy {
    min-height: 272px;
    flex-basis: 272px;
    padding: 28px 24px 26px;
  }

  .story-chapter.scroll-stack-card .chapter-copy h3 {
    max-width: 310px;
    font-size: 27px;
    line-height: 1.08;
  }

  .story-chapter.scroll-stack-card .chapter-copy > p:not(.chapter-label) {
    max-width: 310px;
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.46;
  }

  .story-chapter.scroll-stack-card .chapter-visual,
  .story-chapter.scroll-stack-card .monitoring-screenshot,
  .story-chapter.scroll-stack-card .concept-illustration {
    height: 248px;
    min-height: 248px;
    flex-basis: 248px;
  }

  .story-stack .scroll-stack-end {
    height: 72px;
  }

  .chapter-trial-rail {
    top: -78px;
    min-height: 96px;
    padding: 15px 18px 24px;
  }

  .chapter-trial-offer strong,
  .chapter-trial-coverage strong {
    font-size: 15px;
  }

  .chapter-trial-coverage span {
    font-size: 10px;
    line-height: 1.3;
  }

  .pricing-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .pricing-heading {
    margin-bottom: 22px;
  }

  .monitoring-free-band {
    gap: 5px;
    padding-block: 15px 19px;
  }

  .monitoring-free-band > p {
    max-width: 315px;
    font-size: 13px;
    line-height: 1.45;
  }

  .pricing-grid {
    gap: 7px;
    padding: 7px;
  }

  .plan-card,
  .plan-card:hover {
    padding: 25px 22px 21px;
  }

  .plan-summary {
    margin-top: 10px;
    font-size: 13px;
  }

  .plan-features {
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .plan-features li {
    padding-left: 22px;
    font-size: 13px;
  }

  .extras-section {
    margin-top: 46px;
  }

  .extras-heading h3 {
    max-width: 330px;
    font-size: 25px;
    line-height: 1.12;
  }

  .extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(15, 25, 21, 0.09);
    border-radius: 17px;
    background: rgba(15, 25, 21, 0.09);
  }

  .extra-item,
  .extra-item:first-child {
    min-height: 132px;
    border: 0;
    border-radius: 0;
    padding: 20px 17px 17px;
  }

  .extra-item > span {
    min-height: 36px;
    font-size: 12px;
    line-height: 1.35;
  }

  .extra-item strong {
    margin-top: 12px;
    font-size: 23px;
  }

  .access-section {
    min-height: 500px;
    padding-block: 72px;
  }

  .access-copy-centered h2 {
    font-size: clamp(34px, 9.6vw, 39px);
    line-height: 1;
  }

  .access-copy-centered > p {
    max-width: 300px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.45;
  }

  .faq-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq-heading {
    margin-bottom: 46px;
  }

  .faq-list summary {
    gap: 16px;
    padding-block: 20px;
    font-size: 15px;
    line-height: 1.35;
  }

  .faq-list details > div p {
    font-size: 14px;
    line-height: 1.55;
  }

  .lab-footer {
    padding-top: 52px;
  }

  .footer-main {
    row-gap: 30px;
  }

  .footer-bottom {
    gap: 13px;
    padding-block: 22px 24px;
  }
}

/* Lab 4 pricing v3: clearer quota hierarchy and a continuous pricing system. */
.plan-features li:nth-child(-n + 3) strong {
  font-size: 15px;
  font-weight: 700;
}

.plan-features li:nth-child(4) {
  margin-top: 4px;
  border-top: 1px solid rgba(15, 25, 21, 0.08);
  padding-top: 15px;
}

.plan-features li {
  min-height: 18px;
  padding-left: 25px;
}

.plan-features li::before {
  top: 2px;
  left: 1px;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  font-size: 11px;
  line-height: 1;
}

.plan-features li:nth-child(4)::before {
  top: 17px;
}

.plan-card {
  min-height: 556px;
}

.plan-button {
  font-size: 13px;
  font-weight: 650;
}

.corporate-plan {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: #f0f0f4;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 46px rgba(0, 0, 0, 0.15);
}

.corporate-summary {
  min-height: 102px;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  padding: 24px 30px;
}

.corporate-kicker {
  color: #087052;
}

.corporate-summary-copy strong {
  color: #121916;
  font-size: 22px;
}

.corporate-summary-copy small {
  color: #69716e;
}

.corporate-summary-action {
  color: #48524e;
  font-weight: 650;
}

.corporate-summary:hover .corporate-summary-action {
  color: #087052;
}

.corporate-details {
  border-top-color: rgba(15, 25, 21, 0.1);
}

.corporate-details p,
.corporate-details li {
  color: #505954;
}

.corporate-details li::before {
  color: #087052;
}

.corporate-details .plan-button {
  border-color: #0c1712;
  background: #0c1712;
  color: #fff;
}

.corporate-details .plan-button:hover {
  border-color: #17241f;
  background: #17241f;
  color: #fff;
}

.extras-section {
  margin-top: 64px;
}

.extras-heading {
  display: grid;
  justify-content: start;
  gap: 9px;
  margin-bottom: 22px;
}

.extras-heading .eyebrow {
  color: rgba(142, 226, 191, 0.72);
}

.extras-heading h3 {
  max-width: none;
  font-size: 26px;
  font-weight: 560;
}

.extras-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: #dfe1e4;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.extra-item,
.extra-item:first-child {
  min-height: 132px;
  border: 0;
  border-radius: 0;
  padding: 22px 24px;
  background: #f7f7f9;
  box-shadow: none;
}

.extra-item > span {
  min-height: 0;
  color: #616a66;
  font-size: 12px;
}

.extra-item strong {
  margin-top: 17px;
  color: #121916;
  font-size: 26px;
}

.extra-item small {
  color: #7a827e;
  font-size: 10px;
}

.extra-item .token-help {
  border-color: rgba(15, 38, 30, 0.16);
  background: rgba(15, 38, 30, 0.035);
  color: #64706b;
}

@media (max-width: 820px) {
  .plan-card {
    min-height: 0;
  }

  .corporate-summary {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 22px;
  }

  .corporate-summary .corporate-kicker {
    grid-column: 1 / -1;
  }

  .extras-section {
    margin-top: 54px;
  }

  .extras-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .extra-item,
  .extra-item:first-child {
    min-height: 112px;
  }
}

/* Trial rail: visually rises from behind the first capability card. */
.story-chapter.scroll-stack-card.monitoring-chapter {
  overflow: visible;
}

.platform-section {
  overflow: visible;
}

.monitoring-chapter > .chapter-copy,
.monitoring-chapter > .chapter-visual {
  position: relative;
  z-index: 2;
}

.monitoring-chapter > .chapter-copy {
  border-radius: 16px 0 0 16px;
}

.monitoring-chapter > .chapter-visual {
  border-radius: 0 16px 16px 0;
}

.chapter-trial-rail {
  position: absolute;
  z-index: 1;
  top: -80px;
  right: 0;
  left: 0;
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  padding: 18px 26px 27px 30px;
  background:
    radial-gradient(circle at 8% 20%, rgba(124, 227, 184, 0.13), transparent 34%),
    linear-gradient(112deg, #131918 0%, #090d0f 55%, #050708 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.055) inset,
    0 18px 44px rgba(0, 0, 0, 0.32);
  color: #f3f7f5;
  opacity: 0;
  transform: translate3d(0, 92px, 0);
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
  will-change: transform;
}

.chapter-trial-rail.is-trial-banner-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.chapter-trial-rail::after {
  position: absolute;
  top: -70%;
  right: 12%;
  width: 240px;
  height: 190px;
  border: 1px solid rgba(139, 231, 193, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.chapter-trial-offer,
.chapter-trial-coverage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  transform: translateY(-6px);
}

.chapter-trial-offer {
  padding-left: 0;
}

.chapter-trial-offer span,
.chapter-trial-coverage span {
  color: rgba(231, 239, 235, 0.56);
  font-size: 12px;
  line-height: 1.35;
}

.chapter-trial-offer strong,
.chapter-trial-coverage strong {
  color: #f8fbf9;
  font-size: 20px;
  font-weight: 630;
  line-height: 1.15;
}

.chapter-trial-coverage {
  min-width: 390px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  padding-left: 30px;
}

@media (max-width: 820px) {
  .monitoring-chapter > .chapter-copy {
    border-radius: 12px 12px 0 0;
  }

  .monitoring-chapter > .chapter-visual {
    border-radius: 0 0 12px 12px;
  }

  .chapter-trial-rail {
    top: -76px;
    right: 0;
    left: 0;
    min-height: 98px;
    gap: 16px;
    border-radius: 20px 20px 0 0;
    padding: 15px 17px 22px;
  }

  .chapter-trial-offer {
    flex: 0 0 40%;
    padding-left: 0;
  }

  .chapter-trial-coverage {
    min-width: 0;
    border-left-color: rgba(255, 255, 255, 0.12);
    padding-left: 16px;
  }

  .chapter-trial-offer strong,
  .chapter-trial-coverage strong {
    font-size: 15px;
  }

  .chapter-trial-offer span,
  .chapter-trial-coverage span {
    font-size: 9px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .chapter-trial-rail {
    transition: none;
  }
}

/* Lab 4 pricing v4: stable comparison grid and a quieter free-start CTA. */
.trial-gift-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.chapter-trial-offer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #82e8bd;
}

.chapter-trial-offer strong {
  color: #f8fbf9;
}

.monitoring-free-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(130, 232, 189, 0.18);
  padding: 17px 2px;
}

.pricing-trial-title {
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 11px;
  color: #82e8bd;
}

.pricing-trial-title strong {
  color: #f4f8f6;
  font-size: 17px;
  font-weight: 630;
  line-height: 1;
}

.monitoring-free-band > p {
  justify-self: end;
  padding: 0;
  text-align: right;
}

.pricing-grid {
  position: relative;
  isolation: isolate;
}

.plan-card,
.plan-card:hover {
  display: grid;
  min-height: 600px;
  grid-template-rows: auto auto 30px minmax(0, 1fr) auto;
  align-items: stretch;
  transform: none;
}

.plan-card + .plan-card::before {
  position: absolute;
  z-index: 3;
  top: 24px;
  bottom: 24px;
  left: -6px;
  width: 11px;
  background: radial-gradient(circle, rgba(8, 11, 13, 0.72) 0 1.25px, transparent 1.7px) center top / 11px 14px repeat-y;
  content: "";
  pointer-events: none;
}

.plan-summary {
  display: flex;
  align-items: center;
  min-height: 0;
  overflow: hidden;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plan-features li:nth-child(-n + 4) strong {
  font-size: 15px;
  font-weight: 700;
}

.plan-features li:nth-child(4) {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.plan-features li:nth-child(4)::before {
  top: 2px;
}

.plan-features li:nth-child(5) {
  margin-top: 4px;
  border-top: 1px solid rgba(15, 25, 21, 0.08);
  padding-top: 15px;
}

.plan-features li:nth-child(5)::before {
  top: 17px;
}

.plan-button,
.plan-button:hover,
.plan-button:active,
.plan-button:focus-visible,
.plan-card-featured .plan-button-accent,
.plan-card-featured .plan-button-accent:hover,
.plan-card-featured .plan-button-accent:active {
  align-self: end;
  margin-top: 24px;
  inset: auto;
  position: relative;
  transform: none !important;
  translate: none !important;
}

.plan-choice {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(8, 112, 82, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(8, 112, 82, 0.08));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 6px 16px rgba(8, 112, 82, 0.08);
  color: #087052;
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.035em;
}

.plan-choice svg {
  width: 11px;
  height: 11px;
  fill: rgba(8, 112, 82, 0.11);
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.corporate-summary {
  grid-template-columns: minmax(0, 1fr) auto;
}

.extras-heading {
  margin-bottom: 24px;
}

.extras-heading h3 {
  font-size: clamp(24px, 2.2vw, 30px);
}

.access-layout-simple {
  display: block;
  max-width: 1120px;
}

.access-copy-centered {
  display: flex;
  max-width: 980px;
  align-items: center;
  flex-direction: column;
  margin-inline: auto;
  text-align: center;
}

.access-copy-centered h2 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(50px, 5.3vw, 76px);
  line-height: 0.99;
}

.access-copy-centered .fold-text-line {
  text-align: center;
  white-space: nowrap;
}

.access-copy-centered .fold-text-source > span {
  display: block;
  white-space: nowrap;
}

.access-copy-centered > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 25px;
  color: rgba(232, 239, 244, 0.7);
  font-size: 18px;
}

.access-copy-centered > .button {
  min-width: 270px;
  justify-content: center;
  margin-top: 34px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 20px 46px rgba(1, 9, 16, 0.24);
}

@media (max-width: 820px) {
  .monitoring-free-band {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .monitoring-free-band > p {
    justify-self: start;
    text-align: left;
  }

  .plan-card,
  .plan-card:hover {
    min-height: 0;
    grid-template-rows: auto auto auto auto auto;
  }

  .plan-card + .plan-card::before {
    display: none;
  }

  .plan-summary {
    white-space: normal;
  }

  .corporate-summary {
    grid-template-columns: 1fr auto;
  }

  .access-copy-centered h2 {
    font-size: clamp(31px, 8.6vw, 40px);
  }

  .access-copy-centered > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 15px;
  }

  .access-copy-centered > .button {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }
}

/* Mobile release overrides. */
@media (max-width: 560px) {
  .hero-search,
  .hero-search .hero-inner {
    min-height: 660px;
  }

  .hero-search .hero-inner {
    padding-top: 88px;
    padding-bottom: 84px;
  }

  .hero-search h1 {
    max-width: 360px;
    font-size: clamp(37px, 10.15vw, 41px);
    line-height: 1.01;
  }

  .hero-search h1 .fold-text-line,
  .hero-search h1 .hero-title-line {
    white-space: nowrap;
  }

  .hero-search-lead {
    max-width: 350px;
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.48;
  }

  .ai-search-composer,
  .ai-search-composer:hover,
  .ai-search-composer:focus-within {
    width: 100%;
    min-height: 66px;
    margin-top: 25px;
    gap: 11px;
    border-color: rgba(255, 255, 255, 0.66);
    border-radius: 19px;
    padding: 6px 6px 6px 17px;
    background: rgba(251, 253, 252, 0.97);
    box-shadow: 0 1px 0 #fff inset, 0 18px 46px rgba(2, 10, 16, 0.18);
  }

  .ai-search-composer input {
    height: 54px;
    color: #15201c;
    caret-color: #0b9d6a;
    font-size: 16px;
  }

  .ai-search-composer input::placeholder {
    color: #78847f;
  }

  .ai-search-icon {
    stroke: #119c6d;
  }

  .ai-search-submit,
  .ai-search-submit[aria-disabled="true"] {
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    border-color: rgba(13, 36, 27, 0.08);
    border-radius: 14px;
    background: #edf2ef;
    color: #72807a;
  }

  .platform-section {
    margin-top: -18px;
    padding-top: 0;
  }

  .story-chapter.scroll-stack-card {
    height: 548px;
    min-height: 548px;
    max-height: 548px;
    margin-bottom: clamp(300px, 48svh, 350px);
    overflow: hidden;
    border: 1px solid rgba(16, 30, 24, 0.13);
    border-radius: 14px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset, 0 18px 50px rgba(0, 0, 0, 0.18);
  }

  .story-chapter.scroll-stack-card .chapter-copy {
    min-height: 300px;
    flex: 0 0 300px;
    justify-content: center;
    padding: 32px 24px 30px;
  }

  .story-chapter.scroll-stack-card .chapter-copy h3 {
    margin: 0;
    font-size: 29px;
    line-height: 1.07;
  }

  .story-chapter.scroll-stack-card .chapter-copy > p:not(.chapter-label) {
    margin-top: 16px;
    color: #55605b;
    font-size: 14.5px;
    line-height: 1.48;
  }

  .story-chapter.scroll-stack-card .chapter-visual,
  .story-chapter.scroll-stack-card .monitoring-screenshot,
  .story-chapter.scroll-stack-card .concept-illustration {
    height: 248px;
    min-height: 248px;
    flex: 0 0 248px;
    border-top: 1px solid rgba(14, 34, 26, 0.1);
  }

  .chapter-trial-rail {
    top: -76px;
    min-height: 96px;
    gap: 13px;
    border-radius: 18px 18px 0 0;
    padding: 16px 18px 24px;
  }

  .chapter-trial-offer {
    flex-basis: 43%;
    gap: 9px;
  }

  .chapter-trial-offer strong,
  .chapter-trial-coverage strong {
    font-size: 16px;
  }

  .chapter-trial-coverage {
    padding-left: 14px;
  }

  .chapter-trial-coverage span {
    margin-top: 3px;
    font-size: 9.5px;
    line-height: 1.25;
  }

  .pricing-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .pricing-grid {
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
  }

  .plan-card,
  .plan-card:hover {
    min-height: 0;
    padding: 27px 23px 22px;
    border-radius: 14px;
  }

  .plan-features li {
    min-height: 20px;
    padding-left: 24px;
    font-size: 13.5px;
    line-height: 1.42;
  }

  .plan-features li::before,
  .plan-features li:nth-child(4)::before {
    top: 2px;
    left: 0;
  }

  .plan-features li:nth-child(5)::before {
    top: 16px;
    left: 0;
  }

  .access-section {
    min-height: 530px;
    padding-block: 82px;
  }

  .access-copy-centered h2 {
    max-width: 350px;
    font-size: clamp(32px, 8.8vw, 36px);
    line-height: 1.02;
  }

  .access-copy-centered .fold-text-line,
  .access-copy-centered .fold-text-source > span {
    white-space: nowrap;
  }
}

/* Mobile release 46 final overrides. */
@media (max-width: 560px) {
  .lab-header {
    background: rgba(4, 9, 11, 0.94);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
  }

  .platform-section {
    padding-bottom: 34px;
  }

  .story-chapter.scroll-stack-card {
    height: 520px;
    min-height: 520px;
    max-height: 520px;
    margin-bottom: clamp(164px, 23svh, 194px);
    border-radius: 16px;
    background: #f0f0f4;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.94) inset,
      0 16px 38px rgba(0, 0, 0, 0.16);
    transition: border-color 180ms ease;
    will-change: auto;
  }

  .story-chapter.scroll-stack-card:last-of-type {
    margin-bottom: 72px;
  }

  .story-chapter.scroll-stack-card .chapter-copy {
    min-height: 272px;
    flex: 0 0 272px;
    padding: 28px 24px 26px;
  }

  .story-chapter.scroll-stack-card .chapter-copy h3 {
    max-width: 310px;
    font-size: 27px;
    line-height: 1.08;
  }

  .story-chapter.scroll-stack-card .chapter-copy > p:not(.chapter-label) {
    max-width: 310px;
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.46;
  }

  .story-chapter.scroll-stack-card .chapter-visual,
  .story-chapter.scroll-stack-card .monitoring-screenshot,
  .story-chapter.scroll-stack-card .concept-illustration {
    height: 248px;
    min-height: 248px;
    flex: 0 0 248px;
  }

  .story-stack .scroll-stack-end {
    height: 72px;
  }

  .chapter-trial-rail {
    top: -78px;
    min-height: 96px;
    padding: 15px 18px 24px;
  }

  .chapter-trial-offer strong,
  .chapter-trial-coverage strong {
    font-size: 15px;
  }

  .chapter-trial-coverage span {
    font-size: 10px;
    line-height: 1.3;
  }

  .pricing-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .pricing-heading {
    margin-bottom: 22px;
  }

  .monitoring-free-band {
    gap: 5px;
    padding-block: 15px 19px;
  }

  .monitoring-free-band > p {
    max-width: 315px;
    font-size: 13px;
    line-height: 1.45;
  }

  .pricing-grid {
    gap: 7px;
    padding: 7px;
  }

  .plan-card,
  .plan-card:hover {
    padding: 25px 22px 21px;
  }

  .plan-summary {
    margin-top: 10px;
    font-size: 13px;
  }

  .plan-features {
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .plan-features li {
    padding-left: 22px;
    font-size: 13px;
  }

  .extras-section {
    margin-top: 46px;
  }

  .extras-heading h3 {
    max-width: 330px;
    font-size: 25px;
    line-height: 1.12;
  }

  .extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(15, 25, 21, 0.09);
    border-radius: 17px;
    background: rgba(15, 25, 21, 0.09);
  }

  .extra-item,
  .extra-item:first-child {
    min-height: 132px;
    border: 0;
    border-radius: 0;
    padding: 20px 17px 17px;
  }

  .extra-item > span {
    min-height: 36px;
    font-size: 12px;
    line-height: 1.35;
  }

  .extra-item strong {
    margin-top: 12px;
    font-size: 23px;
  }

  .access-section {
    min-height: 500px;
    padding-block: 72px;
  }

  .access-copy-centered > p {
    max-width: 300px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.45;
  }

  .faq-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq-heading {
    margin-bottom: 46px;
  }

  .faq-list summary {
    gap: 16px;
    padding-block: 20px;
    font-size: 15px;
    line-height: 1.35;
  }

  .faq-list details > div p {
    font-size: 14px;
    line-height: 1.55;
  }

  .lab-footer {
    padding-top: 52px;
  }

  .footer-main {
    row-gap: 30px;
  }

  .footer-bottom {
    gap: 13px;
    padding-block: 22px 24px;
  }
}

/* Mobile release 48 final cascade. */
@media (max-width: 560px) {
  .story-chapter.scroll-stack-card {
    margin-bottom: 30px;
    clip-path: none;
    transition: border-color 180ms ease;
  }

  .story-chapter.scroll-stack-card.is-stack-behind {
    clip-path: inset(0 0 var(--stack-clip-bottom, 0px) 0 round 16px 16px 0 0);
    pointer-events: none;
    will-change: clip-path;
  }

  .story-chapter.scroll-stack-card .chapter-copy > * {
    transition: opacity 120ms ease;
  }

  .story-chapter.scroll-stack-card.is-stack-rim .chapter-copy > * {
    opacity: 0;
  }

  .story-chapter.scroll-stack-card.is-stack-behind.is-stack-rim {
    clip-path: inset(0 0 calc(100% - 14px) 0 round 16px 16px 0 0);
  }
}

@media (max-width: 340px) {
  .hero-search h1 {
    max-width: 300px;
    font-size: 32px;
  }

  .hero-search-lead {
    max-width: 286px;
    font-size: 14px;
  }

  .ai-search-composer,
  .ai-search-composer:hover,
  .ai-search-composer:focus-within {
    padding-left: 14px;
  }

  .ai-search-composer input {
    font-size: 15px;
  }

  .chapter-trial-offer,
  .chapter-trial-coverage {
    transform: translateY(-11px);
  }

  .chapter-trial-coverage span {
    font-size: 8.5px;
    line-height: 1.15;
  }
}

/* Mobile hero refinement: tighter composition and a search-first interaction. */
@media (max-width: 560px) {
  .hero-search,
  .hero-search .hero-inner {
    min-height: 618px;
  }

  .hero-search .hero-inner {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 118px;
    padding-bottom: 82px;
  }

  .hero-search-copy {
    width: 100%;
    max-width: 410px;
    margin-inline: auto;
  }

  .hero-search h1 {
    width: 100%;
    max-width: 370px;
    font-size: clamp(35px, 9.55vw, 38px);
    font-weight: 560;
    line-height: 1.01;
  }

  .hero-search h1 .fold-text-line,
  .hero-search h1 .hero-title-line {
    width: 100%;
    white-space: nowrap;
  }

  .hero-search-lead {
    max-width: 345px;
    margin-top: 19px;
    color: rgba(241, 248, 245, 0.72);
    font-size: 15px;
    line-height: 1.5;
  }

  .ai-search-composer,
  .ai-search-composer:hover,
  .ai-search-composer:focus-within {
    min-height: 72px;
    margin-top: 28px;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 22px;
    padding: 7px 7px 7px 18px;
    background: #fbfdfc;
    box-shadow:
      0 1px 0 #fff inset,
      0 0 0 1px rgba(10, 27, 20, 0.04),
      0 22px 54px rgba(2, 10, 16, 0.2);
    transform: none;
  }

  .ai-search-composer:focus-within {
    border-color: rgba(123, 222, 180, 0.9);
    box-shadow:
      0 1px 0 #fff inset,
      0 0 0 4px rgba(119, 225, 180, 0.13),
      0 24px 58px rgba(2, 10, 16, 0.22);
  }

  .ai-search-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
    stroke: #07865d;
    stroke-width: 1.7;
  }

  .ai-search-composer input {
    height: 56px;
    padding: 0;
    color: #111a17;
    font-size: 16px;
    font-weight: 480;
  }

  .ai-search-composer input::placeholder {
    color: #68736e;
  }

  .ai-search-submit,
  .ai-search-submit[aria-disabled="true"] {
    width: 56px;
    min-width: 56px;
    min-height: 56px;
    border: 0;
    border-radius: 16px;
    background: #eef2f0;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 0 0 1px rgba(10, 35, 25, 0.035);
    color: #56645e;
    transform: none;
  }

  .ai-search-submit:not([aria-disabled="true"]) {
    background: #0a8f64;
    color: #fff;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.22) inset,
      0 8px 20px rgba(7, 126, 88, 0.24);
  }

  .ai-search-submit span {
    display: none;
  }

  .ai-search-submit svg {
    width: 21px;
    height: 21px;
  }

  .platform-section {
    margin-top: -32px;
  }
}

@media (max-width: 360px) {
  .hero-search,
  .hero-search .hero-inner {
    min-height: 596px;
  }

  .hero-search .hero-inner {
    padding-top: 110px;
  }

  .hero-search h1 {
    max-width: 320px;
    font-size: 32px;
  }

  .hero-search-lead {
    max-width: 310px;
    font-size: 14px;
  }

  .ai-search-composer,
  .ai-search-composer:hover,
  .ai-search-composer:focus-within {
    min-height: 68px;
    border-radius: 20px;
    padding-left: 16px;
  }

  .ai-search-submit,
  .ai-search-submit[aria-disabled="true"] {
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 15px;
  }
}
