
:root {
  --navy-950: #061520;
  --navy-900: #071827;
  --navy-850: #0a2132;
  --navy-800: #0d2a3e;
  --ink: #102231;
  --ink-soft: #324b5d;
  --muted: #617485;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-blue: #edf6fb;
  --line: #dce7ee;
  --blue: #2f7dd3;
  --blue-light: #58a6e7;
  --green: #60b84a;
  --green-dark: #4b9e39;
  --mint: #bff4c5;
  --teal: #2f9b99;
  --amber: #e7a83f;
  --shadow-sm: 0 10px 30px rgba(9, 34, 51, 0.08);
  --shadow-md: 0 22px 70px rgba(3, 20, 32, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 4.3vw, 4.1rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  font-weight: 720;
}

p {
  color: var(--muted);
}

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--navy-900);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #86d7d3;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: #071827;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(96, 184, 74, 0.22);
  font-size: 0.93rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #6cc955;
  box-shadow: 0 16px 34px rgba(96, 184, 74, 0.3);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(88, 166, 231, 0.55);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

.button-secondary {
  border-color: var(--navy-900);
  color: white;
  background: var(--navy-900);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(220, 231, 238, 0.82);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 168px;
}

.brand img {
  width: 100%;
  height: auto;
}

.product-mark {
  display: inline-flex;
  align-items: center;
  padding-left: 23px;
  border-left: 1px solid var(--line);
}

.product-mark img {
  display: block;
  width: 140px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 42px;
  color: white;
  background:
    linear-gradient(120deg, rgba(47, 125, 211, 0.11), transparent 45%),
    radial-gradient(circle at 78% 13%, rgba(47, 155, 153, 0.19), transparent 27%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 50%, #0d2b3f);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(88, 166, 231, 0.25);
  pointer-events: none;
}

.hero-orb-one {
  top: -390px;
  right: -220px;
  width: 720px;
  height: 720px;
}

.hero-orb-two {
  right: 40px;
  bottom: -420px;
  width: 620px;
  height: 620px;
  border-color: rgba(96, 184, 74, 0.25);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  padding-bottom: 70px;
}

.hero h1 {
  max-width: 720px;
  color: white;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #c9d9e4;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #aebfcb;
  font-size: 0.88rem;
}

.proof-check {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(191, 244, 197, 0.4);
  border-radius: 50%;
  color: var(--mint);
  background: rgba(96, 184, 74, 0.1);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 15% 5% 5%;
  border-radius: 50%;
  content: "";
  background: rgba(90, 255, 105, 0.34);
  filter: blur(65px);
}

.hero-visual img {
  width: 115%;
  max-width: none;
  margin-left: -8%;
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.3));
}

.visual-label {
  position: absolute;
  z-index: 3;
  top: 4%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #d8e5ec;
  background: rgba(5, 20, 31, 0.72);
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(96, 184, 74, 0.15);
}

.scope-strip {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.scope-strip span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #d3e2ea;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 700;
}

.intro-section {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p {
  max-width: 690px;
  margin: 0 auto;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.section-heading.split h2 {
  color: white;
}

.section-heading.split p {
  margin-bottom: 3px;
  color: #b9cbd7;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.challenge-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 1px 0 rgba(8, 36, 55, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
  border-color: #cadbe6;
  box-shadow: var(--shadow-sm);
}

.challenge-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 14px;
}

.icon-box svg,
.coverage-icon svg,
.source-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box.green {
  color: var(--green-dark);
  background: rgba(96, 184, 74, 0.12);
}

.icon-box.blue {
  color: var(--blue);
  background: rgba(47, 125, 211, 0.11);
}

.icon-box.teal {
  color: var(--teal);
  background: rgba(47, 155, 153, 0.11);
}

.icon-box.amber {
  color: #b4740e;
  background: rgba(231, 168, 63, 0.15);
}

.coverage-section {
  color: white;
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 125, 211, 0.14), transparent 30%),
    linear-gradient(155deg, var(--navy-900), #0c2a3e);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.coverage-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.coverage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 166, 231, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.coverage-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(134, 215, 211, 0.25);
  border-radius: 16px;
  color: #8de0dc;
  background: rgba(47, 155, 153, 0.09);
}

.coverage-card h3 {
  color: white;
}

.coverage-card p {
  margin-bottom: 0;
  color: #b9cbd7;
  font-size: 0.94rem;
}

.coverage-note {
  max-width: 820px;
  margin: 30px auto 0;
  color: #9fb3bf;
  font-size: 0.83rem;
  text-align: center;
}

.workflow-section {
  background: white;
}

.workflow-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}

.workflow-step {
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, white, #f8fbfd);
}

.workflow-step::after {
  position: absolute;
  z-index: 2;
  top: 46px;
  right: -18px;
  width: 34px;
  height: 1px;
  content: "";
  background: #bad0df;
}

.workflow-step:last-child::after {
  display: none;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 10px 22px rgba(47, 125, 211, 0.2);
  font-weight: 800;
}

.workflow-step p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.change-demo {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(47, 125, 211, 0.16);
  border-radius: 30px;
  background: #f4f9fc;
  box-shadow: 0 26px 70px rgba(5, 31, 48, 0.12);
}

.change-demo-graphic::before,
.change-demo-graphic::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.change-demo-graphic::before {
  top: 80px;
  left: -110px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(47, 125, 211, 0.14), rgba(47, 125, 211, 0) 70%);
}

.change-demo-graphic::after {
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(96, 184, 74, 0.13), rgba(96, 184, 74, 0) 70%);
}

.demo-header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 32px;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(96, 184, 74, 0.18), transparent 28%),
    linear-gradient(135deg, #071827, #0b2b40 66%, #103d4a);
}

.demo-header::after {
  position: absolute;
  right: 15%;
  bottom: 0;
  left: 32px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(88, 166, 231, 0.5), rgba(96, 184, 74, 0.35), transparent);
}

.demo-header h3 {
  margin-bottom: 0;
  color: white;
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
}

.demo-kicker {
  display: block;
  margin-bottom: 6px;
  color: #83d8d4;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(191, 244, 197, 0.26);
  border-radius: 999px;
  color: #dfffe2;
  background: rgba(96, 184, 74, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.status-dot,
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #75d85e;
  box-shadow: 0 0 0 5px rgba(117, 216, 94, 0.13), 0 0 18px rgba(117, 216, 94, 0.7);
}

.workflow-canvas {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 44px 34px 36px;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
  background:
    linear-gradient(rgba(47, 125, 211, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 125, 211, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbfd, #eef6fb);
  background-size: 32px 32px, 32px 32px, auto;
}

.workflow-gridline {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 34px;
  left: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 125, 211, 0), rgba(47, 125, 211, 0.16) 12%, rgba(47, 155, 153, 0.22) 52%, rgba(96, 184, 74, 0.2) 88%, rgba(96, 184, 74, 0));
}

.graphic-stage {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 17px;
}

.graphic-stage-heading {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
}

.graphic-stage-heading > div {
  display: grid;
  gap: 1px;
}

.graphic-stage-number {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(47, 125, 211, 0.2);
  border-radius: 13px;
  color: white;
  background: linear-gradient(145deg, var(--blue-light), var(--blue));
  box-shadow: 0 10px 22px rgba(47, 125, 211, 0.2);
  font-size: 0.84rem;
  font-weight: 850;
}

.graphic-stage-kicker {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.graphic-stage-heading strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.graphic-stage > p {
  margin: 0;
  color: #617789;
  font-size: 0.81rem;
  line-height: 1.55;
}

.graphic-connector {
  display: grid;
  align-content: center;
  justify-items: center;
  padding-top: 44px;
}

.graphic-connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 125, 211, 0.12), rgba(47, 125, 211, 0.55));
}

.graphic-connector-node {
  display: grid;
  width: 36px;
  height: 36px;
  margin-top: -19px;
  place-items: center;
  border: 1px solid rgba(47, 125, 211, 0.24);
  border-radius: 50%;
  color: var(--blue);
  background: white;
  box-shadow: 0 8px 22px rgba(20, 63, 91, 0.12);
}

.graphic-connector-node svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.source-window,
.alert-console,
.review-dashboard {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid rgba(172, 199, 216, 0.68);
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 44px rgba(9, 34, 51, 0.11);
}

.source-window {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff, #f6fafe);
}

.window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid #dce8ef;
  background: #eff5f9;
}

.window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b6c8d4;
}

.window-bar > span:first-child { background: #e99c8c; }
.window-bar > span:nth-child(2) { background: #e9c772; }
.window-bar > span:nth-child(3) { background: #80c987; }

.window-address {
  min-width: 0;
  margin-left: 7px;
  overflow: hidden;
  color: #7890a0;
  font-size: 0.62rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-window-body {
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 22px 18px;
}

.source-seal {
  display: grid;
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(47, 125, 211, 0.15);
  border-radius: 17px;
  color: var(--blue);
  background: linear-gradient(145deg, rgba(88, 166, 231, 0.16), rgba(47, 125, 211, 0.07));
}

.source-seal svg,
.alert-radar svg,
.output-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.source-content {
  min-width: 0;
  flex: 1;
}

.source-title-line,
.source-copy-line {
  border-radius: 999px;
  background: #dce8ef;
}

.source-title-line {
  width: 82%;
  height: 12px;
  margin: 4px 0 18px;
  background: linear-gradient(90deg, #17364a, #406174);
}

.source-copy-line {
  width: 66%;
  height: 7px;
  margin-bottom: 10px;
}

.source-copy-line.line-wide {
  width: 96%;
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.source-tags span {
  padding: 6px 8px;
  border-radius: 8px;
  color: #43667b;
  background: #eaf2f7;
  font-size: 0.62rem;
  font-weight: 750;
}

.monitoring-ribbon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 16px 16px;
  padding: 11px 13px;
  border: 1px solid rgba(96, 184, 74, 0.16);
  border-radius: 12px;
  color: #427b35;
  background: linear-gradient(90deg, rgba(96, 184, 74, 0.1), rgba(96, 184, 74, 0.035));
  font-size: 0.72rem;
  font-weight: 800;
}

.alert-console {
  padding: 22px;
  border-color: rgba(47, 125, 211, 0.38);
  background:
    radial-gradient(circle at 10% 5%, rgba(88, 166, 231, 0.15), transparent 32%),
    linear-gradient(155deg, #ffffff, #eff7fc);
  box-shadow: 0 22px 55px rgba(47, 125, 211, 0.17);
}

.alert-glow {
  position: absolute;
  top: -70px;
  right: -55px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 184, 74, 0.22), rgba(96, 184, 74, 0));
}

.alert-console-top {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.alert-radar {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 125, 211, 0.07);
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(47, 125, 211, 0.24);
  border-radius: 50%;
}

.radar-ring-one { inset: 5px; }
.radar-ring-two { inset: 13px; }

.radar-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--blue-light), var(--blue));
  box-shadow: 0 9px 22px rgba(47, 125, 211, 0.28);
}

.radar-core svg {
  width: 18px;
  height: 18px;
}

.alert-title {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.alert-title span {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alert-title strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.97rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alert-status {
  padding: 7px 9px;
  border: 1px solid rgba(96, 184, 74, 0.18);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(96, 184, 74, 0.1);
  font-size: 0.66rem;
  font-weight: 850;
}

.change-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(47, 125, 211, 0.13);
  border-left: 3px solid var(--blue);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
}

.change-marker {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: white;
  background: var(--green);
  font-weight: 900;
}

.change-highlight > div {
  display: grid;
  gap: 3px;
}

.change-highlight strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.change-highlight span:last-child {
  color: #6e8393;
  font-size: 0.7rem;
  line-height: 1.45;
}

.alert-metadata {
  display: grid;
  margin-top: 16px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.alert-metadata span {
  display: grid;
  gap: 1px;
  padding: 10px 8px;
  border: 1px solid #dce8ef;
  border-radius: 10px;
  color: #60798a;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  text-align: center;
}

.alert-metadata b {
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.review-dashboard {
  padding: 20px;
  background:
    radial-gradient(circle at 95% 5%, rgba(96, 184, 74, 0.12), transparent 28%),
    linear-gradient(160deg, #ffffff, #f6fbf8);
}

.review-dashboard-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e1ece6;
}

.review-logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--blue-light), var(--blue));
  box-shadow: 0 8px 18px rgba(47, 125, 211, 0.22);
}

.review-logo-mark span {
  width: 19px;
  height: 19px;
  border: 4px solid white;
  border-radius: 50%;
}

.review-dashboard-head > div:nth-child(2) {
  display: grid;
  gap: 1px;
}

.review-dashboard-head span {
  color: #668092;
  font-size: 0.63rem;
}

.review-dashboard-head strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.review-ready {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--green-dark) !important;
  background: rgba(96, 184, 74, 0.1);
  font-weight: 850;
}

.review-output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.review-output {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid #dfebe5;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 5px 14px rgba(10, 42, 55, 0.045);
}

.output-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
}

.output-icon svg {
  width: 17px;
  height: 17px;
}

.output-icon.blue { color: var(--blue); background: rgba(47, 125, 211, 0.1); }
.output-icon.teal { color: var(--teal); background: rgba(47, 155, 153, 0.1); }
.output-icon.green { color: var(--green-dark); background: rgba(96, 184, 74, 0.11); }
.output-icon.amber { color: #b17618; background: rgba(231, 168, 63, 0.13); }

.review-output > div {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.review-output strong {
  color: var(--ink);
  font-size: 0.71rem;
}

.review-output span:last-child {
  overflow: hidden;
  color: #708697;
  font-size: 0.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-owner-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: #718797;
  font-size: 0.62rem;
}

.owner-avatars {
  display: flex;
  padding-left: 6px;
}

.owner-avatars span {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: -6px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 0.52rem;
  font-weight: 850;
}

.owner-avatars span:nth-child(2) { background: var(--teal); }
.owner-avatars span:nth-child(3) { background: var(--green-dark); }

.demo-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 34px 24px;
  color: #708596;
}

.demo-footer-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #b9ccd8;
  border-radius: 50%;
  color: #608097;
  font-size: 0.7rem;
  font-weight: 800;
}

.demo-footer p {
  margin: 0;
  color: inherit;
  font-size: 0.73rem;
}

.audience-section {
  color: white;
  background:
    radial-gradient(circle at 80% 40%, rgba(96, 184, 74, 0.18), transparent 30%),
    linear-gradient(135deg, #123c4d, #0a2638);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.audience-copy h2 {
  color: white;
}

.audience-copy p {
  color: #bdd0da;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.light-link {
  color: var(--mint);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.audience-list span {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #dce8ee;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.9rem;
  font-weight: 700;
}

.audience-list span::before {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 11px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #0d2a3e;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.outcomes-section {
  background: var(--surface-soft);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.outcome-card {
  padding: 30px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.outcome-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(47, 125, 211, 0.09);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.outcome-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.faq-section {
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro h2 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}

.faq-intro .button {
  margin-top: 14px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 760;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 17px;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-answer {
  padding: 0 50px 24px 0;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  padding: 72px 0;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(96, 184, 74, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-900), #0b3045);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 12px;
  color: white;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.final-cta p {
  margin-bottom: 0;
  color: #bdd0da;
}

.final-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  padding: 72px 0 28px;
  background: #f3f6f8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 22px;
  height: auto;
}

.footer-brand p {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #7a8b97;
  font-size: 0.75rem;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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


@media (max-width: 1180px) and (min-width: 761px) {
  .workflow-canvas {
    padding-inline: 24px;
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr);
    gap: 9px;
  }

  .graphic-connector {
    min-width: 38px;
  }

  .alert-console,
  .review-dashboard {
    padding: 16px;
  }

  .source-window-body {
    padding-inline: 16px;
  }

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

  .alert-status {
    grid-column: 2;
    justify-self: start;
  }

  .alert-metadata {
    grid-template-columns: 1fr;
  }

  .review-output-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: var(--surface-soft);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .mobile-nav {
    position: absolute;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: grid;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a:not(.button) {
    padding: 11px 8px;
    color: var(--ink-soft);
    font-weight: 700;
  }

  .mobile-nav .button {
    margin-top: 10px;
  }

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

  .hero-copy {
    max-width: 800px;
    padding-bottom: 10px;
  }

  .hero-visual {
    max-width: 850px;
    margin-inline: auto;
  }

  .hero-visual img {
    width: 100%;
    margin-left: 0;
  }

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

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

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

  .workflow-step::after {
    display: none;
  }

  .audience-grid,
  .faq-layout {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 76px;
  }

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

  .section {
    padding: 78px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    width: 138px;
  }

  .product-mark {
    justify-self: start;
    padding-left: 13px;
  }

  .product-mark img {
    width: 118px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    align-items: flex-start;
  }

  .visual-label {
    top: 1%;
    right: 0;
    font-size: 0.61rem;
  }

  .scope-strip {
    margin-top: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .scope-strip::-webkit-scrollbar {
    display: none;
  }

  .scope-strip span {
    flex: 0 0 auto;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .challenge-grid,
  .coverage-grid,
  .workflow-grid,
  .audience-grid,
  .audience-list,
  .outcome-grid,
  .faq-layout,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .challenge-card,
  .coverage-card,
  .workflow-step {
    min-height: auto;
  }

  .demo-header,
  .final-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-canvas {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 20px 24px;
  }

  .workflow-gridline {
    top: 28px;
    bottom: 24px;
    left: 39px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(47, 125, 211, 0), rgba(47, 125, 211, 0.2) 12%, rgba(47, 155, 153, 0.2) 55%, rgba(96, 184, 74, 0.18) 88%, rgba(96, 184, 74, 0));
  }

  .graphic-connector {
    min-height: 36px;
    padding: 0;
  }

  .graphic-connector-line {
    width: 2px;
    height: 36px;
    background: linear-gradient(180deg, rgba(47, 125, 211, 0.15), rgba(47, 125, 211, 0.52));
  }

  .graphic-connector-node {
    margin-top: -22px;
    transform: rotate(90deg);
  }

  .source-window,
  .alert-console,
  .review-dashboard {
    min-height: auto;
  }

  .audience-grid {
    gap: 44px;
  }

  .faq-intro {
    position: static;
  }

  .faq-layout {
    gap: 44px;
  }

  .final-actions {
    width: 100%;
  }

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

  .footer-grid {
    gap: 44px;
  }

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

  .footer-bottom {
    gap: 10px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 15px;
    border-top: 1px solid rgba(220, 231, 238, 0.95);
    opacity: 0;
    background: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta .button {
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 440px) {
  .brand {
    width: 120px;
  }

  .product-mark {
    padding-left: 10px;
  }

  .product-mark img {
    width: 102px;
  }

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

  h1 {
    font-size: 2.55rem;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
