:root {
  --black: #0a0a0a;
  --black-2: #1d1d1f;
  --gray-1: #6e6e73;
  --gray-2: #86868b;
  --gray-3: #e8e8ed;
  --gray-4: #f5f5f7;
  --white: #ffffff;
  --blue: #0071e3;

  --bg: #ffffff;
  --bg-soft: var(--gray-4);
  --surface: rgba(255, 255, 255, 0.78);
  --text: var(--black-2);
  --muted: var(--gray-1);
  --muted-2: var(--gray-2);
  --border: rgba(10, 10, 10, 0.12);
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.06);

  --radius-lg: 18px;
  --radius-md: 12px;

  --container: 1200px;
  --section-pad: 120px;

  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter",
    ui-sans-serif, system-ui, sans-serif;

  --ls-tight: -0.04em;
  --ls-title: -0.03em;
  --ls-body: -0.02em;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 4px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.045);
  --shadow-card-hover: 0 22px 56px rgba(0, 0, 0, 0.11),
    0 0 0 1px rgba(0, 113, 227, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: var(--ls-body);
  color: var(--text);
  background: var(--bg);
  padding-top: var(--topbar-h, 72px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  user-select: text;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% -30%, rgba(0, 113, 227, 0.075), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 40%, rgba(0, 113, 227, 0.04), transparent 52%),
    radial-gradient(ellipse 45% 40% at 0% 75%, rgba(0, 113, 227, 0.035), transparent 50%);
  animation: pageAmbient 28s ease-in-out infinite alternate;
}

@keyframes pageAmbient {
  from {
    opacity: 0.85;
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: scale(1.03) translate3d(1%, -0.5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
    opacity: 0.92;
    transform: none;
  }
}

a[href],
button,
.site-footer__submit,
.product-card__link,
.scroll-indicator,
.back-to-top {
  cursor: pointer;
}

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

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

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

::selection {
  background: rgba(0, 113, 227, 0.18);
}

:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.5);
  outline-offset: 3px;
  border-radius: 10px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-150%);
  transition: transform 220ms var(--ease);
  z-index: 9999;
}

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

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 45;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  display: grid;
  place-items: center;
  background: #1d1d1f;
  color: #ffffff;
  font-size: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 280ms var(--ease), transform 280ms var(--ease),
    background 220ms var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #0071e3;
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .back-to-top {
    transition: none;
  }
}

.display {
  font-family: var(--font-display);
  letter-spacing: var(--ls-tight);
  font-weight: 600;
  line-height: 0.98;
  margin: 0;
  font-size: clamp(56px, 5.2vw, 78px);
}

.h2 {
  font-family: var(--font-display);
  letter-spacing: var(--ls-title);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 48px);
}

.h3 {
  font-family: var(--font-display);
  letter-spacing: var(--ls-title);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  font-size: 22px;
}

.lead {
  margin: 16px 0 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 19px;
}

.subhead {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
}

.body {
  margin: 10px 0 0;
  color: var(--muted);
}

.fineprint {
  color: var(--muted-2);
  font-size: 13px;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.04);
  border: 1px solid rgba(10, 10, 10, 0.06);
  color: var(--black-2);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 220ms var(--ease), background 220ms var(--ease),
    border-color 220ms var(--ease), box-shadow 220ms var(--ease),
    color 220ms var(--ease);
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.18);
}

.btn--primary:hover {
  box-shadow: 0 14px 38px rgba(0, 113, 227, 0.22);
}

.btn--ghost {
  background: rgba(10, 10, 10, 0.03);
  border-color: rgba(10, 10, 10, 0.08);
  color: var(--black-2);
}

.btn--ghost:hover {
  background: rgba(10, 10, 10, 0.05);
  border-color: rgba(10, 10, 10, 0.12);
}

.btn--dark {
  background: #1d1d1f;
  color: #ffffff;
  height: 44px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.btn--dark:hover {
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 113, 227, 0.18);
}

.btn--outline {
  background: transparent;
  border-color: rgba(29, 29, 31, 0.25);
  color: #1d1d1f;
  height: 44px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.btn--outline:hover {
  border-color: rgba(0, 113, 227, 0.45);
  color: #0071e3;
  background: rgba(0, 113, 227, 0.06);
}

.btn--navcta {
  height: 38px;
  padding: 8px 18px;
  font-size: 14px;
  letter-spacing: -0.02em;
  font-weight: 600;
  border-radius: 999px;
  background: var(--black-2);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.btn--navcta:hover {
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 113, 227, 0.18);
}

.btn--full {
  width: 100%;
}

.icon-btn {
  height: 44px;
  width: 44px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 220ms var(--ease), border-color 220ms var(--ease),
    transform 220ms var(--ease);
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(10, 10, 10, 0.12);
}

.icon-btn:active {
  transform: scale(0.98);
}

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

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

.list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.list li {
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.9);
}

@media (max-width: 900px) {
  :root {
    --section-pad: 96px;
  }

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

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

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }

  :root {
    --section-pad: 84px;
  }
}

:root {
  --topbar-h: 72px;
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 4px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background 320ms var(--ease-out-soft), box-shadow 320ms var(--ease-out-soft),
    border-color 320ms var(--ease-out-soft), backdrop-filter 320ms var(--ease-out-soft);
}

.topbar.is-scrolled {
  background: #ffffff;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom-color: rgba(0, 113, 227, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.topbar__inner {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  height: clamp(42px, 5.8vw, 56px);
  width: auto;
  max-width: min(56vw, 300px);
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 10px 10px;
  border-radius: 999px;
  transition: color 200ms var(--ease), background 200ms var(--ease);
}

.nav__link:hover {
  background: rgba(0, 113, 227, 0.06);
  color: #0071e3;
}

.nav__link.is-active {
  color: #0071e3;
  background: rgba(0, 113, 227, 0.08);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
}

.nav-overlay__bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
}

.nav-overlay__panel {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.nav-overlay__top {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-overlay__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-overlay__content {
  padding: 34px 0 36px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.nav-overlay__nav {
  display: grid;
  gap: 14px;
  padding-top: 10px;
}

.nav-overlay__link {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: clamp(26px, 6vw, 42px);
  color: #1d1d1f;
  padding: 10px 0;
  border-radius: 14px;
  transition: color 200ms var(--ease);
}

.nav-overlay__link:hover {
  color: #0071e3;
}

.nav-overlay__cta {
  padding-top: 8px;
  max-width: 340px;
}

.nav-overlay.is-open {
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: min(112vh, calc(100vh + 100px));
  display: grid;
  align-items: center;
  padding: 0;
  overflow-x: clip;
  background: var(--bg);
  /* Gri Technology bandından önce beyaz nefes payı — agent kartı iki zeminde kesilmesin */
  margin-bottom: clamp(48px, 8vw, 96px);
}

.hero__bg {
  position: absolute;
  inset: -12%;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(0, 113, 227, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 65% 55% at 50% 18%,
    rgba(0, 113, 227, 0.09) 0%,
    transparent 62%
  );
  animation: heroSheen 22s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroSheen {
  0% {
    opacity: 0.65;
    transform: translate3d(-3%, -2%, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(3%, 2%, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg::after {
    animation: none;
    opacity: 0.82;
    transform: none;
  }
}

.hero__stack {
  position: relative;
  z-index: 1;
  height: calc(100vh - var(--topbar-h));
  min-height: 640px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: center;
  padding: clamp(118px, 11vh, 158px) 0 52px;
  scroll-margin-top: var(--topbar-h);
}

.hero__center {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: 12px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 6px;
  color: #6e6e73;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 0 8px;
  opacity: 1;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0071e3;
  box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.28);
  animation: pulseDot 1.9s var(--ease) infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.26);
  }
  55% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(0, 113, 227, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0);
  }
}

.hero__headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #1d1d1f;
  line-height: 0.98;
  font-size: clamp(42px, 5.8vw, 80px);
}

@media (max-width: 375px) {
  .hero__headline {
    font-size: 38px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__headline {
    font-size: 52px;
  }
}

@media (min-width: 1024px) {
  .hero__headline {
    font-size: clamp(56px, 5.2vw, 80px);
  }
}

.hero__line {
  display: block;
}

.hero__headline .word {
  display: inline-block;
  /* Visible by default; GSAP hides then reveals. If JS fails, title still shows. */
  opacity: 1;
  will-change: transform, opacity;
}

.hero__headline .word + .word {
  margin-left: 0.26em;
}

.hero__sub {
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.5;
  color: #6e6e73;
  max-width: 560px;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.network {
  margin-top: 34px;
  display: grid;
  justify-items: center;
  align-content: start;
}

.network__card {
  width: min(920px, 100%);
  border-radius: 24px;
  padding: 4px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    148deg,
    #f8fafc 0%,
    #e2e8f0 38%,
    #cbd5e1 62%,
    #f1f5f9 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 80px rgba(15, 23, 42, 0.11),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: transform 520ms var(--ease-out-soft), box-shadow 520ms var(--ease-out-soft);
}

@media (hover: hover) and (pointer: fine) {
  .network__card:hover {
    transform: translateY(-5px) scale(1.005);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 36px 100px rgba(15, 23, 42, 0.14),
      0 0 80px rgba(0, 180, 220, 0.09);
  }
}

.network__canvas.network-three {
  position: relative;
  height: clamp(368px, 46vw, 472px);
  isolation: isolate;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 85% at 50% 20%, #0d1924 0%, #05070c 52%, #020308 100%);
}

.network-three__frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.network-three__frame-bar {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 200, 140, 0.35),
    rgba(90, 220, 255, 0.45),
    rgba(255, 200, 140, 0.3),
    transparent
  );
  opacity: 0.65;
}

.network-three__frame-bar--top {
  top: 14px;
}

.network-three__frame-bar--bottom {
  bottom: 14px;
}

.network-three__viewport {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.network-three__viewport canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Three.js CSS2D agent tags */
.network-three__agent-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 6px 9px 7px;
  border-radius: 12px;
  background: rgba(6, 10, 18, 0.82);
  border: 1px solid rgba(180, 230, 255, 0.22);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(0, 200, 255, 0.08);
  white-space: nowrap;
  transform: translateY(2px) scale(0.92);
  transform-origin: center bottom;
}

.network-three__agent-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #f8fafc;
}

.network-three__agent-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180, 210, 230, 0.65);
}

.network-three__hub-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(200, 230, 255, 0.72);
  text-shadow: 0 0 18px rgba(0, 200, 255, 0.35);
  white-space: nowrap;
}

.network-feed {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 14px 20px 18px;
  border-radius: 0 0 22px 22px;
  margin-top: -1px;
  background: linear-gradient(
    180deg,
    rgba(14, 18, 28, 0.78),
    rgba(5, 7, 12, 0.98)
  );
  border: 1px solid rgba(255, 186, 128, 0.14);
  border-top: 1px solid rgba(64, 210, 255, 0.18);
  backdrop-filter: blur(16px);
}

.network-feed__beam {
  display: block;
  height: 2px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(90, 200, 250, 0.55),
    rgba(0, 113, 227, 0.85),
    rgba(90, 200, 250, 0.55),
    transparent
  );
  background-size: 200% 100%;
  animation: beamScan 3.5s linear infinite;
}

@keyframes beamScan {
  to {
    background-position: 200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-feed__beam {
    animation: none;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(90, 200, 250, 0.45),
      transparent
    );
  }
}

.network-feed__text {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: rgba(220, 232, 248, 0.92);
  text-align: center;
}

@media (max-width: 480px) {
  .network__canvas.network-three {
    height: 300px;
  }

  .network-three__agent-name {
    font-size: 10px;
  }

  .network-three__agent-sub {
    font-size: 7px;
  }

  .network-feed__text {
    font-size: 11px;
  }
}

.scroll-indicator {
  justify-self: center;
  margin-top: 28px;
  margin-bottom: clamp(28px, 4vw, 48px);
  height: 46px;
  width: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  color: rgba(29, 29, 31, 0.7);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  animation: scrollIndicatorPulse 2.8s ease-in-out infinite;
  transition: transform 260ms var(--ease-out-soft), background 260ms var(--ease-out-soft),
    border-color 260ms var(--ease-out-soft), color 260ms var(--ease-out-soft),
    box-shadow 260ms var(--ease-out-soft);
}

.scroll-indicator:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 113, 227, 0.35);
  color: #0071e3;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 113, 227, 0.18);
}

.scroll-indicator__arrow {
  animation: bounceArrow 1.35s var(--ease-out-soft) infinite;
}

@keyframes bounceArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes scrollIndicatorPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 0 rgba(0, 113, 227, 0);
  }
  45% {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08), 0 0 0 6px rgba(0, 113, 227, 0.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator {
    animation: none;
  }

  .scroll-indicator__arrow {
    animation: none;
  }
}

/* —— Agentic AI (light / monochrome) —— */
.section--agentic {
  position: relative;
  overflow: clip;
  background: linear-gradient(188deg, #fbfcff 0%, #eef4fc 42%, #fafdff 100%);
}

.section--agentic::before {
  content: '';
  position: absolute;
  inset: -38% -48%;
  background:
    radial-gradient(ellipse 48% 40% at 22% 18%, rgba(56, 189, 248, 0.12), transparent 58%),
    radial-gradient(ellipse 44% 36% at 78% 22%, rgba(2, 132, 199, 0.08), transparent 56%),
    radial-gradient(ellipse 40% 38% at 50% 88%, rgba(52, 211, 153, 0.06), transparent 54%);
  pointer-events: none;
  z-index: 0;
  animation: agenticAmbient 26s ease-in-out infinite alternate;
}

@keyframes agenticAmbient {
  from {
    opacity: 0.82;
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(2%, 2%, 0) scale(1.05);
  }
}

.agentic-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.agentic-scene__mesh {
  position: absolute;
  inset: -5%;
  opacity: 0.32;
  background-image:
    radial-gradient(circle at 20% 24%, rgba(56, 189, 248, 0.14) 0 1px, transparent 1.6px),
    radial-gradient(circle at 68% 18%, rgba(2, 132, 199, 0.12) 0 1px, transparent 1.7px),
    radial-gradient(circle at 40% 76%, rgba(148, 163, 184, 0.1) 0 1px, transparent 1.7px),
    radial-gradient(circle at 86% 64%, rgba(56, 189, 248, 0.1) 0 1px, transparent 1.7px);
  background-size: 220px 220px, 260px 260px, 240px 240px, 280px 280px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  mask-image: radial-gradient(ellipse 78% 72% at 50% 42%, black 18%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 42%, black 18%, transparent 74%);
  animation: agenticMeshDrift 36s linear infinite;
}

@keyframes agenticMeshDrift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 80px 120px, 120px 90px, 90px 140px, 140px 110px;
  }
}

.agentic-scene__beam {
  position: absolute;
  left: -18%;
  top: 22%;
  width: 135%;
  height: 48%;
  background: linear-gradient(
    102deg,
    transparent 0%,
    rgba(56, 189, 248, 0.08) 24%,
    rgba(2, 132, 199, 0.1) 52%,
    rgba(0, 113, 227, 0.06) 76%,
    transparent 100%
  );
  filter: blur(32px);
  transform: rotate(-5deg);
  animation: agenticBeamPulse 15s ease-in-out infinite alternate;
  opacity: 0.88;
}

@keyframes agenticBeamPulse {
  from {
    opacity: 0.62;
    transform: rotate(-5deg) translate3d(-2%, 0, 0);
  }
  to {
    opacity: 0.94;
    transform: rotate(-4deg) translate3d(2%, 1%, 0);
  }
}

.agentic-scene__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.4;
  will-change: transform;
}

.agentic-scene__orb--a {
  width: min(400px, 52vw);
  height: min(400px, 52vw);
  left: -10%;
  top: 6%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.48) 0%, transparent 68%);
}

.agentic-scene__orb--b {
  width: min(340px, 46vw);
  height: min(340px, 46vw);
  right: -8%;
  top: 30%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.24) 0%, transparent 68%);
}

.agentic-scene__orb--c {
  width: min(260px, 38vw);
  height: min(260px, 38vw);
  left: 36%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.32) 0%, transparent 70%);
}

.section--agentic .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .section--agentic::before {
    animation: none;
    opacity: 0.9;
    transform: none;
  }

  .agentic-scene__mesh {
    animation: none;
  }

  .agentic-scene__beam {
    animation: none;
  }

  .agentic__headline-line {
    animation: none;
    background-position: 50% 50%;
  }

  .agentic-telemetry__bar {
    animation: none !important;
    opacity: 0.88;
    transform: scaleY(0.85);
  }

  .section--agentic .agentic-card:hover::after {
    animation: none;
    opacity: 0;
  }
}

.agentic__intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 36px;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.agentic__headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section--agentic .agentic__headline {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.agentic__headline-line {
  display: block;
  color: #0a0a0a;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  animation: none;
}

.agentic__headline-line:last-child {
  font-size: 0.9em;
  letter-spacing: -0.032em;
  opacity: 0.96;
}

@keyframes agenticHeadlineShimmer {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

.agentic__sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.58;
  max-width: 680px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section--agentic .agentic__sub {
  color: #6e6e73;
}

.agentic-telemetry {
  width: min(920px, 100%);
  margin: 0 auto 40px;
  padding: 14px 18px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.88) inset,
    0 12px 36px rgba(0, 113, 227, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  gap: 10px;
}

.agentic-telemetry__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.agentic-telemetry__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
  padding: 4px 2px 0;
}

.agentic-telemetry__bar {
  flex: 1;
  min-width: 4px;
  height: var(--h, 50%);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(
    180deg,
    rgba(56, 189, 248, 0.85) 0%,
    rgba(0, 113, 227, 0.55) 55%,
    rgba(2, 132, 199, 0.32) 100%
  );
  transform-origin: 50% 100%;
  animation: agenticTelemetryBar 2.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes agenticTelemetryBar {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.65;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.agentic-telemetry__ticks {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #94a3b8;
  padding: 0 2px;
}

/* —— Agentic core flow (light, animated) —— */
.agentic-core {
  width: min(1080px, 100%);
  margin: 18px auto 42px;
  text-align: center;
}

.agentic-core__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

.agentic-core__headline {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}

.agentic-core__sub {
  margin: 12px auto 0;
  max-width: 760px;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.6;
}

.agentic-core__flow {
  position: relative;
  margin: 28px auto 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 16px 44px rgba(0, 113, 227, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.agentic-core__rail {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.agentic-core__rail-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.agentic-core__rail-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.55), rgba(56, 189, 248, 0.65));
}

.agentic-step {
  position: relative;
  z-index: 1;
  text-align: left;
  border-radius: 18px;
  padding: 16px 14px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  --accent: #0071e3;
  --accent-soft: rgba(0, 113, 227, 0.16);
  --accent-glow: rgba(0, 113, 227, 0.22);
  overflow: hidden;
  transition: transform 260ms var(--ease-out-soft), box-shadow 260ms var(--ease-out-soft),
    border-color 260ms var(--ease-out-soft);
}

.agentic-step::before {
  content: '';
  position: absolute;
  inset: -40% -30%;
  background: radial-gradient(circle at 30% 20%, var(--accent-soft), transparent 55%);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 300ms var(--ease-out-soft);
  pointer-events: none;
}

/* Per-step accent (avoid purple) */
.agentic-core__flow > article.agentic-step:nth-of-type(1) {
  --accent: #0071e3; /* blue */
  --accent-soft: rgba(0, 113, 227, 0.18);
  --accent-glow: rgba(0, 113, 227, 0.22);
}
.agentic-core__flow > article.agentic-step:nth-of-type(2) {
  --accent: #0ea5e9; /* sky */
  --accent-soft: rgba(14, 165, 233, 0.18);
  --accent-glow: rgba(14, 165, 233, 0.22);
}
.agentic-core__flow > article.agentic-step:nth-of-type(3) {
  --accent: #14b8a6; /* teal */
  --accent-soft: rgba(20, 184, 166, 0.18);
  --accent-glow: rgba(20, 184, 166, 0.22);
}
.agentic-core__flow > article.agentic-step:nth-of-type(4) {
  --accent: #22c55e; /* green */
  --accent-soft: rgba(34, 197, 94, 0.18);
  --accent-glow: rgba(34, 197, 94, 0.22);
}
.agentic-core__flow > article.agentic-step:nth-of-type(5) {
  --accent: #f59e0b; /* amber */
  --accent-soft: rgba(245, 158, 11, 0.18);
  --accent-glow: rgba(245, 158, 11, 0.22);
}

.agentic-step__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0a2540;
  margin-bottom: 10px;
  transition: background 260ms var(--ease-out-soft), border-color 260ms var(--ease-out-soft),
    color 260ms var(--ease-out-soft), transform 260ms var(--ease-out-soft);
}

.agentic-step__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
}

.agentic-step__desc {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}

.agentic-step.is-active {
  border-color: color-mix(in srgb, var(--accent) 26%, rgba(15, 23, 42, 0.06));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 16%, transparent),
    0 22px 64px var(--accent-glow);
  transform: translateY(-2px);
}

.agentic-step.is-active::before {
  opacity: 1;
}

.agentic-step.is-active .agentic-step__icon {
  background: color-mix(in srgb, var(--accent) 14%, rgba(255, 255, 255, 0.9));
  border-color: color-mix(in srgb, var(--accent) 28%, rgba(15, 23, 42, 0.08));
  color: #0a0a0a;
  transform: translateY(-1px);
}

.agentic-step.is-active .agentic-step__desc {
  color: #334155;
}

.agentic-step__arrow {
  display: none;
}

.agentic-core__pill {
  margin: 14px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.agentic-core__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.8);
  box-shadow: 0 0 10px rgba(0, 113, 227, 0.25);
}

.agentic-core__principles {
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.agentic-principle {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px 12px;
  align-items: start;
  padding: 14px 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.agentic-principle__dot {
  margin-top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}

.agentic-principle__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.agentic-principle__desc {
  grid-column: 2;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

@media (max-width: 980px) {
  .agentic-core__flow {
    grid-template-columns: 1fr;
  }

  .agentic-core__rail {
    display: none;
  }

  .agentic-core__principles {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agentic-step,
  .agentic-core__pill {
    transition: none;
  }
}

/* agentic cards removed from markup */
.agentic__cards {
  display: none;
}

.section--agentic .agentic-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  padding: 28px 26px;
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(252, 253, 255, 0.9) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 10px 36px rgba(0, 113, 227, 0.06),
    0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 420ms var(--ease-out-soft), box-shadow 420ms var(--ease-out-soft);
}

.section--agentic .agentic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 95% 75% at 12% 0%,
    color-mix(in srgb, var(--agentic-accent) 22%, transparent),
    transparent 58%
  );
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.section--agentic .agentic-card::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -60%;
  width: 42%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.52),
    transparent
  );
  transform: rotate(16deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 320ms var(--ease-out-soft);
}

.section--agentic .agentic-card:hover::after {
  opacity: 1;
  animation: agenticCardSheen 1.05s var(--ease-out-soft) forwards;
}

@keyframes agenticCardSheen {
  from {
    left: -60%;
  }
  to {
    left: 118%;
  }
}

.section--agentic .agentic-card > * {
  position: relative;
  z-index: 2;
}

.section--agentic .agentic-card:hover {
  border-color: color-mix(in srgb, var(--agentic-accent) 42%, rgba(0, 0, 0, 0.1));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--agentic-accent) 22%, transparent),
    0 0 40px color-mix(in srgb, var(--agentic-accent) 16%, transparent),
    0 18px 48px rgba(0, 0, 0, 0.08);
}

@supports not (background: color-mix(in srgb, red 50%, white)) {
  .section--agentic .agentic-card:hover {
    border-color: var(--agentic-accent);
    box-shadow:
      0 0 36px rgba(56, 189, 248, 0.15),
      0 18px 48px rgba(0, 0, 0, 0.08);
  }
}

.section--agentic .agentic-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 20px;
  color: var(--agentic-accent);
  background: color-mix(in srgb, var(--agentic-accent) 14%, white);
  border: 1px solid color-mix(in srgb, var(--agentic-accent) 28%, transparent);
  box-shadow: 0 4px 18px color-mix(in srgb, var(--agentic-accent) 14%, transparent);
  transition: transform 420ms var(--ease-out-soft), box-shadow 420ms var(--ease-out-soft);
}

.section--agentic .agentic-card:hover .agentic-card__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--agentic-accent) 22%, transparent);
}

.agentic-card__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section--agentic .agentic-card__title {
  color: #1d1d1f;
}

.agentic-card__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.section--agentic .agentic-card__body {
  color: #6e6e73;
}

.agentic-card__body + .agentic-card__body {
  margin-top: 12px;
}

.agentic-data {
  display: grid;
  gap: 22px;
}

.agentic-data__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.agentic-data__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.agentic-data__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #64748b;
}

.agentic-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 18px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95) inset,
    0 14px 44px rgba(0, 113, 227, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.agentic-stats--dense {
  gap: 12px;
  padding: 20px 16px 22px;
}

.section--agentic .agentic-stat {
  text-align: center;
  padding: 16px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: border-color 320ms var(--ease-out-soft), background 320ms var(--ease-out-soft),
    box-shadow 320ms var(--ease-out-soft);
}

.section--agentic .agentic-stat:hover {
  background: #ffffff;
  border-color: rgba(0, 113, 227, 0.16);
  box-shadow: 0 8px 26px rgba(0, 113, 227, 0.07);
}

.agentic-stat--compact .agentic-stat__value {
  font-size: clamp(36px, 4.5vw, 46px);
}

.agentic-stat--span {
  grid-column: 1 / -1;
  padding: 18px 20px;
}

.agentic-stat__static-band {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 12px 20px;
}

.agentic-stat__static-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(125deg, #0a2540 0%, #0369a1 54%, #0a2540 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.agentic-stat__static-sep {
  margin: 0 2px;
  opacity: 0.35;
  font-weight: 600;
}

.agentic-stat__static-meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.agentic-stat__desc--static {
  max-width: 520px;
}

.agentic-stat__prefix {
  font-size: 0.42em;
  font-weight: 700;
  margin-right: 2px;
  opacity: 0.85;
}

.agentic-stat__value--tight {
  gap: 0;
}

.agentic-stat__value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-variant-numeric: tabular-nums;
}

.section--agentic .agentic-stat__value {
  background: linear-gradient(135deg, #0a2540 0%, #0369a1 55%, #0a2540 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6));
}

@supports not (-webkit-background-clip: text) {
  .section--agentic .agentic-stat__value {
    color: #0369a1;
    background: none;
    filter: none;
  }

  .agentic-stat__static-value {
    color: #0369a1;
    background: none;
  }
}

.agentic-stat__suffix {
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-left: 1px;
}

.agentic-stat__value--slash .agentic-stat__suffix {
  font-size: 0.42em;
  margin-left: 2px;
  opacity: 0.92;
}

.agentic-stat__desc {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.45;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.section--agentic .agentic-stat__desc {
  color: #64748b;
}

@media (max-width: 980px) {
  .agentic__cards {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .agentic-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 14px;
  }
}

@media (max-width: 520px) {
  .agentic-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .agentic-stat__value {
    font-size: 44px;
  }
}

/* —— AgentScramble platform layer (light, flying particles) —— */
.section--exec {
  position: relative;
  overflow: clip;
  scroll-margin-top: var(--topbar-h);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 44%, #fafafa 100%);
}

.section--agentscramble::before {
  background:
    radial-gradient(ellipse 52% 42% at 18% 18%, rgba(251, 113, 133, 0.12), transparent 62%),
    radial-gradient(ellipse 48% 40% at 88% 72%, rgba(0, 113, 227, 0.1), transparent 58%);
}

.agentscramble__lockup {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.agentscramble__logo-wrap {
  width: clamp(72px, 12vw, 88px);
  height: clamp(72px, 12vw, 88px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(235, 235, 240, 0.92) 42%,
    rgba(200, 200, 208, 0.35) 100%
  );
  border: 1px solid rgba(29, 29, 31, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95) inset,
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.agentscramble__logo {
  width: clamp(44px, 7vw, 56px);
  height: clamp(44px, 7vw, 56px);
  object-fit: contain;
  display: block;
}

.agentscramble__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 7.2vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: none;
  background: linear-gradient(
    168deg,
    #8a8a8e 0%,
    #4a4a4f 8%,
    #1d1d1f 22%,
    #050505 38%,
    #2c2c30 52%,
    #0a0a0a 68%,
    #3d3d42 82%,
    #121214 94%,
    #6e6e73 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 1px rgba(255, 255, 255, 0.35))
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.12));
}

@supports not (-webkit-background-clip: text) {
  .agentscramble__name {
    color: #1d1d1f;
    background: none;
    -webkit-text-fill-color: currentColor;
    filter: none;
  }
}

.agentscramble__label {
  margin: -4px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6e6e73;
}

.section--agentscramble .exec__headline {
  margin-top: 20px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  color: #1d1d1f;
}

.section--exec::before {
  content: '';
  position: absolute;
  inset: -32% -42%;
  background:
    radial-gradient(ellipse 52% 42% at 18% 18%, rgba(0, 113, 227, 0.1), transparent 62%),
    radial-gradient(ellipse 48% 40% at 88% 72%, rgba(20, 184, 166, 0.09), transparent 58%);
  pointer-events: none;
  z-index: 0;
  animation: execAmbient 22s ease-in-out infinite alternate;
}

@keyframes execAmbient {
  from {
    opacity: 0.86;
    transform: translate3d(-1.5%, 0, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(1.5%, 1.5%, 0) scale(1.03);
  }
}

.exec-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.exec-scene__mesh {
  position: absolute;
  inset: -6%;
  opacity: 0.42;
  background-image: radial-gradient(rgba(15, 23, 42, 0.07) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse 72% 65% at 50% 42%, black 18%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 72% 65% at 50% 42%, black 18%, transparent 70%);
  animation: execMeshDrift 42s linear infinite;
}

@keyframes execMeshDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-14px, -10px, 0);
  }
}

.exec-scene__beam {
  position: absolute;
  left: -18%;
  top: 22%;
  width: 130%;
  height: 48%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 113, 227, 0.06) 28%,
    rgba(56, 189, 248, 0.07) 52%,
    rgba(20, 184, 166, 0.05) 78%,
    transparent 100%
  );
  filter: blur(32px);
  transform: rotate(-5deg);
  opacity: 0.82;
  animation: execBeamPulse 16s ease-in-out infinite alternate;
}

@keyframes execBeamPulse {
  from {
    opacity: 0.62;
    transform: rotate(-5deg) translate3d(-2%, 0, 0);
  }
  to {
    opacity: 0.9;
    transform: rotate(-4deg) translate3d(2%, 2%, 0);
  }
}

.exec-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.exec-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  margin-left: -1.5px;
  margin-top: -1.5px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.22);
  box-shadow: 0 0 14px rgba(0, 113, 227, 0.18);
  will-change: transform;
  pointer-events: none;
}

.exec-particle--lg {
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  margin-top: -2.5px;
  background: rgba(0, 113, 227, 0.35);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.22);
}

.exec-streak {
  position: absolute;
  left: -25%;
  width: min(48vw, 560px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 113, 227, 0.18),
    rgba(56, 189, 248, 0.32),
    transparent
  );
  opacity: 0;
  transform: rotate(-9deg);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: execStreakDrift;
  will-change: transform, opacity;
  pointer-events: none;
}

@keyframes execStreakDrift {
  0% {
    transform: translate3d(-20vw, 0, 0) rotate(-9deg);
    opacity: 0;
  }
  12% {
    opacity: 0.55;
  }
  88% {
    opacity: 0.42;
  }
  100% {
    transform: translate3d(125vw, -12vh, 0) rotate(-9deg);
    opacity: 0;
  }
}

.exec__inner {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 9vw, 96px) 0 clamp(64px, 10vw, 112px);
}

.exec__intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.exec__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}

.exec__headline {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #0a0a0a;
}

.exec__headline-line {
  display: block;
}

.exec__sub {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
}

.exec-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  perspective: 1400px;
}

.exec-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 20px;
  padding: 22px 20px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 16px 44px rgba(0, 113, 227, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.92) inset;
  transform-style: preserve-3d;
  transition:
    box-shadow 280ms var(--ease-out-soft),
    border-color 280ms var(--ease-out-soft),
    transform 280ms var(--ease-out-soft);
}

.exec-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 18% 0%,
    color-mix(in srgb, var(--exec-accent) 18%, transparent),
    transparent 58%
  );
  opacity: 0.55;
  pointer-events: none;
}

.exec-card:hover {
  border-color: color-mix(in srgb, var(--exec-accent) 30%, rgba(15, 23, 42, 0.08));
  box-shadow:
    0 22px 60px color-mix(in srgb, var(--exec-accent) 16%, rgba(0, 0, 0, 0.07)),
    0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

.exec-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  min-height: 28px;
}

.exec-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: color-mix(in srgb, var(--exec-accent) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--exec-accent) 34%, rgba(15, 23, 42, 0.06));
}

.exec-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803d;
}

.exec-card__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
}

.exec-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.1vw, 22px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}

.exec-card__lead {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.exec-card__desc {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

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

@media (max-width: 600px) {
  .exec-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--exec::before,
  .exec-scene__mesh,
  .exec-scene__beam {
    animation: none;
    opacity: 0.92;
    transform: none;
  }

  .exec-streak {
    display: none;
  }
}

/* —— Products ecosystem (light / clean) —— */
.section--products {
  position: relative;
  overflow: clip;
  background: linear-gradient(185deg, #fbfdff 0%, #eef4fc 38%, #f8fafc 72%, #ffffff 100%);
}

.section--products::before {
  content: '';
  position: absolute;
  inset: -35% -45%;
  background:
    radial-gradient(ellipse 52% 42% at 18% 12%, rgba(56, 189, 248, 0.14), transparent 58%),
    radial-gradient(ellipse 48% 38% at 88% 28%, rgba(168, 85, 247, 0.12), transparent 56%),
    radial-gradient(ellipse 42% 36% at 52% 92%, rgba(52, 211, 153, 0.1), transparent 54%);
  pointer-events: none;
  z-index: 0;
  animation: productsAmbient 24s ease-in-out infinite alternate;
}

@keyframes productsAmbient {
  from {
    opacity: 0.82;
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(2%, 2%, 0) scale(1.05);
  }
}

.products-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.products-scene__beam {
  position: absolute;
  left: -20%;
  top: 18%;
  width: 140%;
  height: 42%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(56, 189, 248, 0.06) 22%,
    rgba(168, 85, 247, 0.08) 48%,
    rgba(0, 113, 227, 0.05) 72%,
    transparent 100%
  );
  filter: blur(28px);
  transform: rotate(-6deg);
  animation: productsBeamPulse 14s ease-in-out infinite alternate;
  opacity: 0.85;
}

@keyframes productsBeamPulse {
  from {
    opacity: 0.65;
    transform: rotate(-6deg) translate3d(-2%, 0, 0);
  }
  to {
    opacity: 0.95;
    transform: rotate(-5deg) translate3d(2%, 1%, 0);
  }
}

.products-scene__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.42;
  will-change: transform;
}

.products-scene__orb--a {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  left: -8%;
  top: 8%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.5) 0%, transparent 68%);
}

.products-scene__orb--b {
  width: min(360px, 48vw);
  height: min(360px, 48vw);
  right: -6%;
  top: 28%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.42) 0%, transparent 68%);
}

.products-scene__orb--c {
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  left: 38%;
  bottom: 6%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.35) 0%, transparent 70%);
}

.section--products .container {
  position: relative;
  z-index: 1;
}

.section--products .container.container {
  width: min(1400px, 100%);
}

.products__intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.section--products .products__eyebrow > span:not(.hero__dot) {
  text-transform: uppercase;
  color: #6e6e73;
  letter-spacing: 0.12em;
}

.section--products .products__eyebrow .hero__dot {
  background: #0071e3;
  box-shadow: 0 0 14px rgba(0, 113, 227, 0.35);
}

.products__headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section--products .products__headline {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.products__headline-line {
  display: block;
  color: #0a0a0a;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  animation: none;
}

.products__headline-line:last-child {
  font-size: 0.92em;
  letter-spacing: -0.03em;
  opacity: 0.96;
}

@keyframes productsHeadlineShimmer {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@supports not (-webkit-background-clip: text) {
  .products__headline-line {
    color: #ffffff;
    background: none;
    animation: none;
  }
}

.products__sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
}

.section--products .products__sub {
  color: #5c6370;
  max-width: 580px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 113, 227, 0.1);
  box-shadow: 0 8px 32px rgba(0, 113, 227, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.products-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
  grid-template-columns: 1fr;
}

.section--products .products-grid {
  perspective: 1400px;
  transform-style: preserve-3d;
}

.section--products .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px 26px;
  isolation: isolate;
  transform-style: preserve-3d;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(248, 250, 255, 0.94) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  border: 1px solid rgba(0, 113, 227, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.92) inset,
    0 12px 40px rgba(0, 113, 227, 0.08),
    0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color 420ms var(--ease-out-soft), box-shadow 420ms var(--ease-out-soft),
    transform 420ms var(--ease-out-soft);
}

.section--products .product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 90% 70% at 15% 0%,
    color-mix(in srgb, var(--product-accent) 22%, transparent),
    transparent 58%
  );
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.section--products .product-card::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -60%;
  width: 40%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 320ms var(--ease-out-soft);
}

.section--products .product-card:hover::after {
  opacity: 1;
  animation: productCardSheen 1.1s var(--ease-out-soft) forwards;
}

@keyframes productCardSheen {
  from {
    left: -60%;
  }
  to {
    left: 120%;
  }
}

.section--products .product-card > * {
  position: relative;
  z-index: 2;
}

.section--products .product-card:hover {
  border-color: color-mix(in srgb, var(--product-accent) 48%, rgba(0, 113, 227, 0.2));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--product-accent) 28%, transparent),
    0 0 48px color-mix(in srgb, var(--product-accent) 18%, transparent),
    0 22px 56px rgba(15, 23, 42, 0.1);
}

@supports not (background: color-mix(in srgb, red 50%, white)) {
  .section--products .product-card:hover {
    border-color: var(--product-accent);
    box-shadow:
      0 0 40px rgba(56, 189, 248, 0.18),
      0 22px 56px rgba(15, 23, 42, 0.1);
  }
}

.section--products .product-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--product-accent);
  background: color-mix(in srgb, var(--product-accent) 14%, white);
  border: 1px solid color-mix(in srgb, var(--product-accent) 32%, transparent);
  box-shadow:
    0 4px 18px color-mix(in srgb, var(--product-accent) 16%, transparent),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  transition: transform 420ms var(--ease-out-soft), box-shadow 420ms var(--ease-out-soft);
}

.section--products .product-card:hover .product-card__icon-wrap {
  transform: scale(1.1) translateZ(12px);
  box-shadow:
    0 10px 32px color-mix(in srgb, var(--product-accent) 28%, transparent),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

@supports not (background: color-mix(in srgb, red 50%, white)) {
  .section--products .product-card__icon-wrap {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.28);
  }
}

.section--products .product-card__icon-svg {
  width: 48px;
  height: 48px;
}

.section--products .product-card__icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
}

.section--products .product-card__icon-fa {
  font-size: 22px;
}

.section--products .product-card__icon-wrap--pair {
  display: flex;
  width: auto;
  min-width: 56px;
  padding: 0 12px;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
}

.section--products .product-card__icon-fa--sm {
  font-size: 16px;
  opacity: 0.92;
}

.section--products .product-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--product-accent);
  background: color-mix(in srgb, var(--product-accent) 10%, white);
  border: 1px solid color-mix(in srgb, var(--product-accent) 32%, transparent);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--product-accent) 10%, transparent);
}

.section--products .product-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #1d1d1f;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: break-word;
}

.section--products .product-card__desc {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: #6e6e73;
}

.section--products .product-card__link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--product-accent);
  position: relative;
  transition: gap 260ms var(--ease-out-soft), opacity 260ms var(--ease-out-soft),
    text-shadow 260ms var(--ease-out-soft);
}

.section--products .product-card__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--product-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out-soft);
}

.section--products .product-card__link:hover {
  gap: 11px;
  opacity: 1;
  text-shadow: 0 0 18px color-mix(in srgb, var(--product-accent) 35%, transparent);
}

.section--products .product-card__link:hover::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .section--products::before {
    animation: none;
    opacity: 0.92;
    transform: none;
  }

  .products-scene__beam {
    animation: none;
  }

  .products__headline-line {
    animation: none;
  }

  .section--products .product-card:hover::after {
    animation: none;
    opacity: 0;
  }

}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(16px, 2.2vw, 22px);
  }
}

/* —— Technology stack —— */
.section.section--technology {
  position: relative;
  overflow: clip;
  background: #f5f5f7;
  padding-top: clamp(96px, 14vw, 140px);
  padding-bottom: var(--section-pad);
}

.section.section--technology::before {
  content: '';
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(
    ellipse 55% 45% at 50% 12%,
    rgba(0, 113, 227, 0.09) 0%,
    transparent 62%
  );
  pointer-events: none;
  z-index: 0;
  animation: tech-section-glow 14s ease-in-out infinite alternate;
}

@keyframes tech-section-glow {
  from {
    opacity: 0.65;
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(2%, 1%, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section.section--technology::before {
    animation: none;
    opacity: 0.78;
    transform: none;
  }
}

.tech__intro {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.tech__headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #1d1d1f;
}

.tech__sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #6e6e73;
  max-width: 620px;
}

.tech-marquees {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-marquee {
  position: relative;
}

.tech-marquee__mask {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 12%,
    black 88%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 12%,
    black 88%,
    transparent
  );
}

.tech-marquee__track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: tech-marquee-scroll var(--tech-marquee-speed, 30s) linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.tech-marquee:hover .tech-marquee__track {
  animation-play-state: paused;
}

.tech-marquee--reverse .tech-marquee__track {
  animation-direction: reverse;
  --tech-marquee-speed: 34s;
}

@keyframes tech-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tech-marquee__set {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  align-items: stretch;
}

.tech-card {
  flex-shrink: 0;
  width: 120px;
  min-height: 70px;
  padding: 10px 10px 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.055);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.045);
  transition: transform 380ms var(--ease-out-soft), box-shadow 380ms var(--ease-out-soft),
    border-color 380ms var(--ease-out-soft), background 380ms var(--ease-out-soft);
}

@media (hover: hover) and (pointer: fine) {
  .tech-marquee:hover .tech-card:hover,
  .tech-marquee__track:hover .tech-card:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(0, 113, 227, 0.22);
    box-shadow: 0 14px 32px rgba(0, 113, 227, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    background: #ffffff;
    z-index: 2;
  }
}

.tech-card__logo {
  height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-card__logo img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.tech-card--heygen .tech-card__logo img {
  max-height: 38px;
  max-width: 108px;
}

.tech-card__name {
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #86868b;
  text-align: center;
}

.tech__footnote {
  position: relative;
  z-index: 2;
  margin: 28px 0 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  font-style: italic;
  color: #86868b;
}

@media (max-width: 480px) {
  .tech-marquee--reverse {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    transform: none;
  }

  .tech-marquee__mask {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }

  .tech-marquee .tech-marquee__set:last-child {
    display: none;
  }

  .tech-marquee--reverse {
    display: none;
  }
}

.section__header {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.15);
  color: rgba(0, 113, 227, 0.95);
  margin-bottom: 14px;
}

.logos {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: rgba(10, 10, 10, 0.02);
  display: grid;
  gap: 14px;
}

.logos__label {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.logos__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(29, 29, 31, 0.78);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.feature {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: var(--shadow);
  padding: 22px;
}

.feature__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.1);
  border: 1px solid rgba(0, 113, 227, 0.16);
  color: rgba(0, 113, 227, 0.96);
  font-size: 12px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.feature__badge--soft {
  background: rgba(10, 10, 10, 0.05);
  border-color: rgba(10, 10, 10, 0.08);
  color: rgba(29, 29, 31, 0.86);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.step__num {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(29, 29, 31, 0.7);
  font-size: 18px;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.step__desc {
  margin-top: 4px;
  color: var(--muted);
}

.security {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.security__points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.point {
  padding: 16px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.point__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.point__desc {
  margin-top: 4px;
  color: var(--muted);
}

.panel {
  height: 100%;
  border-radius: 26px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.72) 100%
    );
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    50% 50% at 40% 40%,
    rgba(0, 113, 227, 0.16) 0%,
    rgba(0, 113, 227, 0) 60%
  );
  filter: blur(10px);
  pointer-events: none;
}

.panel__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(10, 10, 10, 0.07);
  background: rgba(255, 255, 255, 0.7);
}

.panel__key {
  color: rgba(29, 29, 31, 0.72);
}

.panel__val {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.panel__divider {
  height: 1px;
  background: rgba(10, 10, 10, 0.08);
  margin: 6px 0;
  position: relative;
}

.panel__note {
  position: relative;
  color: var(--muted);
}

.cta {
  border-radius: 28px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.76) 100%
    );
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    45% 45% at 30% 40%,
    rgba(0, 113, 227, 0.18) 0%,
    rgba(0, 113, 227, 0) 62%
  );
  filter: blur(10px);
  pointer-events: none;
}

.cta__copy {
  position: relative;
}

.cta__form {
  position: relative;
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.75);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.input::placeholder {
  color: rgba(110, 110, 115, 0.9);
}

.input:focus {
  outline: none;
  border-color: rgba(0, 113, 227, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.input--area {
  resize: vertical;
  min-height: 112px;
}

.scroll-anchor {
  display: block;
  height: 0;
  scroll-margin-top: calc(var(--topbar-h) + 12px);
}

/* —— Why Compantic (light futurist lab) —— */
.section--why {
  position: relative;
  overflow: clip;
  background: linear-gradient(185deg, #fbfdff 0%, #f1f6fc 48%, #fafdff 100%);
}

.section--why::before {
  content: '';
  position: absolute;
  inset: -32% -42%;
  background:
    radial-gradient(ellipse 52% 42% at 18% 18%, rgba(56, 189, 248, 0.13), transparent 58%),
    radial-gradient(ellipse 46% 38% at 86% 24%, rgba(168, 85, 247, 0.09), transparent 56%),
    radial-gradient(ellipse 42% 36% at 52% 92%, rgba(52, 211, 153, 0.07), transparent 54%);
  pointer-events: none;
  z-index: 0;
  animation: whyAmbient 22s ease-in-out infinite alternate;
}

@keyframes whyAmbient {
  from {
    opacity: 0.82;
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(2%, 2%, 0) scale(1.05);
  }
}

.why-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.why-scene__mesh {
  position: absolute;
  inset: -5%;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(0, 113, 227, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 113, 227, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px, 11px 11px, 11px 11px;
  background-position: 0 0, 0 0, 5px 5px, 5px 5px;
  mask-image: radial-gradient(ellipse 80% 74% at 50% 44%, black 18%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 80% 74% at 50% 44%, black 18%, transparent 74%);
  animation: whyMeshDrift 34s linear infinite;
}

@keyframes whyMeshDrift {
  from {
    background-position: 0 0, 0 0, 5px 5px, 5px 5px;
  }
  to {
    background-position: 46px 46px, 46px 46px, 16px 16px, 16px 16px;
  }
}

.why-scene__beam {
  position: absolute;
  left: -16%;
  top: 24%;
  width: 132%;
  height: 46%;
  background: linear-gradient(
    104deg,
    transparent 0%,
    rgba(56, 189, 248, 0.065) 26%,
    rgba(168, 85, 247, 0.075) 52%,
    rgba(0, 113, 227, 0.045) 78%,
    transparent 100%
  );
  filter: blur(30px);
  transform: rotate(-5deg);
  animation: whyBeamPulse 16s ease-in-out infinite alternate;
  opacity: 0.86;
}

@keyframes whyBeamPulse {
  from {
    opacity: 0.62;
    transform: rotate(-5deg) translate3d(-2%, 0, 0);
  }
  to {
    opacity: 0.92;
    transform: rotate(-4deg) translate3d(2%, 1%, 0);
  }
}

.why-scene__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.38;
  will-change: transform;
}

.why-scene__orb--a {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  left: -10%;
  top: 10%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.44) 0%, transparent 68%);
}

.why-scene__orb--b {
  width: min(320px, 44vw);
  height: min(320px, 44vw);
  right: -8%;
  top: 32%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.28) 0%, transparent 68%);
}

.why-scene__orb--c {
  width: min(260px, 38vw);
  height: min(260px, 38vw);
  left: 34%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.32) 0%, transparent 70%);
}

.section--why .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.why__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.why__headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.9vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section--why .why__headline {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.why__headline-line {
  display: block;
  background: linear-gradient(
    118deg,
    #0f172a 0%,
    #0369a1 26%,
    #7c3aed 54%,
    #0f172a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: whyHeadlineShimmer 11s ease-in-out infinite alternate;
}

.why__headline-line:last-child {
  font-size: 0.92em;
  letter-spacing: -0.032em;
  opacity: 0.96;
}

@keyframes whyHeadlineShimmer {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

.why__sub {
  margin: 0;
  font-size: 17px;
  line-height: 1.58;
  max-width: 620px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #64748b;
}

.why-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  padding: 22px 20px 20px;
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(252, 253, 255, 0.9) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.88) inset,
    0 10px 36px rgba(0, 113, 227, 0.06),
    0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 420ms var(--ease-out-soft), box-shadow 420ms var(--ease-out-soft);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 95% 75% at 12% 0%,
    color-mix(in srgb, var(--why-accent) 22%, transparent),
    transparent 58%
  );
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.why-card::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -60%;
  width: 42%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.48),
    transparent
  );
  transform: rotate(15deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 320ms var(--ease-out-soft);
}

.why-card:hover::after {
  opacity: 1;
  animation: whyCardSheen 1.05s var(--ease-out-soft) forwards;
}

@keyframes whyCardSheen {
  from {
    left: -60%;
  }
  to {
    left: 118%;
  }
}

.why-card:hover {
  border-color: color-mix(in srgb, var(--why-accent) 42%, rgba(0, 0, 0, 0.08));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--why-accent) 22%, transparent),
    0 0 38px color-mix(in srgb, var(--why-accent) 14%, transparent),
    0 18px 48px rgba(0, 0, 0, 0.07);
}

.why-card > * {
  position: relative;
  z-index: 2;
}

.why-card__stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--why-accent) 22%, rgba(0, 0, 0, 0.06));
}

.why-card__stat-main {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 6px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(
    125deg,
    #0f172a 0%,
    var(--why-accent) 45%,
    #6366f1 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-card__stat-num {
  font-size: clamp(26px, 3.2vw, 32px);
}

.why-card__stat-prefix,
.why-card__stat-suffix {
  font-size: 0.62em;
  font-weight: 700;
  opacity: 0.88;
}

.why-card__stat-tag {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  opacity: 0.82;
}

.why-card__stat-caption {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
  width: 100%;
  margin-top: 2px;
}

@supports not (-webkit-background-clip: text) {
  .why-card__stat-main {
    color: var(--why-accent);
    background: none;
  }
}

.why-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--why-accent);
  background: color-mix(in srgb, var(--why-accent) 14%, white);
  border: 1px solid color-mix(in srgb, var(--why-accent) 28%, transparent);
  box-shadow: 0 4px 18px color-mix(in srgb, var(--why-accent) 14%, transparent);
  transition: transform 420ms var(--ease-out-soft), box-shadow 420ms var(--ease-out-soft);
}

.why-card:hover .why-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--why-accent) 22%, transparent);
}

@supports (background: color-mix(in srgb, red 50%, white)) {
  .why-card__icon {
    background: color-mix(in srgb, var(--why-accent) 14%, white);
    border-color: color-mix(in srgb, var(--why-accent) 22%, transparent);
  }
}

.why-card__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: #1d1d1f;
}

.why-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.52;
  letter-spacing: -0.02em;
  color: #64748b;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--why::before {
    animation: none;
    opacity: 0.9;
    transform: none;
  }

  .why-scene__mesh {
    animation: none;
  }

  .why-scene__beam {
    animation: none;
  }

  .why__headline-line {
    animation: none;
    background-position: 50% 50%;
  }

  .why-card:hover::after {
    animation: none;
    opacity: 0;
  }
}

/* —— Site footer —— */
.site-footer {
  position: relative;
  background: linear-gradient(165deg, #18181c 0%, #141417 45%, #0d0d0f 100%);
  color: #ffffff;
  scroll-margin-top: calc(var(--topbar-h) + 8px);
}

.site-footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 113, 227, 0.35) 40%,
    rgba(90, 200, 250, 0.25) 60%,
    transparent
  );
  opacity: 0.85;
  pointer-events: none;
}

.site-footer__main {
  padding: 56px 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 32px 28px;
  padding-bottom: 40px;
}

.site-footer__wordmark {
  display: inline-block;
  margin-bottom: 12px;
  line-height: 0;
}

.site-footer__logo {
  height: clamp(36px, 5.2vw, 52px);
  width: auto;
  max-width: min(320px, 100%);
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.site-footer__tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #86868b;
  max-width: 260px;
}

.site-footer__heading {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer__link {
  font-size: 14px;
  color: #86868b;
  text-decoration: none;
  transition: color 220ms var(--ease), text-decoration-color 220ms var(--ease);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.site-footer__link:hover {
  color: #ffffff;
  text-decoration-color: currentColor;
}

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__social-link {
  color: #86868b;
  font-size: 20px;
  line-height: 1;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.site-footer__social-link:hover {
  color: #ffffff;
}

.site-footer__social-link:active {
  transform: scale(0.96);
}

.site-footer__bar {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__legal {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #6e6e73;
}

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

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

[data-animate] {
  will-change: transform, opacity;
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .hero__stack {
    height: auto;
    min-height: calc(100vh - var(--topbar-h));
    padding: clamp(92px, 10vh, 128px) 0 44px;
  }

  .network__canvas.network-three {
    height: 380px;
  }

}

@media (max-width: 520px) {
  :root {
    --topbar-h: 68px;
  }

  .topbar__actions .btn {
    display: none;
  }

  .hero {
    min-height: min(108vh, calc(100vh + 72px));
  }

  .step {
    grid-template-columns: 54px 1fr;
  }
}

