:root {
  --ink: #f8fbff;
  --muted-dark: #a7b2c2;
  --dark: #06080d;
  --dark-2: #0b1119;
  --dark-3: #111a25;
  --canvas: #f4f8fb;
  --paper: #ffffff;
  --text: #152033;
  --muted: #617189;
  --line: #d6e2ee;
  --line-dark: rgba(255, 255, 255, 0.13);
  --accent: #10d7ee;
  --accent-2: #0b7ee6;
  --green: #19b66f;
  --amber: #f2a51b;
  --shadow: 0 28px 80px rgba(6, 13, 24, 0.28);
  --max: 1480px;
  --header: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: #07111c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

button,
input,
select {
  font: inherit;
}

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

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

section {
  scroll-margin-top: calc(var(--header) + 20px);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #06131f;
  background: var(--accent);
  border-radius: 6px;
  font-weight: 900;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(22px, 4vw, 54px);
  background: rgba(6, 8, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  grid-template-columns: 60px auto;
  align-items: center;
  gap: 14px;
  min-width: 248px;
}

.brand-mark {
  width: 60px;
  height: 50px;
  overflow: visible;
}

.mark-stroke {
  fill: none;
  stroke: #f5f8ff;
  stroke-width: 14;
}

.mark-axis,
.mark-node {
  fill: #f5f8ff;
}

.mark-pivot {
  fill: var(--accent);
  filter: drop-shadow(0 0 12px rgba(16, 215, 238, 0.9));
}

.brand strong {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 850;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
  color: rgba(248, 251, 255, 0.88);
  font-size: 14px;
  font-weight: 820;
}

.nav-links a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  border-bottom-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-brand-downloads {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
}

.mobile-brand-download {
  min-width: 38px;
  width: 38px;
  height: 38px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.mobile-brand-download b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mobile-brand-download svg {
  width: 18px;
  height: 18px;
}

.mobile-brand-apple {
  color: #05070b;
  background: #f8fbff;
}

.mobile-brand-windows {
  color: #ffffff;
  background: linear-gradient(135deg, #28dff4, #2b74ff);
}

.mobile-brand-download svg {
  fill: currentColor;
}

.header-actions > .primary-button {
  display: none;
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  color: var(--muted-dark);
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.language-switch button.is-active {
  color: #06131f;
  background: var(--accent);
}

.primary-button,
.ghost-button,
.plan-card button,
.platform-download,
.chat-input button,
.lead-form button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 920;
  white-space: nowrap;
  cursor: pointer;
}

.primary-button {
  color: #06131f;
  background: linear-gradient(180deg, #1de5f6, #0cc7df);
  box-shadow: 0 0 28px rgba(16, 215, 238, 0.28);
}

.ghost-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.large {
  min-height: 56px;
  padding-inline: 28px;
  font-size: 16px;
}

.download-dock {
  width: min(330px, 100%);
  display: grid;
  gap: 12px;
  padding: 0;
}

.dock-main,
.dock-platforms a {
  display: flex;
  align-items: center;
  border-radius: 8px;
  text-decoration: none;
}

.dock-main {
  min-height: 56px;
  justify-content: center;
  gap: 12px;
  color: #03111d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 44%),
    linear-gradient(180deg, #29e9f8 0%, #11cde6 100%);
  box-shadow: 0 14px 34px rgba(16, 215, 238, 0.22);
  font-size: 16px;
  font-weight: 950;
}

.dock-main svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.dock-main span {
  color: #03111d;
  line-height: 1;
}

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

.dock-platforms a {
  min-height: 54px;
  gap: 10px;
  padding: 9px 12px;
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 8, 13, 0.62);
}

.dock-platforms svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

.dock-platforms span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.dock-platforms b,
.dock-platforms small {
  line-height: 1;
}

.dock-platforms b {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.dock-platforms small {
  color: rgba(216, 226, 239, 0.72);
  font-size: 12px;
}

.hero-download-dock {
  margin-top: 22px;
}

.inline-download-dock {
  margin-top: 30px;
}

.final-download-dock {
  margin-top: 26px;
}

.signal-label,
.section-heading span,
.trust-copy span,
.download-copy > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section {
  min-height: calc(100vh - var(--header));
  display: grid;
  grid-template-columns: minmax(380px, 0.74fr) minmax(640px, 1.26fr);
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(48px, 6vw, 78px) clamp(22px, 4vw, 54px) 46px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -32px -30px -34px -34px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 8, 13, 0.96), rgba(5, 8, 13, 0.78) 68%, transparent);
  pointer-events: none;
}

.hero-copy h1 {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(54px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(216, 226, 239, 0.78);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  font-weight: 650;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.hero-proof-grid article {
  min-width: 0;
}

.line-icon {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.hero-proof-grid strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.hero-proof-grid small {
  display: block;
  margin-top: 5px;
  color: rgba(216, 226, 239, 0.6);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.platform-row span {
  padding: 10px 14px;
  color: rgba(248, 251, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 780;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: clamp(560px, 46vw, 720px);
  display: grid;
  align-items: center;
  isolation: isolate;
  --cursor-x: 0;
  --cursor-y: 0;
  --hero-progress: 0;
  --plan-x: 0px;
  --plan-y: 0px;
  --field-x: 0px;
  --field-y: 0px;
  --route-glow: 0.4;
}

.hero-motion-banner {
  position: absolute;
  inset: -46px -34px -36px -430px;
  z-index: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 215, 238, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(118deg, rgba(16, 215, 238, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(13, 29, 45, 0.88), rgba(4, 7, 12, 0.96));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  transform:
    perspective(1200px)
    rotateX(calc(var(--cursor-y) * -2deg))
    rotateY(calc(var(--cursor-x) * 2.2deg));
  transform-origin: center;
  transition: transform 0.16s ease-out;
}

.hero-motion-banner::before,
.hero-motion-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-motion-banner::before {
  background:
    linear-gradient(90deg, transparent, rgba(16, 215, 238, 0.16), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%, rgba(16, 215, 238, 0.06));
  mix-blend-mode: screen;
  animation: bannerLightSweep 8.5s ease-in-out infinite;
}

.hero-motion-banner::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.32;
  animation: gridDrift 18s linear infinite;
}

.motion-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(112deg, transparent 0 58px, rgba(16, 215, 238, 0.09) 59px 60px),
    linear-gradient(22deg, rgba(10, 126, 230, 0.16), transparent 42%);
  opacity: 0.76;
  transform: translate3d(calc(var(--cursor-x) * -10px), calc(var(--hero-progress) * -18px), 0);
  transition: transform 0.16s linear;
}

.signal-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0.98;
  mix-blend-mode: screen;
}

.motion-shot {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #07111c;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  will-change: transform, opacity;
}

.motion-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  filter: saturate(1.08) contrast(1.03);
}

.motion-shot-plan {
  left: 4%;
  top: 16%;
  width: 48%;
  height: 45%;
  opacity: 0.28;
  transform: translate3d(var(--plan-x), var(--plan-y), 0) rotate(-2deg);
  animation: motionFloatA 9s ease-in-out infinite;
}

.motion-shot-field {
  right: 4%;
  top: 8%;
  width: 68%;
  height: 58%;
  opacity: 0.48;
  transform: translate3d(var(--field-x), var(--field-y), 0);
  animation: motionFloatB 10s ease-in-out infinite;
}

.motion-scan {
  position: absolute;
  z-index: 4;
  top: 6%;
  bottom: 14%;
  width: 190px;
  background: linear-gradient(90deg, transparent, rgba(16, 215, 238, 0.34), transparent);
  filter: blur(0.2px);
  transform: skewX(-12deg);
  animation: scanPass 5.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  opacity: calc(0.28 + var(--hero-progress) * 0.5);
}

.motion-lane {
  position: absolute;
  z-index: 5;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 215, 238, 0.82), rgba(95, 240, 173, 0.56), transparent);
  opacity: 0.7;
}

.signal-routes {
  position: absolute;
  inset: 5% 2% 8%;
  z-index: 7;
  overflow: visible;
  opacity: 1;
  mix-blend-mode: screen;
  pointer-events: none;
}

.route {
  fill: none;
  stroke: rgba(16, 215, 238, 0.8);
  stroke-width: 2.4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 calc(8px + var(--route-glow) * 16px) rgba(16, 215, 238, 0.62));
  transition: stroke-dashoffset 0.16s linear, filter 0.2s linear;
}

.route-b {
  stroke: rgba(95, 240, 173, 0.68);
}

.route-c {
  stroke: rgba(10, 126, 230, 0.72);
}

.route-node {
  fill: #10d7ee;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 12px rgba(16, 215, 238, 0.72));
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
  animation: nodeBeacon 2.8s ease-in-out infinite;
}

.node-b,
.node-c {
  fill: #5ff0ad;
  animation-delay: -1.3s;
}

.lane-a {
  left: 9%;
  right: 12%;
  top: 72%;
  animation: laneFlow 4.8s ease-in-out infinite;
}

.lane-b {
  left: 22%;
  right: 4%;
  top: 82%;
  animation: laneFlow 6.2s ease-in-out infinite reverse;
}

.motion-telemetry {
  position: absolute;
  z-index: 6;
  right: 10%;
  bottom: 10%;
  display: flex;
  align-items: end;
  gap: 9px;
  height: 82px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(3, 8, 14, 0.62);
  backdrop-filter: blur(10px);
}

.motion-telemetry span {
  width: 10px;
  height: calc(17px + var(--i) * 3px);
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, #10d7ee, #0b7ee6);
  transform-origin: bottom;
  animation: telemetryPulse 1.9s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.13s);
}

.motion-caption {
  position: absolute;
  z-index: 6;
  left: 7%;
  bottom: 9%;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(6, 12, 20, 0.84), rgba(6, 12, 20, 0));
}

.motion-caption b {
  color: #fff;
  font-size: 13px;
}

.motion-caption span {
  color: rgba(216, 226, 239, 0.7);
  font-size: 12px;
  font-weight: 720;
}

.signal-progress {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 4.5%;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 12px;
  color: rgba(216, 226, 239, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-progress span {
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(95, 240, 173, 0.9), transparent);
  box-shadow: 0 0 18px rgba(16, 215, 238, 0.62);
  transform: scaleX(calc(0.24 + var(--hero-progress) * 0.76));
  transform-origin: left;
  transition: transform 0.16s linear;
}

.signal-progress b {
  color: rgba(248, 251, 255, 0.74);
  font-size: inherit;
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #0a0c12;
  box-shadow: var(--shadow);
}

.hero-frame {
  position: relative;
  z-index: 8;
  transform:
    translate3d(
      calc(var(--cursor-x) * -14px),
      calc(8px + var(--cursor-y) * -8px + var(--hero-progress) * -16px),
      0
    );
  transition: transform 0.16s ease-out;
}

.product-frame img {
  width: 100%;
  aspect-ratio: 16 / 10.6;
  object-fit: cover;
  object-position: top left;
}

.floating-panel {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  z-index: 9;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(62, 66, 75, 0.88);
  backdrop-filter: blur(14px);
  animation: panelGlow 5.2s ease-in-out infinite;
  transform: translate3d(calc(var(--cursor-x) * -8px), calc(var(--cursor-y) * -6px), 0);
  transition: transform 0.16s ease-out;
}

.floating-panel b {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-panel span {
  color: rgba(248, 251, 255, 0.78);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.moment-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(6, 8, 13, 0.46);
}

.moment-strip a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.moment-strip b {
  color: var(--accent);
  font-size: 30px;
}

.moment-strip span {
  color: rgba(248, 251, 255, 0.72);
  font-weight: 760;
}

.wide-story {
  display: none;
}

.product-section {
  padding: 90px clamp(22px, 4vw, 54px);
  background: #07111c;
  color: var(--ink);
}

.section-heading,
.demo-layout,
.explain-section,
.plans-section > *,
.trust-section,
.case-section,
.download-section,
.site-footer {
  max-width: var(--max);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2,
.trust-copy h2,
.download-copy h2 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p,
.trust-copy p,
.download-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.product-section .section-heading h2 {
  color: #fff;
}

.product-section .section-heading p {
  color: rgba(216, 226, 239, 0.72);
}

.section-heading.invert h2 {
  color: #fff;
}

.section-heading.invert p {
  color: rgba(216, 226, 239, 0.74);
}

.demo-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}

.demo-controls {
  display: grid;
  align-content: start;
  gap: 10px;
}

.demo-controls button {
  min-height: 54px;
  padding: 0 16px;
  color: rgba(248, 251, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  font-weight: 880;
  cursor: pointer;
}

.demo-controls button.is-active {
  color: #06131f;
  background: var(--accent);
}

.demo-screen {
  min-width: 0;
  display: grid;
}

.demo-screen .product-frame {
  display: none;
}

.demo-screen .product-frame.active {
  display: block;
}

.demo-screen .product-frame img {
  aspect-ratio: 16 / 10.6;
  object-fit: contain;
  object-position: center;
  background: #e8eff6;
}

.demo-copy {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 215, 238, 0.09), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.demo-copy h3 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 28px;
}

.demo-copy p {
  color: rgba(216, 226, 239, 0.76);
  line-height: 1.5;
  font-weight: 650;
}

.demo-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.demo-copy li {
  color: rgba(216, 226, 239, 0.76);
  line-height: 1.42;
}

.demo-copy li::before,
.plan-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.sales-pipeline {
  position: relative;
  padding: clamp(56px, 6vw, 96px) clamp(22px, 5vw, 88px);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 16%, rgba(16, 215, 238, 0.13), transparent 34%),
    radial-gradient(circle at 88% 42%, rgba(11, 126, 230, 0.12), transparent 32%),
    linear-gradient(180deg, #07111c 0%, #08121d 100%);
  overflow: hidden;
}

.sales-pipeline::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 215, 238, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 86%, transparent);
}

.sales-intro,
.sales-scenes {
  position: relative;
  z-index: 1;
}

.sales-intro {
  width: min(1240px, 100%);
  margin: 0 auto clamp(32px, 4.5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
}

.sales-intro > span,
.sales-intro h2,
.sales-intro p {
  grid-column: 1;
}

.sales-intro-side {
  grid-column: 2;
  grid-row: 2 / span 2;
  justify-self: end;
  width: min(330px, 100%);
  display: grid;
  gap: 18px;
}

.sales-intro > span,
.scene-copy span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sales-intro h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(38px, 4.3vw, 68px);
  line-height: 1.01;
  text-wrap: balance;
}

.sales-intro p {
  margin: 20px 0 0;
  max-width: 760px;
  color: rgba(216, 226, 239, 0.74);
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.55;
  font-weight: 650;
}

.sales-problem-stack {
  display: grid;
  gap: 10px;
}

.sales-problem-stack > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sales-problem-stack article {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 215, 238, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.045);
}

.sales-problem-stack b,
.sales-problem-stack small {
  display: block;
}

.sales-problem-stack b {
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.sales-problem-stack small {
  margin-top: 5px;
  color: rgba(216, 226, 239, 0.62);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 680;
}

.sales-scenes {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(22px, 3vw, 42px);
}

.sales-scene {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(6, 8, 13, 0.74);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.sales-scene:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  color: #111827;
  background:
    radial-gradient(circle at 72% 18%, rgba(16, 215, 238, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 240, 247, 0.94));
  border-color: rgba(11, 28, 44, 0.12);
  box-shadow: 0 34px 96px rgba(2, 8, 18, 0.34);
}

.sales-scene:nth-child(even) .scene-copy {
  order: 2;
}

.sales-scene:nth-child(even) .scene-copy h3 {
  color: #111827;
}

.sales-scene:nth-child(even) .scene-copy p {
  color: rgba(17, 24, 39, 0.68);
}

.sales-scene:nth-child(even) .scene-copy li {
  color: rgba(17, 24, 39, 0.74);
}

.sales-scene:nth-child(even) .chat-surface,
.sales-scene:nth-child(even) .geo-map,
.sales-scene:nth-child(even) .ai-board,
.sales-scene:nth-child(even) .plan-suggestion,
.sales-scene:nth-child(even) .performance-panel {
  border-color: rgba(16, 215, 238, 0.32);
  background:
    radial-gradient(circle at 28% 18%, rgba(16, 215, 238, 0.12), transparent 32%),
    rgba(248, 251, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 26px 70px rgba(15, 23, 42, 0.16);
}

.sales-scene:nth-child(even) .real-app-visual::after {
  background:
    radial-gradient(circle at 62% 42%, rgba(16, 215, 238, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(248, 251, 255, 0.78), rgba(248, 251, 255, 0.28) 48%, rgba(248, 251, 255, 0.72));
}

.sales-scene:nth-child(even) .screen-underlay {
  opacity: 0.48;
  filter: saturate(0.96) contrast(1.04);
}

.sales-scene:nth-child(even) .geo-ticket,
.sales-scene:nth-child(even) .proposal-card {
  color: #111827;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(17, 24, 39, 0.12);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.16);
}

.sales-scene:nth-child(even) .geo-ticket b {
  color: #111827;
}

.sales-scene:nth-child(even) .geo-ticket small {
  color: rgba(17, 24, 39, 0.62);
}

.sales-scene:nth-child(even) .proposal-card span {
  color: rgba(17, 24, 39, 0.78);
  background: rgba(17, 24, 39, 0.045);
}

.scene-copy h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 58px);
  line-height: 1.04;
  text-wrap: balance;
}

.scene-copy p {
  margin: 18px 0 0;
  color: rgba(216, 226, 239, 0.74);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 650;
}

.scene-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.scene-copy li {
  color: rgba(216, 226, 239, 0.78);
  font-size: 14px;
  font-weight: 760;
}

.scene-copy li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(16, 215, 238, 0.76);
}

.chat-surface,
.geo-map,
.ai-board,
.plan-suggestion,
.performance-panel {
  position: relative;
  min-height: 310px;
  border: 1px solid rgba(16, 215, 238, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 18%, rgba(16, 215, 238, 0.14), transparent 32%),
    rgba(5, 9, 15, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 26px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.real-app-visual {
  isolation: isolate;
}

.real-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.screen-underlay {
  opacity: 0.42;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.06);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 58%, rgba(0, 0, 0, 0.18));
}

.real-app-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 42%, rgba(16, 215, 238, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(5, 9, 15, 0.74), rgba(5, 9, 15, 0.32) 48%, rgba(5, 9, 15, 0.78));
}

.chat-surface {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 3vw, 44px);
}

.chat-surface::before,
.geo-map::before,
.ai-board::before,
.plan-suggestion::before,
.performance-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 215, 238, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.55;
}

.chat-line {
  position: relative;
  z-index: 2;
  max-width: 78%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: rgba(248, 251, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 750;
  animation: sceneRise 0.8s ease both;
}

.chat-console {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.chat-line.agent {
  justify-self: end;
  border-color: rgba(16, 215, 238, 0.24);
  background: rgba(16, 215, 238, 0.09);
}

.chat-line.strong {
  color: #06131f;
  background: var(--accent);
}

.chat-pulse {
  position: absolute;
  z-index: 2;
  right: 12%;
  bottom: 18%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(16, 215, 238, 0.36);
  border-radius: 50%;
  animation: signalPulse 2.2s ease-in-out infinite;
}

.geo-map {
  background:
    radial-gradient(circle at 42% 48%, rgba(95, 240, 173, 0.14), transparent 24%),
    linear-gradient(140deg, rgba(16, 215, 238, 0.08), rgba(6, 8, 13, 0.72)),
    #07111c;
}

.map-route {
  position: absolute;
  z-index: 2;
  left: 14%;
  right: 12%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), rgba(95, 240, 173, 0.9), transparent);
  transform: rotate(-12deg);
  box-shadow: 0 0 22px rgba(16, 215, 238, 0.6);
}

.pin {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(16, 215, 238, 0.88);
  animation: pinBeat 1.8s ease-in-out infinite;
}

.pin-a {
  left: 22%;
  top: 56%;
}

.pin-b {
  left: 52%;
  top: 38%;
  animation-delay: 0.4s;
}

.pin-c {
  right: 18%;
  top: 50%;
  animation-delay: 0.8s;
}

.geo-ticket {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 12%;
  max-width: 300px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(6, 8, 13, 0.78);
  backdrop-filter: blur(14px);
}

.geo-ticket b,
.geo-ticket small {
  display: block;
}

.geo-ticket b {
  color: #fff;
}

.geo-ticket small {
  margin-top: 7px;
  color: rgba(216, 226, 239, 0.7);
  line-height: 1.4;
}

.ai-board {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(22px, 3vw, 42px);
}

.ai-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ai-metrics div {
  position: relative;
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.ai-board b,
.ai-board span {
  position: relative;
}

.ai-board b {
  color: rgba(216, 226, 239, 0.72);
  font-size: 13px;
}

.ai-board span {
  color: #fff;
  font-size: clamp(32px, 3vw, 54px);
  font-weight: 950;
}

.ai-board .ai-verdict {
  position: relative;
  z-index: 2;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 8px;
  color: #06131f;
  background: linear-gradient(135deg, #4edbff, #12cfe8);
  font-size: 17px;
  font-weight: 920;
}

.plan-suggestion {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 52px);
}

.proposal-card {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(6, 8, 13, 0.78);
  backdrop-filter: blur(16px);
}

.proposal-card span {
  color: rgba(248, 251, 255, 0.9);
}

.proposal-card button {
  color: #06131f;
}

.plan-suggestion b,
.plan-suggestion span,
.plan-suggestion button {
  position: relative;
}

.plan-suggestion b {
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-suggestion span {
  padding: 16px 18px;
  color: rgba(248, 251, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 760;
}

.plan-suggestion button {
  width: max-content;
  min-height: 48px;
  padding: 0 20px;
  color: #06131f;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  font-weight: 950;
}

.performance-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 42px);
}

.score-stack {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  margin-left: auto;
  display: grid;
  gap: 14px;
}

.score-stack div {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr 64px;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.performance-panel b {
  color: #fff;
}

.performance-panel span {
  color: rgba(216, 226, 239, 0.7);
}

.performance-panel em {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #06131f;
  border-radius: 50%;
  background: var(--accent);
  font-style: normal;
  font-weight: 950;
}

@keyframes sceneRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

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

  50% {
    opacity: 0.88;
    transform: scale(1.14);
  }
}

@keyframes pinBeat {
  0%,
  100% {
    transform: scale(0.92);
  }

  50% {
    transform: scale(1.18);
  }
}

.byo-api-section {
  width: min(var(--max), calc(100% - clamp(32px, 4vw, 68px)));
  margin: clamp(42px, 5vw, 78px) auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(42px, 5vw, 72px);
  color: #111827;
  border: 1px solid rgba(11, 28, 44, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 16%, rgba(16, 215, 238, 0.18), transparent 30%),
    linear-gradient(145deg, #fbfdff 0%, #eaf1f8 100%);
  box-shadow: 0 34px 110px rgba(2, 8, 18, 0.22);
}

.byo-copy > span,
.byo-command span {
  color: #07c6df;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.byo-copy h2 {
  margin: 16px 0 0;
  color: #111827;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 1.02;
  text-wrap: balance;
}

.byo-copy p {
  margin: 22px 0 0;
  max-width: 760px;
  color: rgba(17, 24, 39, 0.7);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.58;
  font-weight: 680;
}

.byo-cost-note {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: rgba(16, 215, 238, 0.08);
}

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

.byo-flow article,
.byo-capabilities article {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
}

.byo-flow article {
  min-height: 132px;
  padding: 18px;
}

.byo-flow b {
  display: block;
  color: #07c6df;
  font-size: 13px;
  font-weight: 950;
}

.byo-flow strong {
  display: block;
  margin-top: 12px;
  color: #111827;
  font-size: 17px;
  font-weight: 950;
}

.byo-flow small {
  display: block;
  margin-top: 8px;
  color: rgba(17, 24, 39, 0.62);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 680;
}

.byo-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 215, 238, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 72% 20%, rgba(16, 215, 238, 0.16), transparent 32%),
    #07111c;
  background-size: 58px 58px, 58px 58px, auto, auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 30px 88px rgba(2, 8, 18, 0.24);
  overflow: hidden;
}

.byo-panel::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto 26%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 215, 238, 0.8), transparent);
  box-shadow: 0 54px 0 rgba(16, 215, 238, 0.22), 0 108px 0 rgba(16, 215, 238, 0.12);
  animation: signalSweep 7s ease-in-out infinite;
}

.byo-command,
.byo-capabilities {
  position: relative;
  z-index: 1;
}

.byo-command {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(16, 215, 238, 0.2);
  border-radius: 8px;
  background: rgba(5, 9, 15, 0.74);
}

.byo-command p {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.22;
  font-weight: 900;
  text-wrap: balance;
}

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

.byo-capabilities article {
  min-height: 142px;
  padding: 18px;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.byo-capabilities b {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.byo-capabilities p {
  margin: 10px 0 0;
  color: rgba(216, 226, 239, 0.7);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 680;
}

.app-pages-section {
  padding: clamp(70px, 8vw, 132px) clamp(20px, 5vw, 88px);
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 12%, rgba(16, 215, 238, 0.12), transparent 34%),
    linear-gradient(180deg, #07111c 0%, #09131f 100%);
}

.app-pages-heading {
  max-width: 880px;
  margin: 0 auto clamp(34px, 5vw, 70px);
}

.app-pages-heading span,
.app-page-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.app-pages-heading h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 1.02;
  text-wrap: balance;
}

.app-pages-heading p {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(216, 226, 239, 0.72);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
  font-weight: 650;
}

.app-pages-grid {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.app-page-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #07111c;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.24);
  animation: wideModuleRise 0.8s ease both;
}

.app-page-card:nth-child(2) {
  animation-delay: 0.06s;
}

.app-page-card:nth-child(3) {
  animation-delay: 0.12s;
}

.app-page-card:nth-child(4) {
  animation-delay: 0.18s;
}

.app-page-card figure {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b1119;
}

.app-page-card img {
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  object-position: top left;
  transform: scale(1.01);
  transition: transform 0.5s ease;
}

.app-page-card:hover img {
  transform: scale(1.045);
}

.app-page-card div {
  padding: clamp(20px, 2vw, 30px);
}

.app-page-card h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
}

.app-page-card p {
  margin: 14px 0 0;
  color: rgba(216, 226, 239, 0.72);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.ops-walkthrough {
  position: relative;
  min-height: 112vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.36fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 92px);
  align-items: start;
  padding: clamp(58px, 6vw, 96px) clamp(24px, 5vw, 88px);
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 20%, rgba(16, 215, 238, 0.16), transparent 30%),
    linear-gradient(180deg, #07111c 0%, #07111c 72%, #09131f 100%);
  overflow: hidden;
}

.ops-walkthrough::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 215, 238, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 68% 36%, #000, transparent 62%);
  opacity: 0.55;
}

.ops-copy,
.ops-stage {
  position: relative;
  z-index: 1;
}

.ops-copy {
  position: sticky;
  top: calc(var(--header) + 58px);
}

.ops-copy > span,
.ops-state-list b {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ops-copy h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 76px);
  line-height: 1.01;
  text-wrap: balance;
}

.ops-copy p {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(216, 226, 239, 0.76);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
  font-weight: 650;
}

.ops-state-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.ops-state-list button {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  padding: 16px;
  color: rgba(248, 251, 255, 0.72);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.ops-state-list button:hover,
.ops-state-list button.is-active {
  color: #fff;
  border-color: rgba(16, 215, 238, 0.45);
  background:
    linear-gradient(90deg, rgba(16, 215, 238, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  transform: translateX(6px);
}

.ops-state-list span,
.ops-state-list small {
  grid-column: 2;
}

.ops-state-list span {
  font-size: 15px;
  font-weight: 900;
}

.ops-state-list small {
  color: rgba(216, 226, 239, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.ops-stage {
  position: sticky;
  top: calc(var(--header) + 42px);
  min-width: 0;
}

.ops-screen-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #05070b;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
}

.ops-screen-topbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: rgba(248, 251, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #070911;
}

.ops-screen-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.ops-screen-topbar span:nth-child(3) {
  background: var(--accent);
  box-shadow: 0 0 16px rgba(16, 215, 238, 0.8);
}

.ops-screen-topbar b {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 850;
}

.ops-screen-stack {
  position: relative;
  min-height: clamp(460px, 42vw, 660px);
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 28%, rgba(16, 215, 238, 0.18), transparent 26%),
    #07111c;
}

.ops-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  transform: scale(1.035) translate3d(0, 18px, 0);
  filter: saturate(0.96) contrast(1.02);
  transition: opacity 0.58s ease, transform 0.9s ease;
}

.ops-screen.is-active {
  opacity: 1;
  transform: scale(1.01) translate3d(0, 0, 0);
  animation: opsScreenDrift 12s ease-in-out infinite;
}

.ops-screen[data-ops-screen="1"],
.ops-screen[data-ops-screen="3"] {
  object-position: top center;
}

.ops-signal-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.88;
  mix-blend-mode: screen;
}

.ops-signal-map path {
  fill: none;
  stroke: rgba(16, 215, 238, 0.72);
  stroke-width: 3;
  stroke-dasharray: 14 16;
  filter: drop-shadow(0 0 10px rgba(16, 215, 238, 0.7));
  animation: opsRoute 3.6s linear infinite;
}

.ops-signal-map path:nth-child(2) {
  stroke: rgba(95, 240, 173, 0.58);
  animation-duration: 4.4s;
}

.ops-signal-map circle {
  fill: var(--accent);
  filter: drop-shadow(0 0 14px rgba(16, 215, 238, 0.9));
  animation: opsPulse 1.8s ease-in-out infinite;
}

.ops-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 215, 238, 0.18) 48%, transparent 56%);
  transform: translateY(-100%);
  animation: opsScan 5.8s ease-in-out infinite;
}

.ops-hotspot {
  position: absolute;
  min-width: 150px;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(16, 215, 238, 0.28);
  border-radius: 8px;
  background: rgba(6, 8, 13, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  animation: opsHotspot 3.4s ease-in-out infinite;
}

.ops-hotspot b,
.ops-hotspot small {
  display: block;
}

.ops-hotspot b {
  font-size: 13px;
  font-weight: 950;
}

.ops-hotspot small {
  margin-top: 4px;
  color: rgba(216, 226, 239, 0.66);
  font-size: 11px;
}

.hotspot-a {
  left: 8%;
  top: 22%;
}

.hotspot-b {
  right: 8%;
  top: 34%;
  animation-delay: 0.45s;
}

.hotspot-c {
  right: 16%;
  bottom: 12%;
  animation-delay: 0.9s;
}

.ops-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.ops-caption b {
  color: #fff;
  font-size: 22px;
}

.ops-caption span {
  max-width: 620px;
  color: rgba(216, 226, 239, 0.72);
  font-size: 14px;
  line-height: 1.45;
  text-align: right;
}

@keyframes opsRoute {
  to {
    stroke-dashoffset: -120;
  }
}

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

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

@keyframes opsScan {
  0%,
  18% {
    transform: translateY(-100%);
  }

  55%,
  100% {
    transform: translateY(100%);
  }
}

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

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

@keyframes opsScreenDrift {
  0%,
  100% {
    object-position: top left;
  }

  50% {
    object-position: 54% 22%;
  }
}

.explain-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 86px clamp(22px, 4vw, 54px) 18px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(16, 215, 238, 0.1), transparent 30%),
    linear-gradient(180deg, #eef3f8 0%, #f8fbff 100%);
}

.explain-section article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(84, 109, 132, 0.12);
}

.explain-section span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.explain-section h3 {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 20px;
}

.explain-section p {
  margin: 12px 0 0;
  color: #43556d;
  line-height: 1.5;
}

.plans-section {
  padding: 34px clamp(22px, 4vw, 54px) 92px;
  color: var(--text);
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
}

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

.plan-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(84, 109, 132, 0.11);
}

.plan-card.featured {
  border-color: rgba(10, 125, 227, 0.5);
  box-shadow: 0 24px 58px rgba(10, 125, 227, 0.16);
}

.plan-card.executive {
  background:
    linear-gradient(145deg, rgba(16, 215, 238, 0.08), transparent 46%),
    #fff;
}

.plan-card > span {
  width: fit-content;
  padding: 6px 12px;
  color: #fff;
  background: #111827;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-card.featured > span {
  color: #06131f;
  background: var(--accent);
}

.plan-card h3 {
  margin: 22px 0 5px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.12;
}

.plan-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
}

.plan-card strong {
  display: block;
  margin-top: 24px;
  color: #111827;
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1.1;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: #43556d;
  line-height: 1.35;
  font-size: 14px;
  font-weight: 650;
}

.plan-card button {
  width: 100%;
  margin-top: auto;
  color: #fff;
  background: #07101d;
}

.plan-card.featured button {
  color: #06131f;
  background: var(--accent);
}

.pricing-disclaimer {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 22px 0 0;
  padding: 18px 22px;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(84, 109, 132, 0.08);
}

.pricing-disclaimer b {
  color: #111827;
  font-size: 15px;
  font-weight: 950;
}

.pricing-disclaimer p {
  margin: 0;
  color: rgba(17, 24, 39, 0.64);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 680;
}

.implementation-section {
  width: min(var(--max), calc(100% - clamp(32px, 4vw, 68px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(52px, 6vw, 86px) clamp(22px, 4vw, 54px);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(16, 215, 238, 0.15), transparent 32%),
    linear-gradient(180deg, #07111c 0%, #08121d 100%);
}

.implementation-copy span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.implementation-copy h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.04;
  text-wrap: balance;
}

.implementation-copy p {
  margin: 22px 0 0;
  color: rgba(216, 226, 239, 0.74);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.58;
  font-weight: 680;
}

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

.implementation-panel article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
}

.implementation-panel b {
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.implementation-panel p {
  margin: 12px 0 0;
  color: rgba(216, 226, 239, 0.68);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 680;
}

.implementation-cost {
  border-color: rgba(16, 215, 238, 0.28);
  background:
    linear-gradient(135deg, rgba(16, 215, 238, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.implementation-panel button {
  grid-column: 1 / -1;
  min-height: 58px;
  color: #06131f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 46%),
    linear-gradient(180deg, #29e9f8, #11cde6);
  box-shadow: 0 16px 44px rgba(16, 215, 238, 0.22);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(420px, 1.22fr);
  gap: 42px;
  width: min(var(--max), calc(100% - clamp(32px, 4vw, 68px)));
  margin: 0 auto;
  padding: 76px clamp(22px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(16, 215, 238, 0.09), transparent 34%),
    #07111c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px 8px 0 0;
}

.trust-copy h2,
.download-copy h2 {
  color: #fff;
}

.trust-copy p,
.download-copy p {
  color: rgba(216, 226, 239, 0.75);
}

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

.trust-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-grid b {
  display: block;
  color: #fff;
  font-size: 17px;
}

.trust-grid p {
  margin: 12px 0 0;
  color: rgba(216, 226, 239, 0.72);
  line-height: 1.45;
}

.case-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.65fr) minmax(420px, 1fr);
  gap: 42px;
  width: min(var(--max), calc(100% - clamp(32px, 4vw, 68px)));
  margin: 0 auto;
  padding: 62px clamp(22px, 4vw, 54px);
  color: var(--ink);
  border-inline: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 82% 28%, rgba(16, 215, 238, 0.12), transparent 28%),
    #07111c;
}

.case-copy span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-copy h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.05;
}

.case-copy p {
  margin: 18px 0 0;
  color: rgba(216, 226, 239, 0.72);
  font-weight: 650;
  line-height: 1.55;
}

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

.case-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.case-list img,
.case-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  object-fit: contain;
}

.case-icon {
  color: #06131f;
  background: var(--accent);
  font-weight: 950;
}

.case-list b {
  color: #fff;
  font-size: 18px;
}

.case-list p {
  margin: 6px 0 0;
  color: rgba(216, 226, 239, 0.7);
  line-height: 1.45;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(340px, 0.75fr);
  gap: 38px;
  width: min(var(--max), calc(100% - clamp(32px, 4vw, 68px)));
  margin: 0 auto 34px;
  padding: 76px clamp(22px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(135deg, rgba(16, 215, 238, 0.08), transparent 36%),
    #0b1119;
}

.download-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 30px;
}

.download-section .download-actions {
  display: none;
}

.download-proof {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
}

.download-proof span {
  padding: 14px 16px;
  color: rgba(248, 251, 255, 0.84);
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 720;
  line-height: 1.45;
}

.download-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(216, 226, 239, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.platform-download {
  min-height: 78px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  justify-content: start;
  gap: 14px;
  padding: 12px 16px;
  text-align: left;
  border-color: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

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

.apple-download {
  color: #f8fbff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    #080c12;
}

.windows-download {
  color: #06131f;
  border-color: rgba(81, 193, 255, 0.48);
  background: linear-gradient(135deg, #4edbff 0%, #12cfe8 44%, #0a84ff 100%);
  box-shadow: 0 20px 54px rgba(10, 132, 255, 0.32);
}

.os-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex: 0 0 auto;
}

.os-mark svg {
  width: 29px;
  height: 29px;
}

.apple-mark {
  background: linear-gradient(180deg, #ffffff, #d8dee8);
  box-shadow: inset 0 0 0 1px rgba(4, 8, 14, 0.08);
}

.apple-mark svg {
  fill: #05070b;
}

.windows-mark {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(6, 19, 31, 0.1);
}

.windows-mark svg {
  fill: #0078d4;
}

.download-label {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.download-label b,
.download-label small {
  display: block;
  overflow-wrap: anywhere;
}

.download-label b {
  font-size: 16px;
  line-height: 1.08;
}

.download-label small {
  color: currentColor;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.2;
  opacity: 0.72;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.lead-form h3 {
  margin: 0 0 6px;
  color: #fff;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: rgba(216, 226, 239, 0.76);
  font-size: 12px;
  font-weight: 850;
}

.lead-form input,
.lead-form select {
  min-height: 44px;
  padding: 0 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
}

.checkbox-line {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
  line-height: 1.4;
}

.lead-form .primary-button {
  width: 100%;
}

.lead-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: rgba(216, 226, 239, 0.72);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 760;
}

.form-status[data-state="success"] {
  color: #5ff0ad;
}

.form-status[data-state="error"] {
  color: #ffb85c;
}

.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 55;
  min-height: 48px;
  padding: 0 18px;
  color: #06131f;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 26px rgba(16, 215, 238, 0.3);
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.24s ease, opacity 0.24s ease, box-shadow 0.24s ease;
}

.chat-fab.is-footer-visible,
.chat-fab.is-hero-visible {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 70;
  width: min(430px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 112px));
  display: none;
  grid-template-rows: auto minmax(260px, 1fr) auto auto;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(16, 215, 238, 0.36);
  border-radius: 10px;
  background: #07111c;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.45);
}

.chat-panel.is-open {
  display: grid;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  margin-top: 3px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.chat-header button,
.dialog-header button {
  width: 34px;
  height: 34px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 18px;
  cursor: pointer;
}

.chat-body {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 16px;
}

.message {
  max-width: 86%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 251, 255, 0.9);
  line-height: 1.42;
  font-size: 14px;
}

.message.user {
  justify-self: end;
  color: #06131f;
  background: var(--accent);
}

.lead-summary {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(16, 215, 238, 0.34);
  border-radius: 8px;
  background: rgba(16, 215, 238, 0.08);
  font-size: 13px;
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
  min-height: 44px;
  padding: 0 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.chat-input button {
  color: #06131f;
  background: var(--accent);
}

.chat-legal {
  margin: 0;
  padding: 0 14px 14px;
  color: rgba(216, 226, 239, 0.6);
  font-size: 11px;
  line-height: 1.4;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px clamp(22px, 4vw, 54px);
  color: rgba(248, 251, 255, 0.76);
  background: #05080d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer span {
  display: block;
  margin-top: 6px;
  color: rgba(216, 226, 239, 0.56);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.legal-links button {
  color: rgba(248, 251, 255, 0.76);
  border: 0;
  background: transparent;
  font-weight: 820;
  cursor: pointer;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes bannerLightSweep {
  0%,
  100% {
    transform: translateX(-44%);
    opacity: 0.38;
  }

  48% {
    transform: translateX(46%);
    opacity: 0.92;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 152px 76px, 76px 152px;
  }
}

@keyframes motionFloatA {
  0%,
  100% {
    transform: translate3d(var(--plan-x), var(--plan-y), 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(calc(var(--plan-x) + 14px), calc(var(--plan-y) - 10px), 0) rotate(-1deg);
  }
}

@keyframes motionFloatB {
  0%,
  100% {
    transform: translate3d(var(--field-x), var(--field-y), 0);
  }

  50% {
    transform: translate3d(calc(var(--field-x) - 18px), calc(var(--field-y) + 14px), 0);
  }
}

@keyframes scanPass {
  from {
    left: -28%;
    opacity: 0;
  }

  16% {
    opacity: 0.78;
  }

  82% {
    opacity: 0.78;
  }

  to {
    left: 112%;
    opacity: 0;
  }
}

@keyframes laneFlow {
  0%,
  100% {
    transform: scaleX(0.36);
    transform-origin: left;
    opacity: 0.36;
  }

  48% {
    transform: scaleX(1);
    opacity: 0.86;
  }
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -104;
  }
}

@keyframes nodeBeacon {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.88);
  }

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

@keyframes telemetryPulse {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.45;
  }

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

@keyframes heroFrameFloat {
  0%,
  100% {
    transform: translateY(8px);
  }

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

@keyframes panelGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.16);
  }

  50% {
    border-color: rgba(16, 215, 238, 0.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

.legal-dialog {
  width: min(920px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.4);
}

.legal-dialog::backdrop {
  background: rgba(5, 8, 13, 0.72);
  backdrop-filter: blur(10px);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: #fff;
  background: #07111c;
}

.dialog-header span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.dialog-header h2 {
  margin: 8px 0 0;
}

.legal-content {
  padding: 24px;
  overflow: auto;
}

.legal-content h3 {
  margin: 22px 0 8px;
}

.legal-content p {
  color: #42536a;
  line-height: 1.6;
}

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

  .nav-links {
    display: none;
  }

  .hero-section,
  .section-heading,
	  .demo-layout,
	  .byo-api-section,
	  .implementation-section,
	  .trust-section,
	  .case-section,
	  .download-section {
	    grid-template-columns: 1fr;
	  }

  .demo-controls {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 1800px) {
  .site-header {
    padding-inline: clamp(32px, 3vw, 72px);
  }

  .hero-section {
    max-width: min(94vw, 2240px);
    grid-template-columns: minmax(560px, 0.68fr) minmax(1040px, 1.32fr);
    gap: clamp(42px, 4vw, 104px);
    padding-top: clamp(54px, 5vw, 90px);
  }

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

  .hero-copy h1 {
    font-size: clamp(72px, 4.7vw, 112px);
  }

  .hero-media {
    min-height: min(760px, calc(100vh - 170px));
  }

  .hero-motion-banner {
    inset: -42px -46px -42px -520px;
  }

  .wide-story {
    --wide-progress: 0;
    display: block;
    height: 230vh;
    margin-top: -18px;
    color: var(--ink);
    background:
      linear-gradient(180deg, rgba(7, 17, 28, 0), #07111c 10%, #07111c 86%, rgba(7, 17, 28, 0)),
      radial-gradient(circle at 25% 38%, rgba(16, 215, 238, 0.12), transparent 34%);
  }

  .wide-story-sticky {
    position: sticky;
    top: var(--header);
    min-height: calc(100vh - var(--header));
    display: grid;
    grid-template-columns: minmax(420px, 0.36fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(36px, 4vw, 72px);
    overflow: hidden;
    padding: clamp(42px, 5vw, 82px) clamp(44px, 5vw, 96px);
  }

  .wide-story-intro {
    max-width: 520px;
  }

  .wide-story-intro span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .wide-story-intro h2 {
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(44px, 3.1vw, 74px);
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .wide-story-intro p {
    margin: 22px 0 0;
    color: rgba(216, 226, 239, 0.72);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 650;
  }

  .wide-story-viewport {
    min-width: 0;
    overflow: hidden;
    padding-block: 54px;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 94%, transparent);
  }

  .wide-story-track {
    display: flex;
    gap: 22px;
    width: max-content;
    will-change: transform;
    transition: transform 0.08s linear;
  }

  .wide-card {
    width: clamp(360px, 20vw, 460px);
    min-height: 360px;
    display: grid;
    align-content: end;
    gap: 18px;
    padding: 28px;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
      rgba(6, 8, 13, 0.64);
    box-shadow: 0 30px 86px rgba(0, 0, 0, 0.24);
    text-decoration: none;
  }

  .wide-card:nth-child(2),
  .wide-card:nth-child(4) {
    transform: translateY(38px);
  }

  .wide-card span {
    color: var(--accent);
    font-size: 54px;
    line-height: 0.9;
    font-weight: 950;
  }

  .wide-card b {
    color: #fff;
    font-size: 26px;
    line-height: 1.1;
  }

  .wide-card small {
    max-width: 330px;
    color: rgba(216, 226, 239, 0.68);
    font-size: 15px;
    line-height: 1.48;
    font-weight: 680;
  }

  .wide-card-featured {
    border-color: rgba(16, 215, 238, 0.34);
    background:
      linear-gradient(160deg, rgba(16, 215, 238, 0.16), rgba(255, 255, 255, 0.03) 48%),
      rgba(6, 8, 13, 0.72);
  }

  .wide-card-action {
    background:
      linear-gradient(160deg, rgba(16, 215, 238, 0.26), rgba(11, 126, 230, 0.1)),
      rgba(6, 8, 13, 0.72);
  }

  .wide-story-progress {
    position: absolute;
    left: clamp(44px, 5vw, 96px);
    right: clamp(44px, 5vw, 96px);
    bottom: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
  }

  .wide-story-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), rgba(95, 240, 173, 0.9), transparent);
    box-shadow: 0 0 22px rgba(16, 215, 238, 0.52);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.08s linear;
  }
}

.wide-board {
  display: none;
}

.fixed-download-dock {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 58;
  display: inline-grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 7px;
  padding: 7px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 8, 13, 0.72);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.fixed-download-dock span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 8px 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fixed-brand-download {
  min-width: 46px;
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 7px;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fixed-brand-download svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.fixed-brand-download b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.fixed-brand-download:hover {
  transform: translateY(-2px);
}

.fixed-brand-apple {
  color: #06131f;
  background: linear-gradient(180deg, #f9fbff, #dfe8f4);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.fixed-brand-windows {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, #62a2ff, #3678f2);
  box-shadow: 0 0 18px rgba(54, 120, 242, 0.2);
}

@media (min-width: 1800px) {
  .wide-story {
    display: none;
  }

  .wide-board {
    display: block;
    padding: 0 clamp(28px, 2vw, 52px) 74px;
    color: var(--ink);
    background:
      radial-gradient(circle at 18% 24%, rgba(16, 215, 238, 0.08), transparent 32%),
      linear-gradient(180deg, #07111c 0%, #07111c 58%, #edf2f7 58%, #edf2f7 100%);
  }

  .wide-board-grid {
    width: min(2360px, calc(100vw - 80px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(720px, 1.04fr) minmax(720px, 1.2fr);
    gap: 28px;
    align-items: start;
  }

  .wide-module {
    min-width: 0;
    border-radius: 8px;
    animation: wideModuleRise 0.8s ease both;
  }

  .wide-product {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: #07111c;
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.22);
  }

  .wide-pricing {
    padding: 48px 56px;
    color: var(--text);
    background: #f4f8fb;
    box-shadow: 0 28px 80px rgba(6, 13, 24, 0.16);
    animation-delay: 0.08s;
  }

  .wide-side-stack {
    display: grid;
    gap: 28px;
  }

  .wide-security,
  .wide-download {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #07111c;
  }

  .wide-download {
    animation-delay: 0.16s;
  }

  .wide-copy > span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .wide-copy h2 {
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(34px, 2.3vw, 58px);
    line-height: 1.03;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .wide-pricing .wide-copy h2 {
    color: var(--text);
  }

  .wide-copy p {
    margin: 18px 0 0;
    max-width: 680px;
    color: rgba(216, 226, 239, 0.72);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 650;
  }

  .wide-pricing .wide-copy p {
    color: var(--muted);
  }

  .wide-product-layout {
    display: grid;
    grid-template-columns: 0.34fr minmax(380px, 1fr) 0.38fr;
    gap: 18px;
    align-items: stretch;
    margin-top: 28px;
  }

  .wide-product-tabs {
    display: grid;
    align-content: start;
    gap: 10px;
  }

  .wide-product-tabs b {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: rgba(248, 251, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 12px;
  }

  .wide-product-tabs b:first-child {
    color: #06131f;
    background: var(--accent);
  }

  .wide-app-shot {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: #0a0c12;
    box-shadow: 0 22px 66px rgba(0, 0, 0, 0.24);
  }

  .wide-app-shot img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: top left;
    animation: wideShotFloat 8s ease-in-out infinite;
  }

  .wide-app-explain {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
  }

  .wide-app-explain span,
  .wide-app-explain h3 {
    display: block;
    color: #fff;
  }

  .wide-app-explain span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .wide-app-explain h3 {
    margin: 16px 0 10px;
    font-size: 22px;
  }

  .wide-app-explain p,
  .wide-app-explain li {
    color: rgba(216, 226, 239, 0.72);
    font-size: 13px;
    line-height: 1.45;
  }

  .wide-app-explain ul {
    margin: 18px 0 0;
    padding-left: 18px;
  }

  .wide-screen-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
  }

  .wide-screen-strip figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    animation: wideModuleRise 0.7s ease both;
  }

  .wide-screen-strip figure:nth-child(2) {
    animation-delay: 0.1s;
  }

  .wide-screen-strip figure:nth-child(3) {
    animation-delay: 0.2s;
  }

  .wide-screen-strip img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top left;
  }

  .wide-screen-strip figcaption {
    padding: 12px 14px;
    color: rgba(216, 226, 239, 0.72);
    font-size: 12px;
    font-weight: 760;
  }

  .wide-plan-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    gap: 16px;
    margin-top: 34px;
  }

  .wide-plan-row article {
    min-height: 250px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(6, 13, 24, 0.08);
    animation: wideModuleRise 0.7s ease both;
  }

  .wide-plan-row article:nth-child(1) {
    border-color: rgba(16, 215, 238, 0.48);
  }

  .wide-plan-row span {
    width: max-content;
    padding: 5px 8px;
    color: #06131f;
    border-radius: 999px;
    background: var(--accent);
    font-size: 9px;
    font-weight: 950;
  }

  .wide-plan-row b {
    color: var(--text);
    font-size: 18px;
    line-height: 1.1;
  }

  .wide-plan-row small {
    color: var(--text);
    font-size: 17px;
    line-height: 1.18;
    font-weight: 950;
  }

  .wide-plan-row em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 760;
    line-height: 1.35;
  }

  .wide-trust-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
  }

  .wide-trust-mini b {
    min-height: 76px;
    display: flex;
    align-items: center;
    padding: 16px;
    color: rgba(248, 251, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    font-size: 13px;
  }

  .wide-download-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .wide-download-actions a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06131f;
    border-radius: 8px;
    background: linear-gradient(180deg, #1de5f6, #0cc7df);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
  }

  .wide-download-actions a + a {
    color: #fff;
    background: linear-gradient(180deg, #62a2ff, #3678f2);
  }

  .product-section,
  .explain-section,
  .plans-section,
  .trust-section,
  .download-section {
    display: none;
  }
}

@media (min-width: 2200px) {
  .wide-board-grid {
    grid-template-columns: minmax(720px, 1.05fr) minmax(900px, 1.35fr) minmax(560px, 0.9fr);
  }
}

@keyframes wideModuleRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes wideShotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -8px, 0) scale(1.012);
  }
}

@media (min-width: 1800px) {
  .wide-board {
    padding-bottom: 90px;
  }

  .wide-product {
    padding: 26px;
  }

  .wide-pricing {
    padding: 40px 48px;
  }

  .wide-security,
  .wide-download {
    padding: 28px;
  }

  .wide-copy h2 {
    font-size: clamp(32px, 2vw, 52px);
  }

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

  .wide-product-layout {
    margin-top: 22px;
  }

  .wide-app-shot img {
    min-height: 220px;
  }

  .wide-app-explain {
    padding: 18px;
  }

  .wide-app-explain h3 {
    margin: 12px 0 8px;
    font-size: 20px;
  }

  .wide-app-explain ul {
    margin-top: 14px;
  }

  .wide-screen-strip {
    margin-top: 16px;
  }

  .wide-screen-strip img {
    aspect-ratio: 16 / 8.2;
  }

  .wide-screen-strip figcaption {
    padding: 10px 12px;
  }

  .wide-plan-row article {
    min-height: 220px;
  }

  .wide-trust-mini {
    margin-top: 22px;
  }

  .wide-trust-mini b {
    min-height: 66px;
  }

  .wide-download-actions {
    margin-top: 22px;
  }

  .fixed-download-dock {
    max-width: none;
  }

  .fixed-brand-download {
    padding-inline: 0;
  }
}

@media (min-width: 2200px) {
  .wide-board-grid {
    grid-template-columns: minmax(690px, 1.05fr) minmax(900px, 1.35fr) minmax(560px, 0.9fr);
    gap: 24px;
  }

  .wide-product-layout {
    grid-template-columns: 120px minmax(360px, 1fr) 190px;
    gap: 14px;
  }

  .wide-product-tabs b {
    min-height: 38px;
  }

  .wide-copy h2 {
    font-size: clamp(30px, 1.86vw, 48px);
  }

  .wide-pricing .wide-copy h2 {
    max-width: 760px;
  }

  .wide-plan-row {
    gap: 14px;
  }

  .wide-plan-row article {
    padding: 16px;
  }
}

@media (min-width: 1800px) {
  main {
    display: grid;
    grid-template-columns: minmax(520px, 0.42fr) minmax(0, 1fr);
    align-items: start;
    background:
      radial-gradient(circle at 8% 18%, rgba(16, 215, 238, 0.11), transparent 28%),
      linear-gradient(90deg, #07111c 0%, #07111c 42%, #edf2f7 42%, #edf2f7 100%);
  }

  .hero-section {
    position: relative;
    top: auto;
    width: 100%;
    max-width: none;
    min-height: calc(100vh - var(--header));
    height: calc(100vh - var(--header));
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    padding: clamp(22px, 2.8vw, 48px) clamp(28px, 3.6vw, 72px);
    overflow: hidden;
  }

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

  .hero-copy h1 {
    font-size: clamp(46px, 3vw, 72px);
    line-height: 1;
  }

  .hero-lede {
    max-width: 520px;
    font-size: clamp(15px, 0.9vw, 18px);
  }

  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
  }

  .hero-actions,
  .platform-row,
  .hero-media {
    display: none;
  }

  .wide-board {
    grid-column: 2;
    min-width: 0;
    min-height: calc(100vh - var(--header));
    display: block;
    padding: clamp(28px, 3.2vw, 62px) clamp(28px, 3.4vw, 76px);
    background: transparent;
    overflow: hidden;
  }

  .app-pages-section {
    grid-column: 1 / -1;
  }

  .ops-walkthrough {
    grid-column: 1 / -1;
  }

  .wide-board-grid {
    width: 100%;
    min-width: 0;
    max-width: 820px;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  .wide-product,
  .wide-pricing {
    min-width: 0;
    min-height: min(620px, calc(100vh - var(--header) - 78px));
  }

  .wide-product {
    padding: clamp(22px, 1.5vw, 30px);
  }

  .wide-pricing {
    padding: clamp(28px, 2.4vw, 46px);
  }

  .wide-side-stack {
    grid-column: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .wide-security,
  .wide-download {
    padding: clamp(22px, 1.5vw, 30px);
  }

  .wide-copy h2 {
    font-size: clamp(28px, 1.9vw, 46px);
  }

  .wide-product-layout {
    grid-template-columns: 0.28fr minmax(280px, 1fr) 0.36fr;
    gap: 14px;
  }

  .wide-screen-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wide-plan-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .wide-plan-row article {
    min-height: 168px;
    padding: 12px;
    gap: 8px;
  }

  .wide-plan-row span {
    padding: 4px 7px;
    font-size: 8px;
  }

  .wide-plan-row b {
    font-size: 15px;
  }

  .wide-plan-row small {
    font-size: 14px;
  }

  .wide-plan-row em {
    font-size: 10.5px;
  }
}

@media (min-width: 2200px) {
  main {
    grid-template-columns: minmax(600px, 0.34fr) minmax(0, 1fr);
    background:
      radial-gradient(circle at 8% 18%, rgba(16, 215, 238, 0.1), transparent 28%),
      linear-gradient(90deg, #07111c 0%, #07111c 34%, #edf2f7 34%, #edf2f7 100%);
  }

  .wide-board-grid {
    max-width: 1480px;
    grid-template-columns: minmax(560px, 0.94fr) minmax(680px, 1.12fr);
  }

  .wide-side-stack {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (min-width: 2800px) {
  main {
    grid-template-columns: minmax(620px, 0.28fr) minmax(0, 1fr);
    background:
      radial-gradient(circle at 8% 18%, rgba(16, 215, 238, 0.1), transparent 28%),
      linear-gradient(90deg, #07111c 0%, #07111c 28%, #edf2f7 28%, #edf2f7 100%);
  }

  .wide-board-grid {
    max-width: none;
    grid-template-columns: minmax(560px, 0.88fr) minmax(680px, 1.02fr) minmax(360px, 0.58fr);
  }

  .wide-side-stack {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1800px) {
  main {
    display: block;
    background: #07111c;
  }

  .hero-section {
    position: relative;
    top: auto;
    width: auto;
    max-width: var(--max);
    min-height: calc(100vh - var(--header));
    height: auto;
    display: grid;
    grid-template-columns: minmax(380px, 0.74fr) minmax(640px, 1.26fr);
    align-items: center;
    padding: clamp(48px, 6vw, 78px) clamp(22px, 4vw, 54px) 46px;
    overflow: visible;
  }

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

  .hero-copy h1 {
    font-size: clamp(54px, 5.6vw, 84px);
    line-height: 0.98;
  }

  .hero-lede {
    max-width: 610px;
    font-size: clamp(18px, 1.5vw, 22px);
  }

  .hero-proof-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .hero-actions {
    display: flex;
  }

  .platform-row {
    display: flex;
  }

  .hero-media {
    display: grid;
  }

  .wide-board {
    display: none;
  }

  .product-section,
  .plans-section {
    display: block;
  }

  .explain-section,
  .trust-section,
  .case-section,
  .download-section {
    display: grid;
  }

  .sales-pipeline,
  .ops-walkthrough {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 78px;
  }

  body {
    background: #07111c;
  }

  .site-header {
    min-height: var(--header);
    grid-template-columns: 1fr auto;
    padding: 10px 16px;
    gap: 10px;
  }

  .brand {
    grid-template-columns: 46px auto;
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 46px;
    height: 38px;
  }

  .brand strong {
    font-size: 17px;
    line-height: 1;
  }

  .brand small {
    font-size: 11px;
  }

  .header-actions {
    gap: 8px;
  }

  .mobile-brand-downloads {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6px;
  }

  .mobile-brand-download {
    display: grid;
    min-width: 34px;
    width: 34px;
    height: 34px;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .mobile-brand-download b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .header-actions .ghost-button {
    display: none;
  }

  .header-actions .primary-button {
    display: none;
  }

  .language-switch button {
    min-width: 31px;
    min-height: 28px;
  }

  .hero-section {
    min-height: auto;
    padding: 42px 16px 86px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero-copy::before {
    inset: -18px 0 -22px;
  }

	  .hero-proof-grid,
	  .plan-grid,
	  .trust-grid,
	  .implementation-panel,
	  .explain-section,
	  .demo-controls {
	    grid-template-columns: 1fr;
	  }

	  .pricing-disclaimer {
	    grid-template-columns: 1fr;
	    padding: 16px;
	  }

  .hero-actions {
    display: grid;
  }

  .hero-media {
    margin-top: 8px;
    min-height: 0;
  }

  .hero-motion-banner {
    inset: -18px -10px 42px -10px;
    border-radius: 12px;
  }

  .motion-shot-plan,
  .motion-caption,
  .signal-progress {
    display: none;
  }

  .motion-shot-field {
    left: 6%;
    right: auto;
    top: 8%;
    width: 88%;
    height: 62%;
  }

  .motion-telemetry {
    right: 7%;
    bottom: 10%;
    height: 58px;
    gap: 6px;
  }

  .motion-telemetry span {
    width: 7px;
  }

  .product-frame img {
    aspect-ratio: 4 / 3;
  }

  .floating-panel {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .moment-strip {
    grid-template-columns: repeat(4, minmax(118px, 1fr));
    overflow-x: auto;
  }

  .moment-strip a {
    min-height: 74px;
    padding: 12px 16px;
  }

  .moment-strip b {
    font-size: 22px;
  }

  .product-section,
  .plans-section,
  .trust-section,
  .case-section,
  .download-section {
    padding: 58px 16px;
  }

	  .sales-pipeline {
	    padding: 64px 16px;
	  }

	  .sales-intro {
	    display: block;
	    margin-bottom: 34px;
	  }

	  .sales-intro-side {
	    width: 100%;
	    margin-top: 24px;
	  }

	  .sales-intro h2 {
	    font-size: clamp(34px, 9vw, 46px);
	  }

  .sales-scene,
  .sales-scene:nth-child(even) {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .sales-scene:nth-child(even) .scene-copy {
    order: 0;
  }

  .scene-copy h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .chat-surface,
  .geo-map,
  .ai-board,
  .plan-suggestion,
  .performance-panel {
    min-height: 260px;
  }

  .chat-line {
    max-width: 100%;
  }

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

  .performance-panel div {
    grid-template-columns: 1fr auto;
  }

	  .performance-panel span {
	    grid-column: 1 / -1;
	  }

	  .byo-api-section {
	    width: calc(100% - 24px);
	    margin: 36px auto;
	    padding: 28px 18px;
	    grid-template-columns: 1fr;
	    gap: 26px;
	  }

	  .byo-copy h2 {
	    font-size: clamp(32px, 9vw, 42px);
	  }

	  .byo-flow,
	  .byo-capabilities {
	    grid-template-columns: 1fr;
	  }

		  .byo-flow article,
		  .byo-capabilities article {
		    min-height: auto;
		  }

		  .implementation-section {
		    width: calc(100% - 24px);
		    grid-template-columns: 1fr;
		    gap: 26px;
		    padding: 34px 18px;
		  }

		  .implementation-copy h2 {
		    font-size: clamp(31px, 8.5vw, 42px);
		  }

		  .implementation-panel article {
		    min-height: auto;
		    padding: 18px;
		  }

		  .app-pages-section {
		    padding: 58px 16px;
		  }

  .app-pages-grid {
    grid-template-columns: 1fr;
  }

  .app-pages-heading h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .ops-walkthrough {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 58px 16px;
  }

  .ops-copy,
  .ops-stage {
    position: relative;
    top: auto;
  }

  .ops-copy h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .ops-state-list button {
    transform: none;
  }

  .ops-state-list button:hover,
  .ops-state-list button.is-active {
    transform: none;
  }

  .ops-screen-stack {
    min-height: 390px;
  }

  .ops-caption {
    display: grid;
  }

  .ops-caption span {
    text-align: left;
  }

  .ops-hotspot {
    display: none;
  }

  .case-section,
  .download-section,
  .trust-section {
    margin-inline: 12px;
  }

  .case-list article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .case-list img,
  .case-icon {
    width: 48px;
    height: 48px;
  }

  .explain-section {
    padding: 58px 16px 18px;
  }

  .section-heading h2,
  .trust-copy h2,
  .download-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .demo-copy {
    padding: 20px;
  }

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

  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .download-section .download-actions {
    display: none;
  }

  .download-dock {
    width: 100%;
  }

  .chat-fab {
    display: none;
  }

  .fixed-download-dock {
    display: none;
  }

  .fixed-download-dock span {
    display: none;
  }

  .fixed-brand-download {
    min-width: 40px;
    width: 40px;
    height: 40px;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .fixed-brand-download svg {
    width: 18px;
    height: 18px;
  }

  .fixed-brand-download b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .chat-panel {
    right: 14px;
    bottom: 16px;
    max-height: calc(100vh - 32px);
  }

  .site-footer {
    display: grid;
  }

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