@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oxanium:wght@600&display=swap");

:root {
  --ink: #231f20;
  --brand-blue: #398bc6;
  --brand-red: #ed1c24;
  --bg: #0b1d2d;
  --navy: #17314a;
  --electric: #398bc6;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.15);
  --line: rgba(255, 255, 255, 0.26);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 16%, rgba(57, 139, 198, 0.32), transparent 30rem),
    radial-gradient(circle at 86% 26%, rgba(237, 28, 36, 0.22), transparent 26rem),
    linear-gradient(135deg, #0b1d2d 0%, #102943 44%, #17314a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(11, 29, 45, 0.78) 0%, rgba(11, 29, 45, 0.46) 45%, rgba(11, 29, 45, 0.1) 100%),
    linear-gradient(180deg, rgba(11, 29, 45, 0.04) 0%, rgba(11, 29, 45, 0.7) 100%),
    linear-gradient(135deg, #0b1d2d 0%, #102943 44%, #17314a 100%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.flow-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: 0.56;
}

.ambient {
  position: fixed;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -2;
}

.ambient-blue {
  left: -12vw;
  top: 18vh;
  background: #398bc6;
}

.ambient-red {
  right: -10vw;
  bottom: 2vh;
  background: #ed1c24;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(11, 29, 45, 0.88), rgba(23, 49, 74, 0.74));
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  flex: 0 0 auto;
  width: 174px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header nav a:hover {
  color: #fff;
  background: rgba(57, 139, 198, 0.14);
  box-shadow: inset 0 0 0 1px rgba(57, 139, 198, 0.2);
}

.site-header nav .nav-cta {
  margin-left: 6px;
  border: 1px solid rgba(237, 28, 36, 0.55);
  background: rgba(237, 28, 36, 0.12);
  color: #fff;
}

.site-header nav .nav-cta:hover {
  background: rgba(237, 28, 36, 0.28);
  box-shadow: 0 0 26px rgba(237, 28, 36, 0.18);
}

.menu-toggle {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-full {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 170px max(22px, calc((100vw - 1180px) / 2)) 58px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: saturate(1.18) brightness(1.12);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(57, 139, 198, 0.24), transparent 44%),
    linear-gradient(90deg, rgba(11, 29, 45, 0.9) 0%, rgba(11, 29, 45, 0.62) 42%, rgba(11, 29, 45, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 29, 45, 0.04) 0%, rgba(11, 29, 45, 0.36) 52%, rgba(11, 29, 45, 0.86) 86%, #0b1d2d 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background:
    radial-gradient(ellipse at 50% 100%, #0b1d2d 0%, rgba(11, 29, 45, 0.86) 44%, rgba(11, 29, 45, 0) 78%),
    linear-gradient(180deg, rgba(11, 29, 45, 0), rgba(11, 29, 45, 0.62) 48%, #0b1d2d 100%);
  backdrop-filter: blur(14px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 34%, #000 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--electric);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

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

h1,
h2,
h3,
.product-logo-text {
  font-family: "Oxanium", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.9vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.42rem, 2.5vw, 2.5rem);
  line-height: 1;
  margin-bottom: 18px;
}

.lead {
  max-width: 680px;
  color: #fff;
  font-size: clamp(1.18rem, 2.1vw, 1.75rem);
  line-height: 1.28;
}

.hero-slogan {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  min-height: 40px;
  margin: 0 0 18px;
  padding: 9px 15px;
  border: 1px solid rgba(237, 28, 36, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.2), rgba(57, 139, 198, 0.08)),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 750;
  box-shadow: 0 14px 34px rgba(237, 28, 36, 0.16);
}

.intro,
.section-heading p,
.product-copy p,
.final-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.72;
}

.intro {
  max-width: 720px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.cta-row.center {
  justify-content: center;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(237, 28, 36, 0.42);
  border-radius: 8px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.18), rgba(57, 139, 198, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(237, 28, 36, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 28, 36, 0.72);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.28), rgba(57, 139, 198, 0.12)),
    rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 18px 42px rgba(237, 28, 36, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.button-primary {
  border-color: rgba(237, 28, 36, 0.5);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover {
  color: #fff;
  border-color: rgba(237, 28, 36, 0.62);
}

.button-small {
  min-height: 44px;
  margin-top: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 10px 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.text-link:hover {
  color: #fff;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: min(590px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 42%),
    radial-gradient(circle, rgba(57, 139, 198, 0.22), transparent 60%),
    conic-gradient(from 130deg, rgba(57, 139, 198, 0.42), rgba(237, 28, 36, 0.4), rgba(57, 139, 198, 0.42));
  filter: blur(3px);
  animation: pulseRing 4.2s ease-in-out infinite;
}

.hero-stage::after {
  content: "";
  position: absolute;
  width: min(660px, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(237, 28, 36, 0.42) 42% 43%, transparent 43%),
    linear-gradient(0deg, transparent 0 48%, rgba(57, 139, 198, 0.34) 48% 49%, transparent 49%);
  opacity: 0.68;
  animation: techOrbit 10s linear infinite;
}

.hero-product {
  position: relative;
  z-index: 1;
  width: min(570px, 90vw);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  transform: rotate(-2deg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(237, 28, 36, 0.18);
  animation: productFloat 4.8s ease-in-out infinite;
}

.glass {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.product-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(57, 139, 198, 0.34);
  border-radius: 999px;
  background: rgba(57, 139, 198, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  animation: bounce 1.8s ease-in-out infinite;
  z-index: 2;
}

.content-section {
  position: relative;
  padding: 86px max(22px, calc((100vw - 1180px) / 2));
  scroll-margin-top: 130px;
}

#why,
.applications {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(57, 139, 198, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(35, 31, 32, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 10% 18%, rgba(57, 139, 198, 0.16), transparent 18rem),
    radial-gradient(circle at 90% 22%, rgba(237, 28, 36, 0.1), transparent 18rem),
    #fff;
  background-size: 88px 88px, 88px 88px, auto, auto, auto;
  overflow: hidden;
}

#why::before,
.applications::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(237, 28, 36, 0.08) 46% 47%, transparent 47%),
    linear-gradient(45deg, transparent 0 52%, rgba(57, 139, 198, 0.08) 52% 53%, transparent 53%);
  background-size: 260px 260px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0%, transparent 68%);
}

#why > *,
.applications > * {
  position: relative;
  z-index: 1;
}

#why .section-heading p,
#why .feature-card p,
.applications .section-heading p {
  color: rgba(35, 31, 32, 0.7);
}

#why .feature-card p {
  position: relative;
  padding-left: 22px;
}

#why .feature-card p::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 11px 0 0 rgba(57, 139, 198, 0.75);
}

#why .eyebrow {
  color: var(--brand-red);
}

#why .section-heading::after,
.applications .section-heading::after {
  box-shadow: none;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
  box-shadow: 0 0 22px rgba(237, 28, 36, 0.22);
}

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

.feature-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 252, 0.82)),
    #fff;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

#why .feature-card {
  border-color: rgba(35, 31, 32, 0.1);
  background:
    linear-gradient(135deg, rgba(57, 139, 198, 0.08), transparent 38%),
    linear-gradient(145deg, #fff, #f2f6fa);
  box-shadow: 0 18px 42px rgba(15, 34, 53, 0.1);
}

#why .feature-card:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.08), transparent 42%),
    linear-gradient(145deg, #ffffff, #eef4f9);
}

.feature-card:hover,
.product-panel:hover,
.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 28, 36, 0.34);
  background: rgba(255, 255, 255, 0.15);
}

#why .feature-card:hover,
.applications .app-card:hover {
  background:
    linear-gradient(135deg, rgba(57, 139, 198, 0.1), rgba(237, 28, 36, 0.06)),
    #fff;
}

.feature-wide {
  grid-column: 1 / -1;
  min-height: 160px;
}

.feature-card h3 {
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.products-section {
  padding-top: 56px;
}

.sticky-heading {
  position: relative;
  top: auto;
  z-index: 1;
}

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

.product-panel {
  position: relative;
  top: auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.11)),
    rgba(255, 255, 255, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(237, 28, 36, 0.16) 34%, rgba(57, 139, 198, 0.1) 43%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 680ms ease;
}

.product-panel:hover::before {
  transform: translateX(130%);
}

.product-panel:nth-child(2),
.product-panel:nth-child(3),
.product-panel:nth-child(4),
.product-panel:nth-child(5) {
  top: auto;
}

.product-visual {
  position: relative;
  min-height: 190px;
  border-radius: 8px;
  background: #fff !important;
  overflow: hidden;
  border: 1px solid #fff;
  box-shadow: none;
}

.product-visual img {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  filter: none;
  transition: transform 320ms ease;
}

.product-panel:hover .product-visual img {
  transform: scale(1.035) translateY(-4px);
}

html.js .product-panel.is-visible .product-visual img {
  animation: miniFloat 6s ease-in-out infinite;
}

.product-panel:nth-child(2) .product-visual img { animation-delay: 0.5s; }
.product-panel:nth-child(3) .product-visual img { animation-delay: 1s; }
.product-panel:nth-child(4) .product-visual img { animation-delay: 1.5s; }
.product-panel:nth-child(5) .product-visual img { animation-delay: 2s; }

.product-logo {
  width: min(118px, 64%);
  height: 28px;
  margin: 16px auto 8px;
  object-fit: contain;
  object-position: center;
}

.product-logo-text {
  display: inline-flex;
  width: max-content;
  align-items: center;
  height: 24px;
  margin: 16px auto 8px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(237, 28, 36, 0.24);
}

.product-logo-text::after {
  content: "";
  width: 32px;
  height: 12px;
  margin-left: 8px;
  background:
    linear-gradient(135deg, transparent 0 28%, #398bc6 28% 54%, transparent 54%),
    linear-gradient(135deg, transparent 36%, #ed1c24 36% 64%, transparent 64%);
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-copy .eyebrow {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.product-copy h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.product-copy p {
  min-height: 98px;
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: none;
}

.xwave,
.xtreme,
.xcompaq,
.apm {
  background-color: #fff !important;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.product-copy .button-small {
  width: 100%;
  margin-top: auto;
  color: #071320;
  border-color: rgba(237, 28, 36, 0.48);
}

.product-copy .text-link {
  justify-content: center;
  min-height: 34px;
  margin: 6px 0 0;
  font-size: 0.86rem;
}

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

.app-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 8px;
  text-align: center;
}

.applications .app-card {
  border-color: rgba(35, 31, 32, 0.1);
  background:
    linear-gradient(135deg, #fff, #f4f7fb),
    #fff;
  box-shadow: 0 14px 34px rgba(15, 34, 53, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.app-card span {
  font-weight: 700;
  line-height: 1.2;
}

.final-cta {
  min-height: auto;
  padding-top: 52px;
  scroll-margin-top: 130px;
}

.final-card {
  width: min(740px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 2.8vw, 32px);
  border-radius: 8px;
  text-align: center;
}

.final-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  text-align: left;
}

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

.lead-form span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
}

.form-wide {
  grid-column: 1 / -1;
}

.captcha-field {
  grid-column: span 1;
}

.form-trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  text-align: center;
}

.form-status.is-error {
  color: #ffb7b7;
}

.lead-form .button-primary {
  min-height: 46px;
  border-color: rgba(237, 28, 36, 0.72);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.12), rgba(57, 139, 198, 0.06)),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(237, 28, 36, 0.18), 0 12px 30px rgba(237, 28, 36, 0.12);
}

.lead-form .button-primary:hover {
  border-color: var(--brand-red);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.2), rgba(57, 139, 198, 0.08)),
    rgba(255, 255, 255, 0.08);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(11, 29, 45, 0.66);
  color: #fff;
  font: inherit;
  padding: 9px 12px;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 72px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(57, 139, 198, 0.65);
  box-shadow: 0 0 0 4px rgba(57, 139, 198, 0.12);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 22px 46px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer img {
  width: 150px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.site-footer a {
  color: #fff;
  font-weight: 700;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 9px); }
}

@keyframes heroDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.4%, -1%, 0); }
}

@keyframes productFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0) scale(1); }
  45% { transform: rotate(1deg) translateY(-18px) scale(1.035); }
  70% { transform: rotate(-0.6deg) translateY(-8px) scale(1.015); }
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.72; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes techOrbit {
  from { transform: rotate(0deg) scale(0.96); }
  to { transform: rotate(360deg) scale(0.96); }
}

@keyframes miniFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.018); }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero-grid,
  .product-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .application-grid,
  .sticky-heading,
  .product-panel,
  .product-panel:nth-child(n) {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: fixed;
    top: 10px;
    width: calc(100% - 18px);
    align-items: center;
    padding: 10px;
  }

  .brand {
    width: 132px;
    padding: 6px 8px;
  }

  .brand img {
    width: 100%;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(57, 139, 198, 0.38);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

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

  .site-header nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(23, 49, 74, 0.98), rgba(11, 29, 45, 0.98)),
      #0b1d2d;
    backdrop-filter: blur(26px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header nav a {
    justify-content: center;
    min-height: 48px;
    padding: 13px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    font-size: 0.92rem;
  }

  .site-header nav .nav-cta {
    margin-left: 0;
    border-color: rgba(237, 28, 36, 0.58);
    background: rgba(237, 28, 36, 0.16);
  }

  .section-full,
  .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .content-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .hero {
    padding-top: 160px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .hero-stage {
    min-height: 330px;
  }

  .hero-stage::before {
    width: min(430px, 92vw);
  }

  .hero-stage::after {
    width: min(470px, 96vw);
  }

  .hero-product {
    width: min(390px, 92vw);
    padding: 12px;
  }

  .feature-grid,
  .application-grid,
  .lead-form,
  .product-stack {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card,
  .feature-wide {
    min-height: auto;
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 1.22rem;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 1rem;
    line-height: 1.48;
  }

  .feature-wide {
    grid-column: auto;
  }

  .captcha-field {
    grid-column: 1;
  }

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

  .product-visual {
    min-height: 260px;
    background: #fff;
  }

  .product-logo {
    width: min(132px, 46vw);
    max-width: 58%;
    height: 30px;
    margin: 18px auto 8px;
  }

  .product-logo-text {
    max-width: none;
    width: max-content;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

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