@font-face {
  font-family: "Roboto Flex";
  src: url("../fonts/roboto-flex-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-stretch: 25% 151%;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Roboto Flex";
  src: url("../fonts/roboto-flex-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-stretch: 25% 151%;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

:root {
  --paper: #f3f4f0;
  --paper-light: #fafbf7;
  --ink: #0d0628;
  --muted: #6f6b79;
  --green: #1ee300;
  --green-deep: #16c900;
  --green-pale: #dcffd6;
  --line: rgba(13, 6, 40, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.58);
  --dark: #0d0628;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Onest", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body,
button,
input {
  font-family: "Onest", Arial, sans-serif;
}

h1,
h2,
h3 {
  font-family: "Roboto Flex", "Onest", Arial, sans-serif;
  font-optical-sizing: auto;
  font-variation-settings:
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712,
    "wdth" 122;
}

button,
input {
  font: inherit;
}

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

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

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--green);
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 5%, rgba(30, 227, 0, 0.08), transparent 22rem),
    linear-gradient(180deg, #f6f7f3 0%, var(--paper) 24%, #f8f9f5 100%);
}

.site-shell::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.27;
  pointer-events: none;
  background-image: radial-gradient(rgba(13, 6, 40, 0.16) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 22%, transparent 76%, #000);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
  pointer-events: none;
}

.ambient--one {
  top: 35rem;
  right: -20rem;
  background: var(--green);
}

.ambient--two {
  top: 155rem;
  left: -24rem;
  background: #8278ff;
}

.page-width {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(110px, 10vw, 164px);
  scroll-margin-top: 90px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

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

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28)),
    rgba(232, 241, 232, 0.3);
  box-shadow:
    0 18px 52px rgba(13, 6, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(26px) saturate(180%) brightness(1.04);
  -webkit-backdrop-filter: blur(26px) saturate(180%) brightness(1.04);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 20px;
  left: 50%;
  width: min(1320px, calc(100% - 64px));
  min-height: 70px;
  padding: 10px 12px 10px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 100px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.3)),
    rgba(232, 241, 232, 0.34);
  box-shadow:
    0 18px 52px rgba(13, 6, 40, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.04);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.04);
  transform: translateX(-50%);
  animation: headerIn 0.8s var(--ease) both;
}

.brand {
  width: fit-content;
  display: inline-block;
  transition: transform 0.35s var(--ease), filter 0.35s ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 12px rgba(30, 227, 0, 0.25));
}

.brand img {
  width: 210px;
  height: auto;
  display: block;
}

.brand--inverse {
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(13, 6, 40, 0.76);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.3s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 1px;
  height: 1px;
  background: var(--green-deep);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  left: 0;
  right: 0;
}

.header-cta {
  justify-self: end;
}

.button {
  position: relative;
  min-height: 50px;
  padding: 0 12px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.72) 50%, transparent 75%);
  transform: translateX(-125%);
  transition: transform 0.7s var(--ease);
}

.button > * {
  position: relative;
  z-index: 1;
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(125%);
}

.button--green {
  color: var(--ink);
  border-color: rgba(30, 227, 0, 0.8);
  background: linear-gradient(120deg, #2df80e, var(--green));
  box-shadow:
    0 13px 24px rgba(30, 227, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button--green:hover,
.button--green:focus-visible {
  box-shadow: 0 17px 34px rgba(30, 227, 0, 0.27);
}

.button--dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--ink);
  box-shadow: 0 15px 28px rgba(13, 6, 40, 0.16);
}

.button--outline {
  color: var(--ink);
  border-color: rgba(13, 6, 40, 0.18);
  background: rgba(255, 255, 255, 0.35);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--ink);
  background: #fff;
}

.button--large {
  min-height: 60px;
  padding-left: 30px;
  font-size: 16px;
}

.button-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  transition: transform 0.35s var(--ease);
}

.button-arrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.button--dark .button-arrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.button:hover .button-arrow,
.button:focus-visible .button-arrow {
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 108px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  align-items: center;
  gap: clamp(12px, 2.5vw, 36px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(30, 227, 0, 0.12), 0 0 18px rgba(30, 227, 0, 0.44);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(52px, 4.45vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  transition-delay: 0.12s;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

h1 em,
h2 em {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
  letter-spacing: -0.045em;
}

.hero h1 em {
  position: relative;
  color: var(--green-deep);
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 2px;
  height: 8px;
  border-radius: 50%;
  background: rgba(30, 227, 0, 0.19);
  filter: blur(5px);
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: rgba(13, 6, 40, 0.64);
  font-size: 18px;
  line-height: 1.55;
  transition-delay: 0.18s;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 26px;
  transition-delay: 0.24s;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(13, 6, 40, 0.74);
  font-size: 14px;
  font-weight: 500;
}

.text-link > span,
.text-link > svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease);
}

.text-link:hover > span,
.text-link:hover > svg,
.text-link:focus-visible > span,
.text-link:focus-visible > svg {
  transform: translateY(4px);
}

.text-link--dark {
  color: var(--ink);
}

.text-link--dark .button-arrow {
  width: 26px;
  height: 26px;
  background: rgba(13, 6, 40, 0.08);
}

.modal-trigger-link {
  padding: 0;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(13, 6, 40, 0.48);
  font-size: 14px;
  transition-delay: 0.3s;
}

.hero-trust i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-deep);
}

.radar-wrap {
  position: relative;
  z-index: 2;
  right: -35px;
  width: 100%;
  min-width: 0;
  min-height: min(680px, calc(100vh - 112px));
  min-height: min(680px, calc(100svh - 112px));
  display: grid;
  place-items: center;
  transition-delay: 0.16s;
}

.radar-wrap::before {
  content: none;
}

.radar-panel {
  position: relative;
  width: min(760px, 55vw, calc(100vh - 100px));
  width: min(760px, 55vw, calc(100svh - 100px));
  height: min(760px, 55vw, calc(100vh - 100px));
  height: min(760px, 55vw, calc(100svh - 100px));
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(13, 6, 40, 0.07);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(30, 227, 0, 0.11), transparent 37%),
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.48), rgba(236, 240, 232, 0.18) 62%, transparent 73%);
  box-shadow: none;
}

.radar-grid,
.final-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(13, 6, 40, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 6, 40, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, #000 20%, transparent 74%);
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(13, 6, 40, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px dashed rgba(30, 227, 0, 0.17);
  border-radius: inherit;
}

.radar-ring--one {
  width: 30%;
  height: 30%;
}

.radar-ring--two {
  width: 59%;
  height: 59%;
}

.radar-ring--three {
  width: 88%;
  height: 88%;
}

.radar-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  background: linear-gradient(90deg, transparent, rgba(13, 6, 40, 0.11), transparent);
}

.radar-cross--horizontal {
  width: 90%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.radar-cross--vertical {
  width: 1px;
  height: 90%;
  background: linear-gradient(transparent, rgba(13, 6, 40, 0.11), transparent);
  transform: translate(-50%, -50%);
}

.radar-beam,
.audience-beam {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 44%;
  height: 44%;
  transform-origin: left top;
  background: conic-gradient(from 270deg at 0 0, rgba(30, 227, 0, 0.34), transparent 31deg);
  animation: radarSweep 6.8s linear infinite;
}

.radar-beam::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  box-shadow: 0 0 12px rgba(30, 227, 0, 0.62);
}

.radar-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid rgba(30, 227, 0, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 32px rgba(30, 227, 0, 0.34);
  transform: translate(-50%, -50%);
}

.radar-core span {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  background: var(--green);
  animation: corePulse 1.8s ease-in-out infinite;
}

.signal-point {
  --signal-x: 50%;
  --signal-y: 50%;
  position: absolute;
  z-index: 6;
  left: var(--signal-x);
  top: var(--signal-y);
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.signal-pip {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(13, 6, 40, 0.22);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.signal-ripple {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(13, 6, 40, 0.18);
  border-radius: 50%;
}

.signal-point.is-active .signal-pip {
  background: var(--green);
  box-shadow: 0 0 16px rgba(30, 227, 0, 0.92);
}

.signal-point.is-active .signal-ripple {
  border-color: var(--green);
  animation: signalRipple 1.8s ease-out infinite;
}

.signal-card {
  position: absolute;
  z-index: 8;
  top: -32px;
  width: 210px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3)),
    rgba(232, 241, 232, 0.28);
  box-shadow:
    0 20px 54px rgba(20, 12, 49, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  animation: signalCardIn 0.55s var(--ease) both;
}

.signal-card--right {
  left: 25px;
}

.signal-card--left {
  right: 25px;
}

.signal-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(13, 6, 40, 0.44);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}

.signal-card strong {
  margin-top: 8px;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.signal-card small {
  margin-top: 4px;
  display: block;
  color: rgba(13, 6, 40, 0.46);
  font-size: 14px;
}

.radar-coordinate {
  position: absolute;
  left: 50%;
  color: rgba(13, 6, 40, 0.26);
  font-family: "Onest", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.11em;
  transform: translateX(-50%);
}

.radar-coordinate--top {
  top: 5%;
}

.radar-coordinate--bottom {
  bottom: 5%;
}

.radar-status,
.radar-queue {
  position: absolute;
  z-index: 12;
  display: flex;
  align-items: center;
}

.radar-status {
  top: 32px;
  left: -2px;
  min-width: 250px;
  padding: 14px 16px;
  gap: 12px;
  border-radius: 18px;
  animation: floatOne 5s ease-in-out infinite;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(30, 227, 0, 0.12), 0 0 18px rgba(30, 227, 0, 0.46);
}

.radar-status div,
.radar-queue div {
  display: grid;
  gap: 2px;
}

.radar-status small,
.radar-queue small {
  color: rgba(13, 6, 40, 0.43);
  font-size: 14px;
}

.radar-status strong,
.radar-queue strong {
  font-size: 14px;
  font-weight: 600;
}

.radar-status-time {
  margin-left: auto;
  padding: 5px 8px;
  border-radius: 999px;
  color: #117f00;
  background: var(--green-pale);
  font-size: 14px;
  font-weight: 600;
}

.radar-queue {
  right: 72px;
  bottom: 42px;
  min-width: 264px;
  padding: 14px 16px;
  gap: 12px;
  border-radius: 18px;
  animation: floatTwo 5.5s ease-in-out infinite;
}

.queue-number {
  color: var(--green-deep);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.queue-bars {
  height: 22px;
  margin-left: auto;
  display: flex;
  align-items: end;
  gap: 3px;
}

.queue-bars i {
  width: 3px;
  border-radius: 3px;
  background: var(--green);
}

.queue-bars i:nth-child(1) { height: 35%; }
.queue-bars i:nth-child(2) { height: 65%; }
.queue-bars i:nth-child(3) { height: 45%; }
.queue-bars i:nth-child(4) { height: 88%; }
.queue-bars i:nth-child(5) { height: 70%; }

.metrics-strip {
  min-height: 126px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(13, 6, 40, 0.05);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.metrics-strip > div:not(.metrics-live) {
  min-height: 62px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.metrics-strip span {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.metrics-strip p {
  max-width: 150px;
  margin: 0;
  color: rgba(13, 6, 40, 0.48);
  font-size: 14px;
  line-height: 1.4;
}

.metrics-live {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(13, 6, 40, 0.52);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.metrics-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(30, 227, 0, 0.7);
  animation: corePulse 1.8s ease-in-out infinite;
}

.section-intro {
  max-width: 930px;
  margin-bottom: 68px;
}

.section-intro h2,
.section-heading h2,
.pricing-intro h2,
.faq-intro h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.042em;
}

.section-intro h2 em,
.section-heading h2 em {
  color: var(--green-deep);
}

.section-intro > p,
.section-heading > p,
.section-heading > div + p,
.pricing-intro > p,
.faq-intro > p {
  max-width: 550px;
  margin: 0;
  color: rgba(13, 6, 40, 0.52);
  font-size: 16px;
  line-height: 1.55;
}

.signal-engine {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 48%, rgba(30, 227, 0, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.55);
  box-shadow:
    0 40px 100px rgba(21, 13, 50, 0.09),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.engine-toolbar {
  height: 58px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: rgba(13, 6, 40, 0.34);
  font-family: "Onest", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.engine-toolbar > div {
  display: flex;
  gap: 6px;
}

.toolbar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.toolbar-dot--red { background: #ff7a6d; }
.toolbar-dot--yellow { background: #ffc45e; }
.toolbar-dot--green { background: var(--green); }

.engine-online {
  justify-self: end;
  color: #159900;
}

.engine-body {
  min-height: 390px;
  padding: 60px clamp(30px, 7vw, 95px);
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(130px, 0.4fr) minmax(310px, 1fr);
  align-items: center;
}

.database-card,
.crm-card {
  position: relative;
  z-index: 2;
  padding: 26px;
  border: 1px solid rgba(13, 6, 40, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 20px 50px rgba(25, 16, 55, 0.08);
}

.database-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: var(--green);
}

.database-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.database-card small {
  margin-top: 28px;
  display: block;
  color: rgba(13, 6, 40, 0.43);
  font-size: 14px;
}

.database-card strong {
  margin-top: 5px;
  display: block;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.database-progress {
  height: 5px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 6, 40, 0.08);
}

.database-progress span {
  width: 84%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--green);
  animation: progressIn 3.2s var(--ease) infinite alternate;
}

.database-card p {
  margin: 8px 0 0;
  color: rgba(13, 6, 40, 0.43);
  font-size: 14px;
}

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

.engine-flow span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(13, 6, 40, 0.13), var(--green));
}

.engine-flow span:last-child {
  background: linear-gradient(90deg, var(--green), rgba(13, 6, 40, 0.13));
}

.engine-flow i {
  padding: 7px 10px;
  border: 1px solid rgba(30, 227, 0, 0.35);
  border-radius: 999px;
  color: #117f00;
  background: var(--green-pale);
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
  animation: flowPulse 2.4s ease-in-out infinite;
}

.crm-card {
  padding: 0;
  overflow: hidden;
}

.crm-card-head {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: rgba(13, 6, 40, 0.43);
  font-size: 14px;
}

.crm-card-head i {
  padding: 4px 7px;
  border-radius: 999px;
  color: #117f00;
  background: var(--green-pale);
  font-style: normal;
}

.crm-card > strong {
  padding: 22px 22px 6px;
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.crm-person {
  padding: 12px 22px 22px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.crm-person > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ecebe8;
  font-size: 14px;
}

.crm-person div {
  display: grid;
  gap: 3px;
}

.crm-person b {
  font-size: 14px;
  font-weight: 500;
}

.crm-person small {
  color: rgba(13, 6, 40, 0.4);
  font-size: 14px;
}

.crm-action-preview {
  width: calc(100% - 28px);
  height: 42px;
  margin: 0 14px 14px;
  padding: 0 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(30, 227, 0, 0.12);
  border-radius: 12px;
  color: rgba(13, 6, 40, 0.58);
  background: rgba(30, 227, 0, 0.12);
  font-size: 14px;
  pointer-events: none;
  user-select: none;
}

.crm-action-preview i {
  color: rgba(13, 6, 40, 0.38);
  font-style: normal;
}

.crm-action-preview i svg {
  width: 16px;
  height: 16px;
  display: block;
}

.engine-events {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.engine-events > div {
  min-height: 104px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 8px 12px;
  border-right: 1px solid var(--line);
}

.engine-events > div:last-child {
  border-right: 0;
}

.engine-events span {
  color: rgba(13, 6, 40, 0.32);
  font-size: 14px;
}

.engine-events p {
  margin: 0;
  font-size: 14px;
}

.engine-events i {
  grid-column: 2;
  width: fit-content;
  color: #139400;
  font-size: 14px;
  font-style: normal;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.02)),
    var(--paper-light);
  border-block: 1px solid rgba(13, 6, 40, 0.06);
}

.section-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.45fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}

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

.process-card {
  --process-card-padding: 22px;
  position: relative;
  min-height: 430px;
  padding: var(--process-card-padding);
  display: block;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  border: 1px solid rgba(13, 6, 40, 0.1);
  border-radius: 24px;
  text-align: left;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition:
    transform 0.4s var(--ease),
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.4s var(--ease);
}

.process-card:hover,
.process-card:focus-visible {
  transform: translateY(-5px);
}

.process-card.is-active {
  border-color: rgba(30, 227, 0, 0.7);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 55px rgba(27, 18, 58, 0.09);
}

.process-number {
  position: absolute;
  z-index: 2;
  top: var(--process-card-padding);
  left: var(--process-card-padding);
  display: block;
  color: rgba(13, 6, 40, 0.35);
  font-family: "Onest", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.process-visual {
  position: relative;
  height: 170px;
  display: grid;
  place-items: center;
}

.process-orbit {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(13, 6, 40, 0.1);
  border-radius: 50%;
}

.process-orbit::before,
.process-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(13, 6, 40, 0.06);
  border-radius: 50%;
}

.process-orbit::before { inset: 16px; }
.process-orbit::after { inset: 34px; }

.process-orbit i {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13, 6, 40, 0.17);
}

.process-card.is-active .process-orbit {
  border-color: rgba(30, 227, 0, 0.37);
  animation: orbitRotate 5s linear infinite;
}

.process-card.is-active .process-orbit i {
  background: var(--green);
  box-shadow: 0 0 12px rgba(30, 227, 0, 0.7);
}

.process-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 6, 40, 0.1);
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 32px rgba(13, 6, 40, 0.08);
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.35s var(--ease);
}

.process-icon--database,
.process-icon--scan,
.process-icon--task,
.process-icon--call {
  color: #137d04;
  background: #eaffe5;
}

.process-icon > svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.7;
}

.process-card.is-active .process-icon {
  background: var(--green);
  color: var(--ink);
  transform: scale(1.07) rotate(-3deg);
}

.process-card h3 {
  margin: 6px 0 12px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.process-card > p {
  margin: 0;
  color: rgba(13, 6, 40, 0.5);
  font-size: 14px;
  line-height: 1.55;
}

.process-status {
  position: absolute;
  left: var(--process-card-padding);
  bottom: var(--process-card-padding);
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(13, 6, 40, 0.38);
  font-size: 14px;
}

.process-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(13, 6, 40, 0.2);
}

.process-card.is-active .process-status {
  color: #118700;
}

.process-card.is-active .process-status i {
  background: var(--green);
  box-shadow: 0 0 9px rgba(30, 227, 0, 0.7);
}

.pilot-card {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  border: 1px solid rgba(13, 6, 40, 0.07);
  border-radius: 40px;
  background:
    radial-gradient(circle at 15% 100%, rgba(30, 227, 0, 0.14), transparent 34%),
    #e8eae5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pilot-card::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 38%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(30, 227, 0, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(30, 227, 0, 0.025),
    0 0 0 160px rgba(30, 227, 0, 0.018);
  pointer-events: none;
}

.pilot-copy,
.pilot-form,
.form-success {
  position: relative;
  z-index: 2;
}

.pilot-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(38px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.pilot-copy h2 em {
  color: var(--green-deep);
}

.pilot-copy > p {
  max-width: 540px;
  margin: 0;
  color: rgba(13, 6, 40, 0.53);
  font-size: 14px;
  line-height: 1.55;
}

.pilot-note {
  margin-top: 45px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.pilot-note span {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.pilot-note p {
  max-width: 150px;
  margin: 0;
  color: rgba(13, 6, 40, 0.45);
  font-size: 14px;
  line-height: 1.4;
}

.pilot-form {
  padding: 30px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 26px 60px rgba(21, 13, 50, 0.1);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.pilot-form label:not(.consent) {
  padding: 14px 0;
  display: grid;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.pilot-form label > span {
  color: rgba(13, 6, 40, 0.38);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.pilot-form input:not([type="checkbox"]) {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.pilot-form input::placeholder {
  color: rgba(13, 6, 40, 0.24);
}

.consent-list {
  margin: 8px 0 4px;
  display: grid;
  gap: 10px;
}

.consent {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.consent input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.consent span {
  color: rgba(13, 6, 40, 0.52) !important;
  line-height: 1.4;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.consent a {
  color: rgba(13, 6, 40, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(13, 6, 40, 0.28);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.consent a:hover,
.consent a:focus-visible {
  color: #117f00;
  text-decoration-color: var(--green-deep);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-error {
  margin: 0;
  color: #a52222;
  font-size: 13px;
  line-height: 1.4;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-success {
  min-height: 310px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.form-success-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  font-size: 20px;
}

.form-success-icon svg {
  width: 22px;
  height: 22px;
}

.form-success strong {
  font-size: 18px;
}

.form-success p {
  max-width: 330px;
  margin: 7px 0 0;
  color: rgba(13, 6, 40, 0.5);
  font-size: 14px;
  line-height: 1.5;
}

.modal-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(30, 227, 0, 0.12), transparent 28rem),
    rgba(13, 6, 40, 0.32);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  animation: modalFadeIn 0.25s ease both;
}

.form-modal {
  position: relative;
  width: min(960px, calc(100vw - 48px));
  max-height: calc(100svh - 48px);
  padding: clamp(28px, 4.5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(242, 247, 239, 0.5)),
    rgba(236, 240, 232, 0.66);
  box-shadow:
    0 38px 100px rgba(13, 6, 40, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation: modalCardIn 0.42s var(--ease) both;
}

.form-modal::before {
  content: "";
  position: absolute;
  top: -210px;
  left: -160px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(30, 227, 0, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(30, 227, 0, 0.025),
    0 0 0 140px rgba(30, 227, 0, 0.018);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 6, 40, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.3s var(--ease);
}

.modal-close:hover,
.modal-close:focus-visible {
  background: #fff;
  transform: rotate(4deg);
}

.modal-close span {
  position: absolute;
  width: 15px;
  height: 1px;
  background: var(--ink);
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.form-modal-copy,
.form-modal .pilot-form,
.form-modal .form-success {
  position: relative;
  z-index: 2;
}

.modal-radar-mark {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(13, 6, 40, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(30, 227, 0, 0.25), transparent 18%),
    rgba(255, 255, 255, 0.46);
  box-shadow: 0 0 0 10px rgba(30, 227, 0, 0.045);
}

.modal-radar-mark::before,
.modal-radar-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(13, 6, 40, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.modal-radar-mark::before { width: 34px; height: 34px; }
.modal-radar-mark::after { width: 12px; height: 12px; }

.modal-radar-mark i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  overflow: hidden;
  background: conic-gradient(from 270deg at 0 0, rgba(30, 227, 0, 0.34), transparent 42deg);
  transform-origin: 0 0;
  animation: radarIconSweep 4.6s linear infinite;
}

.modal-radar-mark i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--green-deep);
  box-shadow: 0 0 7px rgba(30, 227, 0, 0.7);
}

.modal-radar-mark span {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(30, 227, 0, 0.8);
}

.form-modal-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.form-modal-copy p {
  max-width: 470px;
  margin: 20px 0 0;
  color: rgba(13, 6, 40, 0.55);
  font-size: 14px;
  line-height: 1.6;
}

.form-modal .pilot-form {
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 22px 50px rgba(13, 6, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-modal .form-success {
  min-height: 300px;
}

.audience-tabs {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.audience-tabs button {
  width: auto;
  min-height: 60px;
  flex: 0 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  justify-content: start;
  column-gap: 14px;
  border: 0;
  border-radius: 18px;
  color: rgba(13, 6, 40, 0.45);
  background: #fff;
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.audience-tabs button span {
  width: auto;
  font-family: "Onest", Arial, sans-serif;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  text-align: left;
}

.audience-tabs button.is-active {
  color: var(--ink);
  background: var(--green);
}

@media (hover: hover) {
  .audience-tabs button:not(.is-active):hover {
    color: var(--ink);
    background: var(--green);
  }
}

.audience-stage {
  min-height: 540px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 0;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.36);
}

.audience-story {
  padding: clamp(50px, 7vw, 90px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience-story > span {
  color: rgba(13, 6, 40, 0.38);
  font-family: "Onest", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.audience-story h3 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.audience-story > p {
  max-width: 470px;
  margin: 0 0 34px;
  color: rgba(13, 6, 40, 0.52);
  font-size: 14px;
  line-height: 1.6;
}

.audience-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at 34% 50%, rgba(30, 227, 0, 0.17), transparent 43%);
}

.audience-radar {
  position: absolute;
  top: 50%;
  left: 32%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(13, 6, 40, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.audience-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(13, 6, 40, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.audience-ring--one { width: 32%; height: 32%; }
.audience-ring--two { width: 64%; height: 64%; }
.audience-ring--three { width: 94%; height: 94%; }

.audience-beam {
  width: 46%;
  height: 46%;
  background: conic-gradient(from 270deg at 0 0, rgba(30, 227, 0, 0.34), transparent 31deg);
  animation: none;
}

.audience-radar.is-scanning .audience-beam {
  animation:
    audienceFirstSweep 1.2s cubic-bezier(0.32, 0.01, 0.22, 1) both,
    audienceLoopSweep 6.8s linear 1.2s infinite;
}

.audience-beam::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  box-shadow: 0 0 12px rgba(30, 227, 0, 0.62);
}

.audience-radar > b {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 25px rgba(30, 227, 0, 0.7);
  transform: translate(-50%, -50%);
}

.audience-signals {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 6%;
  width: min(290px, 42%);
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.audience-signals > div {
  min-height: 72px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28)),
    rgba(232, 241, 232, 0.28);
  box-shadow:
    0 18px 48px rgba(13, 6, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  animation: audienceDetectedIn 0.42s var(--ease) calc(0.5s + var(--audience-delay)) both;
}

.audience-signals span {
  color: rgba(13, 6, 40, 0.34);
  font-family: "Onest", Arial, sans-serif;
  font-size: 14px;
}

.audience-signals p {
  margin: 0;
  font-size: 14px;
}

.audience-signals i {
  grid-column: 2;
  color: #128d00;
  font-size: 14px;
  font-style: normal;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 35%, rgba(30, 227, 0, 0.09), transparent 32rem),
    var(--dark);
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.17) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.benefits-glow {
  position: absolute;
  top: -20rem;
  left: 50%;
  width: 60rem;
  height: 60rem;
  border: 1px solid rgba(30, 227, 0, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 8rem rgba(30, 227, 0, 0.02),
    0 0 0 16rem rgba(30, 227, 0, 0.012);
  transform: translateX(-50%);
}

.benefits-section .page-width {
  position: relative;
  z-index: 2;
}

.section-heading--inverse h2,
.section-heading--inverse p {
  color: #fff;
}

.section-heading--inverse p {
  color: rgba(255, 255, 255, 0.48);
}

.section-heading--inverse h2 em {
  color: var(--green);
}

.section-heading--inverse h2 span {
  display: block;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-light);
  border-radius: 30px;
  overflow: hidden;
}

.benefit-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
  transition: background-color 0.35s ease, transform 0.4s var(--ease);
}

.benefit-card:nth-child(3n) {
  border-right: 0;
}

.benefit-card:nth-child(n + 4) {
  border-bottom: 0;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.benefit-card--featured {
  color: var(--ink);
  background: var(--green);
}

.benefit-card--featured:hover {
  background: #31f713;
}

.benefit-number {
  color: rgba(255, 255, 255, 0.35);
  font-family: "Onest", Arial, sans-serif;
  font-size: 14px;
}

.benefit-card--featured .benefit-number {
  color: rgba(13, 6, 40, 0.4);
}

.benefit-mark {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.benefit-mark i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(30, 227, 0, 0.8);
  transform: translate(-50%, -50%);
}

.benefit-card--featured .benefit-mark {
  border-color: rgba(13, 6, 40, 0.16);
}

.benefit-card--featured .benefit-mark i {
  background: var(--ink);
  box-shadow: none;
}

.benefit-card h3 {
  margin: 150px 0 12px;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.benefit-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  line-height: 1.55;
}

.benefit-card--featured p {
  color: rgba(13, 6, 40, 0.58);
}

.pricing-section {
  padding-bottom: 110px;
}

.pricing-intro {
  margin-bottom: 58px;
  text-align: center;
}

.pricing-intro .section-label {
  justify-content: center;
}

.pricing-intro h2 {
  margin: 0 0 14px;
}

.pricing-intro > p {
  margin-inline: auto;
}

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

.price-card {
  position: relative;
  min-height: 440px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(13, 6, 40, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    background-position 0.8s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(20, 12, 50, 0.09);
}

.price-card--featured {
  border-color: rgba(30, 227, 0, 0.58);
  background-image: linear-gradient(180deg, #1ee300 0%, #69ef55 31%, #c8ffc0 58%, #f8fff7 82%, #ffffff 100%);
  background-size: 200% 200%;
  background-position: 0 0;
  box-shadow: 0 22px 48px rgba(30, 227, 0, 0.13);
}

.price-card--featured:hover {
  background-position: 0 50%;
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(30, 227, 0, 0.2);
}

.price-head {
  display: block;
}

.price-head span {
  font-size: 18px;
  font-weight: 600;
}

.price-main {
  margin-top: 22px;
  display: grid;
  gap: 7px;
}

.price-value {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-per-signal {
  color: rgba(13, 6, 40, 0.45);
  font-size: 14px;
  font-weight: 400;
}

.price-description {
  min-height: 48px;
  margin: 18px 0 0;
  color: rgba(13, 6, 40, 0.48);
  font-size: 14px;
  line-height: 1.6;
}

.price-includes {
  margin-top: 28px;
  padding-top: 24px;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(13, 6, 40, 0.1);
}

.price-includes span {
  color: rgba(13, 6, 40, 0.45);
  font-size: 14px;
}

.price-includes strong {
  font-size: 18px;
  font-weight: 600;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-card .button-arrow {
  font-size: 14px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

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

.faq-intro h2 {
  font-size: clamp(42px, 4.5vw, 62px);
}

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

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

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

.faq-item > button {
  width: 100%;
  min-height: 94px;
  padding: 0;
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  align-items: center;
  gap: 12px;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-number {
  color: rgba(13, 6, 40, 0.32);
  font-family: "Onest", Arial, sans-serif;
  font-size: 14px;
}

.faq-item > button > span:nth-child(2) {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.faq-item button i {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(13, 6, 40, 0.12);
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.35s var(--ease);
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s var(--ease);
}

.faq-item.is-open button i {
  background: var(--green);
  transform: rotate(90deg);
}

.faq-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s var(--ease), opacity 0.35s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(13, 6, 40, 0.52);
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer p {
  padding: 0 50px 30px 54px;
}

.final-section {
  padding-block: 90px 120px;
}

.final-card {
  position: relative;
  min-height: 600px;
  padding: clamp(50px, 7vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  overflow: hidden;
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(30, 227, 0, 0.18), transparent 24rem),
    var(--dark);
  box-shadow: 0 40px 100px rgba(13, 6, 40, 0.2);
}

.final-grid {
  opacity: 0.24;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.final-orbit {
  position: absolute;
  top: 0;
  right: -70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(30, 227, 0, 0.17);
  border-radius: 50%;
  transform: translateY(-30%);
}

.final-orbit--two {
  width: 320px;
  height: 320px;
  top: 10px;
  right: 30px;
}

.final-copy,
.final-action {
  position: relative;
  z-index: 3;
}

.final-copy {
  max-width: 790px;
}

.final-radar-mark {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(30, 227, 0, 0.3), transparent 16%),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 12px rgba(30, 227, 0, 0.035),
    inset 0 0 24px rgba(30, 227, 0, 0.08);
}

.final-radar-mark::before,
.final-radar-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-radar-mark::before { width: 42px; height: 42px; }
.final-radar-mark::after { width: 18px; height: 18px; }

.final-radar-mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  overflow: hidden;
  background: conic-gradient(from 270deg at 0 0, rgba(30, 227, 0, 0.32), transparent 42deg);
  transform-origin: 0 0;
  animation: radarIconSweep 5.2s linear infinite;
}

.final-radar-mark span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(30, 227, 0, 0.8);
}

.final-radar-mark i {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(30, 227, 0, 0.85);
}

.final-radar-mark b {
  position: absolute;
  z-index: 2;
  left: 19px;
  bottom: 14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.final-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.final-copy h2 em {
  color: var(--green);
}

.final-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

.final-action {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.final-action small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.final-signal {
  position: absolute;
  z-index: 4;
  top: 104px;
  right: 150px;
  width: 230px;
  padding: 16px;
  display: grid;
  gap: 5px;
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(18, 27, 29, 0.78);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  animation: finalSignalCycle 5.6s var(--ease) infinite;
}

.final-signal > span,
.final-signal small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 14px;
}

.final-signal strong {
  font-size: 14px;
  font-weight: 500;
}

.site-footer {
  color: #fff;
  background: var(--dark);
}

.footer-main {
  padding-block: 72px 62px;
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.95fr;
  align-items: start;
  gap: clamp(48px, 7vw, 110px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: grid;
  justify-items: start;
}

.footer-brand > p {
  max-width: 270px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  line-height: 1.5;
}

.footer-up {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer-up span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition: transform 0.3s var(--ease), background-color 0.25s ease;
}

.footer-up span svg {
  width: 14px;
  height: 14px;
}

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

.footer-up:hover span,
.footer-up:focus-visible span {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.footer-company {
  display: grid;
  gap: 12px;
}

.footer-companies {
  display: grid;
  gap: 34px;
}

.footer-company strong {
  max-width: 280px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-requisites {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
}

.footer-company address {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a {
  min-height: 76px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-links i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-size: 14px;
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.footer-links i svg {
  width: 14px;
  height: 14px;
}

.footer-links a:hover i,
.footer-links a:focus-visible i {
  transform: rotate(45deg);
}

.footer-bottom {
  min-height: 112px;
  padding-block: 24px;
  display: grid;
  grid-template-columns: 0.55fr 1fr 1.45fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.32);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.5;
}

.cookie-notice {
  position: fixed;
  z-index: 900;
  left: 24px;
  bottom: 24px;
  width: min(720px, calc(100vw - 48px));
  padding: 30px 72px 28px 30px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 15, 58, 0.94), rgba(63, 62, 94, 0.9));
  box-shadow: 0 28px 80px rgba(13, 6, 40, 0.28);
  animation: cookieNoticeIn 0.48s var(--ease) both;
}

.cookie-notice__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-notice__icon svg {
  width: 22px;
  height: 22px;
}

.cookie-notice p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.55;
}

.cookie-notice p a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.58);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.cookie-notice p a:hover,
.cookie-notice p a:focus-visible {
  color: var(--green);
  text-decoration-color: var(--green);
}

.cookie-notice__accept {
  min-height: 54px;
  padding: 0 30px;
  grid-column: 2;
  justify-self: start;
  border: 0;
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.25s var(--ease);
}

.cookie-notice__accept:hover,
.cookie-notice__accept:focus-visible {
  color: #fff;
  background: var(--green);
  transform: translateY(-2px);
}

.cookie-notice__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.25s var(--ease);
}

.cookie-notice__close:hover,
.cookie-notice__close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(6deg);
}

.cookie-notice__close span {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.cookie-notice__close span:first-child {
  transform: rotate(45deg);
}

.cookie-notice__close span:last-child {
  transform: rotate(-45deg);
}

@keyframes cookieNoticeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .site-header,
  .glass-card,
  .metrics-strip,
  .pilot-form,
  .audience-signals > div {
    background: rgba(250, 251, 247, 0.95);
  }
}

@keyframes headerIn {
  from { opacity: 0; transform: translate(-50%, -18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

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

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

@keyframes signalRipple {
  0% { opacity: 1; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(2.6); }
}

@keyframes signalCardIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatOne {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-9px) rotate(0.5deg); }
}

@keyframes floatTwo {
  0%, 100% { transform: translateY(0) rotate(0.5deg); }
  50% { transform: translateY(8px) rotate(-0.5deg); }
}

@keyframes progressIn {
  from { width: 48%; }
  to { width: 94%; }
}

@keyframes flowPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(30, 227, 0, 0); }
  50% { transform: scale(1.05); box-shadow: 0 0 18px rgba(30, 227, 0, 0.22); }
}

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

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

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalCardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes audienceFirstSweep {
  from { transform: rotate(-70deg); }
  to { transform: rotate(290deg); }
}

@keyframes audienceLoopSweep {
  from { transform: rotate(290deg); }
  to { transform: rotate(650deg); }
}

@keyframes audienceDetectedIn {
  0% { opacity: 0; filter: blur(5px); transform: translateX(18px) scale(0.97); }
  72% { opacity: 1; filter: blur(0); transform: translateX(-2px) scale(1.01); }
  100% { opacity: 1; filter: blur(0); transform: translateX(0) scale(1); }
}

@keyframes audienceStoryIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .site-header,
  .page-width {
    width: min(100% - 40px, 1120px);
  }

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

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(48px, 5vw, 60px);
  }

  .radar-wrap {
    right: -35px;
    min-height: 620px;
  }

  .radar-panel {
    width: min(620px, 56vw);
    height: min(620px, 56vw);
  }

  .radar-status {
    left: 5px;
  }

  .radar-queue {
    right: 48px;
  }

  .engine-body {
    padding-inline: 40px;
  }

  .process-card {
    min-height: 410px;
    padding: var(--process-card-padding);
  }

  .pilot-card {
    gap: 50px;
  }

  .audience-radar {
    left: 25%;
  }
}

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

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 16px;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 26px;
    background: rgba(249, 250, 247, 0.96);
    box-shadow: 0 24px 50px rgba(13, 6, 40, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 45px;
    height: 45px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 0.3s var(--ease);
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: min(720px, calc(100vh - 24px));
    min-height: min(720px, calc(100svh - 24px));
    padding-top: 112px;
    padding-bottom: 28px;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    align-items: center;
    gap: 12px;
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 5.4vw, 52px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 18px;
  }

  .hero-trust {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .radar-wrap {
    right: -18px;
    height: auto;
    min-height: 0;
    align-self: stretch;
  }

  .radar-panel {
    width: min(44vw, 400px, calc(100vh - 180px));
    width: min(44vw, 400px, calc(100svh - 180px));
    height: min(44vw, 400px, calc(100vh - 180px));
    height: min(44vw, 400px, calc(100svh - 180px));
    overflow: visible;
  }

  .radar-status {
    left: 7%;
  }

  .radar-queue {
    right: 0;
    bottom: 12px;
    min-width: 220px;
    padding: 12px 14px;
  }

  .signal-card {
    width: 170px;
    padding: 12px 13px;
  }

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

  .metrics-live {
    grid-column: 1 / -1;
    padding-bottom: 18px;
  }

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

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

  .process-card {
    min-height: 390px;
  }

  .pilot-card {
    grid-template-columns: 1fr;
  }

  .pilot-copy {
    max-width: 720px;
  }

  .audience-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
  }

  .audience-stage {
    grid-template-columns: 1fr;
  }

  .audience-story {
    padding-right: 0;
  }

  .audience-visual {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .benefit-card:nth-child(3n) {
    border-right: 1px solid var(--line-light);
  }

  .benefit-card:nth-child(2n) {
    border-right: 0;
  }

  .benefit-card:nth-child(n + 4) {
    border-bottom: 1px solid var(--line-light);
  }

  .benefit-card:nth-child(n + 5) {
    border-bottom: 0;
  }

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

  .price-card {
    min-height: 440px;
  }

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

  .faq-intro {
    position: static;
  }

  .final-card {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .final-action {
    justify-self: start;
    justify-items: start;
  }

  .final-signal {
    right: 60px;
  }

  .form-modal {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-modal-copy {
    max-width: 720px;
  }

  .modal-radar-mark {
    margin-bottom: 22px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .footer-bottom p:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 701px) and (max-width: 860px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 56px;
    padding-left: 24px;
    flex: 0 0 auto;
    gap: 14px;
  }

  .hero-actions .button-arrow {
    flex: 0 0 30px;
  }

  .hero-actions .text-link {
    min-height: 40px;
    padding-inline: 8px;
    flex: 0 0 auto;
    gap: 8px;
    white-space: nowrap;
  }
}

@media (max-width: 700px) {
  .page-width,
  .site-header {
    width: calc(100% - 28px);
  }

  .site-header {
    top: 12px;
    min-height: 62px;
    padding: 8px 8px 8px 18px;
  }

  .brand {
    padding: 0;
  }

  .brand img {
    width: 170px;
  }

  .brand--inverse {
    padding: 0;
  }

  .section {
    padding-block: 88px;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .hero h1 {
    margin: 0 0 22px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  .hero h1 span {
    display: block;
    white-space: nowrap;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .text-link {
    justify-content: center;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .hero-trust i {
    display: none;
  }

  .radar-wrap {
    min-height: 500px;
  }

  .radar-panel {
    width: 116vw;
    max-width: 570px;
  }

  .radar-status {
    top: 6px;
    left: 0;
    min-width: 205px;
  }

  .radar-queue {
    right: 14px;
    bottom: 15px;
    min-width: 220px;
  }

  .signal-card {
    width: 180px;
  }

  .metrics-strip {
    min-height: auto;
    padding: 24px 0;
    grid-template-columns: 1fr;
  }

  .metrics-strip > div:not(.metrics-live) {
    min-height: 70px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-live {
    padding-bottom: 0;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .section-intro h2,
  .section-heading h2,
  .pricing-intro h2,
  .faq-intro h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .engine-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .engine-toolbar > span:nth-child(2) {
    display: none;
  }

  .engine-body {
    padding: 34px 18px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .engine-flow {
    width: 90px;
    height: 70px;
    justify-self: center;
    flex-direction: column;
  }

  .engine-flow span {
    width: 1px;
    height: auto;
    background: linear-gradient(rgba(13, 6, 40, 0.13), var(--green));
  }

  .engine-flow span:last-child {
    background: linear-gradient(var(--green), rgba(13, 6, 40, 0.13));
  }

  .engine-events {
    grid-template-columns: 1fr 1fr;
  }

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

  .engine-events > div:nth-child(2) {
    border-right: 0;
  }

  .engine-events > div:nth-child(n + 3) {
    border-bottom: 0;
  }

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

  .process-card {
    min-height: 390px;
  }

  .pilot-card {
    padding: 28px 18px;
    border-radius: 28px;
  }

  .pilot-copy h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .pilot-form {
    padding: 22px 18px;
  }

  .audience-tabs {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .audience-story h3 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .audience-visual {
    min-height: 600px;
  }

  .audience-radar {
    top: 37%;
    left: 50%;
    width: 340px;
    height: 340px;
  }

  .audience-signals {
    top: auto;
    right: 18px;
    bottom: 22px;
    left: 18px;
    width: auto;
    transform: none;
  }

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

  .benefit-card,
  .benefit-card:nth-child(3n),
  .benefit-card:nth-child(2n),
  .benefit-card:nth-child(n + 4),
  .benefit-card:nth-child(n + 5) {
    min-height: 285px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .benefit-card h3 {
    margin-top: 120px;
  }

  .price-card {
    min-height: 430px;
    padding: 24px;
  }

  .faq-item > button {
    min-height: 84px;
    grid-template-columns: 30px 1fr 32px;
  }

  .faq-item > button > span:nth-child(2) {
    font-size: 14px;
  }

  .faq-item.is-open .faq-answer p {
    padding: 0 38px 28px 42px;
  }

  .final-section {
    width: 100%;
    padding-bottom: 0;
  }

  .final-card {
    min-height: 680px;
    padding: 38px 22px;
    border-radius: 30px 30px 0 0;
  }

  .final-copy h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .final-signal {
    top: 45px;
    right: 22px;
    width: 200px;
  }

  .final-copy {
    margin-top: 142px;
  }

  .final-radar-mark {
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
  }

  .final-radar-mark::before {
    width: 36px;
    height: 36px;
  }

  .final-radar-mark::after {
    width: 14px;
    height: 14px;
  }

  .modal-backdrop {
    padding: 10px;
  }

  .form-modal {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    padding: 54px 18px 18px;
    gap: 24px;
    border-radius: 28px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }

  .modal-radar-mark {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .form-modal-copy h2 {
    padding-right: 20px;
    font-size: clamp(34px, 10vw, 46px);
  }

  .form-modal-copy p {
    margin-top: 14px;
  }

  .form-modal .pilot-form {
    padding: 18px;
  }

  .footer-main {
    padding-block: 54px 44px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand > p {
    margin-bottom: 24px;
  }

  .footer-bottom {
    padding-block: 30px 40px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-bottom p:last-child {
    grid-column: auto;
  }

  .cookie-notice {
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: calc(100vw - 24px);
    padding: 22px 20px 20px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px 14px;
    border-radius: 24px;
  }

  .cookie-notice__icon {
    width: 34px;
    height: 34px;
  }

  .cookie-notice__icon svg {
    width: 18px;
    height: 18px;
  }

  .cookie-notice p {
    padding-right: 28px;
    font-size: 14px;
    line-height: 1.5;
  }

  .cookie-notice__accept {
    width: 100%;
    min-height: 50px;
    padding-inline: 20px;
    grid-column: 1 / -1;
  }

  .cookie-notice__close {
    top: 10px;
    right: 10px;
  }
}

/* Mobile composition pass: one spacing system, deliberate reflow and stable controls. */
@media (max-width: 700px) {
  .page-width,
  .site-header {
    width: calc(100% - 32px);
  }

  .site-header {
    top: 10px;
    min-height: 60px;
    padding: 7px 7px 7px 16px;
    gap: 12px;
    overflow: visible;
    isolation: isolate;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(110deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 246, 0.64)),
      rgba(238, 243, 236, 0.74);
    backdrop-filter: blur(24px) saturate(175%);
    -webkit-backdrop-filter: blur(24px) saturate(175%);
    pointer-events: none;
  }

  .brand {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    overflow: visible;
  }

  .brand img {
    width: min(170px, 52vw);
    max-width: 100%;
    opacity: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .site-nav {
    top: 70px;
    padding: 10px 16px;
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 249, 242, 0.7)),
      rgba(249, 250, 247, 0.82);
    backdrop-filter: blur(24px) saturate(175%);
    -webkit-backdrop-filter: blur(24px) saturate(175%);
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px 4px;
    display: flex;
    align-items: center;
  }

  .section {
    padding-block: 72px;
    scroll-margin-top: 82px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 56px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .hero-copy {
    display: contents;
  }

  .hero h1 {
    order: 1;
  }

  .hero-lead {
    order: 2;
  }

  .radar-wrap {
    order: 3;
  }

  .hero-actions {
    position: relative;
    z-index: 4;
    order: 4;
  }

  .hero-trust {
    position: relative;
    z-index: 4;
    order: 5;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.03;
    letter-spacing: -0.04em;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    max-width: 34rem;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 8px;
    gap: 14px;
  }

  .hero-actions .button {
    min-height: 56px;
  }

  .text-link {
    min-height: 44px;
  }

  .hero-trust {
    margin-top: 24px;
    display: grid;
    gap: 8px;
    font-size: 14px;
  }

  .hero-trust span {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .hero-trust span::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--green-deep);
  }

  .radar-wrap {
    height: 204px;
    min-height: 204px;
    margin-top: 4px;
    overflow: hidden;
  }

  .radar-panel {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(88vw, 300px);
    height: min(88vw, 300px);
    overflow: visible;
    transform: translateX(-50%);
  }

  .radar-coordinate {
    font-size: 14px;
  }

  .signal-card {
    top: -20px;
    width: min(164px, calc(100vw - 48px));
    padding: 10px 11px;
    border-radius: 18px;
  }

  .signal-card--right {
    left: 16px;
  }

  .signal-card--left {
    right: 16px;
  }

  .radar-queue {
    right: 4px;
    bottom: 6px;
    width: min(250px, calc(100vw - 32px));
    min-width: 0;
    max-width: calc(100vw - 32px);
    padding: 11px 12px;
    gap: 8px;
    border-radius: 16px;
  }

  .radar-queue .queue-bars {
    display: none;
  }

  .metrics-strip {
    padding: 8px 20px;
    gap: 0;
    border-radius: 24px;
  }

  .metrics-strip > div:not(.metrics-live) {
    min-height: 84px;
    padding: 18px 0;
    display: grid;
    grid-template-columns: minmax(72px, auto) 1fr;
    gap: 16px;
  }

  .metrics-strip span {
    font-size: 22px;
  }

  .metrics-strip p {
    max-width: none;
  }

  .metrics-live {
    min-height: 54px;
    padding: 12px 0 4px;
    text-transform: none;
    letter-spacing: 0;
  }

  .section-intro,
  .section-heading,
  .pricing-intro {
    margin-bottom: 36px;
  }

  .section-intro h2,
  .section-heading h2,
  .pricing-intro h2,
  .faq-intro h2,
  .pilot-copy h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.038em;
  }

  .section-intro h2,
  .pricing-intro h2,
  .faq-intro h2 {
    margin-bottom: 16px;
  }

  .section-intro > p,
  .section-heading > p,
  .section-heading > div + p,
  .pricing-intro > p,
  .faq-intro > p,
  .audience-story > p,
  .final-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .section-heading {
    gap: 16px;
  }

  .signal-engine {
    border-radius: 26px;
  }

  .engine-toolbar {
    height: 54px;
    padding: 0 16px;
  }

  .engine-body {
    padding: 24px 16px;
    gap: 12px;
  }

  .database-card,
  .crm-card {
    width: 100%;
    border-radius: 20px;
  }

  .database-card {
    padding: 22px;
  }

  .database-card small {
    margin-top: 22px;
  }

  .engine-flow {
    height: 58px;
  }

  .engine-events {
    grid-template-columns: 1fr;
  }

  .engine-events > div,
  .engine-events > div:nth-child(2),
  .engine-events > div:nth-child(n + 3) {
    min-height: 78px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .engine-events > div:last-child {
    border-bottom: 0;
  }

  .process-grid {
    gap: 12px;
  }

  .process-card {
    --process-card-padding: 20px;
    min-height: 348px;
    border-radius: 22px;
  }

  .process-visual {
    height: 150px;
  }

  .process-orbit {
    width: 118px;
    height: 118px;
  }

  .process-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
  }

  .process-card > p {
    padding-right: 6px;
    line-height: 1.5;
  }

  .pilot-card {
    padding: 24px 18px;
    gap: 32px;
    border-radius: 28px;
  }

  .pilot-copy h2 {
    margin-bottom: 16px;
  }

  .pilot-copy > p {
    font-size: 15px;
  }

  .pilot-note {
    margin-top: 28px;
    padding-top: 18px;
  }

  .pilot-form {
    padding: 20px;
    gap: 10px;
    border-radius: 22px;
  }

  .pilot-form label:not(.consent) {
    min-height: 76px;
    padding: 12px 0;
    gap: 10px;
  }

  .pilot-form input:not([type="checkbox"]) {
    min-height: 24px;
    font-size: 16px;
  }

  .consent-list {
    margin-top: 10px;
    gap: 6px;
  }

  .consent {
    min-height: 44px;
    padding: 5px 0;
    gap: 12px;
  }

  .consent input {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }

  .consent span {
    font-size: 14px;
    line-height: 1.45;
  }

  .audience-tabs {
    margin-inline: 0;
    padding: 6px;
    display: flex;
    grid-template-columns: none;
    gap: 6px;
    overflow-x: auto;
    border-radius: 22px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 6px;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
    scrollbar-width: none;
  }

  .audience-tabs::-webkit-scrollbar {
    display: none;
  }

  .audience-tabs button {
    width: auto;
    min-width: 0;
    min-height: 48px;
    flex: 0 0 auto;
    grid-template-columns: max-content max-content;
    padding: 0 14px;
    column-gap: 10px;
    border-radius: 16px;
    white-space: nowrap;
    scroll-snap-align: start;
    transition:
      color 0.25s ease,
      background-color 0.25s ease,
      transform 0.2s var(--ease);
  }

  .audience-tabs button:active {
    transform: scale(0.98);
  }

  .audience-tabs button:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: -3px;
  }

  .audience-stage {
    display: block;
    min-height: 0;
    margin-top: 12px;
    border-radius: 28px;
    outline: none;
  }

  .audience-story {
    min-height: 420px;
    padding: 32px 22px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: start;
    animation: audienceStoryIn 0.38s var(--ease) both;
  }

  .audience-story h3 {
    margin-bottom: 14px;
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.1;
  }

  .audience-story > p {
    margin-bottom: 24px;
  }

  .audience-story .modal-trigger-link {
    width: fit-content;
    align-self: end;
    justify-content: flex-start;
  }

  .audience-visual {
    display: none;
  }

  .audience-radar {
    top: 35%;
    width: min(320px, 86vw);
    height: min(320px, 86vw);
  }

  .audience-signals {
    right: 14px;
    bottom: 18px;
    left: 14px;
    gap: 8px;
  }

  .audience-signals > div {
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .section-heading--inverse {
    margin-bottom: 36px;
  }

  .section-heading.section-heading--inverse > p {
    color: rgba(255, 255, 255, 0.55);
  }

  .benefit-card,
  .benefit-card:nth-child(3n),
  .benefit-card:nth-child(2n),
  .benefit-card:nth-child(n + 4),
  .benefit-card:nth-child(n + 5) {
    min-height: 250px;
    padding: 22px;
  }

  .benefit-card h3 {
    margin-top: 92px;
    font-size: 22px;
  }

  .pricing-section {
    padding-bottom: 72px;
  }

  .pricing-grid {
    gap: 12px;
  }

  .price-card {
    min-height: 370px;
    padding: 24px;
    border-radius: 22px;
  }

  .price-main {
    margin-top: 18px;
  }

  .price-value {
    font-size: 36px;
  }

  .price-description {
    min-height: 0;
    margin-top: 16px;
  }

  .price-includes {
    margin-top: 22px;
    padding-top: 20px;
  }

  .faq-section {
    gap: 36px;
  }

  .faq-intro .button {
    width: 100%;
    margin-top: 24px;
  }

  .faq-item > button {
    min-height: 78px;
    grid-template-columns: 26px 1fr 34px;
    gap: 8px;
  }

  .faq-item > button > span:nth-child(2) {
    font-size: 15px;
    line-height: 1.35;
  }

  .faq-item.is-open button i {
    transform: none;
  }

  .faq-item.is-open .faq-answer p {
    padding: 0 36px 24px 34px;
    font-size: 14px;
  }

  .final-section.page-width {
    width: 100%;
    padding-top: 72px;
  }

  .final-card {
    min-height: 0;
    padding: 30px 20px 34px;
    gap: 0;
    border-radius: 30px 30px 0 0;
  }

  .final-signal {
    top: 26px;
    right: 18px;
    width: min(200px, calc(100% - 82px));
    padding: 14px;
  }

  .final-copy {
    margin-top: 126px;
  }

  .final-radar-mark {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
  }

  .final-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.06;
  }

  .final-action {
    width: 100%;
    margin-top: 28px;
  }

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

  .footer-main {
    padding-block: 48px 40px;
    gap: 36px;
  }

  .footer-brand > p {
    margin-top: 22px;
  }

  .footer-links a {
    min-height: 70px;
  }

  .modal-backdrop {
    padding: 8px;
  }

  .form-modal {
    width: calc(100vw - 16px);
    max-height: calc(100svh - 16px);
    padding: 52px 18px 18px;
    gap: 20px;
    border-radius: 26px;
  }

  .modal-close {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .modal-radar-mark {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

  .form-modal-copy h2 {
    padding-right: 8px;
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.07;
  }

  .form-modal-copy p {
    margin-top: 12px;
    font-size: 14px;
  }

  .form-modal .pilot-form {
    padding: 18px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .radar-wrap {
    height: 204px;
    min-height: 204px;
  }

  .radar-panel {
    width: min(88vw, 270px);
    height: min(88vw, 270px);
  }

  .section-intro h2,
  .section-heading h2,
  .pricing-intro h2,
  .faq-intro h2,
  .pilot-copy h2 {
    font-size: 32px;
  }

  .metrics-strip > div:not(.metrics-live) {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .audience-tabs {
    grid-template-columns: none;
  }

  .audience-story {
    min-height: 460px;
  }

  .final-copy h2 {
    font-size: 35px;
  }
}

@media (max-width: 700px) and (max-height: 740px) {
  .form-modal {
    align-items: start;
    padding-top: 50px;
  }

  .modal-radar-mark {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .form-modal-copy h2 {
    font-size: 30px;
  }

  .form-modal .pilot-form {
    padding: 16px 18px;
  }

  .form-modal .pilot-form label:not(.consent) {
    min-height: 66px;
    padding-block: 8px;
  }
}

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

  .site-header,
  .glass-card,
  .metrics-strip,
  .pilot-form,
  .audience-signals > div {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(250, 251, 247, 0.95);
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
  }

  .site-header,
  .signal-card,
  .radar-status,
  .radar-queue,
  .database-progress span,
  .engine-flow i,
  .process-orbit,
  .modal-backdrop,
  .form-modal,
  .audience-signals > div,
  .final-signal {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
  }

  .radar-beam {
    animation-duration: 12s !important;
    animation-iteration-count: infinite !important;
  }

  .radar-core span,
  .metrics-live i,
  .signal-point.is-active .signal-ripple {
    animation-duration: 3.6s !important;
    animation-iteration-count: infinite !important;
  }

  .modal-radar-mark i,
  .final-radar-mark span {
    animation-duration: 10s !important;
    animation-iteration-count: infinite !important;
  }

  .audience-radar.is-scanning .audience-beam {
    animation: audienceLoopSweep 12s linear infinite !important;
  }

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

/*
 * Keep the interface alive on devices that report `prefers-reduced-motion`.
 * The earlier fallback stopped virtually every motion at 0.001ms; on iOS,
 * Android and Windows devices with the accessibility switch enabled this made
 * the whole page look broken while the hero sweep kept moving. These rules
 * preserve short fades and slower, lower-amplitude status motion.
 */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes finalSignalCycle {
  0%, 10% { opacity: 0; filter: blur(4px); transform: translateY(10px) scale(0.97); }
  20%, 76% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  86%, 100% { opacity: 0; filter: blur(3px); transform: translateY(-7px) scale(0.985); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.2s !important;
  }

  .reveal:not(.is-visible) {
    opacity: 0 !important;
    transform: none !important;
  }

  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.32s ease !important;
  }

  .site-header {
    animation: headerIn 0.55s ease both !important;
  }

  .radar-beam {
    animation: radarSweep 10s linear infinite !important;
  }

  .radar-core span,
  .metrics-live i,
  .signal-point.is-active .signal-ripple {
    animation-duration: 3.6s !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
  }

  .signal-card {
    animation: signalCardIn 0.32s ease-out both !important;
  }

  .radar-queue,
  .radar-status {
    animation: gentleFloat 8s ease-in-out infinite !important;
  }

  .final-signal {
    animation: finalSignalCycle 8s ease-in-out infinite !important;
  }

  .database-progress span {
    animation: progressIn 5.2s ease-in-out infinite alternate !important;
  }

  .engine-flow i {
    animation: flowPulse 4.2s ease-in-out infinite !important;
  }

  .process-card.is-active .process-orbit {
    animation: orbitRotate 9s linear infinite !important;
  }

  .modal-backdrop {
    animation: modalFadeIn 0.2s ease both !important;
  }

  .form-modal {
    animation: modalCardIn 0.3s ease-out both !important;
  }

  .modal-radar-mark i,
  .final-radar-mark span {
    animation: radarIconSweep 9s linear infinite !important;
  }

  .audience-radar.is-scanning .audience-beam {
    animation: audienceLoopSweep 10s linear infinite !important;
  }

  .audience-signals > div {
    animation: audienceDetectedIn 0.34s ease-out calc(0.25s + var(--audience-delay)) both !important;
  }

  .audience-story {
    animation: audienceStoryIn 0.3s ease-out both !important;
  }

  .final-signal.glass-card {
    color: #fff;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
      rgba(18, 27, 29, 0.92) !important;
  }
}

.button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.12s;
}

.button:active .button-arrow {
  transform: rotate(45deg) scale(0.96);
}

@media (max-width: 700px) {
  .final-signal {
    top: 88px;
  }

  .final-copy {
    margin-top: 184px;
  }
}
