:root {
  color-scheme: light dark;
  --ops-midnight: #050a12;
  --ops-navy: #07111f;
  --ops-surface: #102033;
  --ops-border: #23384d;
  --ops-cloud: #eaf6ff;
  --ops-white: #f7fbff;
  --ops-muted: #8fa4b8;
  --ops-cyan: #00d4ff;
  --ops-teal: #00e5b8;
  --ops-azure: #1268e8;
  --ops-constraint: #ff4da6;
  --ops-warning: #ffb020;
  --ops-success: #2dd67b;
  --ink: var(--ops-navy);
  --ink-soft: #39506a;
  --muted: #65758b;
  --paper: var(--ops-white);
  --paper-strong: #ffffff;
  --line: #dbe6f2;
  --navy: var(--ops-midnight);
  --navy-2: #081626;
  --navy-3: var(--ops-surface);
  --cyan: var(--ops-cyan);
  --teal: var(--ops-teal);
  --azure: var(--ops-azure);
  --magenta: var(--ops-constraint);
  --amber: var(--ops-warning);
  --cold: var(--ops-cloud);
  --shadow: 0 24px 80px rgba(7, 17, 31, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--cold);
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 212, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #050a12 0%, #07111f 42%, #050a12 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 10, 18, 0.86);
  border-bottom: 1px solid rgba(234, 246, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header__inner,
.section,
.footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 192px;
}

.brand img {
  width: 188px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(234, 246, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(234, 246, 255, 0.05);
  color: var(--cold);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 13px;
  color: rgba(234, 246, 255, 0.8);
}

.site-nav a,
.nav-link {
  padding: 10px 11px;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.nav-item:focus-within .nav-link,
.nav-item:hover .nav-link {
  color: #ffffff;
  background: rgba(234, 246, 255, 0.08);
}

.nav-item {
  position: relative;
}

.nav-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 100%;
  left: -12px;
  width: calc(100% + 24px);
  height: 14px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.75;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 2;
  min-width: 286px;
  padding: 12px;
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 10, 18, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu--wide {
  min-width: 520px;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.nav-menu a {
  display: block;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.08);
}

.nav-menu strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.2;
}

.nav-menu span {
  display: block;
  margin-top: 4px;
  color: rgba(234, 246, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 720;
  letter-spacing: 0;
}

.button {
  padding: 12px 18px;
  border: 1px solid transparent;
}

.button--primary {
  color: #02121c;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  box-shadow: 0 12px 28px rgba(0, 212, 255, 0.22);
}

.button--secondary {
  color: var(--cold);
  border-color: rgba(234, 246, 255, 0.22);
  background: rgba(234, 246, 255, 0.06);
}

.button--light {
  color: var(--ink);
  border-color: rgba(7, 17, 31, 0.14);
  background: var(--paper-strong);
}

.text-link {
  color: var(--cyan);
  gap: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 212, 255, 0.12), transparent 28%),
    linear-gradient(145deg, var(--navy), var(--navy-2) 54%, #0b1320);
  color: var(--cold);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 18, 0.96));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.76fr) minmax(640px, 1.34fr);
  gap: 20px;
  align-items: center;
  padding: 38px 0 44px;
}

.hero--compact .hero__inner {
  min-height: 520px;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
  padding-bottom: 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(0, 229, 184, 0.75);
}

.hero h1,
.page-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero--compact h1 {
  font-size: clamp(42px, 6vw, 74px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.hero__copy p {
  margin: 24px 0 0;
  color: rgba(234, 246, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.hero__actions,
.section__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.chip,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.chip {
  color: rgba(234, 246, 255, 0.86);
  border: 1px solid rgba(234, 246, 255, 0.16);
  background: rgba(234, 246, 255, 0.05);
}

.tag {
  color: #064434;
  background: rgba(0, 229, 184, 0.16);
}

.hero__visual {
  position: relative;
  min-height: 650px;
  margin-left: -72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 48%, rgba(0, 212, 255, 0.1), transparent 48%),
    linear-gradient(90deg, transparent 0%, rgba(5, 10, 18, 0.2) 18%, rgba(5, 10, 18, 0.4) 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 100%);
}

@media (min-width: 1041px) {
  .hero__visual {
    width: calc(100% + 72px + max(20px, calc(50vw - 700px)));
    max-width: none;
  }
}

.visual-panel {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(5, 10, 18, 0.56);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), var(--shadow);
}

.hero__visual canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.visual-panel canvas {
  display: block;
  width: 88%;
  height: 100%;
  min-height: inherit;
}

.adoption-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 52%, rgba(0, 212, 255, 0.075), transparent 31%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.055), transparent 35%),
    var(--navy);
}

.adoption-section .split {
  grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1.32fr);
  gap: clamp(30px, 4vw, 66px);
}

.progressive-scope {
  --layer-shift-x: 0px;
  --layer-shift-y: 0px;
  position: relative;
  min-height: 510px;
  margin: -8px -7% -30px -4%;
  isolation: isolate;
}

.progressive-scope::before {
  content: "";
  position: absolute;
  inset: 10% 4% 12%;
  z-index: -1;
  border-radius: 48%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.12), rgba(0, 229, 184, 0.04) 42%, transparent 72%);
  filter: blur(26px);
}

.progressive-scope::after {
  content: "";
  position: absolute;
  top: 5%;
  right: 0;
  bottom: 8%;
  z-index: 1;
  width: 12%;
  background: linear-gradient(90deg, transparent, var(--navy));
  pointer-events: none;
}

.progressive-scope img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: auto;
  margin-left: 3%;
  transform: translate3d(var(--layer-shift-x), var(--layer-shift-y), 0);
  transform-origin: 50% 50%;
  filter: saturate(0.92) contrast(1.04) drop-shadow(0 24px 48px rgba(0, 4, 10, 0.4));
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.progressive-scope__labels {
  position: absolute;
  right: 5%;
  bottom: 3%;
  left: 2%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  pointer-events: none;
}

.progressive-scope__labels span {
  display: grid;
  min-height: 70px;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(234, 246, 255, 0.11);
  border-radius: 7px;
  color: rgba(234, 246, 255, 0.8);
  background: rgba(3, 10, 18, 0.78);
  box-shadow: 0 8px 28px rgba(0, 4, 10, 0.24);
  backdrop-filter: blur(10px);
}

.progressive-scope__labels b {
  grid-row: 1 / 3;
  color: var(--cyan);
  font: 760 9px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.progressive-scope__labels strong,
.progressive-scope__labels small {
  display: block;
}

.progressive-scope__labels strong {
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.progressive-scope__labels small {
  margin-top: 3px;
  color: rgba(234, 246, 255, 0.48);
  font-size: 9px;
  line-height: 1.25;
}

.adoption-section .section__actions {
  align-items: flex-start;
}

.adoption-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: rgba(234, 246, 255, 0.68);
  font-size: 13px;
  font-weight: 720;
  transition: color 180ms ease, gap 180ms ease;
}

.adoption-doc-link:hover {
  gap: 12px;
  color: var(--cyan);
}

.section {
  padding: 92px 0;
  color: var(--cold);
}

.section--tight {
  padding: 66px 0;
}

.hero + .section--tight {
  padding-top: 0;
}

.section--dark {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100% - var(--max)) / 2));
  color: var(--cold);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), transparent 35%),
    var(--navy);
}

.section--white {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100% - var(--max)) / 2));
  color: var(--cold);
  background:
    radial-gradient(circle at 85% 16%, rgba(139, 92, 246, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(16, 32, 51, 0.68), rgba(5, 10, 18, 0.94));
}

.section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.52fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

.section__header--journey {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.68fr);
  align-items: start;
}

.section__header-copy {
  max-width: 690px;
}

.section__header-copy .eyebrow {
  margin-bottom: 22px;
}

.section__header-copy > p:last-child {
  margin: 0;
}

.section__header h2,
.section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section__header p,
.lead {
  margin: 0;
  color: rgba(234, 246, 255, 0.72);
  font-size: 18px;
}

.section--dark .section__header p,
.section--dark .lead,
.section--dark .muted {
  color: rgba(234, 246, 255, 0.72);
}

.muted {
  color: rgba(234, 246, 255, 0.72);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card,
.quote-card,
.edition-card {
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(234, 246, 255, 0.08), rgba(234, 246, 255, 0.035));
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
}

.card {
  padding: 24px;
}

.card h3,
.edition-card h3,
.quote-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
}

.card p,
.edition-card p,
.quote-card p,
.card ul {
  margin: 0;
  color: rgba(234, 246, 255, 0.7);
}

.card ul,
.edition-card ul,
.feature-list {
  padding-left: 18px;
}

.card li,
.edition-card li,
.feature-list li {
  margin: 8px 0;
}

.section--dark .card,
.section--dark .edition-card,
.section--dark .quote-card {
  border-color: rgba(234, 246, 255, 0.12);
  background: rgba(234, 246, 255, 0.055);
  box-shadow: none;
}

.section--dark .card p,
.section--dark .card ul,
.section--dark .edition-card p,
.section--dark .edition-card li,
.section--dark .quote-card p {
  color: rgba(234, 246, 255, 0.72);
}

.capability-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.capability-card__index {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.capability-card a {
  margin-top: 22px;
  color: var(--teal);
  font-weight: 800;
}

.section--dark .capability-card a {
  color: var(--teal);
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.flow__item {
  position: relative;
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(234, 246, 255, 0.055);
}

.flow__item::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(0, 212, 255, 0.55);
}

.flow__item:last-child::after {
  display: none;
}

.flow__item span {
  display: block;
  color: var(--cyan);
  font-weight: 850;
  margin-bottom: 8px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: center;
}

.customer-trust {
  width: 100%;
  padding: 26px 20px 34px;
}

.customer-trust__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.customer-trust__copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.customer-trust__copy .eyebrow {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.customer-trust__copy h2 {
  max-width: 640px;
  margin: 0;
  color: rgba(234, 246, 255, 0.88);
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.08;
}

.customer-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  min-height: 92px;
  padding: 0 16px;
  overflow: hidden;
  border: 1px solid rgba(234, 246, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(247, 251, 255, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.customer-logo {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  border-left: 1px solid rgba(7, 17, 31, 0.08);
}

.customer-logo:first-child {
  border-left: 0;
}

.customer-logo img {
  width: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.customer-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.customer-logo--buzzi {
  gap: 9px;
  color: #07111f;
}

.customer-logo--buzzi img {
  width: 42px;
}

.customer-logo--buzzi span {
  display: grid;
  line-height: 1.05;
}

.customer-logo--buzzi strong {
  font-size: 18px;
}

.customer-logo--buzzi small {
  margin-top: 3px;
  color: rgba(7, 17, 31, 0.6);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.story-card-preview {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(0, 212, 255, 0.11), transparent 38%),
    linear-gradient(150deg, rgba(234, 246, 255, 0.075), rgba(234, 246, 255, 0.025));
}

.story-card-preview > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card-preview h3 {
  margin: 22px 0 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.story-card-preview p {
  color: rgba(234, 246, 255, 0.68);
}

.story-card-preview .text-link {
  margin-top: auto;
}

.case-story-hero {
  padding: 76px 0 44px;
}

.case-story-hero__inner,
.case-story-body,
.case-story-nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.case-story-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: center;
}

.case-story-hero h1 {
  margin: 12px 0 22px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.case-story-hero__copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(234, 246, 255, 0.72);
  font-size: clamp(18px, 1.7vw, 23px);
}

.case-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(234, 246, 255, 0.15);
  border-radius: calc(var(--radius) + 3px);
  background: #02070d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
}

.case-video--short {
  max-width: 390px;
  justify-self: center;
  aspect-ratio: 9 / 16;
}

.case-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.case-video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--cold);
}

.case-video-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 7, 13, 0.82));
  transition: background 180ms ease;
}

.case-video-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.case-video-link span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 820;
}

.case-video-link i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #021018;
  background: var(--teal);
  font-style: normal;
  box-shadow: 0 0 28px rgba(0, 229, 184, 0.38);
}

.case-video-link:hover img {
  transform: scale(1.025);
}

.case-video-link:hover::after {
  background: linear-gradient(180deg, rgba(0, 229, 184, 0.05), rgba(2, 7, 13, 0.76));
}

.case-story-body {
  padding: 74px 0 96px;
}

.case-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(380px, 1.24fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.case-summary-grid h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.case-summary-grid__content {
  display: grid;
  gap: 28px;
}

.case-summary-grid__content > p {
  margin: 0;
  color: rgba(234, 246, 255, 0.72);
  font-size: 18px;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(234, 246, 255, 0.14);
  border-bottom: 1px solid rgba(234, 246, 255, 0.14);
}

.case-facts > div {
  padding: 22px 16px;
  border-left: 1px solid rgba(234, 246, 255, 0.1);
}

.case-facts > div:first-child {
  border-left: 0;
}

.case-facts strong,
.case-facts span {
  display: block;
}

.case-facts strong {
  color: var(--teal);
  font-size: clamp(24px, 3vw, 38px);
}

.case-facts span {
  margin-top: 7px;
  color: rgba(234, 246, 255, 0.58);
  font-size: 12px;
}

.case-roadmap {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-roadmap::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 22px;
  width: 1px;
  background: linear-gradient(var(--cyan), var(--teal));
  opacity: 0.45;
}

.case-roadmap li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 14px 0;
}

.case-roadmap b {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 50%;
  color: var(--cyan);
  background: #07111f;
  font: 760 10px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.1);
}

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

.case-roadmap strong {
  margin-top: 2px;
  color: var(--cold);
  font-size: 16px;
}

.case-roadmap span {
  margin-top: 4px;
  color: rgba(234, 246, 255, 0.6);
  font-size: 13px;
  line-height: 1.45;
}

.case-source {
  padding-top: 4px;
  border-top: 1px solid rgba(234, 246, 255, 0.1);
  font-size: 14px !important;
}

.case-source a {
  color: var(--cyan);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 255, 0.32);
  text-underline-offset: 3px;
}

.case-screen-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 76px;
}

.case-screen-pair .product-shot {
  align-self: start;
}

.case-story-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 70px;
}

.editions-overview {
  padding-top: 68px;
  padding-bottom: 92px;
}

.editions-overview__header {
  max-width: 760px;
  margin-bottom: 34px;
}

.editions-overview__header h1 {
  max-width: 700px;
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.editions-overview__header > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(234, 246, 255, 0.7);
  font-size: 18px;
  line-height: 1.55;
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.edition-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
}

.edition-card--featured {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 18px 60px rgba(0, 212, 255, 0.12);
}

.edition-kicker {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edition-card__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 20px;
}

.edition-card__action .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.edition-card__price {
  display: flex;
  min-height: 78px;
  margin-top: 24px;
  flex-direction: column;
  gap: 5px;
}

.edition-card__price strong {
  color: var(--cold);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.edition-card__price span {
  color: rgba(234, 246, 255, 0.58);
  font-size: 13px;
}

.edition-card__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.edition-card__links a,
.comparison-feature-link {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 255, 0.45);
  text-underline-offset: 3px;
}

.edition-card__links a {
  font-size: 13px;
  font-weight: 700;
}

.edition-card__includes {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(234, 246, 255, 0.11);
}

.edition-card__includes > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--cold);
  font-size: 13px;
}

.edition-card__includes ul {
  margin: 0;
}

@media (min-width: 981px) {
  .edition-card > h3 {
    min-height: 76px;
  }

  .edition-card > p {
    min-height: 108px;
  }

  .edition-card__price {
    height: 112px;
    min-height: 112px;
  }

  .edition-card__action {
    height: 146px;
    min-height: 146px;
  }
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(234, 246, 255, 0.055);
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(234, 246, 255, 0.1);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: var(--cold);
  background: rgba(0, 212, 255, 0.1);
}

.compare-table td {
  color: rgba(234, 246, 255, 0.72);
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: var(--radius);
}

.compare-table-wrap .compare-table {
  min-width: 760px;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table td:first-child {
  width: 30%;
  color: var(--cold);
  font-weight: 750;
}

.editions-capability-table td:first-child strong,
.editions-capability-table td:first-child span {
  display: block;
}

.editions-capability-table td:first-child span {
  margin-top: 5px;
  color: rgba(234, 246, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.editions-capability-table .comparison-section-row th {
  padding: 13px 16px;
  color: var(--cyan);
  background: rgba(0, 201, 255, 0.08);
  border-top: 1px solid rgba(0, 201, 255, 0.22);
  border-bottom: 1px solid rgba(0, 201, 255, 0.16);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-followup {
  margin: 22px 0 0;
  color: rgba(234, 246, 255, 0.66);
}

.comparison-followup a {
  color: var(--cyan);
}

.comparison-point {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.capability-detail .card {
  min-height: 260px;
}

.capability-detail .card h3 {
  max-width: 26ch;
}

.edition-boundary {
  padding-top: 88px;
}

.availability {
  display: inline-block;
  margin: 0 4px 4px 0;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.availability--included {
  color: var(--teal);
  background: rgba(0, 229, 184, 0.1);
  border: 1px solid rgba(0, 229, 184, 0.24);
}

.availability--enterprise {
  color: #c9b5ff;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.28);
}

.availability--pro {
  color: #7fdcff;
  background: rgba(0, 201, 255, 0.1);
  border: 1px solid rgba(0, 201, 255, 0.26);
}

.availability--partial {
  color: #ffd47a;
  background: rgba(255, 185, 64, 0.1);
  border: 1px solid rgba(255, 185, 64, 0.26);
}

.availability--not-included {
  color: rgba(234, 246, 255, 0.55);
  background: rgba(234, 246, 255, 0.05);
  border: 1px solid rgba(234, 246, 255, 0.12);
}

@media (max-width: 720px) {
  .compare-table-wrap--editions {
    overflow: visible;
    border: 0;
  }

  .compare-table-wrap--editions .editions-capability-table {
    display: block;
    min-width: 0;
    background: transparent;
  }

  .editions-capability-table thead {
    display: none;
  }

  .editions-capability-table tbody {
    display: grid;
    gap: 12px;
  }

  .editions-capability-table tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(234, 246, 255, 0.055);
    border: 1px solid rgba(234, 246, 255, 0.12);
    border-radius: 12px;
  }

  .editions-capability-table tr.comparison-section-row {
    display: block;
    margin: 12px 0 0;
    border: 0;
    border-radius: 0;
  }

  .editions-capability-table .comparison-section-row th {
    display: block;
  }

  .editions-capability-table td {
    display: flex;
    min-width: 0;
    padding: 12px 9px;
    border-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .editions-capability-table td:first-child {
    grid-column: 1 / -1;
    width: auto;
    padding: 16px;
    border-bottom: 1px solid rgba(234, 246, 255, 0.1);
  }

  .editions-capability-table td:nth-child(2)::before,
  .editions-capability-table td:nth-child(3)::before,
  .editions-capability-table td:nth-child(4)::before {
    color: rgba(234, 246, 255, 0.48);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .editions-capability-table td:nth-child(2)::before {
    content: "Community";
  }

  .editions-capability-table td:nth-child(3)::before {
    content: "Pro";
  }

  .editions-capability-table td:nth-child(4)::before {
    content: "Enterprise";
  }

  .editions-capability-table .availability {
    margin: 0;
    padding: 3px 6px;
    font-size: 9px;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .edition-grid {
    grid-template-columns: 1fr;
  }

  .edition-card__price {
    height: auto;
    min-height: 0;
  }

  .edition-card__action {
    height: auto;
    min-height: 0;
  }
}

.visual-options-hero,
.visual-option-list {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
}

.visual-options-hero {
  padding: 100px 0 72px;
}

.visual-options-hero h1 {
  max-width: 920px;
  margin: 0 0 24px;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.98;
}

.visual-options-hero > p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(234, 246, 255, 0.7);
  font-size: 19px;
}

.visual-option-list {
  display: grid;
  gap: 40px;
  padding-bottom: 112px;
}

.visual-option {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.5fr);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 12px;
  background: rgba(234, 246, 255, 0.035);
}

.visual-option__copy {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 4vw, 58px);
}

.visual-option__number {
  display: block;
  margin-bottom: 48px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.visual-option h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 3.3vw, 52px);
  line-height: 1.02;
}

.visual-option p,
.visual-option li {
  color: rgba(234, 246, 255, 0.7);
}

.visual-option ul {
  margin: 28px 0 0;
  padding-left: 18px;
}

.visual-option li {
  margin: 8px 0;
}

.visual-option__figure {
  min-height: 520px;
  margin: 0;
  background: #020812;
}

.visual-option__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-card {
  padding: 26px;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 212, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(234, 246, 255, 0.075), rgba(234, 246, 255, 0.025));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.case-feature__story {
  min-width: 0;
  padding: clamp(28px, 5vw, 58px);
}

.case-feature .tag {
  color: #77ffe7;
  border-color: rgba(0, 229, 184, 0.26);
}

.case-feature__story h2,
.case-feature__story h3 {
  max-width: 720px;
  margin: 10px 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.case-feature__story > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(234, 246, 255, 0.74);
  font-size: 18px;
}

.case-feature__story small {
  display: block;
  margin-top: 22px;
  color: rgba(234, 246, 255, 0.5);
  line-height: 1.45;
}

.case-feature__story small a {
  color: rgba(115, 223, 255, 0.84);
  text-decoration: underline;
  text-decoration-color: rgba(115, 223, 255, 0.32);
  text-underline-offset: 3px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.case-metrics div {
  min-width: 0;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(234, 246, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(5, 10, 18, 0.38);
}

.case-metrics strong,
.case-metrics span {
  display: block;
}

.case-metrics strong {
  color: var(--cyan);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  white-space: nowrap;
}

.case-metrics span {
  margin-top: 9px;
  color: rgba(234, 246, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.case-feature__visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-left: 1px solid rgba(234, 246, 255, 0.08);
  background: #030a12;
}

.case-feature__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 9, 16, 0.06), rgba(3, 9, 16, 0.34)),
    linear-gradient(90deg, rgba(3, 9, 16, 0.12), transparent 32%);
  pointer-events: none;
}

.case-feature__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.94) brightness(0.8) contrast(1.06);
  transform: scale(1.04);
}

.case-feature__roadmap {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-feature__roadmap li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.case-feature__roadmap li {
  display: grid;
  min-height: 50px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: 8px;
  background: rgba(4, 12, 21, 0.76);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(9px);
}

.case-feature__roadmap b {
  display: grid;
  height: 100%;
  place-items: center;
  border-right: 1px solid rgba(0, 212, 255, 0.16);
  color: var(--cyan);
  font: 760 10px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.case-feature__roadmap span {
  padding: 0 13px;
  color: rgba(234, 246, 255, 0.82);
  font-size: 12px;
  font-weight: 760;
}

.case-feature__signal {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 229, 184, 0.2);
  border-radius: var(--radius);
  color: rgba(234, 246, 255, 0.72);
  background: rgba(5, 10, 18, 0.78);
  backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.case-feature__signal span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(0, 229, 184, 0.8);
}

.quote-card blockquote {
  margin: 0 0 18px;
  color: var(--cold);
  font-size: 20px;
  line-height: 1.4;
}

.section--dark .quote-card blockquote {
  color: var(--cold);
}

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

.metric {
  padding: 18px;
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(234, 246, 255, 0.055);
}

.metric strong {
  display: block;
  color: var(--cold);
  font-size: 26px;
  line-height: 1;
}

.metric span {
  color: rgba(234, 246, 255, 0.62);
  font-size: 13px;
}

.module-system {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.module-core {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 229, 184, 0.16), transparent 32%),
    rgba(234, 246, 255, 0.045);
}

.module-core canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.module-core__content {
  position: relative;
  z-index: 1;
  max-width: 330px;
}

.module-core h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
}

.module-core p {
  color: rgba(234, 246, 255, 0.72);
}

.module-core__signals {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.module-signal {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(234, 246, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(5, 10, 18, 0.7);
}

.module-signal strong {
  color: var(--teal);
  font-size: 12px;
}

.module-signal span {
  color: rgba(234, 246, 255, 0.72);
  font-size: 12px;
}

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

.module-card {
  position: relative;
  min-height: 250px;
  padding: 18px;
  border: 1px solid rgba(234, 246, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(234, 246, 255, 0.09), rgba(234, 246, 255, 0.035));
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 10%, rgba(0, 212, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.module-card__head,
.module-card__body {
  position: relative;
  z-index: 1;
}

.module-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.module-card h3 {
  margin: 0;
  max-width: 230px;
  font-size: 20px;
  line-height: 1.12;
}

.module-card__number {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.module-visual {
  position: relative;
  z-index: 1;
  height: 86px;
  margin: 22px 0 18px;
  border: 1px solid rgba(234, 246, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(5, 10, 18, 0.46);
  overflow: hidden;
}

.module-visual span {
  position: absolute;
  display: block;
}

.module-visual--forecast span {
  width: 38%;
  height: 2px;
  left: 12%;
  top: 48%;
  background: var(--cyan);
  transform: rotate(-18deg);
  box-shadow: 42px 16px 0 var(--teal), 86px -10px 0 rgba(255, 176, 32, 0.8);
}

.module-visual--network span {
  width: 8px;
  height: 8px;
  left: 17%;
  top: 48%;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 52px -18px 0 var(--cyan), 96px 14px 0 var(--azure), 150px -4px 0 var(--amber);
}

.module-visual--network span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--azure), var(--amber));
  transform: rotate(-4deg);
  opacity: 0.52;
}

.module-visual--capacity span {
  bottom: 18px;
  left: 16px;
  width: 26px;
  height: 34px;
  background: rgba(0, 212, 255, 0.72);
  box-shadow: 40px -18px 0 rgba(0, 229, 184, 0.72), 80px 8px 0 rgba(139, 92, 246, 0.72), 120px -30px 0 rgba(255, 176, 32, 0.72);
}

.module-visual--deployment span {
  width: 70%;
  height: 1px;
  left: 14%;
  top: 44%;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  box-shadow: 0 22px 0 rgba(234, 246, 255, 0.16), 0 -22px 0 rgba(234, 246, 255, 0.12);
}

.module-visual--inventory span {
  left: 12%;
  top: 18px;
  width: 76%;
  height: 50px;
  border: 1px solid rgba(0, 212, 255, 0.42);
  border-radius: 50%;
  transform: rotate(-7deg);
  background: rgba(0, 212, 255, 0.05);
}

.module-visual--finance span {
  left: 12%;
  top: 18px;
  width: 76%;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 16px 0 var(--cyan), 0 32px 0 rgba(255, 176, 32, 0.85), 0 48px 0 rgba(255, 77, 166, 0.75);
}

.module-card__body {
  display: grid;
  gap: 8px;
  color: rgba(234, 246, 255, 0.72);
  font-size: 13px;
}

.module-card__body a {
  margin-top: 4px;
  color: var(--teal);
  font-weight: 820;
}

.cta-band {
  padding: 54px;
  border-radius: var(--radius);
  color: var(--cold);
  background:
    linear-gradient(120deg, rgba(0, 229, 184, 0.16), transparent 42%),
    linear-gradient(280deg, rgba(139, 92, 246, 0.16), transparent 42%),
    var(--navy);
}

.cta-band h2 {
  max-width: 840px;
}

.cta-band p {
  max-width: 720px;
  color: rgba(234, 246, 255, 0.74);
  font-size: 18px;
}

.site-footer {
  color: rgba(234, 246, 255, 0.72);
  background: #02060c;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(130px, 180px));
  gap: 34px;
  padding: 56px 0;
}

.site-footer img {
  width: 170px;
  margin-bottom: 18px;
}

.footer__group h2,
.footer__group h3 {
  margin: 0 0 12px;
  color: var(--cold);
  font-size: 14px;
}

.footer__group a,
.footer__group span {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}

.footer__bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(234, 246, 255, 0.1);
  font-size: 13px;
}

.footer__bottom--with-seal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__bottom--with-seal img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.github-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a[href="https://github.com/OpsFactor/opsfactor-community"] strong::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("github-mark.svg") center / contain no-repeat;
  mask: url("github-mark.svg") center / contain no-repeat;
}

.github-source-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.nav-menu a[href="https://github.com/OpsFactor/opsfactor-community"] strong::before {
  background: #eaf6ff;
}

.nav-menu a[href="https://github.com/OpsFactor/opsfactor-community"] strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__resource-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
}

.hero__resource-links a {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.hero__resource-links a:hover,
.hero__resource-links a:focus-visible {
  color: var(--cold);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 16px 20px 24px;
    background: rgba(5, 10, 18, 0.98);
    border-bottom: 1px solid rgba(234, 246, 255, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item::before {
    display: none;
  }

  .nav-link {
    width: 100%;
  }

  .nav-menu,
  .nav-menu--wide {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 4px 0 12px;
    padding: 8px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(234, 246, 255, 0.045);
  }

  .nav-menu__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner,
  .hero--compact .hero__inner,
  .split,
  .case-feature,
  .section__header {
    grid-template-columns: 1fr;
  }

  .case-feature__visual {
    min-height: 390px;
    border-top: 1px solid rgba(234, 246, 255, 0.08);
    border-left: 0;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 56px;
  }

  .hero__visual {
    min-height: 500px;
    margin-left: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .visual-panel {
    min-height: 360px;
  }

  .adoption-section .split {
    grid-template-columns: 1fr;
  }

  .progressive-scope {
    min-height: 510px;
    margin: -8px auto -24px;
  }

  .customer-trust__copy {
    display: block;
  }

  .customer-trust__copy .eyebrow {
    margin-bottom: 16px;
  }

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

  .customer-logo:nth-child(3n + 1) {
    border-left: 0;
  }

  .customer-logo:nth-child(n + 4) {
    border-top: 1px solid rgba(7, 17, 31, 0.08);
  }

  .grid--3,
  .grid--6,
  .flow,
  .module-system,
  .story-card-grid,
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-story-hero__inner,
  .case-summary-grid {
    grid-template-columns: 1fr;
  }

  .case-video--short {
    width: min(100%, 390px);
  }

  .flow__item::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .section,
  .footer__inner,
  .footer__bottom,
  .hero__inner {
    width: min(100% - 28px, var(--max));
  }

  .progressive-scope {
    min-height: 390px;
    margin: 12px -14% -20px;
  }

  .progressive-scope img {
    width: 126%;
    margin-left: -13%;
  }

  .progressive-scope__labels {
    right: 14%;
    bottom: 0;
    left: 14%;
    grid-template-columns: 1fr;
  }

  .progressive-scope__labels span {
    min-height: 52px;
  }

  .integrated-layer-label {
    left: 9%;
    padding: 5px 7px;
    font-size: 8px;
  }

  .integrated-layer-label::after {
    width: 24px;
  }

  .brand img {
    width: 160px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero__copy p,
  .section__header p,
  .lead {
    font-size: 16px;
  }

  .hero__actions,
  .section__actions,
  .cta-row {
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .customer-trust {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .customer-logo,
  .customer-logo:nth-child(4) {
    border-left: 1px solid rgba(7, 17, 31, 0.08);
  }

  .customer-logo:nth-child(odd) {
    border-left: 0;
  }

  .customer-logo:nth-child(n + 3) {
    border-top: 1px solid rgba(7, 17, 31, 0.08);
  }

  .customer-logo img {
    max-height: 44px;
  }

  .grid--2,
  .grid--3,
  .grid--6,
  .flow,
  .module-system,
  .module-grid,
  .mini-metrics,
  .case-metrics,
  .story-card-grid,
  .case-screen-pair,
  .case-facts,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .case-story-hero__inner,
  .case-story-body,
  .case-story-nav {
    width: min(100% - 28px, var(--max));
  }

  .case-story-nav {
    flex-direction: column;
  }

  .case-facts > div {
    border-top: 1px solid rgba(234, 246, 255, 0.1);
    border-left: 0;
  }

  .case-facts > div:first-child {
    border-top: 0;
  }

  .case-metrics div {
    min-height: 0;
  }

  .module-core {
    min-height: 430px;
  }

  .module-signal {
    grid-template-columns: 1fr;
  }

  .section,
  .section--dark,
  .section--white {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .cta-band {
    padding: 30px;
  }
}

.offerings {
  position: relative;
  padding-top: 78px;
}

.offering-journey {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 48px;
  margin-top: 52px;
}

.offering-rail {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-top: 1px solid rgba(234, 246, 255, 0.15);
  border-bottom: 1px solid rgba(234, 246, 255, 0.15);
}

.offering-rail__label {
  margin-bottom: 9px;
  color: rgba(234, 246, 255, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.offering-rail a {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-height: 38px;
  color: rgba(234, 246, 255, 0.52);
  font-size: 12px;
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}

.offering-rail a span {
  color: rgba(0, 212, 255, 0.56);
  font: 700 10px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.offering-rail a:hover,
.offering-rail a:focus-visible,
.offering-rail a.is-active {
  color: var(--cold);
  transform: translateX(4px);
}

.offering-chapters {
  min-width: 0;
}

.offering-chapter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  min-height: 720px;
  padding: 74px 0 94px;
  scroll-margin-top: 94px;
  border-top: 1px solid rgba(234, 246, 255, 0.11);
}

.offering-chapter:first-child {
  border-top-color: rgba(0, 212, 255, 0.28);
}

.offering-chapter::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8%;
  top: 14%;
  width: 62%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.09), transparent 68%);
  pointer-events: none;
}

.offering-chapter:nth-child(3n + 2)::before {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 68%);
}

.offering-chapter:nth-child(3n)::before {
  background: radial-gradient(circle, rgba(0, 229, 184, 0.08), transparent 68%);
}

.offering-chapter--reverse .offering-chapter__copy {
  order: 2;
}

.offering-chapter--reverse {
  grid-template-columns: minmax(480px, 1.22fr) minmax(300px, 0.78fr);
}

.offering-chapter--reverse .offering-chapter__media {
  order: 1;
}

.offering-chapter__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.offering-chapter__head span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 50%;
  color: var(--cyan);
  font: 750 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.offering-chapter__head p {
  margin: 0;
  color: rgba(234, 246, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offering-chapter h3 {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--cold);
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.offering-chapter__copy > p:not(.why-it-matters) {
  max-width: 590px;
  margin: 0 0 24px;
  color: rgba(234, 246, 255, 0.69);
  font-size: 16px;
  line-height: 1.68;
}

.decision-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 590px;
  margin: 0 0 26px;
}

.decision-pair p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(234, 246, 255, 0.1);
  border-radius: 7px;
  background: rgba(234, 246, 255, 0.035);
  color: rgba(234, 246, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.decision-pair strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cold);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.capability-list {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(234, 246, 255, 0.83);
  font-size: 13px;
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 11px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  box-shadow: 0 0 8px rgba(0, 229, 184, 0.55);
}

.why-it-matters {
  max-width: 590px;
  margin: 0 0 24px;
  padding: 15px 17px;
  border-left: 2px solid rgba(0, 229, 184, 0.65);
  background: rgba(234, 246, 255, 0.045);
  color: rgba(234, 246, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
}

.why-it-matters strong {
  display: block;
  margin-bottom: 3px;
  color: var(--teal);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offering-chapter__media {
  position: relative;
  min-width: 0;
  isolation: isolate;
  padding: 58px 38px;
}

.product-shot,
.product-window {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(234, 246, 255, 0.17);
  border-radius: 10px;
  background: #101927;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(0, 212, 255, 0.04);
}

.offering-chapter--reverse .product-shot,
.offering-chapter--reverse .product-window {
  transform: none;
}

.product-shot__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(234, 246, 255, 0.1);
  background: linear-gradient(180deg, #172436, #101927);
}

.product-shot__chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(234, 246, 255, 0.2);
}

.product-shot__chrome span:first-child {
  background: rgba(255, 77, 166, 0.72);
}

.product-shot__chrome span:nth-child(2) {
  background: rgba(255, 176, 32, 0.72);
}

.product-shot__chrome span:nth-child(3) {
  background: rgba(0, 229, 184, 0.72);
}

.product-shot__chrome strong {
  margin-left: auto;
  color: rgba(234, 246, 255, 0.48);
  font: 650 9px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-shot img,
.product-window img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #07111d;
}

.screenshot-zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #07111d;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

.screenshot-zoom-trigger img {
  transition: filter 180ms ease, transform 180ms ease;
}

.screenshot-zoom-trigger:hover img {
  filter: brightness(1.06);
  transform: scale(1.008);
}

.screenshot-zoom-trigger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -3px;
}

.screenshot-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(234, 246, 255, 0.22);
  border-radius: 999px;
  background: rgba(4, 12, 22, 0.82);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  color: rgba(234, 246, 255, 0.88);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.screenshot-zoom-hint svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.screenshot-zoom-trigger:hover .screenshot-zoom-hint,
.screenshot-zoom-trigger:focus-visible .screenshot-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

body.has-lightbox {
  overflow: hidden;
}

.screenshot-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.screenshot-lightbox::backdrop {
  background: rgba(1, 7, 14, 0.9);
  backdrop-filter: blur(8px);
}

.screenshot-lightbox__panel {
  position: absolute;
  inset: 22px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 246, 255, 0.18);
  border-radius: 14px;
  background: #07111d;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.62);
}

.screenshot-lightbox__header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 8px 10px 8px 18px;
  border-bottom: 1px solid rgba(234, 246, 255, 0.1);
  background: linear-gradient(180deg, #172436, #101927);
}

.screenshot-lightbox__header p {
  margin: 0;
  color: rgba(234, 246, 255, 0.78);
  font: 650 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screenshot-lightbox__close {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(234, 246, 255, 0.18);
  border-radius: 8px;
  background: rgba(234, 246, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.screenshot-lightbox__close:hover,
.screenshot-lightbox__close:focus-visible {
  border-color: rgba(0, 212, 255, 0.55);
  background: rgba(0, 212, 255, 0.1);
  outline: none;
}

.screenshot-lightbox__close span {
  margin-top: -2px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

.screenshot-lightbox__stage {
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
  padding: 20px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 212, 255, 0.07), transparent 52%),
    #030914;
}

.screenshot-lightbox__stage img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(234, 246, 255, 0.12);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.46);
}

@media (max-width: 700px) {
  .screenshot-zoom-hint {
    opacity: 0.86;
    transform: none;
  }

  .screenshot-zoom-hint span {
    display: none;
  }

  .screenshot-lightbox__panel {
    inset: 8px;
  }

  .screenshot-lightbox__stage {
    padding: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .screenshot-zoom-trigger img,
  .screenshot-zoom-hint {
    transition: none;
  }

  .screenshot-zoom-trigger:hover img {
    transform: none;
  }
}

.product-shot figcaption,
.product-window figcaption {
  padding: 10px 13px;
  border-top: 1px solid rgba(234, 246, 255, 0.08);
  color: rgba(234, 246, 255, 0.5);
  font-size: 10px;
}

.product-shot--contain img {
  aspect-ratio: auto;
  object-fit: contain;
}

.product-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-gallery--demand .product-window--cluster-level {
  grid-column: 1 / -1;
}

.product-gallery--demand .product-window--cluster-level img {
  min-height: 245px;
  object-fit: cover;
  object-position: center 58%;
}

.product-gallery--demand .product-window--autofit img,
.product-gallery--demand .product-window--planning-book img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.product-gallery--demand .product-window--planning-book img {
  object-position: center 18%;
}

.product-window {
  position: relative;
  margin: 0;
}

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

.product-gallery--network .product-window--network {
  grid-column: 1 / -1;
}

.offering-backdrop {
  position: absolute;
  z-index: 0;
  inset: 22px -10px;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: transparent;
  opacity: 0.38;
  pointer-events: none;
  filter: saturate(0.92);
  mask-image: radial-gradient(ellipse at center, #000 18%, rgba(0, 0, 0, 0.72) 58%, transparent 94%);
}

.offering-backdrop canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

@media (max-width: 1040px) {
  .offering-journey {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 28px;
  }

  .offering-chapter {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
    padding: 70px 0 94px;
  }

  .offering-chapter--reverse .offering-chapter__copy,
  .offering-chapter--reverse .offering-chapter__media {
    order: initial;
  }

  .offering-chapter--reverse {
    grid-template-columns: 1fr;
  }

  .product-shot,
  .product-window,
  .offering-chapter--reverse .product-shot,
  .offering-chapter--reverse .product-window {
    transform: none;
  }
}

@media (max-width: 760px) {
  .offerings {
    padding-top: 72px;
  }

  .offering-journey {
    display: block;
    margin-top: 30px;
  }

  .offering-rail {
    display: none;
  }

  .offering-chapter {
    padding: 58px 0 80px;
  }

  .offering-chapter h3 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .offering-chapter__media {
    padding: 38px 22px;
  }

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

  .product-gallery,
  .product-gallery--network {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-gallery--network .product-window--network {
    grid-column: auto;
  }

  .product-gallery--demand .product-window--cluster-level {
    grid-column: auto;
  }

  .product-gallery--demand .product-window--cluster-level img,
  .product-gallery--demand .product-window--autofit img,
  .product-gallery--demand .product-window--planning-book img {
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .offering-backdrop {
    inset: 10px -8px;
    opacity: 0.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Connected physical network: an illustrative bridge into the product journey. */

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

.network-story {
  background:
    radial-gradient(circle at 76% 38%, rgba(0, 212, 255, 0.1), transparent 34%),
    linear-gradient(90deg, #050a12 0%, #050a12 32%, #06101a 100%);
  border-bottom: 1px solid rgba(234, 246, 255, 0.1);
  border-top: 1px solid rgba(234, 246, 255, 0.1);
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(650px, 1.42fr);
  min-height: 760px;
  overflow: hidden;
  position: relative;
  scroll-margin-top: 76px;
}

.network-story::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 100% 7px;
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  z-index: 8;
}

.network-story__copy {
  align-self: center;
  max-width: 540px;
  padding: 92px 34px 76px max(40px, calc((100vw - 1380px) / 2));
  position: relative;
  z-index: 10;
}

.network-story__copy h2 {
  font-size: clamp(48px, 5vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin: 24px 0 0;
  max-width: 520px;
}

.network-story__copy > p:not(.eyebrow, .network-story__disclaimer) {
  color: rgba(234, 246, 255, 0.68);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  margin: 27px 0 0;
  max-width: 485px;
}

.network-story__sequence {
  align-items: center;
  color: rgba(234, 246, 255, 0.56);
  display: flex;
  flex-wrap: wrap;
  font-size: 8px;
  font-weight: 760;
  gap: 6px;
  letter-spacing: 0.12em;
  margin-top: 30px;
  text-transform: uppercase;
}

.network-story__sequence span {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}

.network-story__sequence span:not(:last-child)::after {
  color: var(--teal);
  content: "→";
}

.network-story__disclaimer {
  border-left: 1px solid rgba(0, 229, 184, 0.52);
  color: rgba(234, 246, 255, 0.44);
  font-size: 11px;
  line-height: 1.5;
  margin: 28px 0 0;
  max-width: 430px;
  padding-left: 12px;
}

.network-story__visual {
  contain: layout paint;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}

.network-story__visual::before {
  background: linear-gradient(90deg, #050a12, transparent 17%);
  content: "";
  inset: 0 auto 0 0;
  pointer-events: none;
  position: absolute;
  width: 130px;
  z-index: 5;
}

.diorama-scene {
  inset: 0;
  position: absolute;
}

.diorama-scene canvas {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
}

.scene-labels {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.node-label {
  color: var(--cold);
  opacity: 0.56;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -100%);
  transition: opacity 320ms ease, transform 320ms ease;
  white-space: nowrap;
}

.node-label strong {
  display: block;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.node-label span {
  color: rgba(234, 246, 255, 0.4);
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 3px;
  text-transform: uppercase;
}

.node-label.is-focus {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 6px)) scale(1.08);
}

.node-label.is-focus span {
  color: var(--teal);
}

.node-label.is-alert span {
  color: var(--magenta);
}

.node-label.is-expedite span {
  color: var(--amber);
}

.scenario-header {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(100px, 1fr) auto;
  left: clamp(36px, 4vw, 70px);
  position: absolute;
  right: 28px;
  top: 25px;
  z-index: 7;
}

.scenario-header > span {
  color: rgba(234, 246, 255, 0.42);
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cycle-progress {
  background: rgba(151, 190, 207, 0.13);
  height: 1px;
  overflow: hidden;
}

.cycle-progress i {
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

#motion-control {
  background: rgba(3, 10, 16, 0.62);
  border: 1px solid rgba(234, 246, 255, 0.18);
  border-radius: 6px;
  color: rgba(234, 246, 255, 0.68);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  min-height: 32px;
  padding: 0 12px;
  text-transform: uppercase;
}

#motion-control:hover,
#motion-control:focus-visible {
  border-color: rgba(234, 246, 255, 0.42);
  color: var(--cold);
}

.story-card {
  background:
    linear-gradient(135deg, rgba(9, 24, 34, 0.93), rgba(3, 10, 16, 0.84));
  border: 1px solid rgba(144, 184, 201, 0.2);
  border-left: 2px solid var(--teal);
  border-radius: 8px;
  left: clamp(34px, 4vw, 70px);
  max-width: 390px;
  padding: 17px 19px 18px;
  position: absolute;
  top: 80px;
  transition: border-color 320ms ease, transform 360ms ease;
  z-index: 6;
}

.story-card[data-tone="alert"] {
  border-left-color: var(--magenta);
}

.story-card[data-tone="expedite"] {
  border-left-color: var(--amber);
}

.story-card[data-position="right"] {
  left: auto;
  right: 28px;
}

.story-card > span {
  color: var(--teal);
  display: block;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-card[data-tone="alert"] > span {
  color: var(--magenta);
}

.story-card[data-tone="expedite"] > span {
  color: var(--amber);
}

.story-card strong {
  display: block;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.18;
  margin-top: 7px;
}

.story-card em {
  color: var(--cold);
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 680;
  margin-top: 9px;
}

.story-card p {
  color: rgba(234, 246, 255, 0.64);
  font-size: 12px;
  line-height: 1.45;
  margin: 7px 0 0;
}

.phase-track {
  align-items: center;
  bottom: 27px;
  color: rgba(234, 246, 255, 0.36);
  display: flex;
  font-size: 8px;
  gap: 14px;
  justify-content: flex-end;
  letter-spacing: 0.1em;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  z-index: 6;
}

.phase-track span {
  align-items: center;
  display: flex;
  gap: 6px;
  transition: color 220ms ease;
}

.phase-track span::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 4px;
  opacity: 0.5;
  width: 4px;
}

.phase-track span.is-active {
  color: var(--teal);
}

.webgl-fallback {
  align-items: center;
  background:
    radial-gradient(circle at 58% 42%, rgba(0, 229, 184, 0.12), transparent 35%),
    #050a12;
  display: flex;
  flex-direction: column;
  gap: 7px;
  inset: 0;
  justify-content: center;
  padding: 70px 40px 40px;
  position: absolute;
  text-align: center;
  z-index: 9;
}

.webgl-fallback[hidden] {
  display: none;
}

.webgl-fallback svg {
  height: auto;
  max-width: 680px;
  width: min(86%, 680px);
}

.webgl-fallback strong {
  font-size: 22px;
}

.webgl-fallback > span {
  color: rgba(234, 246, 255, 0.58);
  font-size: 12px;
}

.fallback-routes path {
  fill: none;
  opacity: 0.58;
  stroke: var(--teal);
  stroke-width: 2;
}

.fallback-node rect {
  fill: rgba(13, 42, 55, 0.88);
  stroke: rgba(76, 201, 255, 0.72);
}

.fallback-node path {
  fill: rgba(0, 229, 184, 0.19);
  stroke: rgba(234, 246, 255, 0.68);
  stroke-linejoin: round;
}

.fallback-node--supplier rect {
  stroke: rgba(255, 176, 32, 0.8);
}

.fallback-node--market rect {
  stroke: rgba(0, 229, 184, 0.8);
}

@media (max-width: 1120px) {
  .network-story {
    grid-template-columns: minmax(300px, 0.62fr) minmax(560px, 1.38fr);
  }

  .network-story__copy {
    padding-left: 34px;
  }

  .network-story__copy h2 {
    font-size: clamp(46px, 5.4vw, 66px);
  }
}

@media (max-width: 900px) {
  .network-story {
    display: block;
    min-height: 0;
  }

  .network-story__copy {
    max-width: 720px;
    padding: 76px 24px 44px;
  }

  .network-story__copy h2 {
    font-size: clamp(48px, 11vw, 70px);
  }

  .network-story__visual {
    min-height: 700px;
  }

  .network-story__visual::before {
    background: linear-gradient(180deg, #050a12, transparent 14%);
    height: 110px;
    inset: 0 0 auto;
    width: auto;
  }

  .scenario-header {
    left: 20px;
    right: 20px;
  }

  .story-card {
    left: 20px;
    max-width: min(390px, calc(100vw - 40px));
    top: 74px;
  }

  .story-card[data-position="right"] {
    left: 20px;
    right: auto;
  }

  .phase-track {
    bottom: 20px;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: flex-start;
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 560px) {
  .network-story__copy {
    padding-top: 64px;
  }

  .network-story__visual {
    min-height: 620px;
  }

  .scenario-header {
    grid-template-columns: auto 1fr;
  }

  .cycle-progress {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  #motion-control {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .story-card {
    padding: 14px 16px 15px;
  }

  .story-card strong {
    font-size: 17px;
  }

  .phase-track span {
    font-size: 7px;
  }
}

@media (max-width: 900px) {
  .visual-option {
    grid-template-columns: 1fr;
  }

  .visual-option__number {
    margin-bottom: 28px;
  }

  .visual-option__figure {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .visual-options-hero,
  .visual-option-list {
    width: min(100% - 28px, 1380px);
  }

  .visual-options-hero {
    padding: 72px 0 52px;
  }

  .visual-option__copy {
    padding: 28px 24px 32px;
  }

  .edition-boundary {
    padding-top: 64px;
  }
}
