:root {
  --ink: #02020d;
  --muted: #6f7076;
  --soft: #f6f7f9;
  --line: rgba(2, 2, 13, 0.12);
  --white: #fff;
  --blue: #0067f4;
  --sky: #76b9fc;
  --deep-blue: #1f26aa;
  --hero-rail: clamp(1280px, 85vw, 1460px);
  --max: var(--hero-rail);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Geist", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(92, 247, 187, 0.72);
  outline-offset: 4px;
}

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

.announcement {
  position: fixed;
  inset: 6px 6px auto;
  z-index: 30;
  display: grid;
  place-items: center;
  min-height: 32px;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.announcement.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 48px;
  left: 50%;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(calc(100vw - 28px), var(--hero-rail));
  height: 72px;
  padding: 14px;
  color: var(--white);
  transform: translateX(-50%);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(2, 2, 13, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand-logo {
  display: block;
  width: 122px;
  height: auto;
}

.brand-dark .brand-logo,
.site-header.is-scrolled .brand-logo {
  filter: invert(1);
}

.desktop-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
}

.desktop-nav a {
  opacity: 0.92;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button span,
.button::after {
  width: 14px;
  height: 14px;
  content: "";
  background: currentColor;
  clip-path: polygon(0 43%, 70% 43%, 45% 18%, 58% 5%, 100% 50%, 58% 95%, 45% 82%, 70% 57%, 0 57%);
}

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

.button span + span,
.button::after {
  display: none;
}

.light-button {
  color: var(--ink);
  background: var(--white);
}

.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled .ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--soft);
}

.dark {
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  border-radius: 10px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 126px;
  left: 12px;
  right: 12px;
  z-index: 35;
  display: none;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(2, 2, 13, 0.16);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 600;
}

.mobile-menu.is-open {
  display: block;
}

.hero {
  position: relative;
  width: calc(100% - 12px);
  min-height: min(640px, 82vh);
  margin: 44px auto 0;
  padding: 58px 20px 24px;
  overflow: hidden;
  border-radius: 4px;
  background:
    radial-gradient(110% 92% at 72% 42%, rgba(31, 38, 170, 0.48), transparent 62%),
    radial-gradient(132% 124% at 51% -16%, #02020d 0%, #0c0e4b 55%, #1732a0 100%);
  color: var(--white);
  isolation: isolate;
}

.liquid-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(105% 82% at 70% 40%, rgba(31, 38, 170, 0.42), transparent 62%),
    radial-gradient(88% 72% at 24% 62%, rgba(0, 103, 244, 0.2), transparent 66%),
    #02020d;
}

.liquid-hero-background canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.94;
  transform: translateZ(0);
  will-change: opacity;
}

.liquid-hero-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(90% 104% at 50% 48%, transparent 32%, rgba(2, 2, 13, 0.74) 100%),
    linear-gradient(180deg, rgba(2, 2, 13, 0.34), transparent 30%, rgba(2, 2, 13, 0.54));
  pointer-events: none;
}

.hero-spacer {
  height: 0;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(455px, 0.95fr) minmax(470px, 1.05fr);
  gap: clamp(58px, 6.4vw, 100px);
  align-items: center;
  width: min(100%, var(--hero-rail));
  margin: 0 auto;
}

.hero-content > *,
.section > *,
.footer > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--white);
}

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

h1 {
  max-width: 580px;
  font-size: clamp(39px, 3.55vw, 49px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  overflow-wrap: break-word;
}

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

h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-copy {
  display: grid;
  gap: 21px;
  padding-bottom: 0;
}

.hero-copy .eyebrow {
  margin: 0;
}

.hero-copy p {
  max-width: 485px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
}

.action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.action-row.center {
  justify-content: center;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 500px;
}

.proof-metrics div {
  position: relative;
  overflow: hidden;
  padding: 10px 11px;
  border: 0.5px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.038));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(1.08);
}

.proof-metrics div::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 18% 0%, rgba(92, 247, 187, 0.13), transparent 58%);
  opacity: 0.7;
}

.proof-metrics strong {
  position: relative;
  display: block;
  color: var(--white);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-metrics span {
  position: relative;
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 400px;
  width: 82%;
  margin-left: auto;
  transform: translate3d(16px, 26px, 0) scale(0.96);
  transform-origin: top right;
}

.hero-visual::before {
  position: absolute;
  inset: -12% -12% -2%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 34%, rgba(92, 247, 187, 0.16), transparent 30%),
    radial-gradient(circle at 62% 72%, rgba(118, 185, 252, 0.2), transparent 38%),
    radial-gradient(circle at 42% 54%, rgba(2, 2, 13, 0.62), transparent 54%);
  filter: blur(34px);
  opacity: 0.7;
}

.hero-visual::after {
  content: none;
}

.visual-orbit {
  position: absolute;
  inset: 3% -4% 1%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 70% 28%, rgba(92, 247, 187, 0.16), transparent 28%),
    radial-gradient(circle at 34% 76%, rgba(0, 103, 244, 0.24), transparent 34%);
  filter: blur(30px);
  opacity: 0.62;
  animation: visualDrift 14s ease-in-out infinite alternate;
  will-change: transform;
}

.dashboard-frame {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 386px;
  margin: 0;
  padding: 8px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.036) 38%, rgba(255, 255, 255, 0.062)),
    radial-gradient(118% 88% at 52% 0%, rgba(92, 247, 187, 0.09), rgba(31, 38, 170, 0.12) 32%, rgba(2, 2, 13, 0.84));
  box-shadow: 0 30px 74px rgba(2, 2, 13, 0.46), 0 0 82px rgba(92, 247, 187, 0.06), inset 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px) saturate(1.18);
}

.dashboard-frame::before,
.dashboard-frame::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
}

.dashboard-frame::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.13), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(92, 247, 187, 0.1), transparent 30%);
  opacity: 0.58;
}

.dashboard-frame::after {
  inset: 1px;
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 38px rgba(118, 185, 252, 0.045), inset 0 -1px rgba(92, 247, 187, 0.05);
}

.dae-os {
  overflow: hidden;
}

.os-topbar,
.os-grid {
  position: relative;
  z-index: 1;
}

.os-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 9px 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.os-topbar div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.os-topbar strong {
  color: var(--white);
  font-size: 12px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5cf7bb;
  box-shadow: 0 0 20px rgba(92, 247, 187, 0.9);
}

.os-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "funnel ai"
    "funnel ads"
    "workflow workflow";
  gap: 8px;
  padding: 8px 0 0;
}

.os-grid article,
.floating-card {
  border: 0.5px solid rgba(255, 255, 255, 0.074);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(5, 9, 40, 0.62));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.068), 0 12px 30px rgba(2, 2, 13, 0.14);
  backdrop-filter: blur(26px) saturate(1.12);
}

.os-grid article {
  padding: 10px;
}

.funnel-card {
  grid-area: funnel;
}

.ai-card {
  grid-area: ai;
}

.ad-card {
  grid-area: ads;
  min-height: 126px;
}

.workflow-card {
  grid-area: workflow;
}

.card-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pipeline {
  display: grid;
  gap: 6px;
}

.pipeline span {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  padding: 7px 9px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  font-size: 12px;
}

.pipeline span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  content: "";
  background: linear-gradient(90deg, rgba(92, 247, 187, 0.16), rgba(118, 185, 252, 0.08), transparent);
}

.pipeline span > * {
  position: relative;
}

.pipeline b {
  font-weight: 700;
}

.score-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(5, 9, 40, 0.98) 0 55%, transparent 56%),
    conic-gradient(from 20deg, #5cf7bb 0 68%, #76b9fc 68% 92%, rgba(255, 255, 255, 0.12) 92% 100%);
  box-shadow: 0 0 44px rgba(92, 247, 187, 0.16);
  text-align: center;
}

.score-ring strong {
  color: var(--white);
  font-size: 32px;
  line-height: 1;
}

.score-ring span {
  max-width: 74px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  line-height: 1.08;
  text-align: center;
}

.score-list,
.ad-grid {
  display: grid;
  gap: 6px;
}

.score-list span,
.ad-grid span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.score-list b,
.ad-grid b {
  color: var(--white);
}

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

.ad-grid span {
  display: grid;
  min-height: 42px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.flow-line::before {
  position: absolute;
  top: 17px;
  left: 8%;
  right: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(92, 247, 187, 0.32), rgba(118, 185, 252, 0.44), transparent);
  opacity: 0.76;
  z-index: 0;
}

.flow-line::after {
  position: absolute;
  top: 15px;
  left: 5%;
  width: 18%;
  height: 5px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(92, 247, 187, 0.86), transparent);
  filter: blur(5px);
  opacity: 0.7;
  z-index: 0;
  animation: flowPulse 5.8s ease-in-out infinite;
}

.flow-line span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 32px;
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(118, 185, 252, 0.1)),
    rgba(6, 10, 48, 0.52);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 0 0 rgba(92, 247, 187, 0);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  animation: nodePulse 4s ease-in-out infinite;
}

.flow-line span:nth-child(2) {
  animation-delay: 0.35s;
}

.flow-line span:nth-child(3) {
  animation-delay: 0.7s;
}

.flow-line span:nth-child(4) {
  animation-delay: 1.05s;
}

.flow-line span:nth-child(5) {
  animation-delay: 1.4s;
}

.floating-card {
  position: absolute;
  z-index: 5;
  padding: 6px 8px;
  contain: paint;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.108), rgba(6, 10, 48, 0.64)),
    radial-gradient(circle at 14% 0%, rgba(92, 247, 187, 0.1), transparent 46%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.075), 0 9px 24px rgba(2, 2, 13, 0.16);
  backdrop-filter: blur(14px) saturate(1.06);
  backface-visibility: hidden;
  will-change: transform;
}

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

.floating-card strong {
  font-size: 10px;
}

.floating-card span,
.floating-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.notification-card.one {
  top: 10px;
  right: -10px;
  animation: floatCard 5s ease-in-out infinite;
}

.notification-card.two {
  right: -12px;
  bottom: 56px;
  animation: floatCard 5.8s ease-in-out infinite reverse;
}

.consultation-card {
  left: -50px;
  bottom: 160px;
  min-width: 112px;
  animation: floatCard 6.2s ease-in-out infinite;
}

.consultation-card strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 27px;
  letter-spacing: -0.04em;
  text-shadow: 0 0 18px rgba(92, 247, 187, 0.38), 0 0 26px rgba(118, 185, 252, 0.26);
}

.consultation-card strong::first-letter {
  color: #5cf7bb;
}

.logo-marquee {
  width: min(100%, var(--hero-rail));
  margin: 0 auto;
  padding: 18px 14px 28px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

@media (min-width: 1600px) {
  .hero {
    min-height: clamp(760px, 81vh, 900px);
    padding-top: clamp(88px, 7.8vh, 108px);
    padding-bottom: clamp(22px, 2.4vh, 32px);
  }

  .hero-content {
    grid-template-columns: minmax(500px, 0.92fr) minmax(560px, 1.08fr);
    gap: clamp(72px, 6vw, 118px);
  }

  h1 {
    max-width: 650px;
    font-size: clamp(52px, 3.25vw, 62px);
  }

  .hero-copy p {
    max-width: 540px;
    font-size: 17px;
  }

  .proof-metrics {
    max-width: 560px;
  }

  .proof-metrics div {
    padding: 12px 13px;
  }

  .proof-metrics strong {
    font-size: 29px;
  }

  .hero-visual {
    min-height: clamp(420px, 43vh, 510px);
    width: min(87%, 660px);
    transform: translate3d(18px, 32px, 0) scale(1);
  }

  .logo-marquee {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .marquee-track span {
    font-size: 26px;
  }
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 80px;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  color: #a8abb2;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 100px 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: center;
}

.lead {
  max-width: 900px;
  margin-top: 24px;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.lead.secondary {
  max-width: 620px;
  margin-top: 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.revenue-leak {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1fr);
  gap: clamp(48px, 5.2vw, 84px);
  align-items: center;
  padding-top: 112px;
  padding-bottom: 86px;
}

.revenue-leak::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  content: "";
  background:
    linear-gradient(rgba(2, 2, 13, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 2, 13, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 77% 26%, rgba(118, 185, 252, 0.24), transparent 34%),
    radial-gradient(circle at 58% 78%, rgba(92, 247, 187, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(246, 247, 249, 0.18), rgba(255, 255, 255, 0));
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  transform: translateX(-50%);
  pointer-events: none;
}

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

.revenue-copy h2 {
  max-width: 710px;
}

.revenue-copy h2 span {
  display: block;
}

.revenue-copy .lead {
  max-width: 610px;
  margin-top: 20px;
}

.revenue-copy .lead.secondary {
  max-width: 540px;
  margin-top: 12px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.problem-grid article {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 19px;
  border: 1px solid rgba(2, 2, 13, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(2, 2, 13, 0.055);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.problem-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 12% 0%, rgba(92, 247, 187, 0.12), transparent 48%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.problem-grid article:hover::before {
  opacity: 1;
}

.problem-grid article:hover {
  border-color: rgba(0, 103, 244, 0.18);
  box-shadow: 0 24px 58px rgba(2, 2, 13, 0.09);
  transform: translateY(-3px);
}

.problem-grid span,
.leak-dashboard-header strong,
.pipeline-stage b {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.problem-grid h3 {
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.problem-grid p {
  position: relative;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.leak-dashboard {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(2, 2, 13, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 0%, rgba(118, 185, 252, 0.28), transparent 34%),
    radial-gradient(circle at 28% 82%, rgba(92, 247, 187, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 249, 0.78));
  box-shadow: 0 36px 96px rgba(2, 2, 13, 0.15), inset 0 1px rgba(255, 255, 255, 0.92);
  animation: dashboardBreathe 6.8s ease-in-out infinite;
}

.leak-dashboard::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(2, 2, 13, 0.06);
  border-radius: 18px;
  pointer-events: none;
}

.leak-dashboard::after {
  position: absolute;
  inset: -28% -18% auto auto;
  width: 52%;
  height: 52%;
  content: "";
  background: radial-gradient(circle, rgba(118, 185, 252, 0.2), transparent 68%);
  filter: blur(28px);
  opacity: 0.72;
  pointer-events: none;
}

.leak-dashboard-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px 16px;
}

.leak-dashboard-header div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.leak-dashboard-header div span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #5cf7bb;
  box-shadow: 0 0 18px rgba(92, 247, 187, 0.72);
  animation: statusPulse 2.8s ease-in-out infinite;
}

.leak-dashboard-header p {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.pipeline-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.pipeline-stage {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(2, 2, 13, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(2, 2, 13, 0.055);
  animation: diagnosticReveal 0.7s ease both;
}

.pipeline-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.pipeline-stage:nth-of-type(3) {
  animation-delay: 0.08s;
}

.pipeline-stage:nth-of-type(5) {
  animation-delay: 0.16s;
}

.pipeline-stage:nth-of-type(7) {
  animation-delay: 0.24s;
}

.pipeline-stage:nth-of-type(9) {
  animation-delay: 0.32s;
}

.pipeline-stage > span {
  display: grid;
  place-items: center;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 38, 170, 0.11), rgba(118, 185, 252, 0.18));
  color: var(--ink);
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.stage-leads {
  border-color: rgba(2, 2, 13, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(2, 2, 13, 0.08);
}

.stage-leads > span {
  background: linear-gradient(135deg, rgba(31, 38, 170, 0.15), rgba(118, 185, 252, 0.25));
}

.stage-leads::after {
  animation: stageShimmer 5.6s ease-in-out infinite;
}

.stage-contacted {
  opacity: 0.9;
}

.stage-qualified {
  opacity: 0.78;
}

.stage-contacted > span,
.stage-qualified > span {
  color: rgba(2, 2, 13, 0.84);
}

.pipeline-stage strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.pipeline-stage small {
  display: block;
  margin-top: 4px;
  color: rgba(2, 2, 13, 0.54);
  font-size: 12px;
}

.pipeline-stage.active {
  border-color: rgba(92, 247, 187, 0.3);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(92, 247, 187, 0.14), 0 14px 34px rgba(2, 2, 13, 0.06);
}

.pipeline-stage.active > span {
  background: linear-gradient(135deg, rgba(92, 247, 187, 0.16), rgba(118, 185, 252, 0.22));
}

.pipeline-stage.active::after {
  animation: stageShimmer 4.8s ease-in-out infinite 1.2s;
}

.pipeline-stage.accepted {
  border-color: rgba(92, 247, 187, 0.2);
  background:
    radial-gradient(circle at 90% 20%, rgba(92, 247, 187, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(2, 2, 13, 0.96), rgba(12, 14, 75, 0.96));
  box-shadow: 0 20px 54px rgba(2, 2, 13, 0.18);
}

.pipeline-stage.accepted span {
  background: rgba(92, 247, 187, 0.14);
  color: var(--white);
}

.pipeline-stage.accepted strong,
.pipeline-stage.accepted b {
  color: var(--white);
}

.pipeline-stage.accepted small {
  color: rgba(255, 255, 255, 0.6);
}

.leak-indicator {
  position: relative;
  justify-self: center;
  padding: 6px 12px 6px 26px;
  border: 1px solid rgba(174, 91, 65, 0.16);
  border-radius: 999px;
  background: rgba(255, 244, 237, 0.84);
  color: rgba(92, 42, 28, 0.76);
  font-size: 11px;
  font-weight: 700;
  animation: leakagePulse 2.8s ease-in-out infinite;
}

.leak-indicator::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: rgba(198, 95, 50, 0.62);
  box-shadow: 0 0 14px rgba(198, 95, 50, 0.22);
  transform: translateY(-50%);
}

.leak-indicator.severe {
  background: rgba(255, 239, 228, 0.94);
  color: rgba(86, 35, 22, 0.86);
}

.leak-indicator.mild {
  opacity: 0.78;
}

.revenue-loss-card {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 12%, rgba(92, 247, 187, 0.16), transparent 32%),
    linear-gradient(135deg, var(--ink), #0c0e4b 68%, #12175c);
  box-shadow: 0 22px 54px rgba(2, 2, 13, 0.2);
}

.conversion-bridge {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 680px;
  margin: 4px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(2, 2, 13, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(2, 2, 13, 0.055);
  color: rgba(2, 2, 13, 0.72);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.revenue-loss-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.revenue-loss-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.revenue-loss-card span {
  display: block;
  max-width: 360px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  overflow: hidden;
  border-radius: 4px;
}

.problem-side,
.solution-side {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 28px;
}

.problem-side {
  background: var(--ink);
}

.solution-side {
  background: radial-gradient(115% 408% at 0 50%, #e7f3ff 0%, var(--sky) 20%, var(--deep-blue) 45%, var(--ink) 100%);
}

.pill-strip {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.pill-strip.reverse {
  animation-direction: reverse;
}

.pill-strip span {
  display: block;
  min-width: 260px;
  padding: 12px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  line-height: 1.3;
}

.center-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 4px;
  background: var(--white);
  color: var(--blue);
  font-size: 38px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 44px rgba(118, 185, 252, 0.6);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 76px;
}

.section-head > div {
  max-width: 520px;
}

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

.benefit-grid article {
  display: grid;
  gap: 16px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 24px;
}

.operating-system {
  position: relative;
  isolation: isolate;
  width: calc(100% - 12px);
  max-width: none;
  margin-top: 12px;
  padding: 124px max(14px, calc((100vw - var(--hero-rail)) / 2)) 120px;
  overflow: hidden;
  border-radius: 4px;
  background:
    radial-gradient(circle at 78% 16%, rgba(118, 185, 252, 0.18), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(92, 247, 187, 0.1), transparent 28%),
    linear-gradient(180deg, #02020d 0%, #080936 54%, #02020d 100%);
  color: var(--white);
}

.operating-system::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(72% 62% at 50% 44%, rgba(31, 38, 170, 0.26), transparent 70%);
  background-size: 42px 42px, 42px 42px, auto;
  mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 78%);
  opacity: 0.54;
}

.operating-system::after {
  position: absolute;
  inset: auto -10% -22% -10%;
  z-index: -1;
  height: 48%;
  content: "";
  background: radial-gradient(ellipse, rgba(0, 103, 244, 0.18), transparent 68%);
  filter: blur(38px);
}

.os-section-head {
  position: relative;
  z-index: 2;
  width: min(100%, var(--hero-rail));
  margin: 0 auto 34px;
}

.os-section-head > div {
  max-width: 780px;
}

.os-section-head h2 {
  max-width: 760px;
  color: var(--white);
}

.os-section-head p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.light-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.os-visual {
  position: relative;
  width: min(100%, calc(var(--hero-rail) - 40px));
  min-height: 640px;
  margin: 0 auto;
  border-radius: 28px;
}

.performance-guarantee {
  width: calc(100% - 12px);
  max-width: none;
  margin: 0 auto;
  padding: 72px max(14px, calc((100vw - var(--hero-rail)) / 2)) 88px;
  border-radius: 4px 4px 0 0;
  background: #ffffff;
  color: var(--white);
}

.guarantee-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  width: min(100%, var(--hero-rail));
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(92, 247, 187, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
    radial-gradient(circle at 82% 20%, rgba(92, 247, 187, 0.12), transparent 36%),
    radial-gradient(circle at 18% 82%, rgba(31, 38, 170, 0.26), transparent 46%),
    linear-gradient(180deg, rgba(12, 15, 48, 0.98), rgba(2, 2, 13, 0.98));
  box-shadow: 0 18px 42px rgba(2, 2, 13, 0.08), inset 0 1px rgba(255, 255, 255, 0.075);
}

.guarantee-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    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: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 78%);
  opacity: 0.32;
  pointer-events: none;
}

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

.guarantee-card h2 {
  max-width: 760px;
  color: var(--white);
}

.guarantee-card > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.guarantee-action {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.guarantee-action p {
  padding: 18px 20px;
  border: 1px solid rgba(249, 226, 25, 0.14);
  border-left-color: rgba(92, 247, 187, 0.38);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.guarantee-action .button {
  min-width: 176px;
}

.os-visual::before {
  position: absolute;
  inset: 3% 1% 5%;
  content: "";
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 40% 43%, rgba(92, 247, 187, 0.14), transparent 30%),
    radial-gradient(circle at 72% 34%, rgba(118, 185, 252, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.022);
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  opacity: 0.52;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 58%, transparent 86%);
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 58%, transparent 86%);
  pointer-events: none;
}

.os-visual::after {
  position: absolute;
  inset: 12% 18% 16%;
  content: "";
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(92, 247, 187, 0.18), rgba(0, 103, 244, 0.1) 38%, transparent 72%);
  filter: blur(46px);
  opacity: 0.72;
  pointer-events: none;
  animation: osAtmosphere 10s ease-in-out infinite alternate;
}

.os-network {
  position: absolute;
  inset: 15% 4.5% 15%;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.os-network path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.os-network-base {
  stroke: rgba(118, 185, 252, 0.24);
  stroke-linecap: round;
  stroke-width: 1.25;
}

.os-network-pulse {
  stroke: rgba(92, 247, 187, 0.62);
  stroke-dasharray: 14 360;
  stroke-linecap: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(92, 247, 187, 0.34));
  animation: osNetworkPulse 8.4s ease-in-out infinite;
}

.os-flow-line,
.os-path {
  display: none;
}

.os-node {
  position: absolute;
  z-index: 2;
  display: grid;
  align-content: start;
  width: 232px;
  min-height: 154px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.044)),
    rgba(6, 8, 42, 0.42);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.075), 0 18px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(1.12);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.os-node::before {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: rgba(92, 247, 187, 0.82);
  box-shadow: 0 0 18px rgba(92, 247, 187, 0.4);
}

.os-node::after {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(92, 247, 187, 0.16), transparent 54%);
  opacity: 0;
  animation: osNodeSignal 8.4s ease-in-out infinite;
}

.os-node:hover {
  border-color: rgba(92, 247, 187, 0.28);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 24px 70px rgba(0, 0, 0, 0.22), 0 0 34px rgba(92, 247, 187, 0.08);
  transform: translateY(-4px);
}

.ads-node {
  top: 20%;
  left: 1.8%;
}

.ads-node::before {
  top: 50%;
  right: -18px;
  transform: translate(50%, -50%);
}

.funnel-node {
  top: 17%;
  left: 25.2%;
  width: 274px;
  min-height: 176px;
  padding: 20px;
  transform: translateY(-4px) scale(1.02);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.11), 0 30px 92px rgba(0, 0, 0, 0.28), 0 0 64px rgba(92, 247, 187, 0.09);
}

.funnel-node::before {
  top: 50%;
  right: -17px;
  transform: translate(50%, -50%);
}

.ai-node {
  top: 20%;
  left: 50.2%;
}

.ai-node::before {
  top: 50%;
  right: -17px;
  transform: translate(50%, -50%);
}

.crm-node {
  top: 20%;
  right: 1.8%;
}

.crm-node::before {
  bottom: -18px;
  left: 48%;
  transform: translate(-50%, 50%);
}

.setter-node {
  bottom: 24%;
  left: 25.2%;
}

.setter-node::before {
  top: 50%;
  right: -17px;
  transform: translate(50%, -50%);
}

.booking-node {
  bottom: 24%;
  left: 50.2%;
}

.booking-node::before {
  top: 50%;
  right: -16px;
  transform: translate(50%, -50%);
}

.revenue-node {
  right: 1.8%;
  bottom: 24%;
}

.revenue-node::before {
  display: none;
}

.ads-node::after {
  animation-delay: 0s;
}

.funnel-node::after {
  animation-delay: 1.1s;
}

.ai-node::after {
  animation-delay: 2.2s;
}

.crm-node::after {
  animation-delay: 3.3s;
}

.setter-node::after {
  animation-delay: 4.4s;
}

.booking-node::after {
  animation-delay: 5.5s;
}

.revenue-node::after {
  animation-delay: 6.6s;
}

.os-node span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 24px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(92, 247, 187, 0.12);
  color: #5cf7bb;
  font-size: 11px;
  font-weight: 900;
}

.funnel-node,
.ai-node,
.crm-node {
  border-color: rgba(92, 247, 187, 0.22);
  background:
    radial-gradient(circle at 16% 0%, rgba(92, 247, 187, 0.15), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05)),
    rgba(6, 8, 42, 0.5);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 24px 76px rgba(0, 0, 0, 0.24), 0 0 48px rgba(92, 247, 187, 0.065);
}

.funnel-node span,
.ai-node span,
.crm-node span {
  background: rgba(92, 247, 187, 0.2);
  box-shadow: 0 0 22px rgba(92, 247, 187, 0.12);
}

.os-node h3 {
  color: var(--white);
  font-size: 17px;
}

.funnel-node h3 {
  font-size: 20px;
}

.os-node p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px;
  line-height: 1.45;
}

.os-floating-card {
  position: absolute;
  z-index: 4;
  width: 170px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 15px;
  background: rgba(6, 8, 42, 0.74);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px) saturate(1.14);
  animation: osUtilityBreathe 7s ease-in-out infinite alternate;
  transform: translateZ(0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.os-floating-card:hover {
  border-color: rgba(92, 247, 187, 0.24);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.3), 0 0 24px rgba(92, 247, 187, 0.08), inset 0 1px rgba(255, 255, 255, 0.12);
  transform: translateZ(0) scale(1.01);
}

.os-floating-card::before {
  position: absolute;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(92, 247, 187, 0.32), transparent);
  opacity: 0.75;
  pointer-events: none;
}

.os-floating-card small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.os-floating-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 22px;
  letter-spacing: -0.05em;
}

.os-floating-card p,
.os-floating-card div {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.45;
}

.os-floating-card div {
  display: flex;
  justify-content: space-between;
}

.os-floating-card b {
  color: var(--white);
}

.qualification-widget {
  top: 2.8%;
  left: 58.5%;
  width: 164px;
  background:
    radial-gradient(circle at 12% 0%, rgba(92, 247, 187, 0.13), transparent 44%),
    rgba(6, 8, 42, 0.78);
}

.qualification-widget::before {
  top: 100%;
  left: 50%;
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, rgba(92, 247, 187, 0.36), transparent);
}

.queue-widget {
  bottom: -3%;
  left: 27.3%;
  width: 168px;
  animation-delay: 0.8s;
}

.queue-widget::before {
  right: 50%;
  bottom: 100%;
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, transparent, rgba(92, 247, 187, 0.3));
}

.revenue-widget {
  right: 4%;
  bottom: -3%;
  width: 168px;
  opacity: 0.94;
  animation-delay: 1.6s;
}

.revenue-widget::before {
  right: 50%;
  bottom: 100%;
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, transparent, rgba(92, 247, 187, 0.3));
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  text-align: center;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 44px;
  padding: 4px;
  border-radius: 4px;
  background: var(--soft);
  overflow: hidden;
}

.process::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.06;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 34px 34px;
}

.process article {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 394px;
  padding: 32px;
  border-radius: 4px;
  background: var(--white);
  text-align: center;
}

.process article > span {
  justify-self: start;
  color: var(--ink);
}

.process img {
  align-self: center;
  width: 100%;
  opacity: 0.88;
}

.orb {
  justify-self: center;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  filter: blur(5px);
  background: linear-gradient(180deg, var(--sky), var(--deep-blue));
  animation: pulse 5s ease-in-out infinite;
}

.icon-marquee {
  display: flex;
  gap: 8px;
  justify-content: center;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.icon-marquee b {
  display: grid;
  place-items: center;
  width: 72px;
  height: 52px;
  border-radius: 99px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(2, 2, 13, 0.08);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 44px 0;
}

.stats div {
  display: grid;
  gap: 12px;
}

.stats strong {
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.stats span {
  color: var(--muted);
}

.product-shot {
  position: relative;
  padding: 44px 44px 0;
  overflow: hidden;
  border-radius: 4px;
  background: radial-gradient(247% 139% at 50% -39%, var(--ink) 27%, var(--deep-blue) 57%, var(--sky) 92%);
  mask-image: linear-gradient(#000 82%, transparent);
}

.product-shot::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 44px 44px;
}

.product-shot img {
  position: relative;
  border-radius: 4px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 44px 0;
  text-align: left;
}

.solution-grid article {
  position: relative;
  display: grid;
  min-height: 355px;
  padding: 28px;
  border-radius: 4px;
  background: var(--soft);
  overflow: hidden;
}

.solution-grid article::before,
.trust-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.06;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 40px 40px;
}

.solution-grid h3,
.solution-grid p,
.solution-grid span,
.solution-grid a {
  position: relative;
}

.solution-grid span {
  align-self: end;
  justify-self: start;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.solution-grid a {
  display: block;
  align-self: end;
  padding: 14px;
  border-radius: 4px;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.confidence {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.confidence > div:first-child {
  display: grid;
  gap: 24px;
}

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

.trust-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 28px;
  border-radius: 4px;
  background: var(--soft);
  overflow: hidden;
}

.trust-grid strong,
.trust-grid span {
  position: relative;
}

.trust-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.testimonial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 0;
  align-items: stretch;
}

.testimonial-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 44px;
  background: var(--soft);
}

.quote {
  display: grid;
  gap: 28px;
}

.stars {
  color: var(--ink);
  font-weight: 800;
}

.stars span {
  color: var(--muted);
  font-weight: 400;
}

blockquote {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.portrait-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(2, 2, 13, 0.96));
}

.portrait-card div {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: var(--white);
}

.portrait-card span {
  color: #c0c2c6;
}

.faq {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: start;
  width: min(100% - 12px, var(--hero-rail));
  overflow: hidden;
  margin-top: 0;
  padding-top: 104px;
  padding-bottom: 104px;
  border-radius: 0;
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
  isolation: isolate;
}

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

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

.faq-copy .eyebrow {
  color: var(--blue);
}

.faq-copy h2 {
  color: var(--ink);
}

.faq-copy > p {
  margin-top: 22px;
  color: rgba(2, 2, 13, 0.62);
}

.faq-copy > span,
.faq-copy > .faq-cta {
  display: inline-flex;
  margin-top: 30px;
  padding: 12px 16px;
  border: 1px solid rgba(2, 2, 13, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(2, 2, 13, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

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

.faq-list details {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(2, 2, 13, 0.09);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(0, 103, 244, 0.16);
  background: #ffffff;
  box-shadow: none;
}

.faq-list summary {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

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

.faq-list summary::after {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0, 103, 244, 0.14);
  border-radius: 999px;
  content: "+";
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  background: rgba(0, 103, 244, 0.055);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  border-color: rgba(0, 103, 244, 0.24);
  background: rgba(0, 103, 244, 0.09);
}

.faq-list details p {
  position: relative;
  margin: -4px 24px 24px;
  max-width: 690px;
  color: rgba(2, 2, 13, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.footer {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(100% 92% at 50% 4%, rgba(0, 103, 244, 0.18), transparent 58%),
    radial-gradient(82% 86% at 18% 32%, rgba(31, 38, 170, 0.16), transparent 66%),
    radial-gradient(70% 70% at 86% 42%, rgba(92, 247, 187, 0.07), transparent 68%),
    linear-gradient(180deg, #050612 0%, #07091f 48%, #02020d 100%),
    #02020d;
  color: var(--white);
  isolation: isolate;
}

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

.footer-cta {
  position: relative;
  display: grid;
  place-items: center;
  gap: 24px;
  min-height: 370px;
  padding: 82px 14px 74px;
  overflow: hidden;
  width: min(100% - 28px, var(--hero-rail));
  margin: 0 auto;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  text-align: center;
}

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

.footer-cta .pattern {
  display: none;
}

.footer-cta h2 {
  max-width: 880px;
  text-wrap: balance;
}

.footer-cta > p:not(.eyebrow) {
  max-width: 720px;
  margin: -4px auto 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.footer-cta .button {
  min-width: 176px;
  justify-content: space-between;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.footer-cta .light-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.96);
  color: #02020d;
}

.footer-cta .ghost {
  border-color: rgba(92, 247, 187, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-cta .button:hover {
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24), 0 0 34px rgba(92, 247, 187, 0.12);
}

.footer-cta .ghost:hover {
  border-color: rgba(92, 247, 187, 0.42);
  background: rgba(92, 247, 187, 0.11);
}

.footer-cta .footer-guarantee {
  max-width: 760px;
  margin: -6px auto 0;
  padding: 11px 16px;
  border: 1px solid rgba(92, 247, 187, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13.5px;
  line-height: 1.45;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(34px, 4vw, 72px);
  width: min(100% - 28px, var(--hero-rail));
  margin: 0 auto;
  padding: 44px 14px 46px;
}

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

.footer-brand-block {
  max-width: 440px;
  gap: 22px;
}

.footer-brand-block .brand-logo {
  height: 36px;
  width: auto;
  filter: none;
}

.footer-main h4 {
  margin: 3px 0 10px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.01em;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-main a:hover {
  color: #5cf7bb;
  transform: translateX(2px);
}

.footer-main p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.65;
}

.footer-trust {
  max-width: 420px;
  margin: 8px 0 0;
  padding: 13px 16px;
  border: 1px solid rgba(92, 247, 187, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 28px, var(--hero-rail));
  margin: 0 auto;
  padding: 22px 14px 42px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

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

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 80% at 50% 18%, rgba(31, 38, 170, 0.34), transparent 60%),
    rgba(2, 2, 13, 0.78);
  backdrop-filter: blur(12px);
}

.lead-modal__panel {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 40px);
  padding: clamp(28px, 4vw, 42px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(84% 70% at 78% 0%, rgba(92, 247, 187, 0.12), transparent 56%),
    radial-gradient(88% 86% at 12% 22%, rgba(31, 38, 170, 0.24), transparent 62%),
    linear-gradient(180deg, rgba(16, 19, 64, 0.98), rgba(2, 2, 13, 0.98));
  box-shadow: 0 34px 110px rgba(2, 2, 13, 0.42), inset 0 1px rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateY(12px) scale(0.98);
  transition: transform 220ms ease;
}

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

.lead-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lead-modal__panel h2 {
  max-width: 460px;
  margin-bottom: 16px;
}

.lead-modal__panel > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.lead-form,
.lead-form label {
  display: grid;
  gap: 10px;
}

.lead-form {
  gap: 16px;
}

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

.lead-form__fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.lead-form__fieldset legend {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.lead-form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.lead-form__radio:hover {
  border-color: rgba(92, 247, 187, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.lead-form__radio:focus-within {
  border-color: rgba(92, 247, 187, 0.52);
  box-shadow: 0 0 0 4px rgba(92, 247, 187, 0.1);
}

.lead-form__radio:has(input:checked) {
  border-color: rgba(92, 247, 187, 0.58);
  background: rgba(92, 247, 187, 0.12);
  box-shadow: 0 16px 42px rgba(92, 247, 187, 0.1);
}

.lead-form__radio input {
  width: 16px;
  height: 16px;
  accent-color: #5cf7bb;
  cursor: pointer;
}

.lead-form__radio span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}

.lead-form span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lead-form input:not([type="radio"]),
.lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  font: inherit;
  padding: 0 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form select {
  color-scheme: dark;
}

.lead-form input:not([type="radio"]):focus,
.lead-form select:focus {
  border-color: rgba(92, 247, 187, 0.52);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(92, 247, 187, 0.1);
}

.lead-form__submit {
  width: 100%;
  margin-top: 8px;
  justify-content: space-between;
}

.lead-form__submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.lead-form__status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.lead-form__status[data-state="success"] {
  color: #5cf7bb;
}

.lead-form__status[data-state="error"] {
  color: #ffb4a8;
}

@keyframes footerLightSweep {
  from {
    opacity: 0.38;
    transform: translate3d(0, 0, 0) rotate(-12deg);
  }
  to {
    opacity: 0.68;
    transform: translate3d(140%, 18%, 0) rotate(-8deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes drift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes visualDrift {
  from {
    transform: translate3d(-2%, 2%, 0) scale(0.98);
  }
  to {
    transform: translate3d(3%, -3%, 0) scale(1.04);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 0 0 rgba(92, 247, 187, 0);
    transform: translateY(0);
  }
  50% {
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 0 24px rgba(92, 247, 187, 0.2), 0 0 34px rgba(118, 185, 252, 0.12);
    transform: translateY(-2px);
  }
}

@keyframes flowPulse {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 0.74;
  }
  100% {
    transform: translateX(420%);
    opacity: 0;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes diagnosticReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes leakagePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(174, 91, 65, 0);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 24px rgba(174, 91, 65, 0.12);
    transform: translateY(-1px);
  }
}

@keyframes dashboardBreathe {
  0%,
  100% {
    box-shadow: 0 36px 96px rgba(2, 2, 13, 0.15), inset 0 1px rgba(255, 255, 255, 0.92);
  }
  50% {
    box-shadow: 0 40px 110px rgba(2, 2, 13, 0.17), 0 0 48px rgba(118, 185, 252, 0.09), inset 0 1px rgba(255, 255, 255, 0.96);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(92, 247, 187, 0.54);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 24px rgba(92, 247, 187, 0.76);
    transform: scale(1.14);
  }
}

@keyframes stageShimmer {
  0%,
  56% {
    opacity: 0;
    transform: translateX(-120%);
  }
  70% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes osPulse {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  18%,
  72% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translateX(520%);
  }
}

@keyframes osPulseVertical {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  18%,
  72% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translateY(520%);
  }
}

@keyframes osNetworkPulse {
  0% {
    opacity: 0;
    stroke-dashoffset: 374;
  }
  16%,
  72% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes osNodeSignal {
  0%,
  12%,
  100% {
    opacity: 0;
  }
  20%,
  28% {
    opacity: 0.72;
  }
}

@keyframes osAtmosphere {
  from {
    opacity: 0.54;
    transform: translate3d(-1.5%, 1%, 0) scale(0.98);
  }
  to {
    opacity: 0.78;
    transform: translate3d(1.5%, -1%, 0) scale(1.03);
  }
}

@keyframes osUtilityBreathe {
  from {
    opacity: 0.9;
    box-shadow: 0 22px 68px rgba(0, 0, 0, 0.26), inset 0 1px rgba(255, 255, 255, 0.08);
  }
  to {
    opacity: 1;
    box-shadow: 0 24px 74px rgba(0, 0, 0, 0.28), 0 0 18px rgba(92, 247, 187, 0.055), inset 0 1px rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 1199px) {
  .site-header {
    top: 50px;
    width: calc(100vw - 24px);
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .hero-content,
  .revenue-leak,
  .guarantee-card,
  .split,
  .section-head,
  .confidence,
  .testimonial,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: start;
    gap: 44px;
  }

  h1 span {
    white-space: normal;
  }

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

  .hero-copy p,
  .proof-metrics {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 620px;
    width: min(100%, 820px);
    transform: none;
  }

  .revenue-leak {
    gap: 40px;
  }

  .revenue-copy .lead {
    max-width: 760px;
  }

  .section-head {
    display: grid;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .operating-system {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .os-section-head {
    display: grid;
    gap: 28px;
    margin-bottom: 44px;
  }

  .os-visual {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px;
  }

  .os-network {
    display: none;
  }

  .os-flow-line {
    top: 34px;
    bottom: 34px;
    left: 45px;
    right: auto;
    width: 2px;
    height: auto;
    transform: none;
  }

  .os-flow-line span {
    inset: 0 0 auto;
    width: 100%;
    height: 22%;
    animation-name: osPulseVertical;
  }

  .os-flow-line::before,
  .os-flow-line::after,
  .os-node::before,
  .os-path {
    display: none;
  }

  .os-node,
  .funnel-node,
  .crm-node,
  .booking-node,
  .ai-node,
  .setter-node,
  .revenue-node,
  .os-node:hover,
  .os-node:hover.funnel-node,
  .os-node:hover.crm-node,
  .os-node:hover.booking-node,
  .os-node:hover.ai-node,
  .os-node:hover.setter-node,
  .os-node:hover.revenue-node {
    transform: none;
  }

  .os-node {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    inset: auto;
    width: auto;
    min-height: auto;
    padding-left: 58px;
  }

  .os-floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    animation: none;
  }

  .process,
  .solution-grid,
  .stats,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-copy {
    order: 2;
  }

  .portrait-card {
    min-height: 420px;
  }
}

@media (max-width: 809px) {
  .announcement {
    min-height: 34px;
  }

  .hero {
    width: calc(100% - 12px);
    margin-top: 46px;
    padding: 138px 14px 54px;
  }

  .hero-spacer {
    height: 18px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .action-row,
  .button {
    width: 100%;
  }

  .button {
    justify-content: space-between;
  }

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

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

  .leak-dashboard {
    padding: 12px;
  }

  .pipeline-stage {
    grid-template-columns: 60px 1fr;
  }

  .pipeline-stage b {
    grid-column: 2;
  }

  .conversion-bridge {
    border-radius: 18px;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard-frame {
    min-height: auto;
  }

  .os-grid,
  .ad-grid,
  .flow-line {
    grid-template-columns: 1fr;
  }

  .os-grid {
    grid-template-areas: none;
  }

  .funnel-card,
  .ai-card,
  .ad-card,
  .workflow-card {
    grid-column: auto;
    grid-row: auto;
    grid-area: auto;
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin-top: 10px;
    animation: none;
  }

  .score-ring {
    width: 128px;
    height: 128px;
  }

  .section {
    padding: 60px 14px;
  }

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

  .center-logo {
    width: 70px;
    height: 70px;
  }

  .revenue-leak::before {
    top: 12px;
    bottom: 12px;
  }

  .process article {
    padding: 20px;
  }

  .operating-system {
    width: calc(100% - 12px);
    padding-inline: 14px;
  }

  .performance-guarantee {
    padding-inline: 14px;
    padding-top: 46px;
    padding-bottom: 66px;
  }

  .guarantee-card {
    padding: 24px;
    border-radius: 22px;
  }

  .guarantee-action {
    justify-items: stretch;
  }

  .os-visual {
    padding: 20px;
    border-radius: 20px;
  }

  .os-node {
    padding: 16px 16px 16px 50px;
  }

  .product-shot {
    padding: 16px 16px 0;
  }

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

  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .lead-form__radio-group {
    grid-template-columns: 1fr;
  }

  .lead-modal {
    padding: 12px;
  }

  .lead-modal__panel {
    border-radius: 22px;
  }

  .legal {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual::after,
  .visual-orbit,
  .flow-line::after,
  .flow-line span,
  .floating-card,
  .leak-dashboard,
  .leak-dashboard-header div span,
  .pipeline-stage,
  .pipeline-stage::after,
  .leak-indicator,
  .os-visual::after,
  .os-network-pulse,
  .os-node::after,
  .os-flow-line span,
  .os-path span,
  .os-floating-card,
  .footer-cta::after {
    animation: none;
  }
}
