:root {
  --navy-950: #02091d;
  --navy-900: #05143a;
  --navy-800: #09235c;
  --navy-700: #0b347f;
  --blue-600: #006fff;
  --blue-500: #118cff;
  --cyan-300: #62c9ff;
  --ice-100: #eef7ff;
  --slate-700: #334866;
  --slate-500: #65758b;
  --slate-300: #b9c7d8;
  --slate-200: #dce5ee;
  --slate-100: #edf2f7;
  --white: #ffffff;
  --ink: #071630;
  --shell: 1220px;
  --radius: 18px;
  --shadow: 0 26px 70px rgba(2, 18, 56, .16);
  --heading: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid var(--cyan-300);
  outline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  z-index: 100;
  top: -100px;
  left: 20px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 0 0 8px 8px;
}

.skip-link:focus { top: 0; }

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

h1, h2, h3, p, blockquote { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--heading);
  line-height: .98;
  text-wrap: balance;
}

h1 { font-size: clamp(3.8rem, 7.8vw, 7.25rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2.7rem, 5vw, 4.8rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 84px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 9, 29, .86), rgba(2, 9, 29, 0));
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(2, 9, 29, .96);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-logo { display: block; flex: 0 0 auto; }
.brand-logo img { display: block; width: 100%; height: auto; }
.brand-logo--header { width: 138px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
}

.nav-home, .nav-menu > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 10px;
  color: #d5e4f4;
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
  transition: color .18s ease, background .18s ease;
}

.nav-menu > summary::-webkit-details-marker { display: none; }
.nav-home:hover, .nav-menu > summary:hover, .nav-home.is-active, .nav-menu.is-active > summary { color: var(--white); background: rgba(255, 255, 255, .1); }
.nav-menu { position: relative; }
.nav-menu[open] > summary span { transform: rotate(180deg); }

.nav-popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 260px;
  padding: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 13px;
  box-shadow: 0 22px 60px rgba(0, 12, 42, .3);
  transform: translateX(-50%);
}

.nav-popover::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
}

.nav-popover__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-popover__link span:last-child { color: var(--blue-600); opacity: 0; transition: opacity .18s ease, transform .18s ease; }
.nav-popover__link:hover, .nav-popover__link.is-active { color: var(--navy-800); background: var(--ice-100); }
.nav-popover__link:hover span:last-child { opacity: 1; transform: translate(2px, -2px); }

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
}

.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--white); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 21px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .015em;
  box-shadow: 0 12px 30px rgba(0, 111, 255, .22);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 16px 34px rgba(0, 111, 255, .3); }
.button--small { min-height: 42px; padding: 9px 14px; margin-left: 8px; font-size: .78rem; }
.button--ghost { color: var(--white); background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .4); box-shadow: none; backdrop-filter: blur(8px); }
.button--ghost:hover { background: rgba(255, 255, 255, .14); }
.button--light { color: var(--navy-900); background: var(--white); box-shadow: 0 14px 34px rgba(0, 0, 0, .16); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.eyebrow, .kicker {
  margin-bottom: 15px;
  color: var(--blue-600);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow--light { color: #8cd7ff; }

.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 830px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.home-hero__image, .page-hero__image, .photo-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__image { object-position: center; }
.home-hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 29, .98) 0%, rgba(2, 9, 29, .88) 30%, rgba(2, 9, 29, .2) 67%, rgba(2, 9, 29, .25) 100%),
    linear-gradient(0deg, rgba(2, 9, 29, .96) 0%, rgba(2, 9, 29, 0) 38%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 126px;
  padding-bottom: 180px;
}

.home-hero h1 { max-width: 830px; margin-bottom: 26px; font-size: clamp(4.4rem, 8.6vw, 8.4rem); }
.home-hero h1 span { color: #6dc8ff; }
.hero-lede { max-width: 710px; margin-bottom: 0; color: #d4e4f5; font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.6; }

.trust-ribbon {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: rgba(6, 24, 65, .82);
  border: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.trust-ribbon div { padding: 22px 26px; border-right: 1px solid rgba(255, 255, 255, .12); }
.trust-ribbon div:last-child { border-right: 0; }
.trust-ribbon strong, .trust-ribbon span { display: block; }
.trust-ribbon strong { margin-bottom: 3px; font-family: var(--heading); font-size: 1.25rem; letter-spacing: .01em; }
.trust-ribbon span { color: #a8bed7; font-size: .72rem; }

.section { position: relative; padding: 112px 0; }
.section--dark { color: var(--white); background: var(--navy-950); }
.section--dark::before { content: ""; position: absolute; inset: 0; opacity: .2; background: radial-gradient(circle at 70% 20%, rgba(17, 140, 255, .5), transparent 34%); pointer-events: none; }
.section--dark .shell { position: relative; }
.section--dark .section-intro > p:last-child { color: #aebed1; }

.section-intro { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(400px, 1.4fr); gap: 14px 50px; align-items: end; margin-bottom: 56px; }
.section-intro .kicker { grid-row: 1 / 3; align-self: start; padding-top: 12px; }
.section-intro h2 { max-width: 850px; margin-bottom: 0; }
.section-intro > p:last-child { max-width: 760px; margin-bottom: 0; color: var(--slate-500); font-size: 1.02rem; }

.section--statement { padding: 92px 0; background: var(--ice-100); }
.statement-grid { display: grid; grid-template-columns: .48fr 1.25fr .75fr; gap: 54px; align-items: start; }
.statement-grid blockquote { margin-bottom: 0; font-family: var(--heading); font-size: clamp(2.15rem, 4vw, 3.55rem); font-weight: 600; line-height: 1.06; letter-spacing: -.02em; }
.statement-grid > p:last-child { margin: 10px 0 0; color: var(--slate-700); }

.source-section { overflow: hidden; background: var(--white); }
.source-network { display: grid; grid-template-columns: 1fr .78fr 1fr; gap: 34px; align-items: center; }
.source-stack { display: grid; gap: 12px; }
.source-node { position: relative; min-height: 112px; padding: 22px 24px; background: #f7fafc; border: 1px solid var(--slate-200); border-radius: 11px; }
.source-node::after { content: ""; position: absolute; top: 50%; width: 35px; border-top: 1px solid #8fadd0; }
.source-stack--left .source-node::after { right: -35px; }
.source-stack--right .source-node::after { left: -35px; }
.source-node h3 { margin-bottom: 8px; font-size: 1.45rem; }
.source-node p { margin: 0; color: var(--slate-500); font-size: .875rem; }
.gage-core { position: relative; z-index: 2; display: grid; place-items: center; align-content: center; width: 100%; min-height: 0; aspect-ratio: 1; padding: 35px; color: var(--white); background: radial-gradient(circle at 50% 30%, #0e49a8, var(--navy-950) 68%); border: 1px solid #21549b; border-radius: 50%; box-shadow: 0 30px 70px rgba(4, 27, 77, .25), inset 0 0 0 12px rgba(255, 255, 255, .035); }
.gage-core > span:not(.gage-core__logo) { color: #9ecff8; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.gage-core__logo { display: grid; place-items: center; width: 94%; margin: 2px 0 5px; }
.gage-core__logo img { display: block; width: 100%; height: auto; }

/* Three-layer readiness model */
.readiness-section { overflow: hidden; background: var(--ice-100); }
.readiness-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.readiness-card { position: relative; min-height: 320px; padding: 32px; overflow: hidden; background: var(--white); border: 1px solid #d5e5f5; border-radius: 13px; box-shadow: 0 16px 38px rgba(2, 18, 56, .055); }
.readiness-card > span { color: var(--blue-600); font-family: var(--heading); font-size: .8rem; font-weight: 700; }
.readiness-card h3 { margin: 45px 0 13px; font-size: 2rem; }
.readiness-card p { min-height: 54px; margin-bottom: 24px; color: var(--slate-500); font-size: .86rem; }
.readiness-card > div { display: flex; flex-wrap: wrap; gap: 7px; }
.readiness-card b { padding: 6px 9px; color: var(--navy-700); background: var(--ice-100); border: 1px solid #d6e9fb; border-radius: 999px; font-size: .66rem; }
.readiness-card:nth-child(2) { color: var(--white); background: linear-gradient(145deg, #0d3a84, #071b45); border-color: #1a4e98; }
.readiness-card:nth-child(2) > span, .readiness-card:nth-child(2) h3 { color: var(--white); }
.readiness-card:nth-child(2) p { color: #b7cbe2; }
.readiness-card:nth-child(2) b { color: #dff3ff; background: rgba(98, 201, 255, .08); border-color: rgba(98, 201, 255, .22); }

.difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, .15); border-left: 1px solid rgba(255, 255, 255, .15); }
.difference-card { min-height: 280px; padding: 34px; border-right: 1px solid rgba(255, 255, 255, .15); border-bottom: 1px solid rgba(255, 255, 255, .15); }
.difference-card > span { color: var(--cyan-300); font-family: var(--heading); font-size: 1rem; }
.difference-card h3 { margin: 44px 0 14px; }
.difference-card p { margin-bottom: 0; color: #aebed1; font-size: .92rem; }

.cross-system-section { background: #f7fafc; }
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.story-card { min-height: 285px; padding: 34px; background: var(--white); border: 1px solid var(--slate-200); border-radius: 13px; box-shadow: 0 16px 38px rgba(2, 18, 56, .07); }
.story-card > span { color: var(--blue-600); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.story-card h3 { margin: 58px 0 15px; font-size: 2.15rem; }
.story-card p { max-width: 490px; margin: 0; color: var(--slate-500); font-size: .9rem; }

.section--interface { overflow: hidden; background: #f7fafc; }
.interface-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: start; }
.interface-card { overflow: hidden; margin: 0; background: var(--white); border: 1px solid var(--slate-200); border-radius: 13px; box-shadow: var(--shadow); }
.interface-card--1 { grid-column: 1 / 8; }
.interface-card--2 { grid-column: 8 / 13; margin-top: 70px; }
.interface-card--3 { grid-column: 3 / 11; margin-top: 10px; }
.interface-card__bar { display: flex; align-items: center; gap: 5px; height: 34px; padding: 0 12px; color: var(--slate-500); background: #f2f5f8; border-bottom: 1px solid var(--slate-200); }
.interface-card__bar > span { width: 7px; height: 7px; border-radius: 50%; background: #b5c1cf; }
.interface-card__bar > em { margin-left: auto; font-size: .62rem; font-style: normal; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.interface-card__viewport { height: 330px; overflow: hidden; background: #e6edf5; }
.interface-card__viewport img { width: 100%; min-height: 100%; object-fit: cover; object-position: top center; transition: transform .6s ease; }
.interface-card:hover .interface-card__viewport img { transform: scale(1.018); }
.interface-card figcaption { display: grid; gap: 5px; padding: 21px 23px 24px; }
.interface-card figcaption strong { font-family: var(--heading); font-size: 1.5rem; }
.interface-card figcaption span { color: var(--slate-500); font-size: .84rem; }
.interface-note { max-width: 760px; margin: 32px auto 0; color: var(--slate-500); font-size: .78rem; text-align: center; }

.flow-section { background: var(--white); }
.flow-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: 0; margin: 0; list-style: none; }
.flow-line li { position: relative; min-height: 180px; padding: 28px 27px; background: var(--ice-100); border-right: 1px solid #d5e5f5; }
.flow-line li:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.flow-line li:last-child { border-right: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.flow-line li:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; top: 50%; right: -15px; display: grid; place-items: center; width: 30px; height: 30px; color: var(--blue-600); background: var(--white); border: 1px solid var(--slate-200); border-radius: 50%; transform: translateY(-50%); }
.flow-line span { display: block; margin-bottom: 25px; color: var(--blue-600); font-family: var(--heading); font-size: .8rem; }
.flow-line strong, .flow-line small { display: block; }
.flow-line strong { font-family: var(--heading); font-size: 1.6rem; }
.flow-line small { margin-top: 7px; color: var(--slate-500); font-size: .75rem; line-height: 1.45; }

.section--roles { background: var(--ice-100); }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.role-card { position: relative; display: flex; flex-direction: column; min-height: 340px; padding: 30px; overflow: hidden; background: var(--white); border: 1px solid rgba(8, 49, 112, .09); border-radius: 12px; transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; }
.role-card::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(17, 140, 255, .2), transparent 67%); transition: transform .3s ease; }
.role-card:hover { color: var(--white); background: var(--navy-800); transform: translateY(-4px); box-shadow: var(--shadow); }
.role-card:hover::after { transform: scale(1.7); }
.role-card__number { color: var(--blue-600); font-family: var(--heading); font-size: .8rem; }
.role-card h3 { margin: 48px 0 15px; }
.role-card p { color: var(--slate-500); font-size: .86rem; }
.role-card:hover p { color: #b9cce2; }
.role-card .text-link { margin-top: auto; }
.text-link { color: var(--blue-600); font-size: .83rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.role-card:hover .text-link { color: var(--cyan-300); }

.photo-band { display: grid; align-items: center; min-height: 670px; overflow: hidden; color: var(--white); }
.photo-band > img { object-position: center; }
.photo-band__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 9, 29, .97), rgba(2, 9, 29, .78) 45%, rgba(2, 9, 29, .08)); }
.photo-band__content { position: relative; z-index: 2; }
.photo-band__content h2 { max-width: 720px; margin-bottom: 22px; }
.photo-band__content p:not(.eyebrow) { max-width: 600px; color: #c9d8e8; }
.photo-band__content .button { margin-top: 15px; }

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.page-hero__image { object-position: center; }
.page-fleet .page-hero__image { object-position: center 56%; }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 9, 29, .98) 0%, rgba(2, 9, 29, .86) 38%, rgba(2, 9, 29, .18) 72%), linear-gradient(0deg, rgba(2, 9, 29, .96), transparent 45%); }
.page-hero__content { position: relative; z-index: 2; padding-top: 126px; padding-bottom: 155px; }
.page-hero h1 { max-width: 920px; margin-bottom: 25px; font-size: clamp(4.1rem, 7.4vw, 7.1rem); }
.page-hero__content > p:not(.eyebrow) { max-width: 750px; margin-bottom: 0; color: #ceddef; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

.stat-strip {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: rgba(5, 20, 58, .88);
  border: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}
.stat-strip div { padding: 22px 30px; border-right: 1px solid rgba(255, 255, 255, .12); }
.stat-strip div:last-child { border: 0; }
.stat-strip strong, .stat-strip span { display: block; }
.stat-strip strong { font-family: var(--heading); font-size: 1.45rem; }
.stat-strip span { color: #a8bed7; font-size: .75rem; }

.source-band { padding: 25px 0; color: var(--white); background: var(--navy-800); border-top: 1px solid rgba(255, 255, 255, .1); }
.source-band .shell { display: flex; align-items: center; gap: 24px; }
.source-band .shell > span { flex: 0 0 auto; color: var(--cyan-300); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.source-band .shell > div { display: flex; flex-wrap: wrap; gap: 8px; }
.source-band b { padding: 6px 10px; color: #d6e7f8; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .13); border-radius: 999px; font-size: .72rem; font-weight: 600; }

.capabilities { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 360px; padding: 36px; background: #f7fafc; border: 1px solid var(--slate-200); border-radius: 13px; }
.feature-card__index { position: absolute; top: 32px; right: 32px; color: var(--blue-600); font-family: var(--heading); font-weight: 700; }
.feature-card h3 { max-width: 75%; margin: 38px 0 14px; font-size: 2.05rem; }
.feature-card p { color: var(--slate-500); font-size: .9rem; }
.feature-card ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 28px 0 0; list-style: none; }
.feature-card li { padding: 7px 10px; color: var(--navy-700); background: var(--ice-100); border: 1px solid #d6e9fb; border-radius: 999px; font-size: .7rem; font-weight: 700; }

.screenshot-section { overflow: hidden; background: var(--ice-100); }
.screenshot-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 70px; align-items: center; }
.screenshot-grid .section-intro { display: block; margin: 0; }
.screenshot-grid .section-intro .kicker { padding: 0; }
.screenshot-grid .section-intro h2 { margin-bottom: 24px; font-size: clamp(2.4rem, 4vw, 4.1rem); }
.screen-frame { margin: 0; overflow: hidden; background: var(--white); border: 1px solid #ccd9e6; border-radius: 14px; box-shadow: var(--shadow); transform: rotate(.5deg); }
.screen-frame__viewport { height: 480px; overflow: hidden; }
.screen-frame__viewport img { width: 100%; min-height: 100%; object-fit: cover; object-position: top center; }

.product-demo { color: var(--white); background: var(--navy-950); }
.demo-shell { padding: 42px; background: linear-gradient(150deg, #07183f, #030b22 70%); border: 1px solid rgba(130, 181, 236, .18); border-radius: 17px; box-shadow: 0 38px 90px rgba(0, 0, 0, .3); }
.demo-top { display: flex; justify-content: space-between; gap: 30px; align-items: end; padding-bottom: 34px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.demo-top h2 { max-width: 770px; margin-bottom: 0; font-size: clamp(2.5rem, 4.6vw, 4.6rem); }
.demo-status { flex: 0 0 auto; padding: 8px 11px; color: #9ccfff; background: rgba(17, 140, 255, .1); border: 1px solid rgba(98, 201, 255, .25); border-radius: 999px; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.demo-grid { display: grid; grid-template-columns: .85fr 1.45fr; gap: 22px; margin-top: 26px; }
.demo-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.demo-metrics div { display: grid; align-content: end; min-height: 135px; padding: 20px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .08); border-radius: 10px; }
.demo-metrics strong { color: var(--cyan-300); font-family: var(--heading); font-size: 2rem; }
.demo-metrics span { color: #9fb3cc; font-size: .69rem; }
.demo-queue { overflow: hidden; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); border-radius: 10px; }
.demo-queue__head, .demo-row { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 15px 18px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.demo-queue__head span { color: #778ca7; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.demo-row { grid-template-columns: 10px 1fr auto; gap: 12px; }
.demo-row:last-child { border: 0; }
.demo-row p { margin: 0; color: #dbe7f3; font-size: .78rem; }
.demo-row b { color: #93cfff; font-size: .65rem; text-transform: uppercase; }
.severity { width: 7px; height: 7px; border-radius: 50%; background: #4dbbff; box-shadow: 0 0 0 4px rgba(77, 187, 255, .1); }
.severity--2 { background: #ffbd4a; box-shadow: 0 0 0 4px rgba(255, 189, 74, .1); }
.severity--3 { background: #ff6b78; box-shadow: 0 0 0 4px rgba(255, 107, 120, .1); }

.differentiator { background: var(--white); }
.differentiator__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: center; }
.differentiator h2 { margin-bottom: 24px; }
.differentiator p:not(.kicker) { max-width: 740px; color: var(--slate-500); }
.differentiator ul { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--slate-200); }
.differentiator li { position: relative; padding: 18px 10px 18px 42px; border-bottom: 1px solid var(--slate-200); font-family: var(--heading); font-size: 1.25rem; font-weight: 600; }
.differentiator li::before { content: "✓"; position: absolute; left: 9px; color: var(--blue-600); font-family: var(--body); font-size: .85rem; }

.coming-soon { overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); }
.coming-soon::after { content: ""; position: absolute; top: -150px; right: -130px; width: 430px; height: 430px; border: 1px solid rgba(98, 201, 255, .16); border-radius: 50%; box-shadow: 0 0 0 80px rgba(98, 201, 255, .025), 0 0 0 160px rgba(98, 201, 255, .018); }
.coming-soon__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.coming-soon .section-intro { display: block; margin: 0; }
.coming-soon .section-intro .kicker { padding: 0; }
.coming-soon .section-intro h2 { margin-bottom: 22px; }
.coming-soon .section-intro > p:last-child { color: #afc0d6; }
.coming-soon__list { border-top: 1px solid rgba(255, 255, 255, .16); }
.coming-soon__list article { position: relative; padding: 28px 20px 28px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.coming-soon__list article > span { color: var(--cyan-300); font-size: .62rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.coming-soon__list h3 { margin: 8px 0 9px; font-size: 1.75rem; }
.coming-soon__list p { margin: 0; color: #afc0d6; font-size: .85rem; }

.section--related { background: var(--ice-100); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.related-card { display: flex; flex-direction: column; min-height: 250px; padding: 27px; background: var(--white); border: 1px solid var(--slate-200); border-radius: 11px; transition: color .2s ease, background .2s ease, transform .2s ease; }
.related-card > span { color: var(--blue-600); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.related-card h3 { margin: 35px 0 20px; font-size: 1.75rem; }
.related-card b { margin-top: auto; color: var(--blue-600); font-size: .75rem; text-transform: uppercase; }
.related-card:hover { color: var(--white); background: var(--navy-800); transform: translateY(-3px); }
.related-card:hover b, .related-card:hover > span { color: var(--cyan-300); }

.final-cta { padding: 80px 0; color: var(--white); background: linear-gradient(100deg, #0063e7, #0e8dff); }
.final-cta__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 35px; align-items: center; }
.brand-logo--cta { width: 150px; }
.final-cta .kicker { margin-bottom: 7px; color: #d9f1ff; }
.final-cta h2 { margin-bottom: 9px; font-size: clamp(2.5rem, 4vw, 4rem); }
.final-cta p:not(.kicker) { max-width: 680px; margin: 0; color: #d8edff; }

.site-footer { padding: 78px 0 24px; color: var(--white); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.7fr .55fr .65fr; gap: 90px; padding-bottom: 60px; }
.brand-logo--footer { width: min(100%, 360px); }
.footer-brand p { max-width: 480px; margin: 24px 0; color: #9eb2ca; }
.footer-links { display: grid; align-content: start; gap: 10px; font-size: .8rem; }
.footer-links strong { margin-bottom: 8px; color: #76c9ff; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { color: #b1c2d6; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: #6f839d; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .68rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }


/* Enhanced cross-system motion and conversion experience */
.hero-flow {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 72px 170px 72px minmax(250px, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 1120px;
  margin-top: 38px;
  padding: 18px 20px;
  background: rgba(4, 20, 56, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}
.hero-flow__group { min-width: 0; }
.hero-flow__label { display: block; margin-bottom: 8px; color: #82cfff; font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-flow__group > div { display: flex; flex-wrap: wrap; gap: 6px; }
.hero-flow__group b { padding: 5px 8px; color: #dcecff; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .11); border-radius: 999px; font-size: .62rem; font-weight: 700; }
.hero-flow__group--outputs b { color: #081a3f; background: #ccecff; border-color: #dff4ff; }
.hero-flow__lane { position: relative; height: 2px; overflow: visible; background: linear-gradient(90deg, rgba(98, 201, 255, .08), rgba(98, 201, 255, .9), rgba(98, 201, 255, .08)); }
.hero-flow__lane::after { content: ""; position: absolute; top: 50%; right: -2px; width: 8px; height: 8px; border-top: 2px solid #75d3ff; border-right: 2px solid #75d3ff; transform: translateY(-50%) rotate(45deg); }
.hero-flow__lane i { position: absolute; top: -3px; left: -6px; width: 8px; height: 8px; background: #a7e3ff; border-radius: 50%; box-shadow: 0 0 12px #43bfff; animation: hero-flow-particle 2.4s linear infinite; }
.hero-flow__lane i:nth-child(2) { animation-delay: -.8s; }
.hero-flow__lane i:nth-child(3) { animation-delay: -1.6s; }
.hero-flow__core { display: grid; justify-items: center; text-align: center; }
.brand-logo--hero-flow { width: 96px; }
.hero-flow__core small { margin-top: 8px; color: #cfe7ff; font-size: .54rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
@keyframes hero-flow-particle { from { left: -6px; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } to { left: calc(100% - 2px); opacity: 0; } }

.scenario-explorer { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr); gap: 18px; align-items: stretch; }
.scenario-tabs { display: grid; gap: 9px; align-content: start; }
.scenario-tab { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; width: 100%; padding: 18px; color: var(--slate-700); text-align: left; background: var(--white); border: 1px solid var(--slate-200); border-radius: 11px; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.scenario-tab span { color: var(--blue-600); font-family: var(--heading); font-weight: 700; }
.scenario-tab.is-active, .scenario-tab:hover { color: var(--white); background: var(--navy-800); border-color: var(--navy-800); transform: translateX(3px); }
.scenario-tab.is-active span, .scenario-tab:hover span { color: var(--cyan-300); }
.scenario-panels { min-width: 0; }
.scenario-panel[hidden] { display: none !important; }
.scenario-panel { height: 100%; padding: 38px; color: var(--white); background: linear-gradient(145deg, #071a48, #02091d 72%); border: 1px solid rgba(98, 201, 255, .2); border-radius: 15px; box-shadow: 0 28px 70px rgba(2, 18, 56, .18); }
.scenario-panel__intro > span { color: var(--cyan-300); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.scenario-panel__intro h3 { max-width: 760px; margin: 14px 0 12px; font-size: clamp(2.25rem, 4vw, 3.8rem); }
.scenario-panel__intro p { max-width: 720px; color: #b4c6db; }
.scenario-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 0; margin: 34px 0 0; list-style: none; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; overflow: hidden; }
.scenario-steps li { min-height: 215px; padding: 21px; background: rgba(4, 16, 45, .96); }
.scenario-steps li > span { display: block; margin-bottom: 38px; color: #65c8ff; font-family: var(--heading); font-size: .76rem; }
.scenario-steps b { display: block; margin-bottom: 9px; font-family: var(--heading); font-size: 1.25rem; }
.scenario-steps p { margin: 0; color: #9eb2cb; font-size: .76rem; line-height: 1.5; }

.loop-section { overflow: hidden; background: var(--white); }
.product-loop { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 18px; }
.product-loop__rail { display: grid; align-content: stretch; gap: 8px; }
.loop-stage { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; padding: 15px 14px; color: var(--slate-500); text-align: left; background: #f7fafc; border: 1px solid var(--slate-200); border-radius: 10px; cursor: pointer; }
.loop-stage span { color: var(--blue-600); font-family: var(--heading); }
.loop-stage b { font-size: .78rem; }
.loop-stage.is-active { color: var(--white); background: var(--navy-800); border-color: var(--navy-800); box-shadow: 0 12px 28px rgba(2, 18, 56, .14); }
.loop-stage[aria-selected="true"] { color: var(--white); background: var(--navy-800); border-color: var(--navy-800); box-shadow: 0 12px 28px rgba(2, 18, 56, .14); }
.loop-stage.is-active span, .loop-stage[aria-selected="true"] span { color: var(--cyan-300); }
.product-loop__screen { min-width: 0; overflow: hidden; color: var(--white); background: linear-gradient(145deg, #061944, #02091d 74%); border: 1px solid #153f7e; border-radius: 15px; box-shadow: var(--shadow); }
.product-loop__chrome { display: flex; align-items: center; gap: 6px; height: 46px; padding: 0 15px; background: rgba(255, 255, 255, .045); border-bottom: 1px solid rgba(255, 255, 255, .09); }
.product-loop__chrome > span { width: 7px; height: 7px; background: #66809d; border-radius: 50%; }
.product-loop__chrome > b { margin-left: 6px; color: #9eb6d1; font-size: .64rem; letter-spacing: .09em; text-transform: uppercase; }
.product-loop__chrome button { margin-left: auto; padding: 5px 9px; color: #a6dfff; background: transparent; border: 1px solid rgba(98, 201, 255, .28); border-radius: 999px; font-size: .62rem; cursor: pointer; }
.product-loop__progress { height: 3px; background: rgba(255, 255, 255, .08); }
.product-loop__progress i { display: block; width: var(--loop-progress, 25%); height: 100%; background: linear-gradient(90deg, var(--blue-500), var(--cyan-300)); transition: width .45s ease; }
.product-loop__scenes { min-height: 430px; }
.loop-scene[hidden] { display: none !important; }
.loop-scene { display: grid; grid-template-columns: 130px 1fr; min-height: 430px; }
.loop-scene__status { display: grid; align-content: center; justify-items: center; gap: 7px; background: rgba(255, 255, 255, .035); border-right: 1px solid rgba(255, 255, 255, .08); }
.loop-scene__status span { color: var(--cyan-300); font-family: var(--heading); font-size: 2.8rem; }
.loop-scene__status b { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.loop-scene__content { display: grid; align-content: center; max-width: 760px; padding: 48px; }
.loop-scene__content h3 { margin: 0 0 16px; font-size: clamp(2.8rem, 5vw, 5rem); }
.loop-scene__content > p:not(.kicker) { max-width: 650px; color: #b9c9dd; font-size: .98rem; }
.loop-scene__evidence { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.loop-scene__evidence span { padding: 7px 10px; color: #c7e7ff; background: rgba(98, 201, 255, .08); border: 1px solid rgba(98, 201, 255, .2); border-radius: 999px; font-size: .68rem; }

.metric-section { color: var(--white); background: var(--navy-950); }
.metric-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(17, 140, 255, .23), transparent 34%), radial-gradient(circle at 80% 70%, rgba(98, 201, 255, .12), transparent 27%); pointer-events: none; }
.metric-section .shell { position: relative; }
.metric-section .section-intro > p:last-child { color: #aebed1; }
.metric-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px; background: rgba(255, 255, 255, .11); }
.metric-card { min-height: 245px; padding: 26px 22px; background: rgba(3, 13, 39, .96); }
.metric-card strong { display: block; margin: 24px 0 2px; color: var(--cyan-300); font-family: var(--heading); font-size: clamp(2.7rem, 4vw, 4.2rem); line-height: 1; }
.metric-card h3 { margin: 0 0 9px; font-size: 1.35rem; }
.metric-card p { margin: 0; color: #90a7c1; font-size: .72rem; }

/* Larger role-specific interface showcases */
.demo-workspace { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(230px, .75fr); gap: 12px; }
.demo-hotspot { position: absolute; z-index: 3; display: grid; place-items: center; width: 25px; height: 25px; color: var(--navy-950); background: var(--cyan-300); border: 3px solid #dff5ff; border-radius: 50%; box-shadow: 0 0 0 6px rgba(98, 201, 255, .12), 0 8px 18px rgba(0, 0, 0, .3); font-family: var(--heading); font-size: .68rem; font-weight: 800; cursor: help; }
.demo-hotspot::after { content: attr(data-label); position: absolute; bottom: calc(100% + 10px); left: 50%; width: max-content; max-width: 180px; padding: 7px 9px; color: #dcecff; background: #061838; border: 1px solid rgba(98, 201, 255, .25); border-radius: 7px; opacity: 0; pointer-events: none; transform: translate(-50%, 5px); transition: opacity .18s ease, transform .18s ease; font-family: var(--body); font-size: .58rem; font-weight: 700; }
.demo-hotspot:hover::after { opacity: 1; transform: translate(-50%, 0); }
.demo-hotspot--1 { top: 24%; left: 4%; }
.demo-hotspot--2 { top: 20%; right: 4%; }
.demo-hotspot--3 { right: 37%; bottom: 8%; }
.demo-evidence { padding: 22px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); border-radius: 10px; }
.demo-evidence > span { color: var(--cyan-300); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.demo-evidence h3 { margin: 18px 0 12px; font-size: 1.55rem; line-height: 1.08; }
.demo-evidence p { color: #98adc6; font-size: .76rem; }
.demo-evidence__sources { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.demo-evidence__sources b { padding: 5px 7px; color: #bce7ff; background: rgba(98, 201, 255, .07); border: 1px solid rgba(98, 201, 255, .17); border-radius: 999px; font-size: .58rem; }
.demo-owner { margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .1); }
.demo-owner small, .demo-owner strong { display: block; }
.demo-owner small { color: #7189a4; font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; }
.demo-owner strong { margin-top: 3px; color: #dfeeff; font-family: var(--heading); font-size: 1.25rem; }
.demo-row.is-selected { background: rgba(17, 140, 255, .09); box-shadow: inset 3px 0 0 var(--cyan-300); }
.demo-annotations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.demo-annotations span { padding: 12px 14px; color: #8fa7c3; background: rgba(255, 255, 255, .035); border: 1px solid rgba(255, 255, 255, .07); border-radius: 8px; font-size: .68rem; }
.demo-annotations b { margin-right: 7px; color: var(--cyan-300); font-family: var(--heading); }
.product-demo--command .demo-grid { grid-template-columns: 1fr; }
.product-demo--command .demo-metrics { grid-template-columns: repeat(4, 1fr); }
.product-demo--command .demo-metrics div { min-height: 105px; }
.product-demo--timeline .demo-grid { grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr); }
.product-demo--timeline .demo-workspace { grid-template-columns: 1fr; }
.product-demo--timeline .demo-evidence { display: grid; grid-template-columns: 1fr 1.2fr; column-gap: 20px; }
.product-demo--timeline .demo-evidence > span, .product-demo--timeline .demo-evidence h3 { grid-column: 1 / -1; }
.screen-frame.reveal { transform: rotate(.5deg) translateY(18px); }
.screen-frame.reveal.is-visible { transform: rotate(.5deg); }
.screenshot-section--reverse .screen-frame { order: -1; transform: rotate(-.5deg); }
.screenshot-section--reverse .screen-frame.reveal { transform: rotate(-.5deg) translateY(18px); }
.screenshot-section--reverse .screen-frame.reveal.is-visible { transform: rotate(-.5deg); }

/* Strengths-first provider briefing */
.briefing-section { overflow: hidden; color: var(--white); background: linear-gradient(135deg, #071b45, #02091d); }
.briefing-section .section-intro { display: block; margin-bottom: 0; }
.briefing-section .section-intro .kicker { padding: 0; color: var(--cyan-300); }
.briefing-section .section-intro h2 { margin: 12px 0 20px; color: var(--white); }
.briefing-section .section-intro > p:last-child { color: #b5c9df; }
.briefing-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 55px; align-items: stretch; }
.briefing-copy { display: flex; flex-direction: column; justify-content: center; }
.briefing-principle { margin: 28px 0 0; padding: 16px 18px; color: #dff3ff; background: rgba(98, 201, 255, .07); border: 1px solid rgba(98, 201, 255, .2); border-radius: 9px; font-family: var(--heading); font-size: 1.25rem; }
.briefing-board { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid rgba(255, 255, 255, .14); border-radius: 13px; background: rgba(255, 255, 255, .035); }
.briefing-board article { min-height: 340px; padding: 30px 26px; border-right: 1px solid rgba(255, 255, 255, .12); }
.briefing-board article:last-child { border-right: 0; }
.briefing-board article > span { display: block; margin-bottom: 48px; color: var(--cyan-300); font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.briefing-board ul { display: grid; gap: 16px; padding: 0; margin: 0; list-style: none; }
.briefing-board li { position: relative; padding-left: 16px; color: #dbe8f5; font-family: var(--heading); font-size: 1.18rem; line-height: 1.12; }
.briefing-board li::before { content: ""; position: absolute; top: .45em; left: 0; width: 6px; height: 6px; background: var(--cyan-300); border-radius: 50%; }

.comparison-section { background: #f7fafc; }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--slate-200); border-radius: 13px; box-shadow: 0 18px 45px rgba(2, 18, 56, .07); }
.comparison-table { width: 100%; min-width: 860px; border-collapse: collapse; background: var(--white); }
.comparison-table th, .comparison-table td { padding: 20px 22px; vertical-align: top; text-align: left; border-right: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); font-size: .8rem; line-height: 1.45; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table thead th { color: var(--navy-800); background: #edf4fb; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.comparison-table tbody th { width: 18%; color: var(--navy-800); font-family: var(--heading); font-size: 1.05rem; }
.comparison-table__gage { color: #062d6f; background: #edf7ff; }
.comparison-table thead .comparison-table__gage { color: var(--white); background: var(--navy-800); }

/* Dedicated demo-request page */
.demo-request-hero { position: relative; min-height: 900px; padding: 150px 0 100px; overflow: hidden; color: var(--white); background: linear-gradient(145deg, #02091d 0%, #061a48 54%, #092f70 100%); }
.demo-request-ambient { position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(98, 201, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(98, 201, 255, .08) 1px, transparent 1px), radial-gradient(circle at 18% 26%, rgba(17, 140, 255, .55), transparent 28%), radial-gradient(circle at 88% 75%, rgba(98, 201, 255, .2), transparent 23%); background-size: 48px 48px, 48px 48px, auto, auto; mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.3)); }
.demo-request-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .82fr); gap: 70px; align-items: start; }
.demo-request-copy { padding-top: 26px; }
.demo-request-copy h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(4rem, 7vw, 7rem); }
.demo-request-copy > p:not(.eyebrow):not(.demo-request-alt) { max-width: 660px; color: #c5d7e9; font-size: 1.04rem; }
.demo-request-flow { display: grid; grid-template-columns: 1fr 120px .75fr; gap: 16px; align-items: center; max-width: 690px; margin: 38px 0; padding: 18px; background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px; backdrop-filter: blur(10px); }
.demo-request-flow > div { display: flex; flex-wrap: wrap; gap: 6px; }
.demo-request-flow > div:last-child { justify-content: flex-end; }
.demo-request-flow > div span { padding: 5px 8px; color: #c9e8ff; background: rgba(98, 201, 255, .08); border: 1px solid rgba(98, 201, 255, .18); border-radius: 999px; font-size: .6rem; }
.brand-logo--demo { width: 104px; margin: auto; }
.demo-request-points { display: grid; gap: 14px; max-width: 660px; padding: 0; margin: 0; list-style: none; }
.demo-request-points li { position: relative; padding-left: 25px; color: #b3c7dd; font-size: .85rem; }
.demo-request-points li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan-300); font-weight: 800; }
.demo-request-points b { color: var(--white); }
.demo-request-alt { margin-top: 28px; color: #88a6c5; font-size: .78rem; }
.demo-request-alt a { color: #bfe8ff; text-decoration: underline; text-underline-offset: 3px; }
.demo-form-card { padding: 34px; color: var(--ink); background: rgba(255, 255, 255, .985); border: 1px solid rgba(255, 255, 255, .7); border-radius: 17px; box-shadow: 0 34px 90px rgba(0, 0, 0, .32); }
.demo-form-card__head { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--slate-200); }
.demo-form-card__head .kicker { margin-bottom: 8px; }
.demo-form-card__head h2 { margin-bottom: 8px; font-size: clamp(2.5rem, 4vw, 3.8rem); }
.demo-form-card__head p:last-child { margin: 0; color: var(--slate-500); font-size: .78rem; }
.demo-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-form label, .demo-interest legend { display: grid; gap: 7px; color: var(--navy-800); font-size: .72rem; font-weight: 700; }
.demo-form input, .demo-form select, .demo-form textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid #c9d5e2; border-radius: 8px; outline: 0; transition: border-color .16s ease, box-shadow .16s ease; }
.demo-form input:focus, .demo-form select:focus, .demo-form textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(17, 140, 255, .12); }
.demo-form textarea { min-height: 116px; resize: vertical; }
.demo-interest { padding: 0; margin: 0; border: 0; }
.demo-interest legend { margin-bottom: 8px; }
.demo-interest > div { display: flex; flex-wrap: wrap; gap: 7px; }
.demo-interest label { position: relative; display: block; }
.demo-interest input { position: absolute; opacity: 0; pointer-events: none; }
.demo-interest span { display: block; padding: 7px 10px; color: var(--slate-700); background: #f5f8fb; border: 1px solid var(--slate-200); border-radius: 999px; cursor: pointer; font-size: .65rem; font-weight: 700; transition: color .15s ease, background .15s ease, border-color .15s ease; }
.demo-interest input:checked + span { color: #fff; background: var(--navy-800); border-color: var(--navy-800); }
.demo-interest input:focus-visible + span { outline: 3px solid var(--cyan-300); outline-offset: 2px; }
.form-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; width: 1px !important; height: 1px !important; }
.demo-submit { width: 100%; margin-top: 2px; cursor: pointer; }
.demo-form-note { margin: -6px 0 0; color: var(--slate-500); font-size: .67rem; text-align: center; }
.demo-form[hidden], .demo-form-success[hidden], .demo-form-error[hidden] { display: none; }
.demo-submit:disabled { cursor: wait; opacity: .72; }
.demo-form-error { margin: -4px 0 0; padding: 12px 14px; color: #8a1f2b; background: #fff1f3; border: 1px solid #f3b8c0; border-radius: 8px; font-size: .72rem; line-height: 1.5; }
.demo-form-success { display: grid; gap: 14px; padding: 16px 0 6px; outline: 0; }
.demo-form-success__mark { display: grid; place-items: center; width: 54px; height: 54px; color: #06356f; background: #e5f5ff; border: 1px solid #a9dcff; border-radius: 50%; font-size: 1.7rem; font-weight: 800; }
.demo-form-success .kicker { margin: 4px 0 -6px; }
.demo-form-success h2 { margin: 0; font-size: clamp(2.7rem, 4vw, 4rem); }
.demo-form-success p:not(.kicker) { margin: 0; color: var(--slate-600); font-size: .9rem; line-height: 1.65; }
.demo-form-success .button { justify-self: start; margin-top: 6px; }
.demo-next { background: var(--ice-100); }
.demo-next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.demo-next-grid article { min-height: 260px; padding: 29px; background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px; }
.demo-next-grid article > span { color: var(--blue-600); font-family: var(--heading); }
.demo-next-grid h3 { margin: 46px 0 12px; }
.demo-next-grid p { margin: 0; color: var(--slate-500); font-size: .84rem; }

@media (max-width: 1080px) {
  .site-nav { gap: 2px; }
  .nav-home, .nav-menu > summary { padding-inline: 7px; font-size: .75rem; }
  .button--small { display: none; }
  .statement-grid { grid-template-columns: .4fr 1.3fr; }
  .statement-grid > p:last-child { grid-column: 2; }
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .source-network { grid-template-columns: 1fr .65fr 1fr; gap: 24px; }
  .source-node::after { width: 25px; }
  .source-stack--left .source-node::after { right: -25px; }
  .source-stack--right .source-node::after { left: -25px; }
  .gage-core { min-height: 0; padding: 25px; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .section-intro { grid-template-columns: .45fr 1fr; }
  .screenshot-grid { gap: 38px; }
  .screen-frame__viewport { height: 390px; }
  .differentiator__grid { gap: 55px; }
  .coming-soon__grid { gap: 55px; }
  .hero-flow { grid-template-columns: minmax(190px, 1fr) 44px 140px 44px minmax(190px, 1fr); gap: 9px; padding-inline: 14px; }
  .brand-logo--hero-flow { width: 78px; }
  .scenario-steps { grid-template-columns: repeat(2, 1fr); }
  .scenario-steps li { min-height: 175px; }
  .product-loop { grid-template-columns: 185px minmax(0, 1fr); }
  .metric-wall { grid-template-columns: repeat(3, 1fr); }
  .metric-card:nth-child(4), .metric-card:nth-child(5) { min-height: 210px; }
  .demo-workspace { grid-template-columns: 1fr; }
  .demo-request-grid { grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr); gap: 40px; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 34px), var(--shell)); }
  .site-header { height: 72px; background: rgba(2, 9, 29, .94); }
  .brand-logo--header { width: 120px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    width: min(88vw, 390px);
    display: none;
    align-items: stretch;
    padding: 18px;
    overflow-y: auto;
    color: var(--white);
    background: rgba(2, 9, 29, .985);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, .35);
  }
  .site-nav.is-open { display: block; }
  .nav-home, .nav-menu > summary { justify-content: space-between; padding: 14px 12px; font-size: .9rem; border-bottom: 1px solid rgba(255, 255, 255, .08); border-radius: 0; }
  .nav-menu { width: 100%; }
  .nav-popover { position: static; width: 100%; padding: 5px 0 8px 13px; color: var(--white); background: transparent; border: 0; border-radius: 0; box-shadow: none; transform: none; }
  .nav-popover::before { display: none; }
  .nav-popover__link { color: #a9bdd5; }
  .nav-popover__link:hover, .nav-popover__link.is-active { color: var(--white); background: rgba(255, 255, 255, .07); }
  .section { padding: 82px 0; }
  .home-hero { min-height: 760px; }
  .home-hero__wash { background: linear-gradient(90deg, rgba(2, 9, 29, .97), rgba(2, 9, 29, .72)), linear-gradient(0deg, rgba(2, 9, 29, .96), transparent 48%); }
  .home-hero__content { padding-top: 112px; padding-bottom: 205px; }
  .home-hero h1 { font-size: clamp(3.9rem, 14vw, 6rem); }
  .trust-ribbon { grid-template-columns: repeat(2, 1fr); }
  .trust-ribbon div { padding: 14px 17px; }
  .trust-ribbon div:nth-child(2) { border-right: 0; }
  .trust-ribbon div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .section-intro { display: block; }
  .section-intro .kicker { padding: 0; }
  .section-intro h2 { margin-bottom: 20px; }
  .statement-grid { display: block; }
  .statement-grid .kicker { margin-bottom: 28px; }
  .statement-grid > p:last-child { margin-top: 28px; }
  .source-network { grid-template-columns: 1fr; }
  .source-stack--left, .source-stack--right { grid-template-columns: repeat(2, 1fr); }
  .source-node::after { display: none; }
  .gage-core { grid-row: 2; width: 280px; min-height: 280px; margin: 8px auto; }
  .source-stack--right { grid-row: 3; }
  .story-grid { grid-template-columns: 1fr; }
  .interface-card--1, .interface-card--2, .interface-card--3 { grid-column: 1 / -1; margin-top: 0; }
  .interface-card__viewport { height: 300px; }
  .flow-line { grid-template-columns: 1fr; }
  .flow-line li { min-height: auto; border-right: 0; border-bottom: 1px solid #d5e5f5; }
  .flow-line li:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .flow-line li:last-child { border: 0; border-radius: 0 0 var(--radius) var(--radius); }
  .flow-line li:not(:last-child)::after { top: auto; right: 28px; bottom: -15px; transform: rotate(90deg); }
  .page-hero { min-height: 730px; }
  .page-hero__content { padding-top: 112px; padding-bottom: 175px; }
  .page-hero h1 { font-size: clamp(3.6rem, 12vw, 5.9rem); }
  .stat-strip div { padding: 17px; }
  .source-band .shell { display: block; }
  .source-band .shell > span { display: block; margin-bottom: 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 320px; }
  .screenshot-grid, .demo-grid, .differentiator__grid, .coming-soon__grid { grid-template-columns: 1fr; }
  .screen-frame__viewport { height: 340px; }
  .demo-top { display: block; }
  .demo-status { display: inline-block; margin-top: 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 210px; }
  .final-cta__inner { grid-template-columns: auto 1fr; }
  .final-cta__inner .button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-brand { grid-column: 1 / -1; }
  .home-hero { min-height: 1010px; }
  .home-hero__content { padding-top: 112px; padding-bottom: 190px; }
  .hero-flow { grid-template-columns: 1fr; gap: 9px; max-width: 620px; margin-top: 28px; }
  .brand-logo--hero-flow { width: 100px; }
  .hero-flow__group { text-align: center; }
  .hero-flow__group > div { justify-content: center; }
  .hero-flow__lane { justify-self: center; width: 2px; height: 32px; background: linear-gradient(180deg, rgba(98, 201, 255, .08), rgba(98, 201, 255, .9), rgba(98, 201, 255, .08)); }
  .hero-flow__lane::after { top: auto; right: auto; bottom: -2px; left: 50%; transform: translateX(-50%) rotate(135deg); }
  .hero-flow__lane i { top: -6px; left: -3px; animation: hero-flow-particle-vertical 2.4s linear infinite; }
  .scenario-explorer { grid-template-columns: 1fr; }
  .readiness-grid { grid-template-columns: 1fr; }
  .readiness-card { min-height: 0; }
  .briefing-grid { grid-template-columns: 1fr; gap: 32px; }
  .briefing-board { grid-template-columns: repeat(3, 1fr); }
  .briefing-board article { min-height: 280px; padding: 24px 20px; }
  .scenario-tabs { grid-template-columns: repeat(2, 1fr); }
  .scenario-tab { grid-template-columns: 1fr; gap: 4px; align-content: start; min-height: 120px; padding: 14px; }
  .scenario-tab.is-active, .scenario-tab:hover { transform: translateY(-2px); }
  .scenario-panel { padding: 28px; }
  .scenario-steps { grid-template-columns: repeat(2, 1fr); }
  .product-loop { grid-template-columns: 1fr; }
  .product-loop__rail { grid-template-columns: repeat(4, 1fr); }
  .loop-stage { grid-template-columns: 1fr; gap: 3px; }
  .loop-scene__content { padding: 36px; }
  .metric-wall { grid-template-columns: repeat(2, 1fr); }
  .product-demo--command .demo-metrics { grid-template-columns: repeat(2, 1fr); }
  .product-demo--timeline .demo-grid { grid-template-columns: 1fr; }
  .product-demo--timeline .demo-evidence { display: block; }
  .demo-annotations { grid-template-columns: 1fr; }
  .demo-hotspot { display: none; }
  .demo-request-hero { padding-top: 120px; }
  .demo-request-grid { grid-template-columns: 1fr; }
  .demo-request-copy { padding-top: 0; }
  .demo-request-copy h1 { font-size: clamp(3.6rem, 11vw, 5.8rem); }
  .demo-form-card { max-width: 680px; }
  .demo-next-grid { grid-template-columns: 1fr; }
}

@keyframes hero-flow-particle-vertical { from { top: -6px; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } to { top: calc(100% - 2px); opacity: 0; } }

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .brand-logo--header { width: 112px; }
  .section { padding: 68px 0; }
  h2 { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .home-hero { min-height: 790px; }
  .home-hero__image { object-position: 62% center; }
  .home-hero__content { padding-top: 104px; padding-bottom: 226px; }
  .home-hero h1 { font-size: clamp(3.45rem, 17vw, 4.9rem); }
  .hero-lede { font-size: .98rem; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .trust-ribbon { width: calc(100% - 28px); }
  .trust-ribbon strong { font-size: 1rem; }
  .trust-ribbon span { font-size: .63rem; }
  .difference-grid, .role-grid { grid-template-columns: 1fr; }
  .source-stack--left, .source-stack--right { grid-template-columns: 1fr; }
  .gage-core { width: 240px; min-height: 240px; }
  .story-card { min-height: 250px; padding: 27px; }
  .difference-card { min-height: 240px; }
  .role-card { min-height: 300px; }
  .interface-card__viewport { height: 220px; }
  .photo-band { min-height: 710px; }
  .photo-band__scrim { background: linear-gradient(0deg, rgba(2, 9, 29, .98) 0%, rgba(2, 9, 29, .72) 70%, rgba(2, 9, 29, .2)); }
  .photo-band__content { align-self: end; padding-bottom: 45px; }
  .page-hero { min-height: 790px; }
  .page-hero__scrim { background: linear-gradient(0deg, rgba(2, 9, 29, .98) 0%, rgba(2, 9, 29, .74) 68%, rgba(2, 9, 29, .25)); }
  .page-hero__image { object-position: 58% center; }
  .page-hero__content { padding-top: 104px; padding-bottom: 206px; }
  .page-hero h1 { font-size: clamp(3.25rem, 15vw, 4.8rem); }
  .stat-strip { width: calc(100% - 28px); }
  .stat-strip div { padding: 14px 10px; }
  .stat-strip strong { font-size: 1.05rem; }
  .stat-strip span { font-size: .59rem; }
  .feature-card { min-height: 0; padding: 27px; }
  .feature-card h3 { margin-top: 48px; }
  .screen-frame__viewport { height: 245px; }
  .demo-shell { padding: 23px; }
  .demo-metrics { grid-template-columns: 1fr 1fr; }
  .demo-metrics div { min-height: 110px; padding: 14px; }
  .demo-queue__head { grid-template-columns: 1fr; gap: 3px; }
  .demo-row { grid-template-columns: 8px 1fr; }
  .demo-row b { grid-column: 2; }
  .differentiator__grid, .coming-soon__grid { gap: 42px; }
  .final-cta__inner { display: block; }
  .brand-logo--cta { width: 132px; margin-bottom: 22px; }
  .brand-logo--footer { width: min(100%, 310px); }
  .final-cta .button { width: auto; margin-top: 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 7px; }
  .home-hero { min-height: 1160px; }
  .home-hero__content { padding-top: 104px; padding-bottom: 215px; }
  .hero-flow { padding: 14px; }
  .hero-flow__group b { font-size: .58rem; }
  .briefing-board { grid-template-columns: 1fr; }
  .briefing-board article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .briefing-board article:last-child { border-bottom: 0; }
  .briefing-board article > span { margin-bottom: 24px; }
  .scenario-tabs { grid-template-columns: 1fr; }
  .scenario-tab { min-height: 0; grid-template-columns: 34px 1fr; gap: 8px; }
  .scenario-steps { grid-template-columns: 1fr; }
  .scenario-steps li { min-height: 0; }
  .scenario-steps li > span { margin-bottom: 18px; }
  .product-loop__rail { grid-template-columns: repeat(2, 1fr); }
  .loop-scene { grid-template-columns: 1fr; min-height: 480px; }
  .loop-scene__status { grid-template-columns: auto auto; justify-content: start; padding: 18px 24px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .loop-scene__status span { font-size: 1.8rem; }
  .loop-scene__content { padding: 28px 24px; }
  .loop-scene__content h3 { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  .metric-wall { grid-template-columns: 1fr; }
  .metric-card { min-height: 190px; }
  .metric-card strong { margin-top: 22px; }
  .demo-metrics, .product-demo--command .demo-metrics { grid-template-columns: 1fr 1fr; }
  .demo-request-hero { padding: 105px 0 70px; }
  .demo-request-flow { grid-template-columns: 1fr; text-align: center; }
  .demo-request-flow > div, .demo-request-flow > div:last-child { justify-content: center; }
  .brand-logo--demo { width: 92px; }
  .demo-form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .demo-interest > div { display: grid; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-flow__lane i { animation: none !important; opacity: .55; left: 45%; top: -3px; }
}
