:root {
  --ink: #071017;
  --ink-2: #101923;
  --paper: #f7f8f9;
  --paper-2: #eef2f5;
  --muted: #6f7a85;
  --muted-dark: #a9b8c7;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(7, 16, 23, 0.12);
  --white: #ffffff;
  --blue: #4d8fff;
  --cyan: #8eddf2;
  --mint: #7ce3bd;
  --gold: #d9b36f;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --header-height: 76px;
  --mouse-x: 50%;
  --mouse-y: 35%;
  --scroll-progress: 0;
  --hero-progress: 0;
  --device-x: 0vw;
  --device-y: 0vh;
  --device-scale: 0.78;
  --device-rotate-x: 58deg;
  --device-rotate-z: -8deg;
  --device-left-offset: 0px;
  --device-right-offset: 0px;
  --device-left-rotate: 0deg;
  --device-right-rotate: 0deg;
  --device-core-opacity: 0.22;
  --device-opacity: 0.58;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  opacity: 0;
  transition: opacity 360ms ease;
}

body.is-ready {
  opacity: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(142, 221, 242, 0.18), transparent 18%),
    linear-gradient(135deg, #05070b 0%, #071017 54%, #0d111a 100%);
  transform-origin: center;
}

body.is-ready::before {
  animation: siteAperture 1150ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.animated-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: #070a10;
  contain: paint;
}

.bg-layer {
  position: absolute;
  inset: -10%;
  will-change: transform, opacity;
}

.bg-base {
  background:
    radial-gradient(circle at 20% 8%, rgba(77, 143, 255, 0.18), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(124, 227, 189, 0.12), transparent 28%),
    linear-gradient(140deg, #05070b 0%, #071017 45%, #0d111a 100%);
}

.bg-grid {
  opacity: 0.42;
  transform: translate3d(0, calc(var(--scroll-progress) * -90px), 0);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.bg-light-fields {
  opacity: 0.92;
  transform:
    translate3d(calc((var(--mouse-x) - 50%) * 0.03), calc((var(--scroll-progress) * -140px) + ((var(--mouse-y) - 50%) * 0.025)), 0)
    scale(1.02);
  background:
    radial-gradient(ellipse at 18% 22%, rgba(77, 143, 255, 0.42), transparent 36%),
    radial-gradient(ellipse at 70% 18%, rgba(142, 221, 242, 0.22), transparent 30%),
    radial-gradient(ellipse at 70% 82%, rgba(217, 179, 111, 0.13), transparent 35%),
    radial-gradient(ellipse at 42% 60%, rgba(255, 255, 255, 0.08), transparent 38%);
  filter: blur(10px);
}

.bg-stage-device {
  position: absolute;
  top: 9vh;
  right: -7vw;
  width: min(58vw, 760px);
  aspect-ratio: 0.72;
  opacity: var(--device-opacity);
  perspective: 1400px;
  transform:
    translate3d(var(--device-x), var(--device-y), 0)
    rotateX(var(--device-rotate-x))
    rotateZ(var(--device-rotate-z))
    scale(var(--device-scale));
  transform-origin: 50% 42%;
  will-change: transform, opacity;
}

.device-shadow {
  position: absolute;
  inset: 14% -8% 8%;
  border-radius: 44px;
  background: radial-gradient(ellipse at center, rgba(77, 143, 255, 0.3), transparent 62%);
  filter: blur(34px);
  transform: translateY(42px);
}

.device-frame {
  position: absolute;
  inset: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -26px 70px rgba(0, 0, 0, 0.42),
    0 40px 120px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
}

.device-glass {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(142, 221, 242, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(rgba(142, 221, 242, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 221, 242, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(142, 221, 242, 0.24), transparent 30%),
    linear-gradient(160deg, rgba(7, 16, 23, 0.9), rgba(18, 27, 37, 0.78));
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.device-glass::before,
.device-glass::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 22%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transform: translateX(-50%);
}

.device-glass::before {
  top: 22px;
}

.device-glass::after {
  bottom: 22px;
  opacity: 0.36;
}

.device-panel {
  position: absolute;
  top: 56px;
  bottom: 56px;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  width: calc(50% - 10px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  will-change: transform;
}

.device-panel-left {
  left: 24px;
  border-radius: 24px 8px 8px 24px;
  transform: translateX(var(--device-left-offset)) rotateY(var(--device-left-rotate));
  transform-origin: right center;
}

.device-panel-right {
  right: 24px;
  border-radius: 8px 24px 24px 8px;
  transform: translateX(var(--device-right-offset)) rotateY(var(--device-right-rotate));
  transform-origin: left center;
}

.device-panel span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(142, 221, 242, 0.22));
}

.device-panel span:nth-child(2) {
  width: 74%;
}

.device-panel span:nth-child(3) {
  width: 54%;
  background: linear-gradient(90deg, rgba(124, 227, 189, 0.68), rgba(255, 255, 255, 0.12));
}

.device-core {
  position: absolute;
  inset: 18%;
  opacity: var(--device-core-opacity);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle, rgba(142, 221, 242, 0.32), transparent 58%);
  filter: drop-shadow(0 0 34px rgba(142, 221, 242, 0.28));
}

.device-core-orbit,
.device-core-line {
  position: absolute;
  inset: 8%;
  border-radius: 999px;
  border: 1px solid rgba(142, 221, 242, 0.32);
}

.device-core-orbit {
  animation: deviceOrbit 16s linear infinite;
}

.device-core-line {
  inset: 24% 8%;
  height: 1px;
  margin: auto;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(142, 221, 242, 0.62), transparent);
}

.device-core-line.line-two {
  transform: rotate(58deg);
}

.device-core-line.line-three {
  transform: rotate(-58deg);
}

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

.bg-flow {
  opacity: 0.72;
  transform: translate3d(0, calc(var(--scroll-progress) * -180px), 0);
}

.bg-noise {
  inset: 0;
  opacity: 0.13;
  background-image:
    repeating-radial-gradient(circle at 17% 23%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 6px);
  mix-blend-mode: overlay;
}

.particle,
.data-line {
  position: absolute;
  display: block;
  background: rgba(142, 221, 242, 0.68);
}

.particle {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(142, 221, 242, 0.42);
  animation: particleDrift 16s linear infinite;
}

.data-line {
  width: 160px;
  height: 1px;
  transform-origin: left center;
  opacity: 0.32;
  background: linear-gradient(90deg, transparent, rgba(142, 221, 242, 0.75), transparent);
  animation: linePulse 8s ease-in-out infinite;
}

@keyframes particleDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.18;
  }
  50% {
    opacity: 0.72;
  }
  100% {
    transform: translate3d(24px, -42px, 0);
    opacity: 0.18;
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.08;
    transform: translate3d(0, 0, 0) rotate(var(--line-angle));
  }
  50% {
    opacity: 0.38;
    transform: translate3d(20px, -10px, 0) rotate(var(--line-angle));
  }
}

@keyframes siteAperture {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  55% {
    opacity: 1;
    clip-path: inset(8% 10% 8% 10% round 18px);
  }
  100% {
    opacity: 0;
    clip-path: inset(50% 50% 50% 50% round 28px);
    visibility: hidden;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: -1;
  opacity: 0;
  background: rgba(6, 10, 16, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-logo {
  width: clamp(172px, 18vw, 230px);
  height: auto;
  opacity: 0.96;
  filter:
    drop-shadow(0 0 14px rgba(142, 221, 242, 0.16))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  transform: translateZ(0);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted-dark);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-dark {
  position: relative;
  color: var(--white);
}

.section-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 143, 255, 0.08), transparent 32%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 70px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.hero-brand-lockup {
  position: relative;
  width: min(420px, 82vw);
  margin: 0 0 26px;
  padding: 16px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-brand-lockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(142, 221, 242, 0.16), transparent 36%),
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.12) 46%, transparent 66%);
  transform: translateX(calc(-40% + (var(--hero-progress) * 80%)));
  pointer-events: none;
}

.hero-brand-lockup img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0.95;
  filter:
    drop-shadow(0 0 16px rgba(142, 221, 242, 0.2))
    drop-shadow(0 12px 26px rgba(0, 0, 0, 0.28));
}

.hero-copy.is-visible .hero-brand-lockup {
  animation: logoArrival 900ms cubic-bezier(0.2, 0.85, 0.24, 1) 90ms both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #306de0;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-subtitle,
.section-copy p,
.about-copy p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.section-light .section-copy p,
.section-light .section-heading p,
.section-light .system-row p,
.section-light .faq-list p {
  color: #43505c;
}

.hero-actions,
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  isolation: isolate;
  --button-x: 50%;
  --button-y: 50%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 760;
  overflow: hidden;
  transition:
    transform 130ms cubic-bezier(0.2, 0.85, 0.24, 1),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.button::before {
  opacity: 0;
  background:
    radial-gradient(circle at var(--button-x) var(--button-y), rgba(142, 221, 242, 0.32), transparent 22%),
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.26) 42%, transparent 64%);
  transform: translateX(-42%);
  transition:
    opacity 180ms ease,
    transform 460ms ease;
}

.button::after {
  opacity: 0;
  background: radial-gradient(circle at var(--button-x) var(--button-y), rgba(255, 255, 255, 0.38), transparent 28%);
  transition: opacity 180ms ease;
}

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

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

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button:active,
.button.is-pressed {
  transform: translateY(1px) scale(0.982);
  box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.16);
}

.button-ripple {
  position: absolute;
  left: var(--ripple-x);
  top: var(--ripple-y);
  z-index: -1;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(142, 221, 242, 0.42);
  transform: translate(-50%, -50%) scale(0);
  animation: buttonRipple 560ms ease-out forwards;
}

@keyframes buttonRipple {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(22);
  }
}

.button-primary {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(142, 221, 242, 0.18);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.section-light .button-secondary {
  color: var(--ink);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin-top: 44px;
}

.hero-stats div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats strong {
  display: block;
  margin-bottom: 2px;
  font-size: 2.1rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(5, 8, 13, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(circle at 76% 8%, rgba(142, 221, 242, 0.2), transparent 32%);
  transform: translateX(calc(var(--scroll-progress) * 90px));
  pointer-events: none;
}

.panel-topline,
.panel-header,
.system-flow,
.panel-metrics {
  position: relative;
}

.panel-topline {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.panel-topline span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.panel-header {
  margin-bottom: 18px;
}

.panel-header p {
  margin-bottom: 4px;
  color: var(--muted-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-header strong {
  font-size: 1.75rem;
}

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

.flow-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.flow-item.active {
  border-color: rgba(142, 221, 242, 0.38);
  background: rgba(142, 221, 242, 0.08);
}

.flow-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 800;
  font-size: 0.78rem;
}

.flow-item p {
  margin: 3px 0 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.panel-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.panel-metrics div {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.panel-metrics span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.panel-metrics strong {
  color: var(--mint);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  width: 30px;
  height: 48px;
  place-items: start center;
  padding-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: var(--white);
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(16px);
    opacity: 1;
  }
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 18px 0;
}

.trust-items span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 650;
}

.split-layout,
.proof-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  color: var(--muted-dark);
  font-size: 1.08rem;
}

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

.problem-grid article {
  position: relative;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: #24313d;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(7, 16, 23, 0.05);
  transition:
    transform 220ms cubic-bezier(0.2, 0.85, 0.24, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.problem-grid article:hover {
  transform: translateY(-5px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  border-color: rgba(48, 109, 224, 0.22);
  box-shadow: 0 22px 58px rgba(7, 16, 23, 0.1);
}

.problem-grid span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: #306de0;
  box-shadow: 0 0 0 5px rgba(48, 109, 224, 0.1);
}

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

.service-card,
.industry-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transition:
    transform 220ms cubic-bezier(0.2, 0.85, 0.24, 1),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 220ms ease;
  transform-style: preserve-3d;
}

.service-card:hover,
.industry-card:hover,
.pricing-card:hover {
  transform: translateY(-7px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  border-color: rgba(142, 221, 242, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.service-card::before,
.industry-card::before,
.pricing-card::before,
.process-step::before,
.system-row::before,
.proof-list div::before,
.problem-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(142, 221, 242, 0.18), transparent 34%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.1) 48%, transparent 68%);
  transform: translateX(-28%);
  transition:
    opacity 220ms ease,
    transform 620ms ease;
}

.service-card:hover::before,
.industry-card:hover::before,
.pricing-card:hover::before,
.process-step:hover::before,
.system-row:hover::before,
.proof-list div:hover::before,
.problem-grid article:hover::before {
  opacity: 1;
  transform: translateX(28%);
}

.service-card {
  min-height: 280px;
  padding: 24px;
}

.service-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: var(--cyan);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.industry-card p,
.pricing-card p,
.pricing-card li {
  color: var(--muted-dark);
}

.service-card strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: 0.88rem;
}

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

.proof-list div {
  position: relative;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 14px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  transition:
    transform 220ms cubic-bezier(0.2, 0.85, 0.24, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.proof-list div:hover {
  transform: translateY(-5px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  border-color: rgba(48, 109, 224, 0.2);
  box-shadow: 0 22px 60px rgba(7, 16, 23, 0.1);
}

.proof-list span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-list p {
  margin-bottom: 0;
  color: #51606d;
}

.industry-card {
  min-height: 286px;
  padding: 22px;
}

.industry-card h3 {
  margin-bottom: 18px;
}

.industry-card p {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.industry-card strong {
  color: var(--white);
}

.system-list {
  display: grid;
  gap: 10px;
}

.system-row {
  position: relative;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  grid-template-columns: minmax(170px, 0.78fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  transition:
    transform 220ms cubic-bezier(0.2, 0.85, 0.24, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.system-row:hover {
  transform: translateY(-5px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  border-color: rgba(48, 109, 224, 0.22);
  box-shadow: 0 24px 64px rgba(7, 16, 23, 0.1);
}

.system-row span {
  color: var(--ink);
  font-weight: 820;
}

.system-row p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.system-row strong {
  color: var(--ink);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 660px;
  padding: 28px;
}

.pricing-card.featured {
  border-color: rgba(142, 221, 242, 0.36);
  background:
    linear-gradient(180deg, rgba(142, 221, 242, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 90px rgba(77, 143, 255, 0.16);
}

.pricing-grid.is-choreographed .pricing-card.featured {
  animation: featuredBreath 4.6s ease-in-out 1.2s infinite;
}

@keyframes featuredBreath {
  0%,
  100% {
    box-shadow: 0 24px 90px rgba(77, 143, 255, 0.16);
  }
  50% {
    box-shadow: 0 30px 110px rgba(142, 221, 242, 0.24);
  }
}

.tier {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 4px;
  font-size: clamp(2.35rem, 5vw, 3.2rem);
}

.price-note {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.45;
}

.pricing-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(142, 221, 242, 0.34);
  border-radius: 999px;
  background: rgba(142, 221, 242, 0.1);
  color: #d7f7ff;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tier-copy {
  min-height: 74px;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-guidance {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(77, 143, 255, 0.11), rgba(142, 221, 242, 0.04)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}

.pricing-guidance-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 18px 34px;
  align-items: end;
  margin-bottom: 26px;
}

.pricing-guidance-copy .tier,
.pricing-guidance-copy h3,
.pricing-guidance-copy p {
  margin: 0;
}

.pricing-guidance-copy .tier {
  grid-column: 1 / -1;
}

.pricing-guidance-copy h3 {
  font-size: clamp(1.75rem, 4vw, 2.7rem);
}

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

.price-bands article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-small);
  background: rgba(5, 12, 19, 0.48);
}

.price-bands span,
.price-bands strong {
  display: block;
}

.price-bands span {
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-bands strong {
  min-height: 46px;
  color: #fff;
  line-height: 1.35;
}

.price-bands p {
  margin: 10px 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.pricing-fine-print {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  line-height: 1.65;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 38px;
  z-index: 0;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(48, 109, 224, 0.34), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 500ms ease,
    transform 900ms cubic-bezier(0.2, 0.85, 0.24, 1);
  transition-delay: 160ms;
}

.process-track.is-choreographed::before {
  opacity: 1;
  transform: scaleX(1);
}

.process-step {
  position: relative;
  z-index: 1;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  transition:
    transform 220ms cubic-bezier(0.2, 0.85, 0.24, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.process-step:hover {
  transform: translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  border-color: rgba(48, 109, 224, 0.22);
  box-shadow: 0 24px 64px rgba(7, 16, 23, 0.1);
}

.process-step span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-step p {
  margin-bottom: 0;
  color: #53606d;
  font-size: 0.92rem;
}

.about-section {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.about-copy {
  max-width: 680px;
}

.about-copy p {
  font-size: 1.12rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
}

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

.faq-list details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
}

.faq-list summary::after {
  content: "+";
  color: #306de0;
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.contact-section {
  padding-bottom: 124px;
}

.contact-layout {
  align-items: center;
}

.contact-cta span {
  max-width: 340px;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 720;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--white);
  background: rgba(5, 8, 13, 0.72);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.lead-form textarea {
  resize: vertical;
  min-height: 126px;
}

.lead-form select option {
  color: var(--ink);
  background: var(--white);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(142, 221, 242, 0.76);
  box-shadow: 0 0 0 4px rgba(142, 221, 242, 0.12);
  background: rgba(5, 8, 13, 0.88);
}

.hidden-field {
  display: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 13, 0.82);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
}

.footer-logo {
  width: 190px;
  height: auto;
  opacity: 0.86;
  filter: drop-shadow(0 0 12px rgba(142, 221, 242, 0.12));
}

.footer-inner p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 800;
}

.footer-inner a {
  color: var(--cyan);
  font-weight: 720;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(7px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.85, 0.24, 1),
    transform 720ms cubic-bezier(0.2, 0.85, 0.24, 1),
    filter 720ms ease;
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform, filter;
}

.reveal[data-reveal="hero"] {
  transform: translate3d(0, 18px, 0) scale(0.985);
}

.reveal[data-reveal="split-rise"] {
  transform: translate3d(0, 44px, 0) scale(0.975);
}

.reveal[data-reveal="card-rise"],
.reveal[data-reveal="card-fan"],
.reveal[data-reveal="premium-pop"] {
  transform: translate3d(0, 52px, 0) scale(0.965);
}

.reveal[data-reveal="card-fan"]:nth-child(odd) {
  transform: translate3d(-18px, 52px, 0) rotate(-1.2deg) scale(0.965);
}

.reveal[data-reveal="card-fan"]:nth-child(even) {
  transform: translate3d(18px, 52px, 0) rotate(1.2deg) scale(0.965);
}

.reveal[data-reveal="line-sweep"] {
  clip-path: inset(0 100% 0 0 round 8px);
  transform: translate3d(0, 22px, 0);
}

.reveal[data-reveal="step-rise"] {
  transform: translate3d(0, 66px, 0) scale(0.96);
}

.reveal[data-reveal="slide-left"] {
  transform: translate3d(42px, 0, 0);
}

.reveal[data-reveal="slide-right"] {
  transform: translate3d(-42px, 0, 0);
}

.reveal[data-reveal="form-rise"] {
  transform: translate3d(0, 36px, 0) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  filter: blur(0);
}

.reveal[data-reveal="line-sweep"].is-visible {
  clip-path: inset(0 0 0 0 round 8px);
}

.trust-items span,
.problem-grid article,
.proof-list div,
.faq-list details {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.trust-items.is-visible span,
.problem-grid.is-visible article,
.proof-list.is-visible div,
.faq-list.is-visible details {
  animation: staggerRise 650ms cubic-bezier(0.2, 0.85, 0.24, 1) forwards;
  animation-delay: calc(var(--stagger-index, 0) * 70ms);
}

.problem-grid.is-visible article:nth-child(odd),
.proof-list.is-visible div:nth-child(odd) {
  animation-name: staggerLeftRise;
}

.problem-grid.is-visible article:nth-child(even),
.proof-list.is-visible div:nth-child(even) {
  animation-name: staggerRightRise;
}

.faq-list.is-visible details {
  animation-duration: 560ms;
}

@keyframes staggerRise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes staggerLeftRise {
  0% {
    opacity: 0;
    transform: translate3d(-22px, 24px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes staggerRightRise {
  0% {
    opacity: 0;
    transform: translate3d(22px, 24px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes logoArrival {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.96);
    filter: blur(8px);
  }
  64% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.thank-you-page {
  min-height: 100svh;
}

.thank-you-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.thank-you-card {
  width: min(760px, 100%);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.thank-you-logo {
  width: min(360px, 100%);
  height: auto;
  margin: 0 0 24px;
  opacity: 0.92;
  filter: drop-shadow(0 0 14px rgba(142, 221, 242, 0.16));
}

.thank-you-card h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

.thank-you-card p {
  color: var(--muted-dark);
  font-size: 1.08rem;
}

@media (max-width: 1120px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    gap: 6px;
    padding: 10px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    background: rgba(7, 10, 16, 0.94);
    box-shadow: var(--shadow);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    min-height: 48px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .brand-logo {
    width: clamp(166px, 30vw, 198px);
  }

  .hero-grid,
  .split-layout,
  .proof-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .bg-stage-device {
    top: 15vh;
    right: -28vw;
    width: min(108vw, 560px);
  }

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

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

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

@media (max-width: 680px) {
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .pricing-guidance-copy,
  .price-bands {
    grid-template-columns: 1fr;
  }

  .price-bands strong {
    min-height: 0;
  }

  .hero-brand-lockup {
    width: min(330px, 100%);
    margin-bottom: 22px;
    padding: 12px 14px;
  }

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

  .button {
    width: 100%;
  }

  .hero-stats,
  .problem-grid,
  .card-grid,
  .process-track,
  .panel-metrics {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    display: none;
  }

  .hero-stats div {
    min-height: auto;
  }

  .bg-stage-device {
    top: 14vh;
    right: -42vw;
    width: min(132vw, 520px);
  }

  .brand small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(166px, 54vw);
  }

  .footer-logo {
    width: 172px;
  }

  .service-card,
  .industry-card {
    min-height: auto;
  }

  .trust-items {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 20px;
    scrollbar-width: none;
  }

  .trust-items::-webkit-scrollbar {
    display: none;
  }

  .trust-items span {
    flex: 0 0 auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }

  .thank-you-card {
    padding: 26px;
  }
}

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

  .bg-grid,
  .bg-light-fields,
  .bg-flow,
  .bg-stage-device,
  .device-panel-left,
  .device-panel-right,
  .hero-panel::before {
    transform: none !important;
  }

  .bg-stage-device {
    opacity: 0.22;
  }

  .device-core-orbit,
  .button-ripple {
    animation: none !important;
  }

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

  body::before,
  .pricing-grid.is-choreographed .pricing-card.featured,
  .trust-items span,
  .problem-grid article,
  .proof-list div,
  .faq-list details {
    animation: none !important;
  }

  body::before {
    opacity: 0;
    visibility: hidden;
  }

  .trust-items span,
  .problem-grid article,
  .proof-list div,
  .faq-list details {
    opacity: 1;
    transform: none;
  }
}
