:root {
  --color-bg: #070a12;
  --color-surface: #0e1320;
  --color-surface-2: #141b2d;
  --color-text: #f4f7fb;
  --color-muted: #a9b2c3;
  --color-line: rgba(255, 255, 255, 0.1);
  --color-accent: #4f8cff;
  --color-accent-2: #7c5cff;
  --color-success: #36d399;
  --color-error: #ff5c7a;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: Inter, Manrope, Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(79, 140, 255, 0.24), transparent 31rem),
    radial-gradient(circle at 84% 16%, rgba(124, 92, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 50% 58%, rgba(54, 211, 153, 0.045), transparent 42rem),
    linear-gradient(180deg, #070a12 0%, #090d17 44%, #070a12 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 84%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px);
  background-size: 34px 34px, 46px 46px;
  opacity: 0.32;
  mix-blend-mode: screen;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(54, 211, 153, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 18, 0.72);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  box-shadow: 0 0 30px rgba(79, 140, 255, 0.24);
}

.brand-name {
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-muted);
  font-size: 14px;
}

.nav a {
  transition: color 180ms ease;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  color: var(--color-text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  box-shadow:
    0 0 34px rgba(79, 140, 255, 0.26),
    0 0 70px rgba(124, 92, 255, 0.18);
}

.btn-primary:hover {
  box-shadow:
    0 0 38px rgba(79, 140, 255, 0.34),
    0 16px 44px rgba(0, 0, 0, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.085);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  contain: layout paint;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.9;
}

.orb-one {
  right: 12%;
  top: 18%;
  width: 280px;
  height: 280px;
  background: rgba(79, 140, 255, 0.28);
}

.orb-two {
  right: 28%;
  bottom: 10%;
  width: 220px;
  height: 220px;
  background: rgba(124, 92, 255, 0.22);
}

.grid-plane {
  position: absolute;
  right: 0;
  bottom: -22vh;
  width: min(44vw, 560px);
  height: 58vh;
  transform-origin: right bottom;
  transform: perspective(700px) rotateX(62deg) rotateZ(-8deg);
  background-image:
    linear-gradient(rgba(79, 140, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 255, 0.16) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 80%);
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero-copy {
  max-width: min(760px, 100%);
  min-width: 0;
  justify-self: stretch;
}

.eyebrow {
  margin: 0 0 16px;
  color: #bcd0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 7.4vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  max-width: 980px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text,
.big-text {
  color: var(--color-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

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

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 15px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.command-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.command-glow {
  position: absolute;
  inset: 7% -4% 2%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 24%, rgba(79, 140, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 20% 82%, rgba(54, 211, 153, 0.12), transparent 20rem),
    radial-gradient(circle at 78% 68%, rgba(124, 92, 255, 0.25), transparent 24rem);
  filter: blur(16px);
  opacity: 0.95;
  animation: commandGlow 7s ease-in-out infinite;
}

.command-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  overflow: hidden;
  contain: paint;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.036)),
    rgba(9, 13, 23, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 110px rgba(0, 0, 0, 0.48),
    0 0 90px rgba(79, 140, 255, 0.18);
  backdrop-filter: blur(28px) saturate(130%);
}

.command-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  opacity: 0.42;
  animation: panelScan 8s linear infinite;
}

.command-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.command-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.command-topbar strong {
  display: block;
  font-size: 18px;
}

.ai-status {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 1px solid rgba(54, 211, 153, 0.28);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(54, 211, 153, 0.08);
  color: #c9ffe8;
  font-size: 13px;
  font-weight: 800;
}

.ai-status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-success);
  box-shadow: 0 0 0 0 rgba(54, 211, 153, 0.62);
  animation: aiPulse 1.8s ease-out infinite;
}

.ai-agent-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  overflow: hidden;
  margin: 14px 16px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 140, 255, 0.18), transparent 15rem),
    radial-gradient(circle at 86% 20%, rgba(54, 211, 153, 0.1), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.026)),
    rgba(7, 11, 20, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 20px 70px rgba(0, 0, 0, 0.24),
    0 0 42px rgba(79, 140, 255, 0.08);
}

.ai-agent-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 8px);
  content: "";
  opacity: 0.32;
}

.ai-agent-card__head,
.ai-agent-card__body,
.ai-agent-checks {
  position: relative;
  z-index: 1;
}

.ai-agent-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.ai-agent-card__head span,
.ai-agent-message span {
  display: block;
  margin-bottom: 5px;
  color: #bcd0ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ai-agent-card__head strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.12;
}

.ai-agent-card__head em {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  border: 1px solid rgba(54, 211, 153, 0.22);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(54, 211, 153, 0.08);
  color: #c9ffe8;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.ai-agent-card__head em i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 16px rgba(54, 211, 153, 0.72);
}

.ai-agent-card__body {
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.ai-agent-avatar {
  position: relative;
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(79, 140, 255, 0.18), transparent 60%),
    rgba(7, 10, 18, 0.72);
  box-shadow:
    0 0 34px rgba(79, 140, 255, 0.28),
    0 0 54px rgba(124, 92, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ai-agent-avatar picture,
.ai-agent-avatar img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.ai-agent-avatar img {
  max-width: none;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.04);
}

.ai-agent-avatar::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(180deg, transparent 58%, rgba(7, 10, 18, 0.28));
  content: "";
}

.ai-agent-avatar__ring {
  position: absolute;
  inset: 6px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(79, 140, 255, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 24px rgba(79, 140, 255, 0.32),
    inset 0 0 22px rgba(124, 92, 255, 0.16);
}

.ai-agent-avatar__pulse {
  position: absolute;
  inset: -6px;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    rgba(79, 140, 255, 0),
    rgba(79, 140, 255, 0.35),
    rgba(54, 211, 153, 0.22),
    rgba(124, 92, 255, 0.28),
    rgba(79, 140, 255, 0)
  );
  opacity: 0.7;
  animation: aiAgentPulse 7s linear infinite;
}

.ai-agent-message {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.ai-agent-message p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.48;
  overflow-wrap: break-word;
}

.ai-agent-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-agent-checks span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 850;
}

.ai-agent-checks span::before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 12px rgba(54, 211, 153, 0.52);
  content: "";
}

.scanner-mobile-summary {
  display: none;
}

.command-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 178px);
  gap: 16px;
  padding: 18px;
}

.process-map {
  position: relative;
  display: grid;
  min-height: 320px;
  align-content: start;
  gap: 14px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 140, 255, 0.16), transparent 10rem),
    radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.12), transparent 16rem),
    rgba(7, 10, 18, 0.48);
}

.scanner-radar {
  position: relative;
  width: min(100%, 310px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(54, 211, 153, 0.08), transparent 3.8rem),
    radial-gradient(circle at 50% 50%, rgba(79, 140, 255, 0.11), transparent 9rem),
    rgba(4, 8, 16, 0.34);
}

.scanner-radar::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 50%;
  background: conic-gradient(from 210deg, rgba(54, 211, 153, 0), rgba(54, 211, 153, 0.18), rgba(79, 140, 255, 0.04), rgba(54, 211, 153, 0));
  opacity: 0.78;
  animation: scannerSweep 9s linear infinite;
  content: "";
}

.scanner-orbit,
.scanner-cross {
  position: absolute;
  pointer-events: none;
}

.scanner-orbit {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(79, 140, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 26px rgba(79, 140, 255, 0.04);
}

.scanner-orbit--outer {
  width: 88%;
  height: 88%;
}

.scanner-orbit--middle {
  width: 64%;
  height: 64%;
  border-color: rgba(124, 92, 255, 0.2);
}

.scanner-orbit--inner {
  width: 38%;
  height: 38%;
  border-color: rgba(54, 211, 153, 0.18);
}

.scanner-cross {
  top: 50%;
  left: 50%;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.34), transparent);
  opacity: 0.65;
}

.scanner-cross--x {
  width: 88%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.scanner-cross--y {
  width: 1px;
  height: 88%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, transparent, rgba(79, 140, 255, 0.34), transparent);
}

.scanner-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: clamp(82px, 30%, 104px);
  height: clamp(82px, 30%, 104px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(79, 140, 255, 0.36), rgba(124, 92, 255, 0.2) 48%, rgba(7, 10, 18, 0.92));
  box-shadow:
    0 0 42px rgba(79, 140, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  text-align: center;
}

.scanner-hub strong {
  font-size: clamp(18px, 2vw, 21px);
}

.scanner-hub span {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
}

.scanner-pin {
  position: absolute;
  z-index: 4;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(7, 10, 18, 0.96);
  border-radius: 50%;
  background: var(--color-success);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1px rgba(54, 211, 153, 0.45),
    0 0 18px rgba(54, 211, 153, 0.58);
  animation: scannerPinPulse 2.8s ease-in-out infinite;
}

.scanner-pin::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 7px;
  background: rgba(7, 10, 18, 0.9);
  color: var(--color-text);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
  content: attr(aria-label);
}

.scanner-pin:hover::after {
  opacity: 1;
}

.scanner-pin--1 {
  top: 18%;
  left: 50%;
}

.scanner-pin--2 {
  top: 27%;
  left: 76%;
  animation-delay: 180ms;
}

.scanner-pin--3 {
  top: 50%;
  left: 86%;
  animation-delay: 360ms;
}

.scanner-pin--4 {
  top: 74%;
  left: 76%;
  animation-delay: 540ms;
}

.scanner-pin--5 {
  top: 84%;
  left: 50%;
  animation-delay: 720ms;
}

.scanner-pin--6 {
  top: 74%;
  left: 24%;
  animation-delay: 900ms;
}

.scanner-pin--7 {
  top: 50%;
  left: 14%;
  animation-delay: 1080ms;
}

.scanner-pin--8 {
  top: 27%;
  left: 24%;
  animation-delay: 1260ms;
}

.scanner-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
}

.scanner-legend span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.scanner-legend i {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 12px rgba(54, 211, 153, 0.52);
}

.command-metrics {
  display: grid;
  gap: 10px;
}

.metric-card {
  display: grid;
  min-width: 0;
  min-height: 76px;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.metric-card span {
  min-width: 0;
  color: var(--color-muted);
  font-size: clamp(10px, 0.9vw, 11px);
  font-weight: 700;
  line-height: 1.4;
}

.metric-card strong {
  min-width: 0;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.18;
}

.scanner-events {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.038);
}

.scanner-event {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  overflow: visible;
  white-space: normal;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(7, 10, 18, 0.52);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.scanner-event::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 14px rgba(54, 211, 153, 0.62);
  content: "";
}

.process-scanner-section {
  position: relative;
}

.process-scanner-section::before {
  position: absolute;
  inset: 10% 0 auto;
  z-index: -1;
  height: 30rem;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 20% 40%, rgba(79, 140, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 84% 42%, rgba(54, 211, 153, 0.08), transparent 24rem);
  filter: blur(14px);
}

.scanner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
}

.scanner-copy h2 {
  margin-bottom: 24px;
}

.scanner-copy h3 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.scanner-copy p {
  max-width: 700px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.scan-zone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.scan-zone-list span {
  position: relative;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 13px 14px 13px 34px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.scan-zone-list span::before {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 16px rgba(79, 140, 255, 0.7);
  content: "";
}

.process-scanner {
  position: relative;
  contain: paint;
}

.scanner-glow {
  position: absolute;
  inset: -12%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 40% 14%, rgba(79, 140, 255, 0.28), transparent 22rem),
    radial-gradient(circle at 78% 82%, rgba(54, 211, 153, 0.12), transparent 18rem);
  filter: blur(18px);
  opacity: 0.9;
  animation: commandGlow 8s ease-in-out infinite;
}

.scanner-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.034)),
    rgba(10, 15, 27, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 110px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(28px) saturate(130%);
}

.scanner-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px);
  opacity: 0.36;
}

.scanner-top,
.scanner-progress,
.scanner-findings,
.scanner-result,
.scanner-card .btn {
  position: relative;
  z-index: 1;
}

.scanner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.scanner-top span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scanner-top strong {
  font-size: clamp(22px, 3vw, 30px);
}

.scanner-top em {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(54, 211, 153, 0.24);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(54, 211, 153, 0.07);
  color: #c9ffe8;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.scanner-progress {
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.scanner-progress-bar {
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent), var(--color-success), var(--color-accent-2));
  box-shadow: 0 0 26px rgba(79, 140, 255, 0.38);
  transform: scaleX(1);
  transform-origin: left center;
}

.process-scanner:not(.is-scanning) .scanner-progress-bar {
  transform: scaleX(0.08);
}

.process-scanner.is-scanning .scanner-progress-bar {
  animation: scanProgress 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scanner-findings {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.scanner-findings li {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text);
  font-weight: 700;
  opacity: 1;
  transform: translateY(0);
}

.process-scanner:not(.is-scanning) .scanner-findings li {
  opacity: 0.62;
  transform: translateY(8px);
}

.process-scanner.is-scanning .scanner-findings li {
  animation: findingIn 520ms ease both;
}

.scanner-findings li:nth-child(2) {
  animation-delay: 180ms;
}

.scanner-findings li:nth-child(3) {
  animation-delay: 360ms;
}

.scanner-findings li:nth-child(4) {
  animation-delay: 540ms;
}

.scanner-findings li:nth-child(5) {
  animation-delay: 720ms;
}

.scanner-findings span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(54, 211, 153, 0.32);
  border-radius: 50%;
  background: rgba(54, 211, 153, 0.08);
}

.scanner-findings span::after {
  position: absolute;
  left: 6px;
  top: 4px;
  width: 7px;
  height: 11px;
  border: solid var(--color-success);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg) scale(1);
}

.process-scanner:not(.is-scanning) .scanner-findings span::after {
  transform: rotate(45deg) scale(0);
}

.process-scanner.is-scanning .scanner-findings span::after {
  animation: checkIn 420ms ease both;
}

.scanner-result {
  border: 1px solid rgba(54, 211, 153, 0.18);
  border-radius: 22px;
  margin-bottom: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(54, 211, 153, 0.12), transparent 16rem),
    rgba(54, 211, 153, 0.045);
}

.scanner-result strong {
  color: #c9ffe8;
}

.scanner-result p {
  margin: 8px 0 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.scanner-card .btn {
  width: 100%;
}

.mobile-show-more {
  display: none;
}

.ai-flow-section .section-head {
  max-width: 920px;
}

.ai-flow-section .section-head p:last-child {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.data-flow-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(280px, 1fr) minmax(220px, 0.9fr);
  gap: clamp(18px, 3.2vw, 36px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 140, 255, 0.12), transparent 26rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    rgba(10, 15, 27, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 34px 110px rgba(0, 0, 0, 0.28);
}

.data-flow-map::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.65), transparent 78%);
}

.mobile-flow-summary {
  display: none;
}

.flow-column,
.flow-core-wrap {
  position: relative;
  z-index: 1;
}

.flow-label {
  margin-bottom: 14px;
  color: #bcd0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.flow-column {
  display: grid;
  gap: 10px;
}

.flow-card {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.048);
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

button.flow-card {
  cursor: pointer;
}

.flow-card:hover,
.flow-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(79, 140, 255, 0.54);
  background: rgba(79, 140, 255, 0.13);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(79, 140, 255, 0.15);
}

.output-card {
  opacity: 0.68;
}

.output-card.is-active {
  opacity: 1;
  border-color: rgba(54, 211, 153, 0.42);
  background:
    radial-gradient(circle at 0% 0%, rgba(54, 211, 153, 0.12), transparent 12rem),
    rgba(54, 211, 153, 0.06);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(54, 211, 153, 0.12);
}

.flow-core-wrap {
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
}

.flow-core {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(100%, 280px);
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle, rgba(79, 140, 255, 0.28), rgba(124, 92, 255, 0.13) 54%, rgba(7, 10, 18, 0.9));
  box-shadow:
    0 0 70px rgba(79, 140, 255, 0.24),
    0 0 120px rgba(124, 92, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.flow-core::before,
.flow-core::after {
  position: absolute;
  inset: -34px;
  border: 1px solid rgba(79, 140, 255, 0.18);
  border-radius: 50%;
  content: "";
  animation: rotate 26s linear infinite;
}

.flow-core::after {
  inset: -68px;
  border-color: rgba(54, 211, 153, 0.12);
  animation-duration: 38s;
  animation-direction: reverse;
}

.flow-core strong {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.flow-core small {
  max-width: 210px;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.flow-agent-card {
  position: absolute;
  z-index: 5;
  right: 50%;
  bottom: 22px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  width: min(280px, 90%);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 9px 10px;
  background:
    radial-gradient(circle at 0% 0%, rgba(79, 140, 255, 0.16), transparent 12rem),
    rgba(7, 10, 18, 0.74);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(79, 140, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(50%);
  animation: flowAgentFloat 6s ease-in-out infinite;
  backdrop-filter: blur(18px);
}

.flow-agent-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 22px rgba(79, 140, 255, 0.24),
    0 0 28px rgba(124, 92, 255, 0.16);
}

.flow-agent-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.04);
}

.flow-agent-avatar::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(180deg, transparent 58%, rgba(7, 10, 18, 0.22));
  content: "";
}

.flow-agent-copy {
  min-width: 0;
}

.flow-agent-copy span {
  display: block;
  margin-bottom: 3px;
  color: #bcd0ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-agent-copy strong {
  display: block;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.18;
}

.flow-agent-copy p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 10.5px;
  line-height: 1.35;
}

.flow-line {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46%;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.72), rgba(54, 211, 153, 0.64), transparent);
  opacity: 0.74;
}

.flow-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  transform: translateX(-100%);
  animation: dataMove 3.2s ease-in-out infinite;
}

.flow-line-in {
  left: -4%;
  transform-origin: right center;
}

.flow-line-out {
  right: -4%;
  transform-origin: left center;
}

.flow-line-a {
  transform: rotate(22deg);
}

.flow-line-b {
  transform: rotate(0deg);
}

.flow-line-c {
  transform: rotate(-22deg);
}

.flow-line-d {
  transform: rotate(-20deg);
}

.flow-line-e {
  transform: rotate(0deg);
}

.flow-line-f {
  transform: rotate(20deg);
}

.flow-line-b::after,
.flow-line-e::after {
  animation-delay: 0.45s;
}

.flow-line-c::after,
.flow-line-f::after {
  animation-delay: 0.9s;
}

.automation-tabs {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  max-width: 100%;
  overflow: hidden;
}

.automation-tab-list {
  display: grid;
  gap: 10px;
  align-content: start;
  contain: layout paint;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026)),
    rgba(10, 15, 27, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.automation-tab {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.automation-tab:hover,
.automation-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(79, 140, 255, 0.5);
  background:
    radial-gradient(circle at 0% 0%, rgba(79, 140, 255, 0.18), transparent 12rem),
    rgba(79, 140, 255, 0.11);
  color: var(--color-text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.automation-panels {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 12%, rgba(79, 140, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 16% 90%, rgba(54, 211, 153, 0.08), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 15, 27, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 34px 110px rgba(0, 0, 0, 0.32);
}

.automation-panels::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.72), transparent 82%);
}

.automation-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(22px, 4vw, 40px);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

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

.automation-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  animation: automationPanelIn 260ms ease both;
}

.automation-panel-main,
.automation-insight {
  position: relative;
  z-index: 1;
}

.automation-zone-label {
  margin-bottom: 14px;
  color: #bcd0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.automation-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
}

.automation-panel-main > p:not(.automation-zone-label) {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 19px;
  line-height: 1.65;
}

.automation-scenarios {
  margin-top: 30px;
}

.automation-scenarios strong,
.automation-insight span {
  display: block;
  margin-bottom: 14px;
  color: #c9d8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.automation-scenarios ul {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.automation-scenarios li {
  position: relative;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  padding: 13px 14px 13px 40px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.35;
}

.automation-scenarios li::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 16px rgba(54, 211, 153, 0.58);
  content: "";
}

.automation-insight {
  display: grid;
  align-content: start;
  gap: 16px;
}

.automation-insight > div {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.052);
}

.automation-insight p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.automation-event {
  background:
    radial-gradient(circle at 0% 0%, rgba(54, 211, 153, 0.12), transparent 14rem),
    rgba(54, 211, 153, 0.05) !important;
  border-color: rgba(54, 211, 153, 0.18) !important;
}

.automation-event::before {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-success), transparent);
  box-shadow: 0 0 20px rgba(54, 211, 153, 0.22);
  content: "";
}

.automation-insight .btn {
  width: 100%;
}

.call-analysis-section .section-head {
  max-width: 920px;
}

.call-analysis-section .section-head p:last-child {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.call-analysis-demo {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.call-fragment-card,
.ai-summary-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(79, 140, 255, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.032)),
    rgba(10, 15, 27, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 34px 110px rgba(0, 0, 0, 0.28);
}

.call-fragment-card {
  padding: clamp(20px, 3vw, 30px);
}

.ai-summary-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.call-fragment-card::before,
.ai-summary-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.68), transparent 82%);
}

.call-card-top,
.waveform,
.dialogue,
.summary-top,
.summary-list,
.manager-value,
.ai-summary-card .btn {
  position: relative;
  z-index: 1;
}

.call-card-top,
.summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.call-card-top span,
.summary-top > div:first-child span {
  display: block;
  margin-bottom: 6px;
  color: #bcd0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.call-card-top strong,
.summary-top > div:first-child strong {
  font-size: clamp(24px, 3vw, 34px);
}

.play-button {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(54, 211, 153, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.18), transparent 34%),
    rgba(54, 211, 153, 0.1);
  box-shadow: 0 0 34px rgba(54, 211, 153, 0.16);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--color-text);
}

.waveform {
  display: flex;
  height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  margin-bottom: 22px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(54, 211, 153, 0.1), transparent 16rem),
    rgba(255, 255, 255, 0.04);
}

.waveform span {
  width: 6px;
  height: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-success));
  box-shadow: 0 0 18px rgba(79, 140, 255, 0.2);
  animation: waveform 1.8s ease-in-out infinite;
}

.waveform span:nth-child(2n) {
  height: 58%;
  animation-delay: 0.18s;
}

.waveform span:nth-child(3n) {
  height: 82%;
  animation-delay: 0.32s;
}

.waveform span:nth-child(5n) {
  height: 46%;
  animation-delay: 0.48s;
}

.dialogue {
  display: grid;
  gap: 10px;
}

.dialogue p {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
  line-height: 1.55;
}

.dialogue strong {
  color: var(--color-text);
}

.highlight-objection {
  border-color: rgba(54, 211, 153, 0.28) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(54, 211, 153, 0.12), transparent 12rem),
    rgba(54, 211, 153, 0.055) !important;
  box-shadow: 0 0 28px rgba(54, 211, 153, 0.08);
}

.score-widget {
  min-width: 170px;
  border: 1px solid rgba(54, 211, 153, 0.22);
  border-radius: 20px;
  padding: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(54, 211, 153, 0.12), transparent 10rem),
    rgba(54, 211, 153, 0.055);
}

.score-widget span {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.score-widget strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
  line-height: 1.55;
  opacity: 1;
  transform: translateY(0);
}

.call-analysis-demo:not(.is-call-scored) .summary-list li {
  opacity: 0.56;
  transform: translateY(8px);
}

.call-analysis-demo.is-call-scored .summary-list li {
  animation: summaryLineIn 520ms ease both;
}

.summary-list li:nth-child(2) {
  animation-delay: 120ms;
}

.summary-list li:nth-child(3) {
  animation-delay: 240ms;
}

.summary-list li:nth-child(4) {
  animation-delay: 360ms;
}

.summary-list li:nth-child(5) {
  animation-delay: 480ms;
}

.summary-list span {
  display: block;
  margin-bottom: 5px;
  color: #c9d8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-alert {
  border-color: rgba(54, 211, 153, 0.28) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(54, 211, 153, 0.12), transparent 12rem),
    rgba(54, 211, 153, 0.055) !important;
}

.manager-value {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.manager-value strong {
  display: block;
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 18px;
}

.manager-value div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.manager-value span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.ai-summary-card .btn {
  width: 100%;
}

.owner-report-section .section-head {
  max-width: 960px;
}

.owner-report-section .section-head p:last-child {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.owner-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 140, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 70%, rgba(54, 211, 153, 0.08), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.032)),
    rgba(10, 15, 27, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 34px 110px rgba(0, 0, 0, 0.28);
}

.owner-dashboard::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.72), transparent 82%);
}

.dashboard-top,
.dashboard-grid,
.dashboard-footer {
  position: relative;
  z-index: 1;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px clamp(20px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.035);
}

.dashboard-top span,
.dashboard-label,
.report-summary span {
  display: block;
  margin-bottom: 6px;
  color: #bcd0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-top strong {
  font-size: clamp(28px, 4vw, 44px);
}

.dashboard-top em {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(54, 211, 153, 0.24);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(54, 211, 153, 0.07);
  color: #c9ffe8;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 32px);
}

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

.today-metrics article,
.report-summary,
.report-chart,
.report-alerts,
.report-actions {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.048);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.today-metrics article {
  min-height: 132px;
  padding: 18px;
}

.today-metrics span {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.today-metrics strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.9;
}

.report-summary {
  min-height: 210px;
  padding: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(54, 211, 153, 0.1), transparent 16rem),
    rgba(54, 211, 153, 0.045);
}

.report-summary p {
  min-height: 116px;
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.65;
}

.report-summary p::after {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  margin-left: 4px;
  vertical-align: -0.2em;
  background: var(--color-success);
  content: "";
  animation: caretBlink 0.9s steps(2, start) infinite;
}

.owner-dashboard.is-report-ready .report-summary p.is-complete::after {
  display: none;
}

.report-chart {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.chart-row {
  display: grid;
  gap: 8px;
}

.chart-row span {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.chart-row i {
  display: block;
  height: 13px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--color-accent), var(--color-success), var(--color-accent-2));
  box-shadow: 0 0 24px rgba(79, 140, 255, 0.18);
  transform: scaleX(1);
  transform-origin: left center;
}

.owner-dashboard:not(.is-report-ready) .chart-row i {
  transform: scaleX(0.08);
}

.owner-dashboard.is-report-ready .chart-row i {
  animation: reportBarGrow 880ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.chart-row i {
  width: var(--bar-width);
}

.report-alerts,
.report-actions {
  padding: 22px;
}

.report-alerts {
  display: grid;
  gap: 10px;
}

.report-alerts article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text);
  font-weight: 800;
  opacity: 1;
  transform: translateY(0);
}

.report-alerts article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-error), var(--color-accent));
  content: "";
  opacity: 0.72;
}

.owner-dashboard:not(.is-report-ready) .report-alerts article {
  opacity: 0.46;
  transform: translateY(8px);
}

.owner-dashboard.is-report-ready .report-alerts article {
  animation: findingIn 520ms ease both;
}

.report-alerts article:nth-of-type(2) {
  animation-delay: 120ms;
}

.report-alerts article:nth-of-type(3) {
  animation-delay: 240ms;
}

.report-alerts article:nth-of-type(4) {
  animation-delay: 360ms;
}

.report-actions div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-actions span:not(.dashboard-label) {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px clamp(20px, 3vw, 32px);
}

.dashboard-footer p {
  max-width: 720px;
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

.dashboard-footer .btn {
  flex: 0 0 auto;
}

.integrations-section .section-head {
  max-width: 940px;
}

.integrations-section .section-head p:last-child {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.integration-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(79, 140, 255, 0.2), transparent 13rem),
    radial-gradient(circle at 22% 22%, rgba(54, 211, 153, 0.1), transparent 20rem),
    radial-gradient(circle at 78% 74%, rgba(124, 92, 255, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(8, 12, 22, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 34px 110px rgba(0, 0, 0, 0.3);
}

.integration-map::before {
  position: absolute;
  inset: 30px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.018),
    0 0 0 180px rgba(255, 255, 255, 0.012);
}

.integration-map::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.72), transparent 78%);
}

.integration-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  padding: 28px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle, rgba(79, 140, 255, 0.3), rgba(14, 20, 34, 0.9) 62%, rgba(7, 10, 18, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 80px rgba(79, 140, 255, 0.26),
    0 28px 90px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.integration-core::before,
.integration-core::after {
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(79, 140, 255, 0.24);
  border-radius: inherit;
  content: "";
  animation: integrationRing 8s ease-in-out infinite;
}

.integration-core::after {
  inset: -46px;
  border-color: rgba(54, 211, 153, 0.14);
  animation-delay: 1.2s;
}

.integration-core span {
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.integration-core strong {
  display: block;
  margin-top: 8px;
  color: var(--color-text);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.95;
}

.integration-node {
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
  min-width: 108px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.072);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 50px rgba(0, 0, 0, 0.24);
  animation: nodeFloat 5.8s ease-in-out infinite;
  animation-delay: var(--delay);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.integration-node:hover {
  z-index: 5;
  transform: translate(-50%, -50%) translateY(-4px);
  border-color: rgba(54, 211, 153, 0.38);
  color: #eafff5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 34px rgba(54, 211, 153, 0.18),
    0 22px 60px rgba(0, 0, 0, 0.3);
}

.integration-node-tasks {
  top: auto;
  left: auto;
  right: 28px;
  bottom: 24px;
  transform: none;
  border-color: rgba(54, 211, 153, 0.22);
  background: rgba(54, 211, 153, 0.08);
}

.integration-node-tasks:hover {
  transform: translateY(-4px);
}

.integration-line {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: var(--line-width);
  height: 1px;
  transform: rotate(var(--line-angle));
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(79, 140, 255, 0), rgba(79, 140, 255, 0.42), rgba(54, 211, 153, 0));
  opacity: 0.82;
}

.integration-line::after {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 18px rgba(54, 211, 153, 0.9);
  content: "";
  animation: dataDot 2.8s linear infinite;
}

.line-crm { --line-width: 280px; --line-angle: -90deg; }
.line-calls { --line-width: 300px; --line-angle: -50deg; }
.line-whatsapp { --line-width: 318px; --line-angle: -18deg; }
.line-telegram { --line-width: 292px; --line-angle: 16deg; }
.line-sheets { --line-width: 278px; --line-angle: 49deg; }
.line-drive { --line-width: 292px; --line-angle: 90deg; }
.line-docs { --line-width: 278px; --line-angle: 131deg; }
.line-leads { --line-width: 300px; --line-angle: 162deg; }
.line-smm { --line-width: 318px; --line-angle: -164deg; }
.line-reports { --line-width: 300px; --line-angle: -130deg; }

.line-calls::after,
.line-telegram::after,
.line-drive::after,
.line-leads::after,
.line-reports::after {
  animation-direction: reverse;
}

.line-calls::after { animation-delay: 0.2s; }
.line-whatsapp::after { animation-delay: 0.4s; }
.line-telegram::after { animation-delay: 0.6s; }
.line-sheets::after { animation-delay: 0.8s; }
.line-drive::after { animation-delay: 1s; }
.line-docs::after { animation-delay: 1.2s; }
.line-leads::after { animation-delay: 1.4s; }
.line-smm::after { animation-delay: 1.6s; }
.line-reports::after { animation-delay: 1.8s; }

.mobile-integration-chain {
  display: none;
}

.integration-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.integration-step {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.052);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.integration-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 140, 255, 0.22);
  border-radius: 50%;
  background: rgba(79, 140, 255, 0.08);
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 900;
}

.integration-step h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.integration-step p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.integration-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  margin-top: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: clamp(18px, 2.5vw, 28px);
  background:
    radial-gradient(circle at 20% 20%, rgba(79, 140, 255, 0.16), transparent 35%),
    radial-gradient(circle at 88% 12%, rgba(54, 211, 153, 0.09), transparent 24rem),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.22);
}

.integration-footer::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.52), rgba(54, 211, 153, 0.28), transparent);
  content: "";
}

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

.integration-footer__copy {
  min-width: 0;
  max-width: 760px;
}

.integration-footer__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integration-footer__copy p {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 650;
  line-height: 1.45;
}

.integration-footer__cta {
  flex: 0 0 auto;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow:
    0 16px 40px rgba(79, 140, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.integration-footer__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 56px rgba(79, 140, 255, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

@media (max-width: 720px) {
  .integration-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .integration-footer__cta {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

.system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(74vw, 310px);
  height: min(74vw, 310px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.15), transparent 23%),
    radial-gradient(circle, rgba(79, 140, 255, 0.2), rgba(14, 19, 32, 0.72) 58%, rgba(7, 10, 18, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 110px rgba(0, 0, 0, 0.46),
    0 0 80px rgba(79, 140, 255, 0.2);
}

.system-core strong {
  font-size: 68px;
  line-height: 1;
}

.system-core small {
  margin-top: 10px;
  color: var(--color-muted);
  font-weight: 600;
}

.pulse-ring {
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(79, 140, 255, 0.26);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.pulse-ring::before {
  position: absolute;
  top: 16%;
  left: 18%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 18px var(--color-accent);
  content: "";
}

.pulse-ring-two {
  inset: -62px;
  border-color: rgba(124, 92, 255, 0.2);
  animation-duration: 28s;
  animation-direction: reverse;
}

.signal {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-text);
  font-weight: 700;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  animation: float 5.8s ease-in-out infinite;
}

.signal-a {
  top: 12%;
  left: 6%;
}

.signal-b {
  top: 20%;
  right: 4%;
  animation-delay: 0.6s;
}

.signal-c {
  bottom: 24%;
  left: 0;
  animation-delay: 1.1s;
}

.signal-d {
  right: 6%;
  bottom: 12%;
  animation-delay: 1.7s;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(92px, 9vw, 124px) 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-head p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.transformation-section .section-head {
  max-width: 940px;
}

.transformation-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 24% 35%, rgba(255, 94, 122, 0.09), transparent 22rem),
    radial-gradient(circle at 78% 44%, rgba(54, 211, 153, 0.12), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.026)),
    rgba(8, 12, 22, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 34px 110px rgba(0, 0, 0, 0.3);
}

.transformation-board::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
}

.transform-column,
.process-layer {
  position: relative;
  z-index: 1;
}

.transform-column {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  padding: 18px;
}

.before-column {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 94, 122, 0.11), transparent 14rem),
    rgba(255, 255, 255, 0.034);
}

.after-column {
  background:
    radial-gradient(circle at 82% 18%, rgba(54, 211, 153, 0.12), transparent 15rem),
    rgba(255, 255, 255, 0.046);
}

.transform-column-head {
  min-height: 112px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 6px;
  padding-bottom: 18px;
}

.transform-column-head span {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.9;
}

.before-column .transform-column-head span {
  color: #ffb4c0;
}

.after-column .transform-column-head span {
  color: #c9ffe8;
}

.transform-column-head p {
  max-width: 420px;
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.transform-item {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 12px 14px;
  color: var(--color-text);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.transform-item span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.before-column .transform-item {
  background: rgba(255, 255, 255, 0.038);
}

.before-column .transform-item:nth-child(2) { transform: rotate(-1.2deg) translateX(-3px); }
.before-column .transform-item:nth-child(3) { transform: rotate(1.1deg) translateX(6px); }
.before-column .transform-item:nth-child(4) { transform: rotate(-0.6deg) translateX(2px); }
.before-column .transform-item:nth-child(5) { transform: rotate(1.4deg) translateX(-5px); }
.before-column .transform-item:nth-child(6) { transform: rotate(-1deg) translateX(4px); }
.before-column .transform-item:nth-child(7) { transform: rotate(0.7deg) translateX(-2px); }

.before-column .transform-item::after {
  position: absolute;
  right: -18px;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 94, 122, 0.4), transparent);
  content: "";
  opacity: 0.55;
}

.before-column .transform-item span {
  background: rgba(255, 94, 122, 0.1);
  color: #ffb4c0;
}

.after-column .transform-item {
  background: rgba(54, 211, 153, 0.054);
}

.after-column .transform-item::after {
  position: absolute;
  left: -18px;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 211, 153, 0.55));
  content: "";
}

.after-column .transform-item span {
  background: rgba(54, 211, 153, 0.1);
  color: #c9ffe8;
}

.transformation-board.is-visible .before-column .transform-item {
  animation: chaosDrift 4.8s ease-in-out infinite;
}

.transformation-board.is-visible .before-column .transform-item:nth-child(3),
.transformation-board.is-visible .before-column .transform-item:nth-child(6) {
  animation-delay: 0.8s;
}

.transformation-board.is-visible .before-column .transform-item:nth-child(4),
.transformation-board.is-visible .before-column .transform-item:nth-child(7) {
  animation-delay: 1.4s;
}

.transformation-board.is-visible .after-column .transform-item {
  animation: systemIn 580ms ease both;
}

.transformation-board.is-visible .after-column .transform-item:nth-child(3) { animation-delay: 120ms; }
.transformation-board.is-visible .after-column .transform-item:nth-child(4) { animation-delay: 240ms; }
.transformation-board.is-visible .after-column .transform-item:nth-child(5) { animation-delay: 360ms; }
.transformation-board.is-visible .after-column .transform-item:nth-child(6) { animation-delay: 480ms; }
.transformation-board.is-visible .after-column .transform-item:nth-child(7) { animation-delay: 600ms; }

.transform-item.is-active {
  border-color: rgba(54, 211, 153, 0.44);
  background: rgba(54, 211, 153, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 34px rgba(54, 211, 153, 0.13);
}

.before-column .transform-item.is-active {
  border-color: rgba(255, 180, 192, 0.42);
  background: rgba(255, 94, 122, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 28px rgba(255, 94, 122, 0.1);
}

.process-layer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-layer::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(79, 140, 255, 0.62), rgba(54, 211, 153, 0.64), transparent);
  box-shadow: 0 0 24px rgba(79, 140, 255, 0.36);
  content: "";
  transform: translateX(-50%);
  animation: processLineGlow 3.4s ease-in-out infinite;
}

.process-layer span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 140, 255, 0.28);
  border-radius: 999px;
  padding: 0 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    rgba(11, 17, 31, 0.92);
  color: #dbe7ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 40px rgba(79, 140, 255, 0.24);
}

.transformation-accordion {
  display: none;
}

.panel {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    var(--color-surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 80px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 140, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(79, 140, 255, 0.12), rgba(255, 255, 255, 0.04)),
    var(--color-surface-2);
}

.metric-card,
.flow-card,
.integration-step,
.today-metrics article,
.report-alerts article,
.report-actions span:not(.dashboard-label),
.case-row,
.timeline li,
.audience-item,
.proof,
.transform-item {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.metric-card:hover,
.integration-step:hover,
.today-metrics article:hover,
.report-alerts article:hover,
.case-row:hover,
.timeline li:hover,
.audience-item:hover,
.proof:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 140, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 52px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(79, 140, 255, 0.08);
}

.panel p,
.case-row p,
.timeline p,
.proof p,
.cta-band p,
.final p,
.faq p {
  color: var(--color-muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.solution,
.why,
.start {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(79, 140, 255, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.018);
}

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

.cases .section-head {
  max-width: 920px;
}

.cases .section-head p:last-child {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.scenario-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 140, 255, 0.14), transparent 18rem),
    radial-gradient(circle at 86% 78%, rgba(54, 211, 153, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(10, 15, 27, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 90px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.scenario-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.72), transparent 82%);
}

.scenario-card::after {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-success), transparent);
  content: "";
  opacity: 0.82;
}

.scenario-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 140, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 110px rgba(0, 0, 0, 0.32),
    0 0 40px rgba(79, 140, 255, 0.1);
}

.scenario-top,
.scenario-flow,
.scenario-details,
.scenario-note,
.scenario-card .btn {
  position: relative;
  z-index: 1;
}

.scenario-top {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.scenario-top span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 140, 255, 0.24);
  border-radius: 50%;
  background: rgba(79, 140, 255, 0.09);
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 900;
}

.scenario-top h3 {
  max-width: 520px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
}

.scenario-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.scenario-flow span {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.048);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.scenario-flow i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 140, 255, 0), rgba(79, 140, 255, 0.74), rgba(54, 211, 153, 0.64));
  box-shadow: 0 0 18px rgba(79, 140, 255, 0.32);
}

.scenario-details {
  display: grid;
  gap: 12px;
}

.scenario-details div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.043);
}

.scenario-details strong {
  display: block;
  margin-bottom: 7px;
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scenario-details p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.scenario-note {
  align-self: end;
  margin: 18px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.036);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.scenario-card .btn {
  width: 100%;
}

.case-row {
  display: grid;
  grid-template-columns: 80px minmax(180px, 0.7fr) 1fr minmax(180px, 0.42fr);
  gap: 20px;
  align-items: center;
  min-height: 128px;
  border-bottom: 1px solid var(--color-line);
}

.case-row span {
  color: #bcd0ff;
  font-weight: 800;
}

.case-row h3,
.case-row p {
  margin-bottom: 0;
}

.case-row strong {
  color: var(--color-success);
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.timeline span {
  display: block;
  margin-bottom: 34px;
  color: #bcd0ff;
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin-bottom: 12px;
  font-size: 19px;
}

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

.audience-item {
  min-height: 120px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text);
  font-weight: 700;
}

.proof-list {
  display: grid;
  gap: 18px;
}

.proof {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.cta-band,
.final-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.cta-band h2,
.final-inner h2 {
  margin-bottom: 22px;
}

.cta-band p,
.final-inner p {
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  max-width: 760px;
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.quick-diagnostic {
  position: relative;
  overflow-x: clip;
}

.quick-diagnostic,
.quick-diagnostic * {
  box-sizing: border-box;
}

.quick-diagnostic::before {
  position: absolute;
  inset: 4% -8% auto;
  z-index: -1;
  height: 76%;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 22%, rgba(79, 140, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 78% 18%, rgba(54, 211, 153, 0.13), transparent 24rem),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
  content: "";
  opacity: 0.75;
}

.quick-diagnostic .section-head {
  max-width: 880px;
}

.quick-diagnostic .section-head h2,
.quick-diagnostic__title {
  max-width: 760px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: clamp(40px, 9vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.quick-diagnostic__title span {
  display: block;
}

.quick-diagnostic .section-head p:last-child,
.quick-diagnostic__subtitle {
  margin-top: 18px;
  max-width: 760px;
  overflow-wrap: break-word;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 22px;
  align-items: start;
}

.diagnostic-card,
.diagnostic-result {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 0%, rgba(79, 140, 255, 0.15), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.028)),
    rgba(9, 14, 26, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 90px rgba(0, 0, 0, 0.25);
}

.diagnostic-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.diagnostic-progress {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.diagnostic-progress span {
  color: #c9ffe8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-progress-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.diagnostic-progress-segment {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.diagnostic-progress-segment.is-active {
  transform: translateY(-1px);
  background: linear-gradient(90deg, rgba(79, 140, 255, 0.88), rgba(54, 211, 153, 0.9));
  box-shadow: 0 0 22px rgba(54, 211, 153, 0.2);
}

.diagnostic-mobile-nav {
  display: none;
}

.diagnostic-question {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.065), transparent 12rem),
    rgba(255, 255, 255, 0.035);
}

.diagnostic-question legend {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 900;
  line-height: 1.25;
}

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

.diagnostic-option {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.diagnostic-option:hover {
  transform: translateY(-2px);
  border-color: rgba(54, 211, 153, 0.34);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.diagnostic-option:focus-visible {
  outline: 2px solid rgba(54, 211, 153, 0.72);
  outline-offset: 3px;
}

.diagnostic-option.is-selected {
  border-color: rgba(54, 211, 153, 0.7);
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.2), rgba(79, 140, 255, 0.12)),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(54, 211, 153, 0.08),
    0 0 28px rgba(54, 211, 153, 0.13);
}

.diagnostic-option-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 3px rgba(9, 14, 26, 0.9);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.diagnostic-option.is-selected .diagnostic-option-dot {
  border-color: rgba(54, 211, 153, 0.96);
  background: #36d399;
  box-shadow:
    inset 0 0 0 2px rgba(9, 14, 26, 0.94),
    0 0 16px rgba(54, 211, 153, 0.42);
}

.diagnostic-result {
  position: sticky;
  top: 104px;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 560px;
  padding: 24px;
}

.diagnostic-result::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 10%, rgba(54, 211, 153, 0.17), transparent 17rem),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.027) 0 1px, transparent 1px 10px);
  content: "";
  opacity: 0.62;
}

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

.diagnostic-result-top {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.diagnostic-system,
.diagnostic-status,
.diagnostic-badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diagnostic-system {
  color: #bcd0ff;
}

.diagnostic-status {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
}

.diagnostic-result.is-ready .diagnostic-status {
  border-color: rgba(54, 211, 153, 0.28);
  color: #c9ffe8;
}

.diagnostic-scan {
  overflow: hidden;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.diagnostic-scan::before {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.92), rgba(54, 211, 153, 0.95), transparent);
  content: "";
  animation: diagnosticScan 2.8s ease-in-out infinite;
}

.diagnostic-result-panel {
  display: grid;
  gap: 16px;
}

.diagnostic-badge {
  width: fit-content;
  border: 1px solid rgba(79, 140, 255, 0.22);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(79, 140, 255, 0.075);
  color: #bcd0ff;
}

.diagnostic-result-panel h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.diagnostic-result-panel > p {
  margin: -4px 0 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.diagnostic-mini-flow {
  display: grid;
  grid-template-columns: max-content 1fr max-content 1fr max-content;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.diagnostic-mini-flow span {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 900;
}

.diagnostic-mini-flow i {
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 140, 255, 0.05), rgba(79, 140, 255, 0.72), rgba(54, 211, 153, 0.65));
}

.result-grid {
  display: grid;
  gap: 12px;
}

.result-grid div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.result-grid span {
  display: block;
  margin-bottom: 8px;
  color: #c9ffe8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-grid p,
.diagnostic-confidence {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.diagnostic-confidence {
  border: 1px solid rgba(54, 211, 153, 0.18);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(54, 211, 153, 0.055);
  color: #c9ffe8;
  font-weight: 850;
}

.diagnostic-result.is-ready {
  animation: miniResultIn 320ms ease both;
}

.diagnostic-result .btn {
  width: 100%;
}

details {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

details:hover,
details.is-open {
  border-color: rgba(79, 140, 255, 0.28);
  background: rgba(79, 140, 255, 0.055);
}

summary {
  position: relative;
  min-height: 72px;
  padding: 22px 58px 22px 24px;
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--color-success);
  content: "+";
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

details[open] summary::after {
  content: "−";
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition:
    max-height 240ms ease,
    padding 240ms ease,
    opacity 180ms ease;
}

details[open] p {
  max-height: 240px;
  padding: 0 24px 24px;
  opacity: 1;
}

.final {
  padding-bottom: 128px;
}

.final-inner {
  position: relative;
  overflow: hidden;
  padding: 72px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 32rem),
    linear-gradient(135deg, rgba(79, 140, 255, 0.2), rgba(124, 92, 255, 0.16));
}

.footer {
  position: relative;
  margin: 0 clamp(14px, 4vw, 56px) 24px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  color: var(--color-muted);
  background:
    radial-gradient(circle at 12% 0%, rgba(79, 140, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(124, 92, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(14, 19, 32, 0.88), rgba(7, 10, 18, 0.96));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-accent-2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
}

.footer-column {
  min-width: 0;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: var(--color-text);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(79, 140, 255, 0.24);
}

.footer p,
.footer address,
.footer dd {
  margin: 0;
  line-height: 1.65;
}

.footer-brand p {
  max-width: 420px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
}

.footer a {
  color: var(--color-text);
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.footer a:hover {
  color: #cddcff;
}

.footer-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.footer-details div {
  display: grid;
  gap: 3px;
}

.footer-details dt {
  color: rgba(169, 178, 195, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-details dd {
  color: var(--color-text);
  font-weight: 700;
}

.footer address {
  color: var(--color-muted);
  font-style: normal;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.footer-bottom > span {
  color: var(--color-text);
  font-weight: 700;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  visibility: hidden;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.78);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(860px, calc(100svh - 36px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(79, 140, 255, 0.16), transparent 24rem),
    var(--color-surface);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.modal.is-open .modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  font-size: 28px;
  line-height: 1;
}

.form-step {
  display: none;
  padding: 34px;
}

.form-step.is-active {
  display: block;
}

.lead-form h2,
.form-step h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 5vw, 40px);
}

.form-subtitle {
  margin: -8px 0 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

label span,
legend {
  color: var(--color-text);
  font-weight: 700;
}

input[type="text"],
input[type="tel"],
input[type="url"],
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: var(--color-text);
}

input:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: rgba(79, 140, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(79, 140, 255, 0.12);
}

textarea {
  resize: vertical;
}

.field-error,
.form-error {
  min-height: 18px;
  color: var(--color-error);
  font-size: 13px;
}

.form-error {
  margin: 12px 0 0;
}

.form-note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 18px 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--color-accent);
}

.form-consent span {
  color: var(--color-muted);
  font-weight: 500;
}

.form-consent a {
  color: #cddcff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(124, 92, 255, 0.65);
  text-underline-offset: 3px;
}

.form-trust {
  margin: 14px 0 0;
  color: #c9ffe8;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-next-steps {
  margin: 20px 0;
  border: 1px solid rgba(54, 211, 153, 0.18);
  border-radius: 20px;
  padding: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(54, 211, 153, 0.09), transparent 14rem),
    rgba(255, 255, 255, 0.04);
}

.form-next-steps strong {
  display: block;
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 16px;
}

.form-next-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: nextStep;
}

.form-next-steps li {
  position: relative;
  min-height: 34px;
  padding-left: 42px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  counter-increment: nextStep;
}

.form-next-steps li::before {
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(54, 211, 153, 0.28);
  border-radius: 50%;
  background: rgba(54, 211, 153, 0.08);
  color: #c9ffe8;
  content: counter(nextStep);
  font-size: 12px;
  font-weight: 900;
}

.quiz-text-field {
  margin: 18px 0;
}

.success-step p,
.thanks-step p {
  color: var(--color-muted);
  line-height: 1.65;
}

.quiz-invite {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(54, 211, 153, 0.22);
  border-radius: 20px;
  background: rgba(54, 211, 153, 0.06);
}

.quiz-invite p {
  margin: 8px 0 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-page {
  min-height: 100svh;
  padding: clamp(20px, 4vw, 48px);
  color: var(--color-text);
}

.legal-container {
  width: min(920px, 100%);
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 800;
}

.legal-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 56px);
  background:
    radial-gradient(circle at 14% 0%, rgba(79, 140, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(124, 92, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(14, 19, 32, 0.92), rgba(7, 10, 18, 0.97));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  overflow-wrap: anywhere;
}

.legal-content::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-accent-2), transparent);
}

.legal-content h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
}

.legal-meta {
  margin: 0 0 30px;
  color: var(--color-muted);
  font-size: 14px;
}

.legal-content h2 {
  margin: 32px 0 12px;
  color: var(--color-text);
  font-size: clamp(20px, 3vw, 26px);
}

.legal-content p,
.legal-content li {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content a {
  color: #cddcff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(124, 92, 255, 0.7);
  text-underline-offset: 3px;
}

.legal-content strong {
  color: var(--color-text);
}

.legal-requisites {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.legal-requisites p {
  margin: 0;
}

fieldset {
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
}

fieldset label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--color-muted);
}

fieldset label:last-child {
  margin-bottom: 0;
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

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

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

@keyframes commandGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes panelScan {
  0% {
    transform: translateY(-18%);
  }

  100% {
    transform: translateY(18%);
  }
}

@keyframes aiPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(54, 211, 153, 0.62);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(54, 211, 153, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(54, 211, 153, 0);
  }
}

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

@keyframes dataMove {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes dataMoveVertical {
  0% {
    transform: translateY(-120%);
  }

  100% {
    transform: translateY(120%);
  }
}

@keyframes flowAgentFloat {
  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }

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

@keyframes scannerSweep {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes scannerPinPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(54, 211, 153, 0.45),
      0 0 16px rgba(54, 211, 153, 0.5);
  }

  50% {
    box-shadow:
      0 0 0 5px rgba(54, 211, 153, 0.06),
      0 0 24px rgba(54, 211, 153, 0.74);
  }
}

@keyframes diagnosticScan {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(280%);
  }
}

@keyframes nodeIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes eventTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes eventPulse {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes scanProgress {
  0% {
    transform: scaleX(0.08);
  }

  72% {
    transform: scaleX(0.82);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes findingIn {
  0% {
    opacity: 0.42;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes checkIn {
  0% {
    transform: rotate(45deg) scale(0);
  }

  100% {
    transform: rotate(45deg) scale(1);
  }
}

@keyframes automationPanelIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waveform {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes summaryLineIn {
  0% {
    opacity: 0.42;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reportBarGrow {
  0% {
    transform: scaleX(0.08);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes caretBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

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

  50% {
    opacity: 0.92;
    transform: scale(1.04);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -8px;
  }
}

@keyframes dataDot {
  0% {
    left: 0;
    opacity: 0;
  }

  12%,
  86% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes chaosDrift {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -5px;
  }
}

@keyframes systemIn {
  0% {
    opacity: 0.32;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes processLineGlow {
  0%,
  100% {
    opacity: 0.58;
    filter: saturate(100%);
  }

  50% {
    opacity: 1;
    filter: saturate(145%);
  }
}

@keyframes miniResultIn {
  0% {
    opacity: 0.55;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .split,
  .scanner-layout,
  .data-flow-map,
  .automation-tabs,
  .automation-panel,
  .call-analysis-demo,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .command-panel {
    width: min(100%, 680px);
  }

  .flow-core-wrap {
    min-height: 320px;
  }

  .flow-core {
    width: min(72vw, 260px);
    min-height: min(72vw, 260px);
  }

  .flow-agent-card {
    display: none;
  }

  .flow-line {
    left: 50%;
    width: 1px;
    height: 42%;
    transform-origin: center center;
    background: linear-gradient(180deg, transparent, rgba(79, 140, 255, 0.72), rgba(54, 211, 153, 0.64), transparent);
  }

  .flow-line::after {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95), transparent);
    transform: translateY(-100%);
    animation: dataMoveVertical 3.2s ease-in-out infinite;
  }

  .flow-line-in {
    top: -2%;
  }

  .flow-line-out {
    top: auto;
    right: auto;
    bottom: -2%;
  }

  .flow-line-a,
  .flow-line-d {
    transform: rotate(18deg);
  }

  .flow-line-b,
  .flow-line-e {
    transform: rotate(0deg);
  }

  .flow-line-c,
  .flow-line-f {
    transform: rotate(-18deg);
  }

  .feature-grid,
  .feature-grid.compact,
  .timeline,
  .audience-grid,
  .scan-zone-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-row {
    grid-template-columns: 56px 1fr;
    padding: 24px 0;
  }

  .case-row p,
  .case-row strong {
    grid-column: 2;
  }

  .integration-map {
    min-height: 560px;
  }

  .integration-core {
    width: 184px;
    height: 184px;
  }

  .integration-line {
    width: calc(var(--line-width) * 0.84);
  }

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

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

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

  .transformation-board {
    grid-template-columns: 1fr;
  }

  .diagnostic-layout {
    grid-template-columns: 1fr;
  }

  .diagnostic-result {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .process-layer {
    min-height: 96px;
  }

  .process-layer::before {
    top: 0;
    bottom: 0;
  }

  .transform-column {
    min-height: auto;
  }

  .before-column .transform-item,
  .before-column .transform-item:nth-child(n) {
    transform: none;
  }

  .before-column .transform-item::after,
  .after-column .transform-item::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .flow-agent-card {
    display: none;
  }

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

  .process-map {
    min-height: 320px;
  }

  .scanner-radar {
    width: min(100%, 300px);
  }

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

  .scanner-hub {
    width: 90px;
    height: 90px;
  }

  .scanner-hub strong {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-bottom: 56px;
  }

  .hero-visual,
  .command-center {
    min-height: auto;
  }

  .command-panel {
    contain: none;
  }

  .command-topbar {
    display: none;
  }

  .scanner-mobile-summary {
    position: relative;
    z-index: 1;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    margin: 12px;
    padding: 16px;
    background:
      radial-gradient(circle at 20% 20%, rgba(79, 140, 255, 0.18), transparent 35%),
      rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .scanner-mobile-summary__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
  }

  .scanner-mobile-summary__label {
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .scanner-mobile-summary__status {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(54, 211, 153, 0.28);
    border-radius: 999px;
    padding: 0 9px;
    background: rgba(54, 211, 153, 0.08);
    color: #c9ffe8;
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
  }

  .scanner-mobile-summary__status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 0 0 rgba(54, 211, 153, 0.62);
    animation: aiPulse 1.8s ease-out infinite;
  }

  .scanner-mobile-summary__title {
    margin-bottom: 14px;
    color: var(--color-text);
    font-size: clamp(18px, 5.2vw, 22px);
    font-weight: 900;
    line-height: 1.15;
  }

  .scanner-mobile-summary__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
  }

  .scanner-mobile-summary__grid div {
    display: grid;
    gap: 5px;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.045);
  }

  .scanner-mobile-summary__grid span {
    color: var(--color-muted);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.25;
  }

  .scanner-mobile-summary__grid strong {
    color: var(--color-text);
    font-size: clamp(15px, 4.5vw, 18px);
    line-height: 1.1;
  }

  .scanner-mobile-toggle {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(79, 140, 255, 0.28);
    border-radius: 999px;
    padding: 0 16px;
    background:
      linear-gradient(135deg, rgba(79, 140, 255, 0.18), rgba(124, 92, 255, 0.12)),
      rgba(255, 255, 255, 0.045);
    color: var(--color-text);
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .scanner-mobile-toggle:focus-visible {
    outline: 2px solid rgba(79, 140, 255, 0.72);
    outline-offset: 3px;
  }

  .scanner-full {
    display: none;
  }

  .command-panel.is-expanded .scanner-full {
    display: block;
    margin-top: 2px;
  }

  .command-panel.is-expanded .command-body {
    padding: 0 12px 12px;
  }

  .command-panel.is-expanded .command-metrics,
  .command-panel.is-expanded .scanner-events {
    display: none;
  }

  .quick-diagnostic .section-head h2,
  .quick-diagnostic__title {
    max-width: 100%;
    font-size: clamp(38px, 13vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .quick-diagnostic__subtitle {
    font-size: 18px;
    line-height: 1.55;
  }

  .process-map {
    min-height: 0;
    gap: 12px;
    border-radius: 20px;
    padding: 12px;
  }

  .scanner-radar {
    width: min(100%, 240px);
  }

  .scanner-hub {
    width: 84px;
    height: 84px;
  }

  .scanner-hub strong {
    font-size: 18px;
  }

  .scanner-hub span {
    font-size: 10px;
  }

  .scanner-legend {
    gap: 7px;
  }

  .scanner-legend span {
    min-height: 26px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .metric-card {
    min-height: 58px;
  }
}

@media (max-width: 420px) {
  .quick-diagnostic .section-head h2,
  .quick-diagnostic__title {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: clamp(30px, 10.5vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .quick-diagnostic__subtitle {
    font-size: 16px;
  }

  .process-map {
    padding: 12px;
  }

  .scanner-radar {
    width: clamp(190px, 70vw, 260px);
  }

  .scanner-hub {
    width: 78px;
    height: 78px;
  }

  .scanner-hub strong {
    font-size: 17px;
  }

  .scanner-hub span {
    font-size: 9px;
  }

  .scanner-pin {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 0 14px;
  }

  .site-header .btn {
    display: none;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 42px 0 72px;
  }

  .hero-copy {
    width: auto;
    max-width: calc(100vw - 28px);
  }

  .hero-copy > * {
    max-width: calc(100vw - 28px);
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.04;
  }

  .hero-actions,
  .modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-visual {
    min-height: 320px;
  }

  .command-center {
    min-height: 406px;
  }

  .command-glow {
    inset: 2% 0;
  }

  .grid-plane {
    display: none;
  }

  .command-panel {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    border-radius: 24px;
  }

  .command-topbar {
    align-items: flex-start;
    padding: 15px;
  }

  .command-topbar strong {
    font-size: 16px;
  }

  .ai-status {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .command-body {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .process-map {
    min-height: 0;
    border-radius: 20px;
    padding: 14px;
  }

  .scanner-radar {
    width: min(100%, 260px);
  }

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

  .metric-card {
    min-height: 54px;
    border-radius: 16px;
    padding: 9px;
  }

  .metric-card span {
    font-size: 10px;
  }

  .metric-card strong {
    font-size: 14px;
  }

  .scanner-events {
    padding: 10px 12px;
  }

  .scanner-event {
    font-size: 11px;
  }

  .system-core {
    width: min(76vw, 250px);
    height: min(76vw, 250px);
  }

  .system-core strong {
    font-size: 52px;
  }

  .signal {
    padding: 10px 12px;
    font-size: 13px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 76px 0;
  }

  .scanner-layout {
    gap: 28px;
  }

  .scan-zone-list {
    grid-template-columns: 1fr;
  }

  .scanner-card {
    border-radius: 24px;
    padding: 16px;
  }

  .scanner-glow {
    inset: 0;
  }

  .scanner-top {
    align-items: flex-start;
  }

  .scanner-findings li {
    min-height: 46px;
    font-size: 14px;
  }

  .data-flow-map {
    border-radius: 24px;
    padding: 16px;
  }

  .flow-card {
    min-height: 46px;
    font-size: 14px;
  }

  .automation-tabs {
    gap: 14px;
  }

  .automation-tab-list {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    border-radius: 22px;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .automation-tab {
    min-width: max-content;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .automation-panels {
    border-radius: 24px;
  }

  .automation-panel {
    gap: 22px;
    padding: 18px;
  }

  .automation-panel h3 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .automation-panel-main > p:not(.automation-zone-label) {
    font-size: 16px;
  }

  .automation-scenarios li {
    min-height: 44px;
    font-size: 14px;
  }

  .call-fragment-card,
  .ai-summary-card {
    border-radius: 24px;
  }

  .summary-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-widget {
    width: 100%;
  }

  .waveform {
    height: 86px;
    gap: 5px;
    padding: 14px;
  }

  .dashboard-top,
  .dashboard-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-footer .btn {
    width: 100%;
  }

  .owner-dashboard {
    border-radius: 24px;
  }

  .today-metrics {
    grid-template-columns: 1fr;
  }

  .today-metrics article {
    min-height: 104px;
  }

  .report-summary p {
    min-height: 180px;
    font-size: 16px;
  }

  .transformation-board {
    display: none;
  }

  .transformation-accordion {
    display: grid;
    gap: 10px;
  }

  .transformation-accordion details {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
      rgba(8, 12, 22, 0.76);
  }

  .transformation-accordion summary {
    position: relative;
    min-height: 58px;
    padding: 16px 42px 16px 16px;
    color: var(--color-text);
    font-weight: 850;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
  }

  .transformation-accordion summary::-webkit-details-marker {
    display: none;
  }

  .transformation-accordion summary::after {
    position: absolute;
    right: 16px;
    content: "+";
    color: var(--color-success);
    font-size: 22px;
    line-height: 1;
  }

  .transformation-accordion details[open] summary::after {
    content: "−";
  }

  .transformation-accordion p {
    position: relative;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px 16px 40px;
    color: #c9ffe8;
    font-weight: 800;
    line-height: 1.5;
  }

  .transformation-accordion p::before {
    position: absolute;
    top: 20px;
    left: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 16px rgba(54, 211, 153, 0.6);
    content: "";
  }

  .integration-map {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 10px;
    border-radius: 24px;
    padding: 18px;
  }

  .integration-map::before {
    inset: 120px auto 28px 50%;
    width: 1px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(79, 140, 255, 0), rgba(79, 140, 255, 0.44), rgba(54, 211, 153, 0.34), rgba(79, 140, 255, 0));
    box-shadow: none;
    transform: translateX(-50%);
  }

  .integration-map::after {
    opacity: 0.55;
  }

  .integration-core {
    position: relative;
    top: auto;
    left: auto;
    width: min(68vw, 210px);
    height: min(68vw, 210px);
    margin: 8px auto 18px;
    transform: none;
  }

  .integration-core strong {
    font-size: 34px;
  }

  .integration-node,
  .integration-node-tasks {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 320px);
    min-width: 0;
    margin: 0 auto;
    transform: none;
    animation: none;
  }

  .integration-node:hover,
  .integration-node-tasks:hover {
    transform: translateY(-2px);
  }

  .integration-line {
    display: none;
  }

  .integration-steps {
    margin-top: 14px;
  }

  .integration-step {
    border-radius: 20px;
    padding: 18px;
  }

  .integration-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .integration-footer__cta {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .scenario-card {
    border-radius: 24px;
    padding: 18px;
  }

  .diagnostic-card,
  .diagnostic-result {
    border-radius: 24px;
  }

  .quick-diagnostic .section-head h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: clamp(30px, 10.5vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .diagnostic-card,
  .diagnostic-result {
    padding: 16px;
  }

  .diagnostic-question {
    border-radius: 20px;
    padding: 14px;
  }

  .diagnostic-options {
    grid-template-columns: 1fr;
  }

  .diagnostic-option {
    width: 100%;
    min-height: 46px;
    border-radius: 16px;
    text-align: left;
  }

  .diagnostic-mini-flow {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .diagnostic-mini-flow i {
    width: 1px;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(79, 140, 255, 0), rgba(79, 140, 255, 0.74), rgba(54, 211, 153, 0.64));
  }

  .scenario-flow {
    grid-template-columns: 1fr;
  }

  .scenario-flow i {
    width: 1px;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(79, 140, 255, 0), rgba(79, 140, 255, 0.74), rgba(54, 211, 153, 0.64));
  }

  .solution,
  .why,
  .start {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .feature-grid,
  .feature-grid.compact,
  .timeline,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .timeline li,
  .audience-item {
    min-height: auto;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-row p,
  .case-row strong {
    grid-column: auto;
  }

  .footer {
    margin: 0 14px 18px;
    padding: 24px 18px;
    border-radius: 22px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .form-step {
    padding: 28px 18px;
  }

  .modal {
    padding: 10px;
  }

  .modal-dialog {
    max-height: calc(100svh - 20px);
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-section-y: 44px;
    --mobile-section-y-tight: 32px;
    --mobile-card-radius: 20px;
    --mobile-card-padding: 16px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: var(--mobile-section-y) 0;
  }

  .process-scanner-section,
  .ai-flow-section,
  .transformation-section,
  .call-analysis-section,
  .owner-report-section,
  .integrations-section {
    padding: var(--mobile-section-y-tight) 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-head h2,
  h2 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }

  .section-head p,
  .section-head p:last-child {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .process-scanner-section .section-head p:last-child,
  .ai-flow-section .section-head p:last-child,
  .transformation-section .section-head p:last-child,
  .call-analysis-section .section-head p:last-child,
  .owner-report-section .section-head p:last-child,
  .integrations-section .section-head p:last-child {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .data-flow-map {
    display: none;
  }

  .mobile-flow-summary {
    display: grid;
    gap: 10px;
  }

  .mobile-flow-summary article {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    padding: 16px;
    background:
      radial-gradient(circle at 15% 0%, rgba(79, 140, 255, 0.13), transparent 46%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
      rgba(8, 12, 22, 0.72);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  }

  .mobile-flow-summary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    border: 1px solid rgba(79, 140, 255, 0.3);
    border-radius: 50%;
    background: rgba(79, 140, 255, 0.1);
    color: #bcd0ff;
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-flow-summary strong {
    display: block;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.25;
  }

  .mobile-flow-summary p {
    margin: 8px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .transformation-accordion:not(.is-expanded) details:nth-of-type(n+4) {
    display: none;
  }

  .transformation-accordion summary {
    min-height: 52px;
    padding: 14px 42px 14px 14px;
    font-size: 14px;
  }

  .transformation-accordion p {
    padding: 12px 14px 14px 38px;
    font-size: 14px;
    line-height: 1.45;
  }

  .transformation-accordion p::before {
    top: 18px;
    left: 14px;
  }

  .scanner-copy h3 {
    display: none;
  }

  .scanner-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-size: 15px;
    line-height: 1.55;
  }

  .scan-zone-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .scan-zone-list:not(.is-expanded) span:nth-child(n+5) {
    display: none;
  }

  .scanner-findings:not(.is-expanded) li:nth-child(n+4) {
    display: none;
  }

  .mobile-show-more {
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--color-text);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-show-more:hover {
    border-color: rgba(79, 140, 255, 0.42);
    background: rgba(79, 140, 255, 0.1);
  }

  .scanner-card {
    border-radius: 20px;
    padding: 16px;
  }

  .scanner-findings {
    gap: 8px;
    margin: 16px 0 0;
  }

  .scanner-findings li {
    min-height: auto;
    padding: 11px 12px;
    font-size: 14px;
  }

  .scanner-result {
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 14px;
  }

  .call-analysis-demo {
    gap: 10px;
  }

  .call-fragment-card,
  .ai-summary-card {
    border-radius: 20px;
    padding: 16px;
  }

  .ai-summary-card {
    gap: 12px;
  }

  .call-card-top,
  .summary-top {
    gap: 12px;
    margin-bottom: 16px;
  }

  .call-card-top strong,
  .summary-top > div:first-child strong {
    font-size: 21px;
    line-height: 1.15;
  }

  .call-card-top span,
  .summary-top > div:first-child span {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .play-button {
    width: 44px;
    height: 44px;
  }

  .play-button span {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 11px;
  }

  .waveform {
    height: 58px;
    gap: 4px;
    border-radius: 16px;
    margin-bottom: 14px;
    padding: 10px;
  }

  .waveform span {
    width: 4px;
  }

  .call-analysis-demo:not(.is-expanded) .dialogue p:nth-child(n+3) {
    display: none;
  }

  .dialogue {
    gap: 8px;
  }

  .dialogue p {
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .summary-top {
    align-items: stretch;
    flex-direction: row;
  }

  .score-widget {
    flex: 0 0 auto;
    min-width: 112px;
    width: auto;
    border-radius: 16px;
    padding: 10px;
  }

  .score-widget span {
    font-size: 10px;
  }

  .score-widget strong {
    margin-top: 5px;
    font-size: 22px;
  }

  .call-analysis-demo:not(.is-expanded) .summary-list li:nth-child(n+4) {
    display: none;
  }

  .call-analysis-demo:not(.is-expanded) .manager-value {
    display: none;
  }

  .summary-list {
    gap: 8px;
  }

  .summary-list li {
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .summary-list span {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .manager-value {
    border-radius: 18px;
    padding: 14px;
  }

  .manager-value strong {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .manager-value div {
    gap: 6px;
  }

  .manager-value span {
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.25;
  }

  .ai-summary-card .btn {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .automation-tab-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .automation-tab {
    flex: 0 0 auto;
    min-height: 40px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 12px;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .automation-panel {
    gap: 16px;
    padding: 16px;
  }

  .automation-panel h3 {
    font-size: clamp(28px, 10vw, 38px);
    line-height: 1;
  }

  .automation-panel-main > p:not(.automation-zone-label) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 15px;
    line-height: 1.55;
  }

  .automation-scenarios {
    margin-top: 18px;
  }

  .automation-scenarios ul {
    gap: 8px;
  }

  .automation-scenarios li {
    min-height: auto;
    padding: 11px 12px 11px 34px;
    font-size: 14px;
    line-height: 1.4;
  }

  .automation-scenarios li::before {
    top: 17px;
    left: 14px;
  }

  .automation-panel:not(.is-expanded) .automation-scenarios li:nth-child(n+4) {
    display: none;
  }

  .automation-panel.is-expanded .automation-scenarios li {
    display: block;
  }

  .automation-insight {
    gap: 10px;
  }

  .automation-insight > div {
    border-radius: 18px;
    padding: 14px;
  }

  .automation-insight span,
  .automation-scenarios strong {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .automation-insight p {
    font-size: 14px;
    line-height: 1.5;
  }

  .automation-event::before {
    display: none;
  }

  .automation-insight .btn {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .integration-map {
    display: none;
  }

  .mobile-integration-chain {
    display: grid;
    gap: 10px;
  }

  .mobile-integration-chain article {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 16px;
    background:
      radial-gradient(circle at 0% 0%, rgba(79, 140, 255, 0.12), transparent 12rem),
      rgba(255, 255, 255, 0.045);
  }

  .mobile-integration-chain article::before {
    position: absolute;
    top: 16px;
    bottom: -16px;
    left: 28px;
    width: 1px;
    background: linear-gradient(180deg, rgba(79, 140, 255, 0.45), rgba(54, 211, 153, 0.1), transparent);
    content: "";
    opacity: 0.5;
  }

  .mobile-integration-chain article:last-child::before {
    display: none;
  }

  .mobile-integration-chain span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(54, 211, 153, 0.24);
    border-radius: 50%;
    background: rgba(54, 211, 153, 0.08);
    color: #c9ffe8;
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-integration-chain strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.25;
  }

  .mobile-integration-chain p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .integration-steps {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .integration-step {
    border-radius: 18px;
    padding: 16px;
  }

  .integration-step span {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .integration-step h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    line-height: 1.2;
  }

  .integration-step p {
    font-size: 14px;
    line-height: 1.55;
  }

  .integration-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
    border-radius: 18px;
    padding: 16px;
  }

  .integration-footer__eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .integration-footer__copy p {
    font-size: 15px;
    line-height: 1.45;
  }

  .integration-footer__cta {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .scenario-grid {
    gap: 10px;
  }

  .scenario-grid:not(.is-expanded) .scenario-card:nth-child(n+3) {
    display: none;
  }

  .scenario-card {
    min-height: auto;
    border-radius: 20px;
    padding: 16px;
  }

  .scenario-top {
    gap: 12px;
    margin-bottom: 14px;
  }

  .scenario-top span {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .scenario-card h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .scenario-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .scenario-flow,
  .case-flow,
  .mini-flow {
    display: none;
  }

  .scenario-details {
    gap: 8px;
  }

  .scenario-details div,
  .scenario-details article {
    border-radius: 16px;
    padding: 12px;
  }

  .scenario-details span,
  .scenario-details strong {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .scenario-details p {
    font-size: 14px;
    line-height: 1.45;
  }

  .scenario-details div:nth-child(n+4),
  .scenario-details article:nth-child(n+4) {
    display: none;
  }

  .scenario-note {
    margin: 12px 0;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.4;
  }

  .scenario-card .btn {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .quick-diagnostic.is-mobile-stepper .diagnostic-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
  }

  .quick-diagnostic.is-mobile-stepper .diagnostic-back {
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--color-text);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  .quick-diagnostic.is-mobile-stepper .diagnostic-back:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .quick-diagnostic.is-mobile-stepper [data-diagnostic-step-label] {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
  }

  .quick-diagnostic.is-mobile-stepper .diagnostic-question {
    display: none;
  }

  .quick-diagnostic.is-mobile-stepper[data-current-step="1"] .diagnostic-question[data-mobile-step="1"],
  .quick-diagnostic.is-mobile-stepper[data-current-step="2"] .diagnostic-question[data-mobile-step="2"],
  .quick-diagnostic.is-mobile-stepper[data-current-step="3"] .diagnostic-question[data-mobile-step="3"] {
    display: block;
  }

  .quick-diagnostic.is-mobile-stepper:not(.is-complete) .diagnostic-result {
    display: none;
  }

  .quick-diagnostic.is-mobile-stepper .diagnostic-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quick-diagnostic.is-mobile-stepper .diagnostic-option {
    min-height: 44px;
    padding: 11px 13px;
    font-size: 14px;
  }

  .quick-diagnostic.is-mobile-stepper .diagnostic-card,
  .quick-diagnostic.is-mobile-stepper .diagnostic-result {
    border-radius: 20px;
    padding: 16px;
  }

  .quick-diagnostic .section-head {
    margin-bottom: 24px;
  }

  .quick-diagnostic .section-head h2,
  .quick-diagnostic__title {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .quick-diagnostic__title span {
    display: block;
  }

  .quick-diagnostic .section-head p,
  .quick-diagnostic__subtitle {
    max-width: 100%;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .quick-diagnostic .diagnostic-layout {
    gap: 18px;
  }

  .quick-diagnostic .diagnostic-card,
  .quick-diagnostic.is-mobile-stepper .diagnostic-card {
    border-radius: 22px;
    padding: 18px 16px;
  }

  .quick-diagnostic .diagnostic-progress {
    margin-bottom: 18px;
    border-radius: 16px;
    padding: 12px;
  }

  .quick-diagnostic .diagnostic-progress span,
  .quick-diagnostic [data-diagnostic-progress-text] {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .quick-diagnostic .diagnostic-progress-bar {
    gap: 6px;
  }

  .quick-diagnostic .diagnostic-mobile-nav,
  .quick-diagnostic.is-mobile-stepper .diagnostic-mobile-nav {
    margin: 12px 0 18px;
  }

  .quick-diagnostic .diagnostic-question {
    padding-top: 4px;
  }

  .quick-diagnostic .diagnostic-question legend,
  .quick-diagnostic .diagnostic-question h3,
  .quick-diagnostic .diagnostic-question-title {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.25;
  }

  .quick-diagnostic .diagnostic-options,
  .quick-diagnostic.is-mobile-stepper .diagnostic-options {
    gap: 9px;
  }

  .quick-diagnostic .diagnostic-option,
  .quick-diagnostic.is-mobile-stepper .diagnostic-option {
    min-height: 46px;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.25;
  }

  .quick-diagnostic .diagnostic-option-dot {
    flex: 0 0 auto;
  }

  .owner-dashboard {
    border-radius: var(--mobile-card-radius);
  }

  .dashboard-grid {
    gap: 10px;
    padding: 14px;
  }

  .today-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .today-metrics article {
    min-height: 82px;
    padding: 12px;
  }

  .today-metrics span {
    font-size: 11px;
    line-height: 1.25;
  }

  .today-metrics strong {
    margin-top: 8px;
    font-size: 30px;
  }

  .report-summary {
    min-height: auto;
    padding: 16px;
  }

  .report-summary p {
    min-height: auto;
    font-size: 15px;
    line-height: 1.55;
  }

  .owner-dashboard:not(.is-expanded) .report-summary p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .report-chart,
  .report-alerts,
  .report-actions {
    padding: 16px;
  }

  .report-chart {
    gap: 12px;
  }

  .chart-row {
    gap: 6px;
  }

  .chart-row i {
    height: 9px;
  }

  .report-alerts {
    gap: 8px;
  }

  .report-alerts article {
    padding: 10px 12px 10px 14px;
    font-size: 13px;
  }

  .owner-dashboard:not(.is-expanded) .report-alerts article:nth-of-type(n+3) {
    display: none;
  }

  .owner-dashboard:not(.is-expanded) .report-actions {
    display: none;
  }

  .owner-dashboard.is-expanded .report-actions {
    display: block;
  }

  .dashboard-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .dashboard-footer p {
    font-size: 12px;
    line-height: 1.45;
  }

  .dashboard-footer .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    gap: 24px;
    padding: 32px 0 40px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-note {
    display: none;
  }

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

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

  .hero-actions .btn-secondary {
    min-height: 42px;
    border-color: rgba(255, 255, 255, 0.1);
    background: transparent;
  }

  .hero-visual,
  .command-center {
    min-height: auto;
  }

  .command-panel {
    border-radius: 22px;
  }

  .command-topbar {
    display: none;
  }

  .ai-agent-card {
    gap: 10px;
    margin: 10px;
    border-radius: 18px;
    padding: 14px;
  }

  .ai-agent-card__head {
    gap: 10px;
  }

  .ai-agent-card__head span,
  .ai-agent-message span {
    margin-bottom: 3px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .ai-agent-card__head strong {
    font-size: 16px;
    line-height: 1.15;
  }

  .ai-agent-card__head em {
    min-height: 24px;
    padding: 0 8px;
    font-size: 11px;
  }

  .ai-agent-card__body {
    gap: 12px;
  }

  .ai-agent-avatar {
    flex-basis: 76px;
    width: 76px;
    height: 76px;
  }

  .ai-agent-avatar__ring {
    inset: 4px;
  }

  .ai-agent-avatar__pulse {
    inset: -5px;
  }

  .ai-agent-message {
    border-radius: 15px;
    padding: 12px;
  }

  .ai-agent-message p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 13px;
    line-height: 1.4;
  }

  .ai-agent-checks {
    gap: 6px;
  }

  .ai-agent-checks span {
    min-height: 26px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .scanner-mobile-summary {
    display: block;
  }

  .scanner-full {
    display: none;
  }

  .command-panel.is-expanded .scanner-full {
    display: block;
    margin-top: 2px;
  }

  .command-panel.is-expanded .command-body {
    padding: 0 12px 12px;
  }

  .command-panel.is-expanded .command-metrics,
  .command-panel.is-expanded .scanner-events {
    display: none;
  }

  .command-panel.is-expanded .scanner-radar {
    width: min(100%, 240px);
  }

  .command-panel.is-expanded .scanner-legend {
    gap: 6px;
  }

  .command-panel.is-expanded .scanner-legend span {
    min-height: 24px;
    padding: 5px 8px;
    font-size: 10px;
  }
}

@media (max-width: 420px) {
  .scanner-mobile-summary {
    margin: 10px;
    padding: 14px;
  }

  .scanner-mobile-summary__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .scanner-mobile-summary__grid div {
    border-radius: 14px;
    padding: 8px 6px;
  }

  .scanner-mobile-summary__grid span {
    font-size: 9px;
  }

  .scanner-mobile-summary__grid strong {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .ai-agent-card__body {
    align-items: flex-start;
  }

  .ai-agent-avatar {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

  .data-line::after,
  .flow-line::after,
  .integration-line::after,
  .diagnostic-scan::before,
  .scanner-radar::before,
  .scanner-pin,
  .flow-agent-card,
  .ai-dot,
  .pulse-ring,
  .pulse-ring::before,
  .ai-agent-avatar__ring,
  .ai-agent-avatar__pulse,
  .integration-core::before,
  .integration-core::after,
  .report-summary p::after {
    animation: none !important;
  }

  .scanner-progress-bar,
  .chart-row i {
    transform: scaleX(1) !important;
  }

  .modal,
  .modal-dialog {
    transition: none !important;
  }
}
