:root {
  --navy-950: #00112d;
  --navy-900: #011b49;
  --navy-800: #06306d;
  --blue-600: #006edb;
  --cyan-500: #00cdf2;
  --teal-500: #10c7bd;
  --sky-100: #eaf8ff;
  --ink: #03163f;
  --muted: #5b6f89;
  --panel: rgba(255, 255, 255, 0.92);
  --line: rgba(13, 99, 174, 0.16);
  --shadow: 0 26px 70px rgba(0, 28, 77, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 205, 242, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fcff, #eef7fc 56%, #f8fcff);
  font-family: "Segoe UI", Inter, Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.site-nav {
  padding: 14px 0;
  background: rgba(250, 253, 255, 0.82);
  border-bottom: 1px solid rgba(6, 48, 109, 0.08);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.site-nav.is-scrolled {
  padding: 9px 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(0, 28, 77, 0.11);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: var(--navy-950);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, #fff, #e8f8ff);
  border: 1px solid rgba(0, 110, 219, 0.16);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 56, 124, 0.1);
}

.brand-mark img {
  display: block;
  width: 28px;
  height: 31px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.22rem;
  line-height: 1;
}

.navbar-brand:focus,
.navbar-brand:hover {
  color: var(--navy-950);
}

.navbar-toggler {
  border-color: rgba(6, 48, 109, 0.24);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(0, 205, 242, 0.3);
}

.navbar-toggler-icon {
  filter: none;
}

.nav-link {
  color: rgba(3, 22, 63, 0.76);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--blue-600);
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 8px;
  font-weight: 750;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.38) 44%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-cyan {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-500), var(--teal-500));
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(0, 205, 242, 0.25);
}

.btn-cyan:focus,
.btn-cyan:hover {
  color: var(--navy-950);
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0, 205, 242, 0.34);
}

.btn-outline-navy {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 110, 219, 0.26);
}

.btn-outline-navy:focus,
.btn-outline-navy:hover {
  color: #fff;
  background: var(--navy-900);
}

.btn-light-blue {
  color: var(--navy-900);
  background: #eaf8ff;
  border-color: rgba(0, 205, 242, 0.32);
}

.btn-light-blue:focus,
.btn-light-blue:hover {
  color: var(--navy-950);
  background: #d3f5ff;
}

.site-nav .btn-outline-light {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(6, 48, 109, 0.18);
}

.site-nav .btn-outline-light:focus,
.site-nav .btn-outline-light:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  --pointer-x: 0px;
  --pointer-y: 0px;
  background:
    radial-gradient(circle at calc(78% + var(--pointer-x)) calc(18% + var(--pointer-y)), rgba(0, 205, 242, 0.2), transparent 31%),
    radial-gradient(circle at 12% 22%, rgba(16, 199, 189, 0.1), transparent 28%),
    linear-gradient(135deg, #f8fdff 0%, #eff9ff 48%, #e6f4fb 100%);
}

.hero-section::before {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 251, 0.94));
}

.hero-glow {
  position: absolute;
  right: -12%;
  bottom: 8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 205, 242, 0.45), transparent 68%);
  pointer-events: none;
  animation: glowPulse 6.5s ease-in-out infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
  mix-blend-mode: normal;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(0, 205, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 205, 242, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 72% 42%, #000, transparent 62%);
  transform: translate3d(calc(var(--pointer-x) * -0.25), calc(var(--pointer-y) * -0.25), 0);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: 54%;
  width: 52vw;
  min-width: 540px;
  max-width: 760px;
  height: 220px;
  border-top: 1px solid rgba(0, 205, 242, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-left {
  left: -8vw;
  transform: rotate(-10deg);
}

.hero-orbit-right {
  right: -8vw;
  transform: rotate(10deg);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--cyan-500);
  border-radius: 2px;
  box-shadow: 0 0 22px rgba(0, 205, 242, 0.76);
}

.hero-orbit::before {
  left: 18%;
}

.hero-orbit::after {
  right: 18%;
}

.hero-shield-outline {
  position: absolute;
  left: 73%;
  top: 48%;
  z-index: 1;
  width: min(700px, 82vw);
  color: rgba(0, 205, 242, 0.32);
  filter: drop-shadow(0 0 32px rgba(0, 205, 242, 0.24));
  transform: translate(-50%, -50%) translate3d(calc(var(--pointer-x) * -0.14), calc(var(--pointer-y) * -0.14), 0);
  pointer-events: none;
}

.hero-shield-outline path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 100svh;
  padding-top: 88px;
  padding-bottom: 36px;
}

.hero-section > .container {
  z-index: 2;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: #04416b;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(0, 205, 242, 0.28);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 80, 160, 0.09);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-status span {
  width: 10px;
  height: 10px;
  background: var(--teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 199, 189, 0.62);
  animation: statusPulse 1.7s ease-out infinite;
}

.hero-copy {
  max-width: 700px;
  padding-top: 0;
  text-align: left;
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #009bcb;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  justify-content: flex-start;
  color: var(--cyan-500);
}

.eyebrow::before,
.section-kicker::before {
  width: 34px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--teal-500), var(--cyan-500));
  border-radius: 999px;
}

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

h1 {
  max-width: 740px;
  margin-inline: 0;
  color: var(--navy-950);
  background: linear-gradient(135deg, #00112d 0%, #021944 56%, #006edb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(3rem, 6vw, 5.45rem);
  font-weight: 900;
  line-height: 0.96;
  text-wrap: balance;
}

.lead {
  max-width: 710px;
  margin-inline: 0;
  color: #17365f;
  font-size: clamp(1.12rem, 1.7vw, 1.36rem);
  line-height: 1.58;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, 100%);
  margin: 22px 0 0;
}

.hero-metrics div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 92px;
  overflow: hidden;
  padding: 14px 13px 14px 13px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(230, 249, 255, 0.68)),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 110, 219, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 53, 127, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-metrics div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--cyan-500), var(--teal-500));
}

.hero-metrics div::after {
  position: absolute;
  right: 0;
  top: -22px;
  width: 72px;
  height: 72px;
  content: "";
  background: radial-gradient(circle, rgba(0, 205, 242, 0.18), transparent 66%);
  pointer-events: none;
}

.hero-metrics div:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 205, 242, 0.42);
  box-shadow: 0 22px 48px rgba(0, 77, 156, 0.16);
}

.metric-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #005eb8;
  background: linear-gradient(145deg, #e8fbff, #c9f6ff);
  border: 1px solid rgba(0, 205, 242, 0.36);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 110, 219, 0.13);
}

.metric-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.metric-copy {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--blue-600);
  font-size: 1.38rem;
  line-height: 1;
}

.hero-metrics small {
  display: block;
  margin-top: 6px;
  color: #24466f;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-preview {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin-inline: 0;
  margin-top: 0;
  pointer-events: none;
}

.hero-visual {
  position: relative;
  max-width: 620px;
  margin: 0 0 0 auto;
  transform: translate3d(calc(var(--pointer-x) * 0.32), calc(var(--pointer-y) * 0.32), 0);
  transition: transform 0.14s ease-out;
}

.hero-visual::before {
  position: absolute;
  inset: -8% 6% 4%;
  z-index: 1;
  content: "";
  background: radial-gradient(circle, rgba(0, 205, 242, 0.2), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.shield-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: hidden;
}

.shield-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  pointer-events: none;
}

.shield-ring {
  position: absolute;
  left: 50%;
  top: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.shield-ring-outer {
  width: min(620px, 92vw);
  border: 1px solid rgba(0, 205, 242, 0.2);
  box-shadow: inset 0 0 42px rgba(0, 205, 242, 0.08), 0 0 68px rgba(0, 205, 242, 0.12);
  animation: rotateHalo 18s linear infinite;
}

.shield-ring-inner {
  width: min(430px, 68vw);
  border: 1px dashed rgba(16, 199, 189, 0.28);
  animation: rotateHalo 13s linear infinite reverse;
}

.glowing-shield {
  position: relative;
  width: min(310px, 58vw);
  aspect-ratio: 0.78;
  filter: drop-shadow(0 0 22px rgba(0, 205, 242, 0.54)) drop-shadow(0 32px 80px rgba(0, 17, 45, 0.58));
  animation: shieldFloat 6.8s ease-in-out infinite;
}

.shield-shell,
.shield-shell::before,
.shield-face {
  position: absolute;
  clip-path: polygon(50% 0%, 88% 13%, 94% 42%, 83% 74%, 50% 100%, 17% 74%, 6% 42%, 12% 13%);
}

.shield-shell {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(77, 244, 255, 0.95), rgba(0, 110, 219, 0.92) 42%, rgba(16, 199, 189, 0.95)),
    var(--cyan-500);
}

.shield-shell::before {
  inset: 9px;
  content: "";
  background:
    radial-gradient(circle at 48% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(155deg, #d8faff 0%, #b8f4fb 45%, #7ce5ed 100%);
  opacity: 0.92;
}

.shield-face {
  inset: 34px 38px 42px;
  background:
    linear-gradient(145deg, rgba(240, 253, 255, 0.74), rgba(161, 240, 248, 0.68));
  box-shadow: inset 0 0 30px rgba(0, 110, 219, 0.2);
}

.shield-mark {
  position: absolute;
  display: block;
  border-color: #005eb8;
  filter: drop-shadow(0 0 10px rgba(0, 205, 242, 0.42));
}

.shield-mark-left {
  left: 22%;
  top: 28%;
  width: 26%;
  height: 28%;
  border-left: 13px solid;
  border-bottom: 13px solid;
  transform: skewY(-14deg);
}

.shield-mark-right {
  right: 22%;
  top: 28%;
  width: 26%;
  height: 28%;
  border-right: 13px solid;
  border-bottom: 13px solid;
  transform: skewY(14deg);
}

.shield-mark-bottom {
  left: 33%;
  bottom: 18%;
  width: 34%;
  height: 20%;
  border-left: 13px solid;
  border-bottom: 13px solid;
  transform: rotate(-26deg);
}

.shield-split {
  position: absolute;
  left: 50%;
  top: 19%;
  bottom: 18%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0, 110, 219, 0.42), transparent);
  transform: translateX(-50%);
}

.shield-scan {
  position: absolute;
  left: 5%;
  right: 5%;
  top: -16%;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(0, 205, 242, 0.22), rgba(255, 255, 255, 0.36), transparent);
  filter: blur(1px);
  mix-blend-mode: screen;
  animation: shieldScan 3.4s ease-in-out infinite;
}

.shield-caption {
  position: absolute;
  right: 0;
  bottom: 7%;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(360px, 86vw);
  padding: 16px;
  color: #fff;
  background: rgba(0, 17, 45, 0.78);
  border: 1px solid rgba(0, 205, 242, 0.28);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 17, 45, 0.38);
  backdrop-filter: blur(14px);
}

.shield-caption span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #dffaff;
  background:
    radial-gradient(circle at 35% 25%, #61f7ff, transparent 33%),
    linear-gradient(145deg, #0075e5, #001f63);
  border: 2px solid rgba(0, 205, 242, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(0, 205, 242, 0.46);
  font-size: 0.84rem;
  font-weight: 900;
}

.shield-caption strong,
.shield-caption small {
  display: block;
}

.shield-caption strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.shield-caption small {
  color: rgba(226, 250, 255, 0.72);
  line-height: 1.45;
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 48, 109, 0.96), rgba(0, 17, 45, 0.96)),
    var(--navy-950);
  border: 1px solid rgba(0, 205, 242, 0.18);
  border-radius: 16px;
  box-shadow: 0 34px 90px rgba(0, 28, 77, 0.24);
}

.dashboard-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(0, 205, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 205, 242, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 74%);
  pointer-events: none;
}

.dashboard-topbar,
.dashboard-body {
  position: relative;
  z-index: 1;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.dashboard-live {
  color: rgba(226, 250, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-body {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3.4vw, 30px);
}

.risk-panel,
.queue-panel,
.signal-grid > div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.risk-panel {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.risk-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, #011b49 0 53%, transparent 54%),
    conic-gradient(var(--cyan-500) 0 87%, rgba(255, 255, 255, 0.12) 87% 100%);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(0, 205, 242, 0.18);
  animation: shieldFloat 6.8s ease-in-out infinite;
}

.risk-ring span {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 900;
}

.risk-panel small,
.queue-row small,
.signal-grid span {
  display: block;
  color: rgba(226, 250, 255, 0.64);
  font-weight: 700;
}

.risk-panel strong {
  display: block;
  margin: 6px 0 8px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.risk-panel p {
  margin-bottom: 0;
  color: rgba(226, 250, 255, 0.74);
  line-height: 1.55;
}

.queue-panel {
  padding: 16px;
}

.queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: rgba(226, 250, 255, 0.8);
  font-weight: 800;
}

.queue-header strong {
  color: var(--cyan-500);
  font-size: 1.3rem;
}

.queue-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px;
  border-radius: 10px;
}

.queue-row + .queue-row {
  margin-top: 8px;
}

.queue-row.flagged {
  background: rgba(0, 205, 242, 0.1);
}

.queue-row.clear {
  background: rgba(16, 199, 189, 0.08);
}

.queue-row strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
}

.queue-row em {
  padding: 6px 9px;
  color: #e9fbff;
  background: rgba(0, 205, 242, 0.14);
  border: 1px solid rgba(0, 205, 242, 0.18);
  border-radius: 999px;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
}

.doc-icon {
  width: 34px;
  height: 42px;
  background:
    linear-gradient(135deg, transparent 0 16%, rgba(255, 255, 255, 0.08) 17%),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 205, 242, 0.28);
  border-radius: 7px;
}

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

.signal-grid > div {
  padding: 14px;
}

.signal-grid strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 0.98rem;
}

.scan-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(282px, 76vw);
  padding: 14px;
  color: #fff;
  background: rgba(0, 17, 45, 0.82);
  border: 1px solid rgba(0, 205, 242, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 17, 45, 0.35);
  backdrop-filter: blur(14px);
  animation: cardFloat 5.6s ease-in-out infinite;
}

.scan-card strong,
.scan-card small {
  display: block;
}

.scan-card small {
  color: rgba(228, 247, 255, 0.78);
}

.scan-card-top {
  top: 9%;
  left: -7%;
}

.scan-card-bottom {
  right: -5%;
  bottom: 10%;
  animation-delay: -1.7s;
}

.scan-icon,
.orb-icon,
.feature-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background:
    radial-gradient(circle at 35% 25%, #39efff, transparent 30%),
    linear-gradient(145deg, #0075e5, #001f63);
  border: 2px solid rgba(0, 205, 242, 0.74);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(0, 205, 242, 0.46);
  font-size: 0.84rem;
  font-weight: 900;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
}

.section h2 {
  color: var(--navy-950);
  font-size: clamp(2.05rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
}

.section h3 {
  color: var(--navy-950);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.18;
}

.section-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 205, 242, 0.18), transparent 31%),
    linear-gradient(135deg, #00112d, #002761 62%, #00112d);
}

.section-dark::before,
.workflow-section::before,
.comparison-section::before,
.impact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(0, 205, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 205, 242, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .section-intro,
.section-dark p {
  color: rgba(235, 249, 255, 0.78);
}

.threat-card,
.feature-card,
.solution-item,
.workflow-step {
  height: 100%;
  padding: 28px;
  border-radius: 8px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.threat-card:hover,
.solution-item:hover,
.workflow-step:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 205, 242, 0.46);
  box-shadow: 0 26px 70px rgba(0, 38, 91, 0.2);
}

.threat-card {
  background: rgba(0, 34, 90, 0.72);
  border: 1px solid rgba(0, 205, 242, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 56px rgba(0, 0, 0, 0.18);
}

.threat-card h3,
.feature-card h3,
.solution-item h3,
.workflow-step h3 {
  margin: 18px 0 10px;
}

.threat-card p,
.feature-card p,
.solution-item p,
.workflow-step p {
  margin-bottom: 0;
  line-height: 1.6;
}

.section-light {
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 205, 242, 0.14), transparent 30%),
    linear-gradient(180deg, #f5fbff, #eaf8ff);
}

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

.solution-item,
.feature-card {
  background: var(--panel);
  border: 1px solid rgba(0, 110, 219, 0.12);
  box-shadow: var(--shadow);
}

.solution-item span {
  color: var(--cyan-500);
  font-size: 0.9rem;
  font-weight: 900;
}

.workflow-section,
.comparison-section,
.impact-section {
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 205, 242, 0.18), transparent 30%),
    linear-gradient(135deg, #00112d, #012a65);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 48px;
}

.workflow-section h2,
.comparison-section h2,
.impact-section h2 {
  color: #fff;
}

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.workflow::before {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 31px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 205, 242, 0.38), transparent);
  pointer-events: none;
}

.workflow-step {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 246px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(0, 34, 90, 0.74);
  border: 1px solid rgba(0, 205, 242, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 56px rgba(0, 0, 0, 0.14);
}

.workflow-step::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 205, 242, 0.2), transparent 26%),
    linear-gradient(90deg, rgba(0, 205, 242, 0.08), transparent 44%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.workflow-step::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 88px;
  height: 88px;
  content: "";
  background:
    linear-gradient(rgba(0, 205, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 205, 242, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle, #000, transparent 68%);
  opacity: 0.52;
}

.workflow-step:hover::before {
  opacity: 1;
}

.workflow-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.workflow-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #001b49;
  background: linear-gradient(135deg, var(--cyan-500), var(--teal-500));
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 205, 242, 0.22);
}

.workflow-icon::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(0, 205, 242, 0.22);
  border-radius: 20px;
}

.workflow-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.step-number {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 30px;
  padding: 0 10px;
  color: rgba(226, 250, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.workflow-step h3 {
  margin: 0 0 12px;
  color: #fff;
}

.workflow-step p,
.comparison-section p,
.impact-section p {
  color: rgba(235, 249, 255, 0.8);
}

.feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 54, 124, 0.2);
}

.comparison-shell {
  position: relative;
  padding: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(0, 48, 107, 0.36);
  border: 1px solid rgba(0, 205, 242, 0.34);
  border-radius: 18px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.comparison-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 205, 242, 0.24), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(0, 110, 219, 0.22), transparent 32%);
  pointer-events: none;
}

.comparison-orbit {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(0, 205, 242, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

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

.comparison-orbit::before {
  inset: 56px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.comparison-orbit::after {
  right: 64px;
  bottom: 52px;
  width: 10px;
  height: 10px;
  background: var(--cyan-400);
  box-shadow: 0 0 22px rgba(0, 205, 242, 0.8);
}

.comparison-shell .table-responsive {
  position: relative;
  z-index: 1;
  border-radius: 14px;
}

.comparison-table {
  min-width: 820px;
  margin-bottom: 0;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.comparison-table thead th {
  padding: 20px 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 95, 202, 0.96), rgba(0, 169, 201, 0.96));
  border: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.comparison-table thead th:first-child {
  border-top-left-radius: 12px;
}

.comparison-table thead th:last-child {
  border-top-right-radius: 12px;
  background:
    linear-gradient(135deg, #006edb, #00cdf2 72%, #47f4ff);
  box-shadow: inset 10px 0 24px rgba(255, 255, 255, 0.12);
}

.comparison-table thead span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.comparison-table tbody th,
.comparison-table tbody td {
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid rgba(0, 110, 219, 0.1);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody th {
  width: 23%;
  color: var(--navy-950);
  background: rgba(245, 252, 255, 0.94);
  font-weight: 850;
}

.comparison-table tbody td {
  color: rgba(0, 17, 45, 0.82);
  background: rgba(255, 255, 255, 0.92);
}

.comparison-table tbody td:nth-child(2) {
  width: 31%;
  color: rgba(0, 17, 45, 0.68);
  background:
    linear-gradient(90deg, rgba(240, 247, 252, 0.76), rgba(255, 255, 255, 0.92));
}

.comparison-table tbody td:last-child {
  width: 46%;
  color: #004f91;
  background:
    linear-gradient(90deg, rgba(0, 205, 242, 0.13), rgba(240, 253, 255, 0.96));
  font-weight: 800;
}

.comparison-table tbody tr {
  transition: transform 0.2s ease, filter 0.2s ease;
}

.comparison-table tbody tr:hover th,
.comparison-table tbody tr:hover td {
  background-color: #fff;
  filter: brightness(1.015);
}

.compare-feature,
.manual-note,
.docushield-win {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.compare-feature {
  min-width: 0;
}

.compare-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #005fca;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.3) 34%, transparent 35%),
    linear-gradient(145deg, rgba(0, 205, 242, 0.2), rgba(0, 110, 219, 0.12));
  border: 1px solid rgba(0, 110, 219, 0.16);
  border-radius: 12px;
  box-shadow:
    0 12px 26px rgba(0, 110, 219, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.compare-icon svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}

.compare-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.manual-note {
  position: relative;
  padding-left: 18px;
}

.manual-note::before {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: rgba(0, 17, 45, 0.28);
  border-radius: 50%;
}

.docushield-win {
  position: relative;
  line-height: 1.45;
}

.win-check {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.7), transparent 36%),
    linear-gradient(145deg, #00cdf2, #006edb);
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(0, 205, 242, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.win-check::after {
  width: 9px;
  height: 5px;
  content: "";
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.impact-list {
  display: grid;
  gap: 14px;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 18px 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 205, 242, 0.25);
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 750;
}

.impact-item span {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--cyan-500), var(--teal-500));
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(0, 205, 242, 0.6);
}

.demo-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 84% 22%, rgba(0, 205, 242, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fdff, #eaf6fc);
}

.demo-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 110, 219, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.demo-panel h2 {
  max-width: 820px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
}

.demo-panel p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.demo-page-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 8%, rgba(0, 205, 242, 0.2), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 110, 219, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fdff, #eaf7fc 58%, #f8fdff);
}

.demo-hero-section {
  position: relative;
  overflow: hidden;
  padding: 156px 0 96px;
}

.demo-hero-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(0, 110, 219, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 110, 219, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 78%);
  pointer-events: none;
}

.demo-page-grid {
  position: absolute;
  top: 94px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(0, 205, 242, 0.18);
  border-radius: 50%;
  opacity: 0.9;
}

.demo-page-grid::before,
.demo-page-grid::after {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.demo-page-grid::before {
  inset: 76px;
  border: 1px dashed rgba(0, 110, 219, 0.2);
}

.demo-page-grid::after {
  left: 86px;
  bottom: 104px;
  width: 13px;
  height: 13px;
  background: var(--cyan-500);
  box-shadow: 0 0 30px rgba(0, 205, 242, 0.78);
}

.demo-page-copy h1 {
  margin: 20px 0 20px;
  color: var(--navy-950);
  font-size: clamp(3rem, 7vw, 5.7rem);
  font-weight: 950;
  line-height: 0.95;
}

.demo-page-copy p {
  max-width: 560px;
  color: rgba(3, 22, 63, 0.72);
  font-size: 1.15rem;
  line-height: 1.7;
}

.demo-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.demo-points div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 110, 219, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 28, 77, 0.08);
  font-weight: 800;
}

.demo-points span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(145deg, var(--cyan-500), var(--blue-600));
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(0, 205, 242, 0.42);
}

.demo-points span::after {
  width: 8px;
  height: 5px;
  content: "";
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.demo-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 253, 255, 0.9)),
    var(--panel);
  border: 1px solid rgba(0, 110, 219, 0.16);
  border-radius: 18px;
  box-shadow:
    0 30px 90px rgba(0, 28, 77, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.demo-form-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500), var(--teal-500));
}

.demo-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.demo-form-header h2 {
  margin: 10px 0 0;
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.form-status-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: #005b91;
  background: rgba(0, 205, 242, 0.12);
  border: 1px solid rgba(0, 205, 242, 0.26);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-form .form-label {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 850;
}

.demo-form .form-control {
  min-height: 54px;
  padding: 13px 15px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 110, 219, 0.18);
  border-radius: 12px;
  box-shadow: none;
  font-weight: 650;
}

.demo-form textarea.form-control {
  min-height: 148px;
  resize: vertical;
}

.demo-form .form-control:focus {
  background: #fff;
  border-color: rgba(0, 205, 242, 0.72);
  box-shadow:
    0 0 0 0.2rem rgba(0, 205, 242, 0.12),
    0 14px 34px rgba(0, 110, 219, 0.08);
}

.demo-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}

.demo-form-actions p {
  max-width: 410px;
  margin: 0;
  color: rgba(3, 22, 63, 0.64);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-950);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 205, 242, 0.2);
}

.footer-brand:focus,
.footer-brand:hover {
  color: #fff;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero-section .reveal {
  opacity: 1;
  transform: none;
}

.workflow-section .reveal {
  opacity: 1;
  transform: none;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 199, 189, 0.62);
  }

  100% {
    box-shadow: 0 0 0 11px rgba(16, 199, 189, 0);
  }
}

@keyframes shieldFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.012);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateHalo {
  to {
    transform: rotate(1turn);
  }
}

@keyframes scanPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  30% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

@keyframes shieldScan {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  20%,
  70% {
    opacity: 1;
  }

  82% {
    opacity: 0;
    transform: translateY(470%);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 12px;
    padding: 16px;
    background: rgba(0, 17, 45, 0.96);
    border: 1px solid rgba(0, 205, 242, 0.18);
    border-radius: 8px;
  }

  .navbar-collapse .nav-link {
    color: rgba(255, 255, 255, 0.82);
  }

  .navbar-collapse .nav-link:focus,
  .navbar-collapse .nav-link:hover {
    color: #fff;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 112px;
    padding-bottom: 80px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-status,
  .lead,
  h1 {
    margin-inline: auto;
  }

  .hero-section .eyebrow {
    justify-content: center;
  }

  .hero-metrics {
    margin-inline: auto;
  }

  .hero-preview {
    margin-inline: auto;
  }

  .hero-visual {
    margin: 0 auto;
  }

  .shield-stage {
    min-height: 520px;
  }

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

  .demo-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-form-header,
  .demo-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 76px 0;
  }

  .hero-section .min-vh-100 {
    min-height: 0 !important;
  }

  .hero-inner {
    padding-top: 112px;
    padding-bottom: 76px;
  }

  .hero-shield-outline {
    left: 50%;
    top: 48%;
    width: 118vw;
    opacity: 0.62;
  }

  .hero-orbit {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 12.2vw, 3.55rem);
  }

  .hero-metrics,
  .solution-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: none;
  }

  .scan-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-visual {
    margin-top: 0;
    margin-bottom: -30px;
  }

  .hero-preview {
    width: min(620px, 100vw);
  }

  .shield-stage {
    min-height: 500px;
  }

  .shield-caption {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }

  .glowing-shield {
    width: min(270px, 70vw);
  }

  .risk-panel,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .queue-row {
    grid-template-columns: 34px 1fr;
  }

  .queue-row em {
    grid-column: 2;
    justify-self: start;
  }

  .demo-hero-section {
    padding: 126px 0 72px;
  }

  .demo-page-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .demo-page-grid {
    right: -260px;
    opacity: 0.45;
  }

  .form-status-pill {
    white-space: normal;
  }

  .demo-form-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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

  .hero-particles {
    opacity: 0.38;
  }
}
