@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #040609;
  --bg-soft: #070a10;
  --panel: rgba(11, 15, 22, 0.88);
  --panel-strong: #0b0f16;
  --line: rgba(255, 255, 255, 0.085);
  --line-bright: rgba(255, 255, 255, 0.14);
  --text: #f4f7fb;
  --muted: #9098a8;
  --muted-2: #687184;
  --blue: #2b70ff;
  --blue-bright: #3d8bff;
  --cyan: #21d7e7;
  --violet: #8b6cff;
  --green: #52dfa2;
  --danger: #ff6478;
  --yellow: #e5b94a;
  --container: 1240px;
  --radius: 20px;
  --mouse-x: 70%;
  --mouse-y: 15%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(32, 99, 255, 0.065), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(45, 120, 255, 0.45);
  color: white;
}

body.dialog-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

svg {
  display: block;
}

.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: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  background: white;
  color: #05070b;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section-grid {
  position: relative;
  isolation: isolate;
}

.section-grid::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 84%, transparent);
}

.section-grid::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0.7px, transparent 0.8px);
  background-size: 54px 54px;
  opacity: 0.35;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 14px rgba(36, 176, 255, 0.8);
}

.ambient {
  position: fixed;
  z-index: -10;
  width: 36vw;
  height: 36vw;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.08;
}

.ambient--one {
  top: 6vh;
  right: -18vw;
  background: var(--cyan);
}

.ambient--two {
  left: -22vw;
  top: 48vh;
  background: var(--blue);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid transparent;
  transition: height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(4, 6, 9, 0.78);
  backdrop-filter: blur(20px) saturate(130%);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), 1380px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
}

.brand-symbol {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 35px;
  overflow: visible;
  background: transparent;
}

.brand-symbol img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(17, 157, 245, 0.14));
  pointer-events: none;
  user-select: none;
}

.brand-symbol--mini {
  width: 18px;
  height: 15px;
}

.brand-symbol--toolbar {
  width: 31px;
  height: 26px;
}

.brand-symbol--compare {
  width: 38px;
  height: 32px;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 34px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-mark path:first-child {
  fill: rgba(40, 111, 255, 0.12);
  stroke: url(#none);
  stroke: var(--blue-bright);
  stroke-width: 1.8;
}

.brand-mark path:last-child {
  fill: white;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.11em;
}

.brand-copy small {
  margin-top: 5px;
  color: #518dff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.45em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.desktop-nav a {
  position: relative;
  padding: 29px 0;
  color: #a4aab6;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 20px;
  left: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: right 0.25s ease, left 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
  left: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #858d9c;
  font-size: 11px;
  font-weight: 600;
}

.status-pill > span,
.footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(82, 223, 162, 0.65);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button svg,
.text-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 11px;
  font-size: 12px;
}

.button--small svg {
  width: 15px;
  fill: var(--blue-bright);
  stroke: var(--blue-bright);
}

.button--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #225fe8, #3383ff);
  box-shadow: 0 12px 35px rgba(31, 102, 242, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: white;
}

.button--primary::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22), transparent 80%);
  transform: translateX(-110%);
  transition: transform 0.55s ease;
}

.button--primary:hover::before {
  transform: translateX(110%);
}

.button--primary:hover {
  box-shadow: 0 16px 42px rgba(31, 102, 242, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button--outline {
  border-color: rgba(53, 119, 255, 0.44);
  background: rgba(35, 93, 205, 0.06);
  box-shadow: inset 0 0 18px rgba(35, 102, 255, 0.04);
  color: #72a1ff;
}

.button--outline:hover {
  border-color: rgba(62, 139, 255, 0.75);
  background: rgba(35, 93, 205, 0.12);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #d8dce5;
}

.button--ghost:hover {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.065);
}

.button--full {
  width: 100%;
}

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

.hero {
  min-height: 940px;
  overflow: hidden;
  padding: 172px 0 120px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  mask-image: linear-gradient(to bottom, black 8%, black 72%, transparent);
}

.hero::after {
  opacity: 0.48;
  mask-image: radial-gradient(circle at 50% 40%, black 12%, transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 31px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  color: #abb2bf;
  font-size: 11px;
  font-weight: 600;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(51, 126, 255, 0.09), 0 0 14px rgba(51, 126, 255, 0.7);
  animation: pulse 2.2s ease infinite;
}

.eyebrow-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #555d6c;
}

.hero h1,
.section-heading h2,
.principles-copy h2,
.faq-copy h2,
.cta-card h2,
.demo-dialog h2 {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -0.055em;
}

.hero h1 {
  margin-top: 25px;
  font-size: clamp(54px, 5.4vw, 79px);
  font-weight: 800;
  line-height: 0.98;
}

.hero h1 > span,
.section-heading h2 > span,
.principles-copy h2 > span,
.faq-copy h2 > span {
  background: linear-gradient(100deg, #2e6eff 4%, #22b8ef 75%, #48e2ee);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 600px;
  margin: 25px 0 0;
  color: #9aa2b1;
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: -0.018em;
}

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

.play-icon {
  display: grid;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  place-items: center;
}

.play-icon svg {
  width: 13px;
  fill: currentColor;
  stroke: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 610px;
  margin-top: 52px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  display: grid;
  gap: 5px;
  padding-right: 20px;
}

.hero-proof > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: -0.03em;
}

.hero-proof span {
  color: #737b89;
  font-size: 10px;
  font-weight: 500;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(70, 119, 211, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.hero-orbit--one {
  top: 57px;
  right: -460px;
  width: 1040px;
  height: 1040px;
  animation: rotate 28s linear infinite;
}

.hero-orbit--one::after {
  top: 26%;
  left: 2.5%;
}

.hero-orbit--two {
  top: 216px;
  right: -250px;
  width: 720px;
  height: 720px;
  animation: rotate 21s linear infinite reverse;
}

.hero-orbit--two::after {
  right: 5%;
  bottom: 28%;
}

.hero-brand-watermark {
  position: absolute;
  top: 50%;
  right: -3%;
  z-index: -1;
  width: 540px;
  height: 452px;
  border-radius: 0;
  opacity: 0.035;
  filter: saturate(1.4);
  transform: translateY(-50%) rotate(-4deg);
}

.console-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.console-glow {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 70%;
  height: 65%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(39, 100, 255, 0.32), rgba(23, 219, 226, 0.22));
  filter: blur(100px);
  opacity: 0.45;
}

.console-shell {
  position: relative;
  overflow: hidden;
  min-height: 556px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 100%, rgba(26, 200, 224, 0.095), transparent 37%),
    linear-gradient(145deg, rgba(13, 17, 25, 0.98), rgba(5, 8, 12, 0.96));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.035);
}

.console-shell::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.018) 50%, transparent 68%);
}

.console-shell::after,
.visual-noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: soft-light;
}

.console-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 53px;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b84d58;
}

.window-controls span:nth-child(2) {
  background: #b69433;
}

.window-controls span:nth-child(3) {
  background: #34986b;
}

.console-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9da5b4;
  font-size: 10px;
  font-weight: 700;
}

.mini-mark {
  display: grid;
  width: 16px;
  height: 18px;
  place-items: center;
}

.mini-mark svg {
  width: 100%;
}

.mini-mark path {
  fill: rgba(46, 121, 255, 0.18);
  stroke: #3c83ff;
  stroke-width: 2;
}

.secure-state {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  color: #7d8594;
  font-size: 9px;
  font-weight: 600;
}

.secure-state svg {
  width: 12px;
  fill: rgba(37, 218, 229, 0.15);
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.product-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 15px 17px 0;
}

.product-switch button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  color: #707887;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.product-switch button.active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: white;
}

.product-switch button > span:last-child,
.dialog-products > div > span:last-child {
  display: grid;
  gap: 4px;
}

.product-switch strong,
.dialog-products strong {
  font-size: 10px;
}

.product-switch small,
.dialog-products small {
  color: #697284;
  font-size: 8px;
}

.tab-icon {
  display: grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  place-items: center;
}

.tab-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.tab-icon--blue {
  background: rgba(38, 105, 255, 0.09);
  color: var(--blue-bright);
}

.tab-icon--violet {
  background: rgba(139, 108, 255, 0.09);
  color: var(--violet);
}

.console-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 165px;
  gap: 10px;
  padding: 10px 17px 17px;
  animation: fade-panel 0.35s ease both;
}

.product-panel[hidden] {
  display: none;
}

.console-main,
.side-card {
  border: 1px solid var(--line);
  background: rgba(4, 7, 11, 0.42);
}

.console-main {
  min-height: 345px;
  padding: 18px;
  border-radius: 15px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.panel-heading .label {
  color: #5e687b;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.panel-heading h3 {
  margin: 5px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: -0.035em;
}

.verified-badge,
.consent-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(45, 119, 255, 0.23);
  border-radius: 999px;
  background: rgba(38, 104, 255, 0.08);
  color: #4c91ff;
  font-size: 8px;
  font-weight: 700;
}

.verified-badge span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue);
}

.consent-badge {
  border-color: rgba(139, 108, 255, 0.25);
  background: rgba(139, 108, 255, 0.07);
  color: #ab92ff;
}

.consent-badge svg {
  width: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.integrity-score {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 21px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.score-ring {
  --value: calc(var(--score) * 3.6deg);
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: conic-gradient(var(--blue-bright) var(--value), rgba(255, 255, 255, 0.06) 0);
  place-items: center;
  box-shadow: 0 0 26px rgba(45, 114, 255, 0.11);
}

.score-ring::before {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
  background: #090d14;
}

.score-ring > span {
  position: relative;
  display: flex;
  align-items: baseline;
}

.score-ring strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.score-ring small {
  margin-left: 2px;
  color: #596273;
  font-size: 7px;
}

.score-copy {
  display: grid;
  gap: 4px;
}

.score-copy > span {
  color: #687183;
  font-size: 8px;
}

.score-copy strong {
  font-size: 11px;
}

.score-copy small {
  max-width: 180px;
  color: #656e7d;
  font-size: 8px;
  line-height: 1.45;
}

.telemetry-chart,
.timeline-panel {
  margin-top: 14px;
  padding: 13px 13px 7px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9ca4b2;
  font-size: 8px;
  font-weight: 600;
}

.chart-head small {
  color: #566071;
  font-size: 7px;
}

.telemetry-chart svg {
  width: 100%;
  height: 82px;
  margin-top: 4px;
  overflow: visible;
}

.chart-gridline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 1;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: url(#chartLine);
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  animation: draw-chart 1.8s 0.3s ease forwards;
}

.chart-point {
  fill: var(--cyan);
  stroke: rgba(35, 215, 230, 0.25);
  stroke-width: 6;
}

.console-side {
  display: grid;
  align-content: start;
  gap: 10px;
}

.side-card {
  padding: 13px;
  border-radius: 13px;
}

.side-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8c95a5;
  font-size: 8px;
  font-weight: 600;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.bar-viz {
  display: flex;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-top: 8px;
  padding: 0 3px;
}

.bar-viz span {
  width: 5px;
  height: var(--h);
  border-radius: 5px;
  background: linear-gradient(to top, #275ad4, #27cbdc);
  opacity: 0.8;
  transform-origin: bottom;
  animation: bar-pulse 2.8s ease-in-out infinite alternate;
}

.bar-viz span:nth-child(2n) {
  animation-delay: -0.7s;
}

.bar-viz span:nth-child(3n) {
  animation-delay: -1.2s;
}

.side-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  font-size: 8px;
}

.side-stat span {
  color: #60697a;
}

.side-stat strong {
  font-size: 9px;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
}

.event-card .side-label {
  grid-column: 1 / -1;
}

.event-icon {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(65, 133, 255, 0.08);
  color: var(--blue-bright);
  place-items: center;
}

.event-icon svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.event-card > div:last-child {
  display: grid;
  gap: 3px;
}

.event-card strong {
  font-size: 8px;
}

.event-card small {
  color: #596273;
  font-size: 6px;
}

.case-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 21px;
}

.case-overview > div {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.case-overview span {
  color: #667082;
  font-size: 7px;
}

.case-overview strong {
  font-size: 10px;
}

.teal-text {
  color: var(--cyan);
}

.timeline-panel {
  padding-bottom: 10px;
}

.event-row {
  position: relative;
  display: grid;
  grid-template-columns: 31px 8px 1fr auto;
  align-items: center;
  gap: 7px;
  min-height: 57px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.event-row:last-child {
  border-bottom: 0;
}

.event-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.07);
}

.event-time {
  color: #596273;
  font-size: 7px;
}

.event-node {
  z-index: 1;
  width: 7px;
  height: 7px;
  border: 2px solid #0a0e15;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px rgba(62, 134, 255, 0.5);
}

.event-node--violet {
  background: var(--violet);
  box-shadow: 0 0 8px rgba(139, 108, 255, 0.5);
}

.event-node--teal {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(33, 215, 231, 0.5);
}

.event-row > div {
  display: grid;
  gap: 3px;
}

.event-row strong {
  font-size: 8px;
}

.event-row small {
  color: #596273;
  font-size: 6px;
}

.event-row em {
  color: #75849d;
  font-size: 6px;
  font-style: normal;
}

.evidence-card {
  min-height: 153px;
}

.evidence-value {
  display: block;
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.confidence-track {
  height: 4px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.confidence-track span {
  display: block;
  width: 88%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 0 12px rgba(139, 108, 255, 0.55);
}

.evidence-card > small {
  display: block;
  margin-top: 11px;
  color: #5e6778;
  font-size: 7px;
  line-height: 1.45;
}

.scope-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 2px;
  padding: 0;
  list-style: none;
}

.scope-card li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6f7888;
  font-size: 7px;
}

.scope-card li span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 7px rgba(139, 108, 255, 0.5);
}

.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  margin: 0 17px 16px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.018);
  color: #667082;
  font-size: 7px;
  font-weight: 600;
}

.console-footer > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.console-footer svg {
  width: 11px;
  fill: rgba(47, 121, 255, 0.2);
  stroke: var(--blue-bright);
  stroke-width: 1.5;
}

.pipeline {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pipeline i {
  width: 6px;
  height: 6px;
  border: 1px solid #4d586a;
  border-radius: 50%;
}

.pipeline i.done {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 7px rgba(33, 215, 231, 0.55);
}

.pipeline b {
  width: 13px;
  height: 1px;
  background: #313947;
}

.console-tags {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
}

.console-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 25px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #697182;
  font-size: 8px;
}

.console-tags svg {
  width: 11px;
  fill: none;
  stroke: var(--blue-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.console-tags span:first-child svg {
  stroke: var(--cyan);
}

.console-tags span:last-child svg {
  stroke: #8d79ff;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #4b5361;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 23px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.signal-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  gap: 30px;
}

.signal-intro,
.signal-end {
  color: #606878;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.signal-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.signal-list span {
  color: #b2b8c4;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.signal-list i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #424a59;
}

.signal-end {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.signal-end i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(82, 223, 162, 0.55);
}

.platform-section,
.products-section,
.principles-section,
.capabilities-section,
.pricing-section,
.faq-section {
  padding: 130px 0;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4d83e8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.section-kicker::before {
  width: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue-bright));
}

.section-heading h2,
.principles-copy h2,
.faq-copy h2 {
  margin-top: 16px;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.section-heading > p,
.section-heading--split > p,
.principles-copy > p,
.faq-copy > p {
  color: #858e9e;
  font-size: 14px;
  line-height: 1.7;
}

.section-heading--center > p {
  max-width: 630px;
  margin: 20px auto 0;
}

.platform-flow {
  display: grid;
  grid-template-columns: 1fr 54px 1fr 54px 1fr 54px 1fr;
  align-items: center;
  margin-top: 69px;
}

.flow-card {
  position: relative;
  min-height: 250px;
  padding: 27px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.flow-card:hover {
  border-color: rgba(70, 130, 255, 0.27);
  transform: translateY(-5px);
}

.flow-card::after {
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
  filter: blur(55px);
  opacity: 0.08;
}

.flow-card--cyan::after {
  background: var(--cyan);
}

.flow-card--violet::after {
  background: var(--violet);
}

.flow-card--green::after {
  background: var(--green);
}

.flow-number {
  position: absolute;
  top: 17px;
  right: 19px;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.flow-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border: 1px solid rgba(52, 119, 255, 0.17);
  border-radius: 12px;
  background: rgba(37, 105, 255, 0.065);
  color: var(--blue-bright);
  place-items: center;
}

.flow-card--cyan .flow-icon {
  border-color: rgba(33, 215, 231, 0.17);
  background: rgba(33, 215, 231, 0.055);
  color: var(--cyan);
}

.flow-card--violet .flow-icon {
  border-color: rgba(139, 108, 255, 0.2);
  background: rgba(139, 108, 255, 0.06);
  color: var(--violet);
}

.flow-card--green .flow-icon {
  border-color: rgba(82, 223, 162, 0.17);
  background: rgba(82, 223, 162, 0.055);
  color: var(--green);
}

.flow-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.flow-card > small {
  display: block;
  margin-bottom: 8px;
  color: #537fd3;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-card--cyan > small {
  color: #3da7b0;
}

.flow-card--violet > small {
  color: #7765c7;
}

.flow-card--green > small {
  color: #54a77f;
}

.flow-card > strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.flow-card > p {
  margin: 11px 0 0;
  color: #70798a;
  font-size: 10px;
  line-height: 1.6;
}

.flow-connector {
  position: relative;
  display: flex;
  align-items: center;
}

.flow-connector span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(52, 119, 255, 0.1), rgba(52, 119, 255, 0.55), rgba(52, 119, 255, 0.1));
}

.flow-connector i {
  position: absolute;
  right: 0;
  width: 4px;
  height: 4px;
  border-top: 1px solid var(--blue-bright);
  border-right: 1px solid var(--blue-bright);
  transform: rotate(45deg);
}

.network-section {
  padding: 130px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 35%, rgba(41, 111, 255, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 30%);
}

.network-heading {
  align-items: end;
}

.network-dashboard {
  position: relative;
  margin-top: 68px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(11, 15, 23, 0.98), rgba(5, 8, 13, 0.98));
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.035);
}

.network-dashboard::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: soft-light;
}

.network-toolbar {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.72);
}

.network-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.network-title > div {
  display: grid;
  gap: 4px;
}

.network-title strong {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: -0.02em;
}

.network-title small {
  color: #5d6677;
  font-size: 7px;
}

.network-environment {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #687183;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-environment span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(33, 215, 231, 0.65);
}

.network-modes {
  display: flex;
  justify-self: end;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}

.network-modes button {
  min-height: 28px;
  padding: 0 11px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #626b7c;
  cursor: pointer;
  font-size: 7px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.network-modes button.active {
  background: rgba(47, 116, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(62, 132, 255, 0.16);
  color: #72a2ff;
}

.network-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  min-height: 565px;
}

.network-map {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 54% 45%, rgba(34, 111, 255, 0.08), transparent 37%);
  background-size: 34px 34px, 34px 34px, auto;
}

.network-map::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 50%, transparent 15%, rgba(4, 7, 12, 0.08) 58%, rgba(4, 7, 12, 0.75) 100%);
}

.map-topline {
  position: absolute;
  top: 19px;
  right: 21px;
  left: 21px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-topline > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.map-topline strong {
  color: #969eac;
  font-size: 8px;
}

.map-topline small {
  color: #515a6a;
  font-size: 7px;
}

#network-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.region-marker {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 8px auto;
  column-gap: 7px;
  min-width: 105px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  background: rgba(5, 9, 15, 0.78);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.region-marker i {
  grid-row: 1 / 3;
  align-self: center;
  width: 7px;
  height: 7px;
  border: 2px solid rgba(45, 120, 255, 0.25);
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 10px rgba(61, 139, 255, 0.75);
}

.region-marker strong {
  font-size: 8px;
}

.region-marker small {
  margin-top: 3px;
  color: #5c6576;
  font-size: 6px;
}

.region-marker--eu {
  top: 27%;
  left: 52%;
}

.region-marker--west {
  top: 54%;
  left: 19%;
}

.region-marker--na {
  top: 22%;
  left: 10%;
}

.region-marker--me {
  right: 10%;
  bottom: 24%;
}

.network-map[data-map-mode="risk"] .region-marker--west i,
.network-map[data-map-mode="risk"] .region-marker--me i {
  border-color: rgba(255, 177, 62, 0.28);
  background: #ffb13e;
  box-shadow: 0 0 10px rgba(255, 177, 62, 0.72);
}

.network-map[data-map-mode="cases"] .region-marker i {
  border-color: rgba(139, 108, 255, 0.28);
  background: var(--violet);
  box-shadow: 0 0 10px rgba(139, 108, 255, 0.72);
}

.map-legend {
  position: absolute;
  bottom: 19px;
  left: 21px;
  z-index: 4;
  display: flex;
  gap: 17px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(5, 8, 13, 0.72);
  backdrop-filter: blur(10px);
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #667082;
  font-size: 6px;
}

.legend-node {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(33, 215, 231, 0.7);
}

.legend-node--review {
  background: #ffb13e;
  box-shadow: 0 0 8px rgba(255, 177, 62, 0.7);
}

.legend-node--case {
  background: var(--violet);
  box-shadow: 0 0 8px rgba(139, 108, 255, 0.7);
}

.map-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  opacity: 0.045;
  transform: translate(-50%, -50%) scale(3.2);
}

.network-sidebar {
  position: relative;
  z-index: 3;
  padding: 17px;
  border-left: 1px solid var(--line);
  background: rgba(4, 7, 11, 0.58);
}

.network-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.network-stat-grid article {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.022);
}

.network-stat-grid article > span {
  color: #667082;
  font-size: 6px;
  white-space: nowrap;
}

.network-stat-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.network-stat-grid small {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  color: #536071;
  font-size: 5px;
  white-space: nowrap;
}

.network-stat-grid small i {
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.network-stat-grid .network-review i {
  background: #ffb13e;
}

.threat-feed {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.threat-feed-head {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.threat-feed-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.threat-feed-head .pulse-dot {
  width: 5px;
  height: 5px;
}

.threat-feed-head strong {
  font-size: 8px;
}

.threat-feed-head > small {
  color: #4f8efa;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.threat-event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  transition: background 0.2s ease;
}

.threat-event:last-child {
  border-bottom: 0;
}

.threat-event:hover {
  background: rgba(255, 255, 255, 0.022);
}

.threat-event--muted {
  opacity: 0.64;
}

.threat-event-icon {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  color: #697487;
  place-items: center;
}

.threat-event-icon--blue {
  border-color: rgba(61, 139, 255, 0.13);
  background: rgba(61, 139, 255, 0.055);
  color: var(--blue-bright);
}

.threat-event-icon--violet {
  border-color: rgba(139, 108, 255, 0.15);
  background: rgba(139, 108, 255, 0.055);
  color: var(--violet);
}

.threat-event-icon--cyan {
  border-color: rgba(33, 215, 231, 0.14);
  background: rgba(33, 215, 231, 0.05);
  color: var(--cyan);
}

.threat-event-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.threat-event > div {
  display: grid;
  gap: 4px;
}

.threat-event strong {
  font-size: 8px;
}

.threat-event small,
.threat-event time {
  color: #596273;
  font-size: 6px;
}

.threat-event time {
  font-style: normal;
}

.network-review-button {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid rgba(56, 126, 255, 0.2);
  border-radius: 10px;
  background: rgba(45, 112, 255, 0.07);
  color: #72a0f9;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.network-review-button:hover {
  border-color: rgba(56, 126, 255, 0.42);
  background: rgba(45, 112, 255, 0.12);
}

.network-review-button svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.network-footer {
  position: relative;
  z-index: 6;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.72);
}

.network-footer > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #606a7b;
  font-size: 7px;
}

.network-footer svg {
  width: 12px;
  fill: none;
  stroke: #4e87f5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.network-footer > small {
  margin-left: auto;
  color: #454e5d;
  font-size: 6px;
}

.products-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 24%);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 80px;
}

.section-heading--split > p {
  margin: 0 0 3px;
}

.product-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
  min-height: 620px;
  margin-top: 110px;
}

.product-feature--forensics {
  grid-template-columns: 1.15fr 0.85fr;
  padding-top: 110px;
  border-top: 1px solid var(--line);
}

.product-feature--forensics .product-copy {
  order: 2;
}

.product-feature--forensics .product-visual {
  order: 1;
}

.product-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-logo {
  display: grid;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(52, 119, 255, 0.17);
  border-radius: 12px;
  background: rgba(37, 105, 255, 0.07);
  color: var(--blue-bright);
  place-items: center;
  box-shadow: 0 0 28px rgba(37, 105, 255, 0.08);
}

.product-logo--violet {
  border-color: rgba(139, 108, 255, 0.2);
  background: rgba(139, 108, 255, 0.07);
  color: var(--violet);
  box-shadow: 0 0 28px rgba(139, 108, 255, 0.08);
}

.product-logo svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.product-label > div {
  display: grid;
  gap: 6px;
}

.product-label strong {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.product-label small {
  color: #6d7687;
  font-size: 9px;
}

.product-copy h3 {
  margin: 28px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.product-copy > p {
  margin: 20px 0 0;
  color: #828b9b;
  font-size: 14px;
  line-height: 1.72;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: start;
  gap: 12px;
}

.feature-list li > span {
  display: grid;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(55, 124, 255, 0.15);
  border-radius: 8px;
  background: rgba(46, 112, 255, 0.055);
  color: var(--blue-bright);
  place-items: center;
}

.feature-list--violet li > span {
  border-color: rgba(139, 108, 255, 0.18);
  background: rgba(139, 108, 255, 0.055);
  color: var(--violet);
}

.feature-list svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-list li > div {
  display: grid;
  gap: 5px;
}

.feature-list strong {
  font-size: 11px;
}

.feature-list small {
  color: #697283;
  font-size: 9px;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 31px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: #5d95ff;
  font-size: 11px;
  font-weight: 700;
}

.text-link svg {
  width: 14px;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link--violet {
  color: #a18cff;
}

.product-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 95%, rgba(43, 112, 255, 0.13), transparent 36%),
    linear-gradient(145deg, #0b0f17, #070a0f);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.03);
  isolation: isolate;
}

.product-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black);
}

.forensics-visual {
  background:
    radial-gradient(circle at 12% 100%, rgba(139, 108, 255, 0.15), transparent 38%),
    linear-gradient(145deg, #0b0f17, #070a0f);
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 21px;
  border-bottom: 1px solid var(--line);
  color: #676f80;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-top > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.visual-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(82, 223, 162, 0.55);
}

.forensics-visual .visual-top i {
  background: var(--violet);
  box-shadow: 0 0 9px rgba(139, 108, 255, 0.55);
}

.player-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 25px 25px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.avatar-ring {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(58, 130, 255, 0.33);
  border-radius: 50%;
  background: rgba(44, 110, 255, 0.07);
  place-items: center;
  box-shadow: 0 0 22px rgba(44, 110, 255, 0.09);
}

.avatar-ring i {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c315a, #101722);
  color: #8bb0f8;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  place-items: center;
}

.player-card > div {
  display: grid;
  gap: 4px;
}

.player-card small,
.forensic-head small {
  color: #556071;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.player-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.player-card > div span {
  color: #626c7d;
  font-size: 7px;
}

.player-card em {
  padding: 6px 9px;
  border: 1px solid rgba(82, 223, 162, 0.18);
  border-radius: 999px;
  background: rgba(82, 223, 162, 0.055);
  color: var(--green);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.signal-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin: 18px 25px 0;
}

.signal-matrix > div {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(3, 6, 10, 0.48);
}

.signal-matrix span {
  color: #626c7c;
  font-size: 7px;
}

.signal-matrix strong {
  font-size: 9px;
}

.matrix-line {
  height: 3px;
  margin-top: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
}

.matrix-line b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.matrix-value--96 {
  width: 96%;
}

.matrix-value--88 {
  width: 88%;
}

.matrix-value--93 {
  width: 93%;
}

.visual-event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 18px 25px 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(3, 6, 10, 0.48);
}

.visual-event > span,
.evidence-seal > span {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(45, 113, 255, 0.07);
  color: var(--blue-bright);
  place-items: center;
}

.visual-event svg,
.evidence-seal svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.visual-event > div,
.evidence-seal > div {
  display: grid;
  gap: 4px;
}

.visual-event strong,
.evidence-seal strong {
  font-size: 9px;
}

.visual-event small,
.evidence-seal small {
  color: #5c6677;
  font-size: 7px;
}

.visual-event em {
  color: #657084;
  font-size: 7px;
  font-style: normal;
}

.forensic-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 29px 28px 0;
}

.forensic-head > div {
  display: grid;
  gap: 7px;
}

.forensic-head strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.forensic-head > span {
  color: #aa97ff;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.forensic-track {
  height: 5px;
  margin: 16px 28px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.forensic-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7356ed, #9c7dff, var(--cyan));
  box-shadow: 0 0 14px rgba(139, 108, 255, 0.35);
}

.artifact-list {
  display: grid;
  gap: 10px;
  margin: 25px 28px 0;
}

.artifact-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 67px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(3, 6, 10, 0.44);
}

.artifact-icon {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(139, 108, 255, 0.13);
  border-radius: 9px;
  background: rgba(139, 108, 255, 0.055);
  color: #9d86ff;
  place-items: center;
}

.artifact-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.artifact-list > div > div {
  display: grid;
  gap: 5px;
}

.artifact-list strong {
  font-size: 9px;
}

.artifact-list small {
  color: #626b7c;
  font-size: 7px;
}

.artifact-list em {
  color: var(--green);
  font-size: 7px;
  font-style: normal;
}

.artifact-list em.pending {
  color: #ae95ff;
}

.evidence-seal {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 16px 28px 0;
  padding: 13px 15px;
  border: 1px solid rgba(33, 215, 231, 0.12);
  border-radius: 12px;
  background: rgba(33, 215, 231, 0.035);
}

.evidence-seal > span {
  background: rgba(33, 215, 231, 0.065);
  color: var(--cyan);
}

.principles-section {
  border-block: 1px solid var(--line);
  background: radial-gradient(circle at 15% 50%, rgba(34, 102, 255, 0.07), transparent 30%);
}

.principles-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 110px;
}

.principles-copy > p {
  max-width: 450px;
  margin: 20px 0 0;
}

.principles-copy .button {
  margin-top: 30px;
}

.principle-cards {
  position: relative;
  display: grid;
  gap: 10px;
}

.principle-cards::before {
  position: absolute;
  top: 50%;
  left: 29px;
  z-index: -1;
  width: 1px;
  height: calc(100% - 80px);
  content: "";
  background: linear-gradient(var(--blue), var(--cyan), var(--violet));
  opacity: 0.35;
  transform: translateY(-50%);
}

.principle-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  min-height: 135px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.principle-card:hover {
  border-color: rgba(76, 134, 255, 0.25);
  transform: translateX(-4px);
}

.principle-icon {
  display: grid;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(64, 127, 255, 0.17);
  border-radius: 12px;
  background: #0a101d;
  color: #548bff;
  place-items: center;
}

.principle-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.principle-card > div {
  display: grid;
}

.principle-card small {
  color: #4c73c0;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.principle-card strong {
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: -0.025em;
}

.principle-card p {
  margin: 8px 0 0;
  color: #6c7585;
  font-size: 10px;
  line-height: 1.55;
}

.capabilities-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 30%);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.capability-grid article {
  min-height: 225px;
  padding: 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background 0.25s ease;
}

.capability-grid article:nth-child(3n) {
  border-right: 0;
}

.capability-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.capability-grid article:hover {
  background: radial-gradient(circle at 0 0, rgba(49, 113, 255, 0.09), rgba(255, 255, 255, 0.022));
}

.capability-grid article > span {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  color: #5388f4;
  place-items: center;
}

.capability-grid svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.capability-grid strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: -0.025em;
}

.capability-grid p {
  max-width: 290px;
  margin: 12px 0 0;
  color: #6e7787;
  font-size: 10px;
  line-height: 1.6;
}

.comparison-section {
  padding: 130px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 100%, rgba(43, 112, 255, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.008), transparent 28%);
}

.comparison-shell {
  margin-top: 65px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.012);
}

.comparison-product-row,
.comparison-row {
  display: grid;
  grid-template-columns: 180px repeat(3, minmax(0, 1fr));
}

.comparison-product-row {
  min-height: 108px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
}

.comparison-product-row > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px;
  border-left: 1px solid var(--line);
}

.comparison-product-row > div:first-child {
  border-left: 0;
}

.comparison-product-row .comparison-empty {
  align-items: flex-end;
  color: #4f5868;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-product-row > div > span:last-child {
  display: grid;
  gap: 5px;
}

.comparison-product-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
}

.comparison-product-row small {
  color: #5f6878;
  font-size: 7px;
}

.comparison-product-row .product-logo {
  width: 37px;
  height: 37px;
  border-radius: 10px;
}

.comparison-product-row .product-logo svg {
  width: 18px;
}

.comparison-connected {
  background: linear-gradient(135deg, rgba(43, 112, 255, 0.055), rgba(33, 215, 231, 0.025));
}

.comparison-row {
  min-height: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > * {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.055);
}

.comparison-row > *:first-child {
  border-left: 0;
}

.comparison-row > strong {
  color: #8992a1;
  font-size: 8px;
}

.comparison-row > span {
  gap: 7px;
  color: #687283;
  font-size: 8px;
}

.comparison-row > span:last-child {
  background: rgba(40, 111, 255, 0.018);
  color: #91a5c8;
  font-weight: 600;
}

.comparison-row > span:last-child i {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(33, 215, 231, 0.55);
}

.comparison-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 19px;
  min-height: 102px;
  padding: 18px 22px;
  border-top: 1px solid rgba(55, 125, 255, 0.18);
  background: linear-gradient(90deg, rgba(43, 112, 255, 0.05), rgba(33, 215, 231, 0.025));
}

.comparison-callout-mark {
  display: flex;
  align-items: center;
}

.comparison-callout-mark span {
  width: 12px;
  height: 12px;
  border: 2px solid #367eff;
  border-radius: 50%;
  background: #0a1120;
  box-shadow: 0 0 12px rgba(54, 126, 255, 0.25);
}

.comparison-callout-mark span:last-child {
  border-color: var(--violet);
  box-shadow: 0 0 12px rgba(139, 108, 255, 0.25);
}

.comparison-callout-mark i {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, #367eff, var(--violet));
}

.comparison-callout > div:nth-child(2) {
  display: grid;
  gap: 6px;
}

.comparison-callout strong {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.comparison-callout p {
  max-width: 720px;
  margin: 0;
  color: #667082;
  font-size: 8px;
  line-height: 1.55;
}

.comparison-callout .text-link {
  margin-top: 0;
  white-space: nowrap;
}

.integration-row {
  display: grid;
  grid-template-columns: 1.05fr repeat(4, 1fr);
  align-items: stretch;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.01);
}

.integration-row > span,
.integration-row > div {
  min-height: 78px;
  padding: 17px;
  border-left: 1px solid var(--line);
}

.integration-row > span {
  display: flex;
  align-items: center;
  border-left: 0;
  color: #596273;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integration-row > div {
  display: grid;
  align-content: center;
  gap: 5px;
  transition: background 0.2s ease;
}

.integration-row > div:hover {
  background: rgba(46, 114, 255, 0.035);
}

.integration-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
}

.integration-row small {
  color: #596273;
  font-size: 7px;
}

.pricing-section {
  border-block: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 67px;
}

.price-card {
  position: relative;
  min-height: 525px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px);
}

.price-card--featured {
  border-color: rgba(55, 125, 255, 0.38);
  background:
    radial-gradient(circle at 50% 0, rgba(43, 112, 255, 0.15), transparent 36%),
    linear-gradient(150deg, rgba(45, 112, 255, 0.055), rgba(255, 255, 255, 0.016));
  box-shadow: 0 25px 70px rgba(26, 79, 190, 0.12), inset 0 1px rgba(255, 255, 255, 0.04);
}

.popular-label {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 110px;
  padding: 5px 10px;
  border: 1px solid rgba(55, 125, 255, 0.4);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #0e1a32;
  color: #6a9cff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  transform: translateX(-50%);
}

.price-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-dot {
  width: 10px;
  height: 10px;
  border: 2px solid #172341;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(43, 112, 255, 0.5);
}

.plan-dot--cyan {
  border-color: #143239;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(33, 215, 231, 0.5);
}

.plan-dot--violet {
  border-color: #28213f;
  background: var(--violet);
  box-shadow: 0 0 12px rgba(139, 108, 255, 0.5);
}

.price-top > div {
  display: grid;
  gap: 5px;
}

.price-top strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.price-top small {
  color: #666f80;
  font-size: 8px;
}

.price {
  display: flex;
  min-height: 92px;
  align-items: baseline;
  margin-top: 26px;
}

.price sup {
  align-self: flex-start;
  margin-top: 15px;
  color: #8a93a3;
  font-size: 14px;
  font-weight: 600;
}

.price > strong {
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  letter-spacing: -0.06em;
}

.price > span {
  margin-left: 8px;
  color: #626b7a;
  font-size: 9px;
}

.price--custom {
  align-items: center;
}

.price--custom > strong {
  font-size: 38px;
}

.price-card > p {
  min-height: 49px;
  margin: 0 0 23px;
  color: #737c8d;
  font-size: 10px;
  line-height: 1.6;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #858e9e;
  font-size: 9px;
}

.price-card li svg {
  width: 13px;
  fill: none;
  stroke: #5f91f4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 0;
  color: #626b7b;
  font-size: 9px;
}

.pricing-note svg {
  width: 13px;
  fill: rgba(53, 124, 255, 0.1);
  stroke: var(--blue-bright);
  stroke-width: 1.6;
}

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

.faq-copy {
  position: sticky;
  top: 130px;
}

.faq-copy > p {
  max-width: 360px;
  margin: 19px 0 0;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  content: "";
  background: #7d8797;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

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

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

.faq-list details[open] summary {
  color: #79a6ff;
}

.faq-list details > p {
  max-width: 650px;
  margin: -10px 0 28px;
  color: #737d8d;
  font-size: 11px;
  line-height: 1.75;
}

.cta-section {
  overflow: hidden;
  padding: 70px 0 130px;
}

.cta-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 70px 35px;
  border: 1px solid rgba(56, 127, 255, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 115%, rgba(34, 106, 255, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(17, 26, 43, 0.82), rgba(7, 10, 15, 0.93));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 35px 100px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.cta-card::before,
.cta-card::after {
  position: absolute;
  top: 50%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(69, 125, 226, 0.09);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.cta-card::before {
  left: -170px;
}

.cta-card::after {
  right: -170px;
}

.cta-mark {
  display: block;
  width: 72px;
  height: 60px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 20px rgba(42, 115, 255, 0.25));
}

.cta-mark svg {
  width: 100%;
  height: 100%;
}

.cta-mark path:first-child {
  fill: rgba(42, 115, 255, 0.12);
  stroke: #3b83ff;
  stroke-width: 1.5;
}

.cta-mark path:last-child {
  fill: white;
}

.cta-card .section-kicker::before {
  display: none;
}

.cta-card h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}

.cta-card > p {
  max-width: 560px;
  margin: 19px auto 0;
  color: #818a9a;
  font-size: 13px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 29px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030507;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 100px;
  padding: 65px 0 56px;
}

.footer-brand > p {
  max-width: 320px;
  margin: 22px 0 0;
  color: #646d7e;
  font-size: 10px;
  line-height: 1.6;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #555e6e;
  font-size: 8px;
}

.footer-status i {
  display: block;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 130px);
  gap: 38px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: #aab1bd;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  width: max-content;
  padding: 0;
  border: 0;
  background: none;
  color: #646d7d;
  cursor: pointer;
  font-size: 9px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #464e5d;
  font-size: 8px;
}

.demo-dialog {
  width: min(calc(100% - 32px), 720px);
  max-height: calc(100dvh - 32px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 36px;
  border: 1px solid rgba(70, 132, 255, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0, rgba(44, 109, 255, 0.16), transparent 36%),
    #090d14;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72), inset 0 1px rgba(255, 255, 255, 0.05);
  color: var(--text);
  scrollbar-color: rgba(71, 132, 255, 0.45) transparent;
  scrollbar-width: thin;
}

.demo-dialog::-webkit-scrollbar {
  width: 7px;
}

.demo-dialog::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(71, 132, 255, 0.36);
}

.demo-dialog::backdrop {
  background: rgba(0, 2, 5, 0.78);
  backdrop-filter: blur(12px);
}

.demo-dialog[open] {
  animation: dialog-in 0.28s ease both;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  z-index: 3;
}

.dialog-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: #798292;
  transform: translate(-50%, -50%) rotate(45deg);
}

.dialog-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding-right: 44px;
}

.dialog-icon {
  display: block;
  width: 49px;
  height: 41px;
  margin-top: 2px;
}

.demo-dialog h2 {
  margin-top: 10px;
  font-size: 36px;
  line-height: 1.06;
}

.demo-dialog > p {
  margin: 16px 0 0;
  color: #7b8495;
  font-size: 11px;
  line-height: 1.7;
}

.demo-form {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

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

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field > span {
  color: #9da7b7;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  outline: none;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
  color: #e8edf6;
  font-size: 11px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 46px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 126px;
  padding: 13px;
  line-height: 1.6;
  resize: vertical;
}

.form-field select option {
  background: #0b1018;
  color: #e8edf6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #4f596a;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(61, 139, 255, 0.78);
  background: rgba(42, 103, 230, 0.055);
  box-shadow: 0 0 0 3px rgba(51, 126, 255, 0.09);
}

.form-field input:user-invalid,
.form-field select:user-invalid,
.form-field textarea:user-invalid {
  border-color: rgba(255, 100, 120, 0.58);
}

.form-field > small {
  color: #4f596a;
  font-size: 7px;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #687385;
  cursor: pointer;
  font-size: 8px;
  line-height: 1.5;
}

.form-consent input {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--blue-bright);
}

.contact-submit {
  margin-top: 1px;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-submit.is-loading svg {
  animation: form-arrow 0.8s ease-in-out infinite alternate;
}

.form-status {
  min-height: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #788396;
  font-size: 9px;
  line-height: 1.55;
  transition: min-height 0.2s ease, padding 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.form-status:not(:empty) {
  min-height: 38px;
  padding: 11px 12px;
}

.form-status[data-state="success"] {
  border-color: rgba(82, 223, 162, 0.2);
  background: rgba(82, 223, 162, 0.055);
  color: #7be8b8;
}

.form-status[data-state="error"] {
  border-color: rgba(255, 100, 120, 0.2);
  background: rgba(255, 100, 120, 0.055);
  color: #ff8e9d;
}

.dialog-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
  color: #535d6d;
  font-size: 7px;
  line-height: 1.5;
  text-align: center;
}

.dialog-note svg {
  flex: 0 0 auto;
  width: 10px;
  fill: none;
  stroke: #647086;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

@keyframes form-arrow {
  from { transform: translateX(0); }
  to { transform: translateX(4px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--delay {
  transition-delay: 0.12s;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.78); }
}

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

@keyframes draw-chart {
  to { stroke-dashoffset: 0; }
}

@keyframes bar-pulse {
  from { transform: scaleY(0.72); opacity: 0.45; }
  to { transform: scaleY(1); opacity: 0.9; }
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 0.9; transform: scaleY(1); transform-origin: top; }
}

@keyframes fade-panel {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1180px) {
  .status-pill {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    gap: 35px;
  }

  .console-shell {
    transform: scale(0.94);
    transform-origin: right center;
  }

  .platform-flow {
    grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  }

  .flow-card {
    padding-inline: 18px;
  }

  .product-feature {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .nav-actions > .button {
    display: none;
  }

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

  .nav-actions {
    grid-column: 2;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    position: absolute;
    top: 17px;
    left: 12px;
    width: 17px;
    height: 1px;
    background: #a3aab6;
    transition: transform 0.2s ease, top 0.2s ease;
  }

  .menu-toggle > span:nth-child(2) {
    top: 23px;
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: grid;
    max-height: 0;
    gap: 2px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 0 0 16px 16px;
    background: rgba(7, 10, 15, 0.96);
    opacity: 0;
    backdrop-filter: blur(20px);
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease, border-color 0.3s ease;
  }

  .mobile-menu.open {
    max-height: 420px;
    padding: 14px;
    border-color: var(--line);
    opacity: 1;
  }

  .mobile-menu a {
    padding: 13px 12px;
    border-radius: 8px;
    color: #9da5b3;
    font-size: 12px;
    font-weight: 600;
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.035);
    color: white;
  }

  .mobile-menu .button {
    margin-top: 6px;
  }

  .hero {
    padding-top: 140px;
  }

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

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

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

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

  .console-wrap {
    max-width: 700px;
    margin-inline: auto;
  }

  .console-shell {
    transform: none;
  }

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

  .signal-intro {
    display: none;
  }

  .platform-flow {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .flow-connector {
    display: none;
  }

  .network-body {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .network-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .network-stat-grid article:last-child {
    grid-column: 1 / -1;
  }

  .comparison-product-row,
  .comparison-row {
    grid-template-columns: 145px repeat(3, minmax(0, 1fr));
  }

  .comparison-product-row > div,
  .comparison-row > * {
    padding-inline: 14px;
  }

  .product-feature,
  .product-feature--forensics {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .product-copy {
    max-width: 650px;
  }

  .product-feature--forensics .product-copy {
    order: 1;
  }

  .product-feature--forensics .product-visual {
    order: 2;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .principles-copy {
    max-width: 670px;
  }

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

  .capability-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .capability-grid article:nth-child(2n) {
    border-right: 0;
  }

  .capability-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .capability-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .faq-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .container,
  .nav-wrap {
    width: min(calc(100% - 30px), var(--container));
  }

  .site-header {
    height: 70px;
  }

  .brand-mark {
    width: 27px;
    height: 31px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy small {
    font-size: 6px;
  }

  .brand > .brand-symbol {
    width: 34px;
    height: 28px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 85px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

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

  .hero-proof {
    margin-top: 38px;
  }

  .hero-proof > div {
    padding-right: 10px;
  }

  .hero-proof > div + div {
    padding-left: 10px;
  }

  .console-wrap {
    margin-top: -5px;
  }

  .console-shell {
    min-height: 0;
    border-radius: 17px;
  }

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

  .console-title {
    justify-self: end;
  }

  .secure-state {
    display: none;
  }

  .product-switch {
    padding-inline: 10px;
  }

  .product-switch button {
    padding-inline: 9px;
  }

  .product-switch small {
    display: none;
  }

  .console-content {
    grid-template-columns: 1fr;
    padding: 9px 10px 12px;
  }

  .console-main {
    min-height: 0;
    padding: 14px;
  }

  .console-side {
    grid-template-columns: 1fr 1fr;
  }

  .bar-viz {
    height: 61px;
  }

  .event-card {
    align-content: center;
  }

  .console-footer {
    margin: 0 10px 10px;
  }

  .pipeline {
    display: none;
  }

  .console-tags {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .signal-inner {
    display: flex;
    min-height: 66px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .signal-inner::-webkit-scrollbar {
    display: none;
  }

  .signal-list {
    min-width: max-content;
    gap: 14px;
  }

  .signal-end {
    display: none;
  }

  .platform-section,
  .network-section,
  .products-section,
  .principles-section,
  .capabilities-section,
  .comparison-section,
  .pricing-section,
  .faq-section {
    padding: 90px 0;
  }

  .section-heading h2,
  .principles-copy h2,
  .faq-copy h2 {
    font-size: 37px;
  }

  .platform-flow {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .flow-card {
    min-height: 220px;
  }

  .network-dashboard {
    margin-top: 46px;
    border-radius: 17px;
  }

  .network-toolbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 108px;
    padding-block: 13px;
  }

  .network-environment {
    display: none;
  }

  .network-modes {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .network-modes button {
    flex: 1;
  }

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

  .network-map {
    min-height: 430px;
  }

  .network-sidebar {
    padding: 12px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .network-stat-grid article:last-child {
    grid-column: auto;
  }

  .network-stat-grid article {
    padding-inline: 8px;
  }

  .network-footer {
    flex-wrap: wrap;
    gap: 9px 15px;
    padding-block: 12px;
  }

  .network-footer > small {
    display: none;
  }

  .region-marker {
    min-width: 91px;
    padding: 7px 8px;
  }

  .region-marker--eu {
    top: 26%;
    left: 50%;
  }

  .region-marker--west {
    top: 57%;
    left: 10%;
  }

  .region-marker--na {
    top: 24%;
    left: 7%;
  }

  .region-marker--me {
    right: 5%;
    bottom: 22%;
  }

  .comparison-shell {
    margin-top: 45px;
  }

  .comparison-product-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 135px;
  }

  .comparison-product-row .comparison-empty {
    display: none;
  }

  .comparison-product-row > div {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    padding: 13px 10px;
  }

  .comparison-product-row strong {
    font-size: 9px;
  }

  .comparison-product-row small {
    font-size: 6px;
  }

  .comparison-product-row .brand-symbol--compare {
    width: 34px;
    height: 28px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row > * {
    min-height: 48px;
    padding: 0 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
    border-left: 0;
  }

  .comparison-row > strong {
    min-height: 42px;
    border-top: 0;
    background: rgba(255, 255, 255, 0.018);
    color: #98a1b0;
  }

  .comparison-row > span::before {
    width: 72px;
    flex: 0 0 auto;
    color: #465062;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-row > span:nth-child(2)::before {
    content: "Sentinel";
  }

  .comparison-row > span:nth-child(3)::before {
    content: "Forensics";
  }

  .comparison-row > span:nth-child(4)::before {
    content: "Connected";
  }

  .comparison-callout {
    grid-template-columns: auto 1fr;
    padding: 18px 15px;
  }

  .comparison-callout .text-link {
    grid-column: 1 / -1;
  }

  .integration-row {
    grid-template-columns: 1fr 1fr;
  }

  .integration-row > span {
    grid-column: 1 / -1;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  .integration-row > div {
    border-bottom: 1px solid var(--line);
  }

  .integration-row > div:nth-child(even) {
    border-left: 0;
  }

  .integration-row > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .product-feature {
    min-height: 0;
    margin-top: 75px;
  }

  .product-feature--forensics {
    padding-top: 80px;
  }

  .product-copy h3 {
    font-size: 39px;
  }

  .product-visual {
    min-height: 480px;
  }

  .player-card {
    grid-template-columns: auto 1fr;
    margin-inline: 15px;
  }

  .player-card em {
    display: none;
  }

  .signal-matrix {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-inline: 15px;
  }

  .signal-matrix > div {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px;
  }

  .matrix-line {
    grid-column: 1 / -1;
  }

  .visual-event {
    margin-inline: 15px;
  }

  .forensic-head,
  .forensic-track,
  .artifact-list,
  .evidence-seal {
    margin-inline: 17px;
  }

  .artifact-list > div {
    padding-inline: 10px;
  }

  .principle-card {
    padding: 20px;
  }

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

  .capability-grid article,
  .capability-grid article:nth-child(2n),
  .capability-grid article:nth-child(3n),
  .capability-grid article:nth-last-child(-n + 2),
  .capability-grid article:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-grid article:last-child {
    border-bottom: 0;
  }

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

  .price-card {
    min-height: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-copy {
    position: static;
  }

  .faq-list summary {
    min-height: 77px;
    font-size: 12px;
  }

  .cta-section {
    padding: 35px 0 90px;
  }

  .cta-card {
    min-height: 0;
    padding: 55px 22px;
  }

  .cta-card h2 {
    font-size: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .footer-bottom {
    gap: 20px;
  }

  .demo-dialog {
    width: min(calc(100% - 20px), 720px);
    max-height: calc(100dvh - 20px);
    padding: 28px 20px 24px;
  }

  .dialog-heading {
    display: grid;
    gap: 12px;
    padding-right: 35px;
  }

  .dialog-icon {
    width: 43px;
    height: 36px;
  }

  .demo-dialog h2 {
    font-size: 31px;
  }

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

  .form-field--full {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .region-marker {
    min-width: 77px;
  }

  .region-marker small {
    display: none;
  }

  .region-marker--eu {
    left: 48%;
  }

  .map-legend {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: space-between;
    gap: 6px;
  }

  .network-footer > span:nth-child(3) {
    display: none;
  }

  .network-stat-grid strong {
    font-size: 16px;
  }

  .comparison-product-row small {
    display: none;
  }

  .hero-proof strong {
    font-size: 12px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .console-side {
    grid-template-columns: 1fr;
  }

  .case-overview {
    gap: 5px;
  }

  .case-overview > div {
    padding: 9px 7px;
  }

  .event-row {
    grid-template-columns: 25px 8px 1fr;
  }

  .event-row::before {
    left: 36px;
  }

  .event-row em {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }
}

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

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

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