:root {
  --ink: #07142d;
  --muted: #5c667a;
  --line: #d9e2ef;
  --surface: #ffffff;
  --soft-blue: #e8f5fb;
  --cyan: #55cbdc;
  --blue: #1181dd;
  --violet: #6750b7;
  --amber: #ffb020;
  --green: #08a045;
  --shadow: 0 22px 60px rgba(7, 20, 45, 0.16);
  --mark-split: 0;
  --mark-fade: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.page-transition {
  --mark-split: 0;
  --mark-fade: 1;
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 129, 221, 0.18), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(103, 80, 183, 0.14), transparent 44%),
    linear-gradient(135deg, #050912 0%, #07142d 58%, #040811 100%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.page-transition.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.page-transition.is-splitting {
  --mark-split: 1;
  --mark-fade: 0;
}

.mark-split {
  position: relative;
  z-index: 5;
  width: clamp(132px, 18vw, 250px);
  aspect-ratio: 1024 / 1196;
  transform: rotate(0deg) scale(1);
  opacity: 1;
  filter:
    blur(0)
    drop-shadow(0 32px 58px rgba(85, 203, 220, calc(0.18 + (var(--mark-split) * 0.08))));
  will-change: transform, opacity;
  transition: transform 420ms cubic-bezier(0.2, 0.78, 0.2, 1), opacity 220ms ease 620ms, filter 280ms ease;
}

.page-transition.is-rotating .mark-split,
.page-transition.is-splitting .mark-split {
  transform: rotate(90deg) scale(1.04);
}

.page-transition.is-splitting .mark-split {
  opacity: 0;
}

.digital-wave {
  position: absolute;
  z-index: 1;
  inset: -8%;
  opacity: calc(var(--mark-fade) * 0.86);
  background:
    radial-gradient(circle at 18% 22%, rgba(85, 203, 220, 0.18), transparent 24%),
    radial-gradient(circle at 78% 28%, rgba(17, 129, 221, 0.16), transparent 26%),
    radial-gradient(circle at 50% 74%, rgba(103, 80, 183, 0.16), transparent 30%),
    linear-gradient(115deg, transparent 0 18%, rgba(85, 203, 220, 0.08) 34%, transparent 50% 100%);
  filter: drop-shadow(0 0 28px rgba(85, 203, 220, 0.16));
  animation: fieldBreathe 12s ease-in-out infinite;
  pointer-events: none;
}

.digital-wave::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(85, 203, 220, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(103, 80, 183, 0.05) 1px, transparent 1px),
    linear-gradient(125deg, transparent 0 43%, rgba(85, 203, 220, 0.1) 48%, transparent 54% 100%),
    linear-gradient(55deg, transparent 0 38%, rgba(17, 129, 221, 0.08) 44%, transparent 50% 100%);
  background-size: 86px 86px, 86px 86px, 100% 100%, 100% 100%;
  opacity: 0.7;
  animation: fieldSlide 20s linear infinite;
}

.digital-wave::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle, rgba(85, 203, 220, 0.55) 0 1.5px, transparent 2px),
    radial-gradient(circle, rgba(17, 129, 221, 0.46) 0 1.8px, transparent 2.4px),
    radial-gradient(circle, rgba(183, 198, 214, 0.42) 0 1.2px, transparent 1.8px);
  background-position: 0 0, 31px 22px, 17px 48px;
  background-size: 54px 58px, 74px 70px, 42px 46px;
  opacity: 0.58;
  animation: particleDrift 28s linear infinite;
}

.digital-wave span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(4px, 0.55vw, 8px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #55cbdc;
  box-shadow: 0 0 18px rgba(85, 203, 220, 0.42);
  opacity: 0.68;
  transform: translate3d(0, 0, 0);
  animation: waveNodePulse 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.08s);
}

.digital-wave span:nth-child(3n) {
  background: #1181dd;
  width: clamp(6px, 0.72vw, 10px);
}

.digital-wave span:nth-child(5n) {
  background: #b7c6d6;
  box-shadow: 0 0 14px rgba(183, 198, 214, 0.28);
}

.digital-wave span:nth-child(1) { --x: 8%; --y: 18%; }
.digital-wave span:nth-child(2) { --x: 18%; --y: 38%; }
.digital-wave span:nth-child(3) { --x: 29%; --y: 12%; }
.digital-wave span:nth-child(4) { --x: 38%; --y: 78%; }
.digital-wave span:nth-child(5) { --x: 48%; --y: 24%; }
.digital-wave span:nth-child(6) { --x: 57%; --y: 66%; }
.digital-wave span:nth-child(7) { --x: 69%; --y: 17%; }
.digital-wave span:nth-child(8) { --x: 82%; --y: 38%; }
.digital-wave span:nth-child(9) { --x: 91%; --y: 72%; }
.digital-wave span:nth-child(10) { --x: 13%; --y: 72%; }
.digital-wave span:nth-child(11) { --x: 25%; --y: 88%; }
.digital-wave span:nth-child(12) { --x: 44%; --y: 90%; }
.digital-wave span:nth-child(13) { --x: 62%; --y: 84%; }
.digital-wave span:nth-child(14) { --x: 77%; --y: 78%; }
.digital-wave span:nth-child(15) { --x: 88%; --y: 12%; }
.digital-wave span:nth-child(16) { --x: 11%; --y: 50%; }
.digital-wave span:nth-child(17) { --x: 34%; --y: 45%; }
.digital-wave span:nth-child(18) { --x: 52%; --y: 48%; }
.digital-wave span:nth-child(19) { --x: 66%; --y: 50%; }
.digital-wave span:nth-child(20) { --x: 85%; --y: 56%; }
.digital-wave span:nth-child(21) { --x: 6%; --y: 88%; }
.digital-wave span:nth-child(22) { --x: 21%; --y: 8%; }
.digital-wave span:nth-child(23) { --x: 73%; --y: 92%; }
.digital-wave span:nth-child(24) { --x: 95%; --y: 24%; }

.page-transition:not(.is-active) .digital-wave,
.page-transition:not(.is-active) .digital-wave::before,
.page-transition:not(.is-active) .digital-wave::after,
.page-transition:not(.is-active) .digital-wave span {
  animation-play-state: paused;
}

@keyframes fieldBreathe {
  0%,
  100% {
    transform: scale(1);
    opacity: calc(var(--mark-fade) * 0.78);
  }
  50% {
    transform: scale(1.03);
    opacity: calc(var(--mark-fade) * 0.94);
  }
}

@keyframes fieldSlide {
  to {
    background-position: 86px 86px, 86px 86px, 0 0, 0 0;
  }
}

@keyframes particleDrift {
  to {
    background-position: 54px 58px, -43px 92px, 59px -32px;
  }
}

@keyframes waveNodePulse {
  0%,
  100% {
    opacity: 0.32;
    scale: 0.76;
    translate: 0 0;
  }
  48% {
    opacity: 0.92;
    scale: 1.22;
    translate: 0 -10px;
  }
}

.mark-half {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 640ms cubic-bezier(0.16, 0.84, 0.22, 1);
  will-change: transform;
}

.mark-top {
  clip-path: inset(0 0 50% 0);
  transform: translate3d(0, 0, 0);
}

.mark-bottom {
  clip-path: inset(50% 0 0 0);
  transform: translate3d(0, 0, 0);
}

.page-transition.is-splitting .mark-top {
  transform: translate3d(0, -46vh, 0);
}

.page-transition.is-splitting .mark-bottom {
  transform: translate3d(0, 46vh, 0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 226, 239, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.site-header,
main,
.site-footer {
  transition: opacity 180ms linear, transform 180ms linear;
}

.brand img,
.site-footer img {
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: #172744;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding-block: 6px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
}

.header-action,
.primary-button {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(17, 129, 221, 0.22);
}

.secondary-button {
  color: var(--ink);
  border-color: #cbd8e7;
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  min-height: min(740px, 84vh);
  padding: 104px clamp(20px, 7vw, 92px) 48px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 46%, rgba(85, 203, 220, 0.09), transparent 26%),
    radial-gradient(circle at 29% 32%, rgba(103, 80, 183, 0.055), transparent 24%),
    #ffffff;
}

.hero::after {
  position: absolute;
  inset: 18% 18% 8%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 62%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 980px;
  min-width: 0;
  text-align: center;
}

.hero-brand-logo {
  width: clamp(300px, 38vw, 560px);
  margin: 20px auto 24px;
  opacity: 1;
  filter: drop-shadow(0 28px 52px rgba(7, 20, 45, 0.09));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue);
  font-size: clamp(1rem, 1.3vw, 1.28rem);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: none;
  font-size: clamp(3.2rem, 8.8vw, 7.8rem);
}

.hero h1 {
  max-width: 15ch;
  margin-inline: auto;
  font-size: clamp(2.55rem, 6.6vw, 5.8rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5vw, 5.1rem);
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-copy {
  width: min(760px, 100%);
  margin: 16px 0 0;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1.18rem, 2.05vw, 1.5rem);
}

.hero-positioning {
  width: min(830px, 100%);
  margin: 18px 0 0;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.8vw, 3.25rem);
  font-weight: 850;
  line-height: 1.12;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.customers-section {
  padding: 18px clamp(20px, 6vw, 86px) 58px;
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f9fd 100%);
}

.customers-section .eyebrow {
  color: var(--blue);
}

.customer-carousel {
  --customer-gap: clamp(24px, 4vw, 54px);
  position: relative;
  width: min(1180px, 100%);
  margin: 16px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.customer-logos {
  display: flex;
  gap: var(--customer-gap);
  width: max-content;
  animation: customerCarousel 34s linear infinite;
  will-change: transform;
}

.customer-carousel:hover .customer-logos {
  animation-play-state: paused;
}

.customer-logo-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--customer-gap);
  align-items: center;
}

.customer-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(210px, 19vw, 270px);
  min-height: 92px;
  padding: 0;
}

.customer-logo-card img {
  width: min(230px, 100%);
  height: 74px;
  object-fit: contain;
  opacity: 0.92;
}

.customer-logo-card img:hover {
  opacity: 1;
}

@keyframes customerCarousel {
  to {
    transform: translateX(calc(-50% - (var(--customer-gap) / 2)));
  }
}

.proof-section {
  padding: 54px clamp(20px, 4vw, 56px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 20, 45, 0.96), rgba(19, 42, 72, 0.96)),
    linear-gradient(90deg, rgba(85, 203, 220, 0.18), rgba(103, 80, 183, 0.16));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(20px, 5vw, 64px);
  align-items: center;
  margin-bottom: 24px;
}

.proof-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.proof-visual {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1.34;
  overflow: hidden;
  border: 1px solid rgba(132, 228, 238, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 22%, rgba(85, 203, 220, 0.28), transparent 28%),
    radial-gradient(circle at 28% 80%, rgba(103, 80, 183, 0.24), transparent 32%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  isolation: isolate;
}

.proof-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(132, 228, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 228, 238, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(135deg, transparent, #000 18%, #000 78%, transparent);
  -webkit-mask-image: linear-gradient(135deg, transparent, #000 18%, #000 78%, transparent);
}

.growth-orbit {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(132, 228, 238, 0.16);
  border-radius: 50%;
  background: conic-gradient(from 90deg, transparent 0 18%, rgba(85, 203, 220, 0.28), transparent 34% 62%, rgba(103, 80, 183, 0.24), transparent 76%);
  filter: blur(0.2px);
  opacity: 0.78;
  animation: growthSpin 18s linear infinite;
}

.growth-grid {
  position: absolute;
  inset: 24px;
}

.growth-grid span {
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #84e4ee;
  box-shadow: 0 0 18px rgba(132, 228, 238, 0.42);
  animation: metricPulse 2.8s ease-in-out infinite;
}

.growth-grid span:nth-child(1) { left: 14%; top: 18%; }
.growth-grid span:nth-child(2) { right: 16%; top: 22%; animation-delay: -0.8s; }
.growth-grid span:nth-child(3) { left: 22%; bottom: 17%; animation-delay: -1.6s; }
.growth-grid span:nth-child(4) { right: 12%; bottom: 24%; animation-delay: -2.2s; }

.growth-chart {
  position: absolute;
  inset: 26px 24px 18px;
  z-index: 2;
  width: calc(100% - 48px);
  height: calc(100% - 44px);
  overflow: visible;
}

.growth-area {
  fill: rgba(85, 203, 220, 0.12);
}

.growth-line {
  fill: none;
  stroke: #84e4ee;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  filter: drop-shadow(0 0 10px rgba(132, 228, 238, 0.55));
  animation: chartTrace 4.4s ease-in-out infinite;
}

.growth-dash {
  fill: none;
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  animation: dashTravel 4s linear infinite;
}

.growth-chart circle {
  fill: #ffffff;
  stroke: #4a9bef;
  stroke-width: 4;
  animation: metricPulse 2.6s ease-in-out infinite;
}

.growth-bars {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 74px;
}

.growth-bars span {
  width: 10px;
  height: var(--h);
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, #84e4ee, #4a9bef);
  transform-origin: bottom;
  animation: barRise 3.2s ease-in-out infinite;
}

.growth-bars span:nth-child(2) { animation-delay: -0.4s; }
.growth-bars span:nth-child(3) { animation-delay: -0.9s; }
.growth-bars span:nth-child(4) { animation-delay: -1.3s; }
.growth-bars span:nth-child(5) { animation-delay: -1.8s; }

.growth-chip {
  position: absolute;
  z-index: 4;
  padding: 7px 10px;
  border: 1px solid rgba(132, 228, 238, 0.2);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 20, 45, 0.44);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 850;
  animation: chipHover 5s ease-in-out infinite;
}

.chip-one {
  left: 26px;
  top: 26px;
}

.chip-two {
  right: 22px;
  top: 66px;
  animation-delay: -1.6s;
}

.chip-three {
  left: 34px;
  bottom: 26px;
  animation-delay: -3s;
}

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

@keyframes chartTrace {
  0%,
  16% { stroke-dashoffset: 520; opacity: 0.42; }
  52%,
  82% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -520; opacity: 0.5; }
}

@keyframes dashTravel {
  to { stroke-dashoffset: -84; }
}

@keyframes barRise {
  0%,
  100% { transform: scaleY(0.62); opacity: 0.62; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes metricPulse {
  0%,
  100% { transform: scale(0.82); opacity: 0.58; }
  50% { transform: scale(1.16); opacity: 1; }
}

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

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

.proof-strip div {
  min-height: 236px;
  padding: 28px clamp(20px, 3.4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.proof-strip div.kpi-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.proof-strip div.kpi-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.proof-strip div:nth-child(1) {
  background: linear-gradient(135deg, rgba(112, 222, 228, 0.5) 0%, rgba(74, 155, 239, 0.32) 100%);
}

.proof-strip div:nth-child(2) {
  background: linear-gradient(135deg, rgba(74, 155, 239, 0.58) 0%, rgba(17, 129, 221, 0.44) 100%);
}

.proof-strip div:nth-child(3) {
  background: linear-gradient(135deg, rgba(17, 129, 221, 0.58) 0%, rgba(103, 80, 183, 0.5) 100%);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.proof-strip span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.feature-section,
.everything-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: #ffffff;
}

.everything-section {
  grid-template-columns: minmax(340px, 1.15fr) minmax(0, 0.85fr);
  background: #f8fbff;
}

.section-copy p,
.section-heading p,
.value-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #273750;
  font-weight: 650;
}

.feature-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  content: "";
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(8, 160, 69, 0.12);
}

.product-frame,
.home-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid #cddae8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-frame img,
.home-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.feature-section {
  padding-bottom: clamp(42px, 6vw, 78px);
}

.flow-section {
  position: relative;
  padding: clamp(44px, 6vw, 76px) clamp(20px, 5vw, 74px) clamp(64px, 8vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 32%, rgba(85, 203, 220, 0.14), transparent 26%),
    radial-gradient(circle at 86% 68%, rgba(103, 80, 183, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 42%, #f9f7ff 100%);
}

.flow-section::before {
  position: absolute;
  inset: 18px 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(85, 203, 220, 0.28), rgba(103, 80, 183, 0.22), transparent);
}

.flow-intro {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.flow-intro h2 {
  max-width: none;
  margin-top: 10px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
}

.flow-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.flow-track {
  position: relative;
  z-index: 1;
  height: clamp(260px, 25vw, 330px);
  min-width: 100%;
  margin-inline: auto;
  padding: 8px 0 36px;
}

.flow-step {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  animation: flowOrbit 13s ease-in-out infinite;
  will-change: transform, opacity;
}

.flow-circle {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: clamp(154px, 15vw, 210px);
  aspect-ratio: 1;
  padding: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96) 44%, rgba(224, 232, 242, 0.94) 72%),
    #ffffff;
  box-shadow:
    inset -13px -16px 26px rgba(7, 20, 45, 0.12),
    inset 14px 14px 22px rgba(255, 255, 255, 0.9),
    0 18px 36px rgba(7, 20, 45, 0.18);
  animation: flowFloat 4.8s ease-in-out infinite;
}

.flow-circle h3 {
  margin: 0;
  color: #172744;
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  line-height: 1.18;
}

.flow-circle p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  line-height: 1.35;
}

.flow-step:nth-child(2) .flow-circle {
  animation-delay: -1.1s;
}

.flow-step:nth-child(3) .flow-circle {
  animation-delay: -2.2s;
}

.flow-step:nth-child(4) .flow-circle {
  animation-delay: -3.1s;
}

.flow-step:nth-child(5) .flow-circle {
  animation-delay: -4s;
}

.flow-step:nth-child(2) {
  animation-delay: -2.6s;
}

.flow-step:nth-child(3) {
  animation-delay: -5.2s;
}

.flow-step:nth-child(4) {
  animation-delay: -7.8s;
}

.flow-step:nth-child(5) {
  animation-delay: -10.4s;
}

@keyframes flowOrbit {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
  20% {
    opacity: 0.78;
    transform: translate(calc(-50% + clamp(190px, 22vw, 300px)), calc(-50% + 30px)) scale(0.9);
  }
  40% {
    opacity: 0;
    transform: translate(calc(-50% + clamp(330px, 39vw, 520px)), calc(-50% - 4px)) scale(0.78);
  }
  60% {
    opacity: 0;
    transform: translate(calc(-50% - clamp(330px, 39vw, 520px)), calc(-50% - 4px)) scale(0.78);
  }
  80% {
    opacity: 0.78;
    transform: translate(calc(-50% - clamp(190px, 22vw, 300px)), calc(-50% + 30px)) scale(0.9);
  }
}

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

.key-features-section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 74px);
  background:
    linear-gradient(180deg, #eef8fc 0%, #f7fbff 42%, #ffffff 100%);
}

.key-features-heading {
  width: min(900px, 100%);
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.key-features-heading h2 {
  max-width: none;
  margin-top: 10px;
  font-size: clamp(2.2rem, 4.8vw, 5rem);
}

.key-features-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.feature-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1320px, 100%);
  margin-inline: auto;
}

.feature-tile {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(205, 218, 232, 0.92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 12%, rgba(85, 203, 220, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 255, 0.96) 58%, rgba(244, 241, 255, 0.8) 100%);
  box-shadow: 0 18px 46px rgba(7, 20, 45, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-tile:nth-child(2) {
  background:
    radial-gradient(circle at 16% 12%, rgba(74, 155, 239, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 255, 0.96) 60%, rgba(236, 247, 255, 0.84) 100%);
}

.feature-tile:nth-child(3) {
  background:
    radial-gradient(circle at 16% 12%, rgba(103, 80, 183, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 58%, rgba(244, 241, 255, 0.88) 100%);
}

.feature-tile:nth-child(4) {
  background:
    radial-gradient(circle at 16% 12%, rgba(17, 129, 221, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 253, 255, 0.96) 58%, rgba(237, 250, 252, 0.86) 100%);
}

.feature-tile:nth-child(5) {
  background:
    radial-gradient(circle at 16% 12%, rgba(138, 100, 245, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 58%, rgba(246, 242, 255, 0.9) 100%);
}

.feature-tile:hover {
  border-color: rgba(17, 129, 221, 0.36);
  box-shadow: 0 24px 58px rgba(7, 20, 45, 0.14);
  transform: translateY(-6px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 1px solid rgba(85, 203, 220, 0.24);
  border-radius: 14px;
  color: var(--blue);
  background:
    radial-gradient(circle at 28% 22%, rgba(85, 203, 220, 0.22), transparent 42%),
    rgba(255, 255, 255, 0.92);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-tile h3 {
  color: #07142d;
  font-size: clamp(1.22rem, 1.6vw, 1.55rem);
  line-height: 1.16;
}

.feature-tagline {
  margin: 12px 0 0;
  color: var(--blue);
  font-weight: 800;
}

.feature-tile > p:not(.feature-tagline) {
  margin: 18px 0 0;
  color: #273750;
  font-size: 1rem;
}

.plugins-section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 74px);
  background:
    radial-gradient(circle at 18% 18%, rgba(85, 203, 220, 0.13), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(103, 80, 183, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
}

.plugins-heading {
  width: min(940px, 100%);
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.plugins-heading h2 {
  max-width: 920px;
  margin: 10px auto 0;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
}

.plugins-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(1380px, 100%);
  margin-inline: auto;
}

.plugin-card {
  min-height: 280px;
  padding: clamp(22px, 2.1vw, 30px);
  border: 1px solid rgba(205, 218, 232, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 14%, rgba(85, 203, 220, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.92));
  box-shadow: 0 18px 46px rgba(7, 20, 45, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plugin-card:nth-child(2),
.plugin-card:nth-child(5) {
  background:
    radial-gradient(circle at 18% 14%, rgba(74, 155, 239, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 249, 255, 0.92));
}

.plugin-card:nth-child(3) {
  background:
    radial-gradient(circle at 18% 14%, rgba(103, 80, 183, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 255, 0.9));
}

.plugin-card:hover {
  border-color: rgba(17, 129, 221, 0.34);
  box-shadow: 0 24px 58px rgba(7, 20, 45, 0.13);
  transform: translateY(-6px);
}

.plugin-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 1px solid rgba(85, 203, 220, 0.24);
  border-radius: 14px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
}

.plugin-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plugin-card h3 {
  color: #07142d;
  font-size: clamp(1.18rem, 1.5vw, 1.45rem);
}

.plugin-card p {
  margin: 16px 0 0;
  color: #273750;
  font-size: 0.98rem;
}

.intelligence-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 20, 45, 0.96), rgba(19, 42, 72, 0.96)),
    linear-gradient(90deg, rgba(85, 203, 220, 0.18), rgba(103, 80, 183, 0.16));
}

.intelligence-band .eyebrow {
  color: #84e4ee;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 94px);
  align-items: end;
}

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

.section-illustration {
  margin: 0;
}

.section-illustration img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.dark-illustration img {
  filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.26));
}

.hologram-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 228, 238, 0.14);
  border-radius: 8px;
  min-height: clamp(340px, 34vw, 500px);
  background:
    radial-gradient(circle at 50% 74%, rgba(85, 203, 220, 0.26), transparent 24%),
    radial-gradient(circle at 50% 42%, rgba(103, 80, 183, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(6, 13, 28, 0.96), rgba(10, 23, 48, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.hologram-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(132, 228, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 228, 238, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 82%, transparent);
}

.holo-field {
  position: absolute;
  inset: 0;
}

.holo-cluster {
  position: absolute;
  left: 50%;
  top: 37%;
  width: min(52%, 310px);
  aspect-ratio: 1.9;
  border-radius: 50%;
  background-image:
    radial-gradient(circle, rgba(132, 228, 238, 0.9) 0 1.8px, transparent 2.2px),
    radial-gradient(circle, rgba(74, 155, 239, 0.82) 0 1.4px, transparent 1.8px),
    radial-gradient(circle, rgba(183, 198, 214, 0.54) 0 1px, transparent 1.4px);
  background-position: 0 0, 17px 19px, 31px 7px;
  background-size: 25px 25px, 34px 30px, 19px 22px;
  filter:
    drop-shadow(0 0 12px rgba(132, 228, 238, 0.34))
    blur(0.15px);
  opacity: 0.78;
  transform: translate(-50%, -50%);
  mask-image: radial-gradient(ellipse, #000 0 52%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse, #000 0 52%, transparent 74%);
  animation: clusterFloat 5.8s ease-in-out infinite, particleShift 16s linear infinite;
}

.holo-orbit {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(132, 228, 238, 0.36);
  border-radius: 50%;
  transform: translateX(-50%);
}

.orbit-one {
  top: 60%;
  width: 58%;
  height: 15%;
  box-shadow: 0 0 28px rgba(132, 228, 238, 0.22);
  animation: orbitPulse 3.4s ease-in-out infinite;
}

.orbit-two {
  top: 64%;
  width: 42%;
  height: 10%;
  border-color: rgba(74, 155, 239, 0.32);
  animation: orbitPulse 3.4s ease-in-out infinite reverse;
}

.holo-platform {
  position: absolute;
  left: 50%;
  top: 69%;
  width: 62%;
  height: 13%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(255, 255, 255, 0.9), rgba(132, 228, 238, 0.42) 18%, rgba(74, 155, 239, 0.12) 48%, transparent 70%);
  filter: blur(1px) drop-shadow(0 0 28px rgba(132, 228, 238, 0.32));
  transform: translateX(-50%);
  animation: platformGlow 3.8s ease-in-out infinite;
}

.holo-beam {
  position: absolute;
  bottom: 24%;
  width: 14%;
  height: 46%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(132, 228, 238, 0.16), transparent);
  filter: blur(10px);
  transform-origin: bottom;
  animation: beamSway 6s ease-in-out infinite;
}

.beam-one {
  left: 38%;
  transform: skewX(-12deg);
}

.beam-two {
  left: 49%;
  width: 18%;
  background: linear-gradient(180deg, rgba(74, 155, 239, 0.18), transparent);
  animation-delay: -1.8s;
}

.beam-three {
  right: 36%;
  transform: skewX(14deg);
  animation-delay: -3s;
}

.holo-scan {
  position: absolute;
  left: 50%;
  top: 28%;
  width: 54%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(132, 228, 238, 0.9), transparent);
  box-shadow: 0 0 16px rgba(132, 228, 238, 0.42);
  transform: translateX(-50%);
  animation: scanMove 3.2s ease-in-out infinite;
}

@keyframes clusterFloat {
  0%,
  100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.62; }
  50% { transform: translate(-50%, -58%) scale(1.05); opacity: 0.9; }
}

@keyframes particleShift {
  to { background-position: 25px 25px, -17px 49px, 50px -15px; }
}

@keyframes orbitPulse {
  0%,
  100% { opacity: 0.36; scale: 0.96; }
  50% { opacity: 0.86; scale: 1.04; }
}

@keyframes platformGlow {
  0%,
  100% { opacity: 0.5; scale: 0.96 0.9; }
  50% { opacity: 0.95; scale: 1.05 1; }
}

@keyframes beamSway {
  0%,
  100% { opacity: 0.2; translate: 0 0; }
  50% { opacity: 0.54; translate: 0 -12px; }
}

@keyframes scanMove {
  0%,
  100% { opacity: 0; translate: 0 -38px; }
  35%,
  70% { opacity: 0.7; }
  50% { translate: 0 112px; }
}

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

.insight-grid article {
  min-height: 255px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.metric {
  display: block;
  margin-bottom: 44px;
  color: #8ce9ee;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
}

.insight-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.teams-section {
  background: var(--soft-blue);
}

.teams-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
}

.team-lanes {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 50px;
}

.team-lanes div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid #c8ddeb;
  border-radius: 8px;
  background: #ffffff;
}

.team-lanes strong,
.team-lanes span {
  display: block;
}

.team-lanes strong {
  font-size: 1.08rem;
}

.team-lanes span {
  margin-top: 10px;
  color: var(--muted);
}

.phrase-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.phrase-cloud span {
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid #cfd9e6;
  border-radius: 6px;
  color: #22324c;
  background: #ffffff;
  font-weight: 750;
}

.value-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(340px, 1.26fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: #ffffff;
}

.comparison {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 20, 45, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.9fr) minmax(190px, 1fr) minmax(190px, 1fr);
  align-items: stretch;
  min-height: 74px;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row span {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 18px 20px;
  border-left: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.comparison-row span:first-child {
  border-left: 0;
  font-weight: 850;
}

.comparison-row span:last-child {
  color: #053a65;
  background: #eef9fc;
  font-weight: 800;
}

.comparison-head {
  color: #ffffff;
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-head span:last-child {
  color: #ffffff;
  background: #1b8edb;
}

.closing-section {
  padding: clamp(78px, 11vw, 140px) clamp(20px, 10vw, 132px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  color: #ffffff;
  background: linear-gradient(115deg, #1181dd 0%, #6750b7 100%);
}

.closing-section > img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.22));
}

.closing-section .eyebrow {
  color: #e6fbff;
}

.closing-section h2 {
  max-width: 950px;
}

.closing-section .primary-button {
  margin-top: 34px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  box-shadow: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  padding: clamp(74px, 9vw, 120px) clamp(20px, 8vw, 112px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(85, 203, 220, 0.12), transparent 28%),
    linear-gradient(135deg, #f6fbff 0%, #e8f5fb 60%, #d6e9f8 100%);
}

.contact-page-main {
  padding-top: 72px;
}

.contact-page-section {
  min-height: calc(100vh - 72px);
}

.contact-section h1,
.contact-section h2 {
  max-width: 780px;
  margin-top: 10px;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
}

.contact-section p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #20304a;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.contact-info-block {
  display: grid;
  gap: 24px;
  margin-top: clamp(42px, 8vw, 120px);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

.contact-address,
.contact-channel {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 620px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  color: #07142d;
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-address p {
  max-width: none;
  margin: 0;
  color: #07142d;
  font-size: clamp(0.94rem, 1.1vw, 1.06rem);
  font-weight: 520;
  line-height: 1.48;
}

.contact-address strong {
  font-weight: 800;
}

.contact-channel {
  align-items: center;
  color: #07142d;
  font-size: clamp(0.94rem, 1.08vw, 1.04rem);
  font-weight: 700;
}

.contact-panel {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(205, 218, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(7, 20, 45, 0.12);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #07142d;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c6d3e1;
  border-radius: 6px;
  padding: 14px 16px;
  color: #07142d;
  background: #ffffff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: max-content;
  min-width: 130px;
  min-height: 50px;
  margin-top: 4px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: #07142d;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.site-footer {
  padding: 28px clamp(20px, 8vw, 112px);
  color: rgba(255, 255, 255, 0.8);
  background: #075174;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom img {
  width: 132px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

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

  .feature-section,
  .everything-section,
  .value-section,
  .section-heading,
  .hero,
  .proof-heading,
  .teams-copy,
  .contact-section,
  .closing-section {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .proof-heading h2 {
    text-align: center;
  }

  .hero-brand-logo,
  .hero-copy,
  .hero-positioning {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .proof-visual,
  .section-illustration,
  .closing-section > img {
    max-width: 520px;
    margin-inline: auto;
  }

  .hologram-visual {
    width: min(100%, 560px);
  }

  .everything-section .home-frame {
    order: 2;
  }

  .everything-section .section-copy {
    order: 1;
  }

  .insight-grid,
  .team-lanes,
  .plugin-grid,
  .feature-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    gap: 12px;
  }

  .mark-split {
    width: clamp(116px, 34vw, 154px);
  }

  .brand img,
  .site-footer img {
    width: 116px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 80vh;
    padding: 84px 20px 42px;
  }

  .hero-content {
    width: min(300px, calc(100vw - 44px));
    max-width: min(300px, calc(100vw - 44px));
  }

  .hero-brand-logo {
    width: min(250px, 68vw);
    margin-bottom: 18px;
  }

  .proof-visual,
  .closing-section > img {
    max-width: 300px;
  }

  .section-illustration img {
    max-height: 300px;
  }

  .hologram-visual {
    min-height: 300px;
  }

  .hero .eyebrow {
    max-width: min(280px, 100%);
    margin-inline: auto;
    font-size: 0.82rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10.5vw, 3.05rem);
  }

  .hero-positioning {
    width: 100%;
    max-width: min(320px, 100%);
    font-size: clamp(1.32rem, 6.7vw, 1.7rem);
  }

  .hero-copy {
    width: 100%;
    max-width: min(280px, 100%);
    font-size: clamp(1rem, 4.4vw, 1.16rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: min(280px, 100%);
    margin-inline: auto;
  }

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

  h2 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

  .proof-strip,
  .insight-grid,
  .team-lanes,
  .plugin-grid,
  .feature-tile-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-block {
    margin-top: 44px;
  }

  .feature-tile {
    min-height: auto;
  }

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

  .flow-section {
    padding-block: 54px;
  }

  .flow-track {
    height: 310px;
    padding: 8px 0;
  }

  .flow-step {
    justify-items: center;
    text-align: center;
  }

  .feature-section,
  .everything-section,
  .value-section {
    grid-template-columns: 1fr;
  }

  .product-frame,
  .home-frame {
    border-radius: 6px;
  }

  .comparison {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    margin-top: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row span {
    padding: 14px 16px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .comparison-row span:first-child {
    border-top: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    display: none;
  }

  .customer-logos {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .flow-step {
    animation: flowOrbit 13s ease-in-out infinite !important;
  }

  .flow-circle {
    animation: flowFloat 4.8s ease-in-out infinite !important;
  }

}
