:root {
  color-scheme: light dark;
  --bg: #f5f6fb;
  --bg-soft: #eff2fb;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --text: #171923;
  --muted: #5b6276;
  --line: rgba(23, 25, 35, 0.12);
  --accent: #0071e3;
  --accent-2: #33a5ff;
  --ok: #0f8b42;
  --shadow: 0 24px 70px rgba(37, 49, 88, 0.16);
  --radius-xl: clamp(1.1rem, 2.2vw, 1.8rem);
  --radius-lg: 1rem;
  --scroll-tone: 0;
  --cursor-x: 50vw;
  --cursor-y: 35vh;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #090d19;
    --bg-soft: #10172a;
    --surface: rgba(19, 28, 50, 0.55);
    --surface-strong: rgba(16, 24, 43, 0.78);
    --text: #f5f8ff;
    --muted: #b6c0d8;
    --line: rgba(181, 196, 231, 0.2);
    --accent: #56b6ff;
    --accent-2: #7de3ff;
    --ok: #7fffbb;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 6.8rem;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(900px 500px at -5% -10%, rgba(75, 158, 255, 0.18), transparent 64%),
    radial-gradient(800px 450px at 105% 0%, rgba(115, 236, 255, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  background-size: auto, auto, 100% 220%;
  animation: bgDrift 18s ease-in-out infinite alternate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: var(--scroll-tone);
  transition: opacity 0.45s ease;
  background:
    radial-gradient(1000px 620px at 20% 15%, rgba(15, 24, 56, 0.58), transparent 68%),
    radial-gradient(900px 520px at 78% 88%, rgba(8, 16, 44, 0.62), transparent 62%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(440px 280px at var(--cursor-x) var(--cursor-y), rgba(86, 182, 255, 0.16), transparent 65%),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      transparent 2px 22px
    );
  transition: opacity 0.35s ease;
}

.skip-link {
  position: fixed;
  left: 0.8rem;
  top: 0.8rem;
  z-index: 200;
  border-radius: 0.65rem;
  padding: 0.45rem 0.7rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

@media (prefers-color-scheme: dark) {
  body::before {
    background:
      radial-gradient(1000px 620px at 18% 12%, rgba(116, 179, 255, 0.2), transparent 68%),
      radial-gradient(900px 520px at 82% 86%, rgba(124, 242, 255, 0.15), transparent 64%);
  }
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
  animation: floatAmbient 14s ease-in-out infinite;
}

.ambient--one {
  width: 430px;
  height: 430px;
  top: -120px;
  right: -120px;
  background: rgba(73, 149, 255, 0.28);
}

.ambient--two {
  width: 370px;
  height: 370px;
  bottom: -130px;
  left: -110px;
  background: rgba(66, 208, 235, 0.22);
  animation-delay: 2.5s;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 120;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(0, 113, 227, 0.5);
}

.header,
main,
.footer {
  width: min(1160px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0.85rem;
  z-index: 90;
  margin-top: 0.8rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.3);
  box-shadow: 0 20px 60px rgba(8, 18, 46, 0.22);
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

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

.logo__picture {
  display: block;
  line-height: 0;
}

.logo__image {
  display: block;
  width: auto;
  height: 42px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  width: 2.7rem;
  height: 2.36rem;
  border-radius: 0.76rem;
  padding: 0.46rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle span + span {
  margin-top: 0.33rem;
}

.nav {
  display: flex;
  gap: 0.72rem;
  align-items: center;
}

.nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 0.15rem 0.08rem;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0.2);
  transform-origin: left center;
  opacity: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

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

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: 999px;
  min-width: 3rem;
  padding: 0.35rem 0.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 70%, white 30%);
  outline-offset: 2px;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.35);
}

.section {
  padding: clamp(2.9rem, 7vw, 5.8rem) 0;
}

.hero {
  padding: clamp(2.3rem, 6vw, 4.2rem) 0 2.4rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 7.2vw, 5.3rem);
  letter-spacing: -0.02em;
  max-width: 13ch;
  margin-inline: auto;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.95em, 0) scale(0.98);
  filter: blur(2px);
  animation: wordRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero__lead {
  margin: 1.1rem auto 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.9vw, 1.26rem);
}

.hero__actions {
  margin-top: 1.7rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.28rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px -30%;
  width: 30%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-140%) skewX(-20deg);
  transition: transform 0.65s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(500%) skewX(-20deg);
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(0, 113, 227, 0.32);
}

.btn--ghost {
  color: var(--text);
  background: var(--surface-strong);
  border-color: var(--line);
}

.hero__glass {
  margin-top: 2.3rem;
  padding: 0.95rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  animation: floatPanel 8s ease-in-out infinite;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12));
}

.hero__screens {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.7rem;
  align-items: start;
}

.hero__screens img {
  width: 100%;
  height: clamp(280px, 37vw, 470px);
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-xl) - 0.6rem);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.2);
  animation: mediaBreath 11s ease-in-out infinite;
}

.hero__screens img:nth-child(2) {
  margin-top: 0;
  animation-delay: 0.6s;
}

.hero__badges {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero__badges span {
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  font-weight: 700;
  color: var(--muted);
  animation: badgePulse 5s ease-in-out infinite;
}

.hero__badges span:nth-child(2) {
  animation-delay: 0.8s;
}

.hero__badges span:nth-child(3) {
  animation-delay: 1.6s;
}

.section__head h2 {
  font-size: clamp(1.7rem, 4.4vw, 3.2rem);
  max-width: 18ch;
}

.section__lead {
  margin: 0.85rem 0 0;
  max-width: 64ch;
  color: var(--muted);
  font-weight: 600;
}

.section--grid .section__head {
  margin-bottom: 1.2rem;
}

.section--solutions .section__head {
  margin-bottom: 1.1rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.solution-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 0.7rem;
}

.solution-card__kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

.solution-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.solution-points {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.solution-points li::marker {
  color: var(--accent);
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.solution-actions .btn {
  justify-self: start;
}

.section--solutions {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) clamp(0.9rem, 2.2vw, 1.2rem);
  border-radius: calc(var(--radius-xl) + 0.3rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(100% 160% at 0% 0%, rgba(0, 113, 227, 0.09), transparent 58%),
    radial-gradient(80% 120% at 100% 100%, rgba(51, 165, 255, 0.1), transparent 65%),
    var(--surface);
}

.section--solutions .section__head h2 {
  max-width: 14ch;
}

.solutions-showcase {
  display: grid;
  gap: 1rem;
}

.solution-panel {
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border-radius: calc(var(--radius-lg) + 0.2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5)),
    var(--surface);
  display: grid;
  gap: 0.95rem;
}

.solution-panel__head {
  display: grid;
  gap: 0.55rem;
}

.solution-panel__head h3 {
  font-size: clamp(1.6rem, 2.9vw, 2.3rem);
  letter-spacing: -0.02em;
}

.solution-panel__head p {
  max-width: 68ch;
  margin: 0;
}

.solution-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.solution-kpi {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--surface-strong);
  padding: 0.7rem 0.8rem;
  display: grid;
  gap: 0.22rem;
}

.solution-kpi strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.solution-kpi span {
  color: var(--muted);
  font-size: 0.92rem;
}

.solution-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.8rem;
}

.solution-block {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--surface-strong) 80%, transparent);
  padding: 0.75rem 0.8rem;
}

.solution-block h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.solution-block p {
  margin: 0.45rem 0 0;
}

.solution-panel--vennue {
  border-color: rgba(0, 113, 227, 0.3);
}

.solution-panel--sga {
  border-color: rgba(0, 113, 227, 0.2);
}

.section--capabilities {
  margin-top: 1.2rem;
}

.cap-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.cap-card {
  padding: 0.9rem;
  border-radius: 0.95rem;
}

.cap-card h3 {
  font-size: 1.08rem;
}

.cap-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product {
  padding: 0.78rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.16));
}

.product img {
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
  border-radius: 0.8rem;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product:hover img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

[data-tilt].is-tilting {
  box-shadow: 0 24px 54px rgba(0, 113, 227, 0.16), var(--shadow);
}

.product h3 {
  margin-top: 0.85rem;
  font-size: 1.2rem;
}

.product p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.section--workflow {
  padding-top: 1rem;
}

.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.workflow__media {
  position: relative;
  top: 0;
  padding: 0.65rem;
  border-radius: var(--radius-xl);
}

.workflow__media img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 0.4rem);
  min-height: 480px;
  object-fit: cover;
}

.workflow__overlay {
  margin-top: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.75rem;
  background: var(--surface-strong);
}

.workflow__overlay strong {
  font-family: "Sora", sans-serif;
}

.workflow__overlay p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.workflow__steps {
  display: grid;
  gap: 0.85rem;
}

.step {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.25), transparent 75%);
  transform: translateX(-120%);
  animation: stepSweep 7s linear infinite;
  pointer-events: none;
}

.step.is-current {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(0, 113, 227, 0.45);
  box-shadow: 0 18px 40px rgba(0, 113, 227, 0.17);
}

.step__index {
  margin: 0 0 0.3rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.step p:last-child {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.chips {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip {
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  font-weight: 700;
  animation: chipFloat 7s ease-in-out infinite;
}

.chip:nth-child(2n) {
  animation-delay: 0.8s;
}

.chip:nth-child(3n) {
  animation-delay: 1.6s;
}

.contact {
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 2.7vw, 1.9rem);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact__intro p:last-of-type {
  color: var(--muted);
}

.contact__quick-actions {
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

/* Safety guard: hide stale cached email quick-action buttons if old HTML is served */
.contact__quick-actions a[href^="mailto:"] {
  display: none !important;
}

.btn--mini {
  padding: 0.56rem 0.92rem;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .contact__quick-actions .btn {
    width: 100%;
  }
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.72rem;
}

.lead-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.72rem;
  padding: 0.7rem 0.8rem;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
}

.lead-form input:focus-visible,
.lead-form textarea:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 52%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form__full {
  grid-column: 1 / -1;
}

.lead-form__note,
.lead-form__status {
  margin: 0;
  color: var(--muted);
}

.lead-form__status {
  min-height: 1.2em;
  color: var(--ok);
  font-weight: 700;
}

.glass {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.glass:hover {
  border-color: rgba(0, 113, 227, 0.32);
  box-shadow: 0 22px 56px rgba(17, 44, 104, 0.18), var(--shadow);
}

@media (prefers-color-scheme: dark) {
  .hero__glass,
  .product {
    background: linear-gradient(145deg, rgba(35, 52, 89, 0.56), rgba(23, 33, 61, 0.35));
  }
}

.footer {
  padding: 0.8rem 0 2rem;
}

.footer p {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

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

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

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

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

  .solution-kpis,
  .solution-split {
    grid-template-columns: 1fr;
  }

  .solutions-grid,
  .product-grid,
  .hero__badges,
  .contact {
    grid-template-columns: 1fr 1fr;
  }

  .workflow,
  .contact {
    grid-template-columns: 1fr;
  }

  .workflow__media {
    position: relative;
    top: 0;
  }
}

@media (max-width: 1140px) {
  .header,
  main,
  .footer {
    width: min(1160px, calc(100% - 1.4rem));
  }

  .logo__image {
    height: 38px;
  }

  .nav {
    gap: 0.5rem;
  }

  .nav a {
    font-size: 0.87rem;
  }
}

@media (max-width: 920px) {
  .header {
    border-radius: 1rem;
    gap: 0.75rem;
    overflow: visible;
  }

  .header__menu {
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .logo__image {
    height: 36px;
  }

  .lang-toggle {
    margin: 0;
  }

  .nav {
    width: auto;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0;
    margin: 0;
    border-radius: 0.85rem;
    border: 0 solid var(--line);
    background: var(--surface-strong);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  }

  .nav a {
    padding: 0.65rem 0.72rem;
    border-radius: 0.62rem;
  }

  .nav a::after {
    bottom: 0.35rem;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(0, 113, 227, 0.1);
  }

  .header.menu-open .nav {
    max-height: 280px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    padding: 0.45rem;
    border-width: 1px;
    transition-delay: 0s, 0s, 0s, 0s;
  }

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

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

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

@media (max-width: 760px) {
  .product-grid,
  .solutions-grid,
  .cap-grid,
  .hero__badges,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .solution-actions .btn {
    width: 100%;
  }

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

  .hero__screens img:nth-child(2) {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero__title .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .chip,
  .hero__screens img,
  body {
    animation: none !important;
  }
}

@keyframes floatAmbient {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-16px) scale(1.06);
  }
}

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

@keyframes bgDrift {
  0% {
    background-position: 0 0, 100% 0, 0 0;
  }
  100% {
    background-position: -2% 3%, 102% -4%, 0 100%;
  }
}

@keyframes mediaBreath {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(1.018);
    filter: saturate(1.08);
  }
}

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

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(0, 113, 227, 0);
  }
  50% {
    box-shadow: 0 8px 18px rgba(0, 113, 227, 0.18);
  }
}

@keyframes stepSweep {
  0% {
    transform: translateX(-120%);
  }
  55%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes wordRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0.95em, 0) scale(0.98);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}
