:root {
  color-scheme: dark;
  --fx-blue: #003f6b;
  --fx-blue-2: #03588c;
  --fx-deep: #012840;
  --fx-ink: #0d0d0d;
  --fx-cyan: #049dd9;
  --fx-white: #f4f7f8;
  --fx-line: rgba(255, 255, 255, 0.1);
  --fx-page: #02080c;
  --fx-surface: rgba(13, 13, 13, 0.52);
  --fx-text: #f4f7f8;
  --fx-muted: rgba(244, 247, 248, 0.68);
  --fx-header: rgba(10, 14, 20, 0.93);
  --fx-header-line: rgba(255, 255, 255, 0.07);
}

:root[data-theme="light"] {
  color-scheme: light;
  --fx-line: rgba(0, 63, 107, 0.14);
  --fx-page: #f4f7f8;
  --fx-surface: rgba(255, 255, 255, 0.72);
  --fx-text: #012840;
  --fx-muted: rgba(1, 40, 64, 0.68);
  --fx-header: rgba(235, 241, 245, 0.97);
  --fx-header-line: rgba(0, 63, 107, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(4, 157, 217, 0.12), transparent 32rem),
    radial-gradient(circle at 22% 20%, rgba(0, 63, 107, 0.38), transparent 30rem),
    linear-gradient(180deg, #000 0%, #0d0d0d 44%, #02080c 100%);
  color: var(--fx-text);
  font-family: Inter, system-ui, sans-serif;
  opacity: 1;
}

html {
  overflow-x: hidden;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 50% 30%, rgba(4, 157, 217, 0.1), transparent 28rem),
    radial-gradient(circle at 18% 18%, rgba(0, 63, 107, 0.1), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f4f7f8 46%, #dcebf1 100%);
}

body.is-ready {
  opacity: 1;
  transition: opacity 0.1s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(4, 157, 217, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 157, 217, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  opacity: 0.48;
  z-index: 0;
}

:root[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(0, 63, 107, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 63, 107, 0.04) 1px, transparent 1px);
  opacity: 0.24;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

:root[data-theme="light"] .noise {
  opacity: 0.05;
}

.site-logo {
  transition: opacity 180ms ease, filter 180ms ease;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  width: 4.4rem;
  height: 2.35rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(4, 157, 217, 0.44);
  border-radius: 999px;
  background: rgba(1, 31, 52, 0.92);
  color: #f4f7f8;
  padding: 0 0.5rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover {
  border-color: rgba(4, 157, 217, 0.82);
  box-shadow: 0 0 24px rgba(4, 157, 217, 0.22);
}

.theme-toggle:focus-visible {
  outline: 2px solid rgba(4, 157, 217, 0.9);
  outline-offset: 3px;
}

.theme-toggle::after {
  content: "";
  position: absolute;
  top: 0.28rem;
  left: 0.32rem;
  width: 1.78rem;
  height: 1.78rem;
  border-radius: 999px;
  background: #f4f7f8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  transition: transform 220ms ease, background 180ms ease;
}

.theme-toggle__icon {
  position: relative;
  z-index: 1;
  width: 0.98rem;
  height: 0.98rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.theme-toggle__icon--sun {
  color: rgba(244, 247, 248, 0.72);
  opacity: 0;
  transform: scale(0.84);
}

.theme-toggle__icon--moon {
  color: #f4f7f8;
  opacity: 1;
  transform: scale(1);
}

.theme-toggle__spark {
  stroke-width: 2.8;
}

:root[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.92);
  color: #003f6b;
  border-color: rgba(1, 40, 64, 0.12);
  box-shadow: 0 10px 24px rgba(1, 40, 64, 0.1);
}

:root[data-theme="light"] .theme-toggle::after {
  background: #012840;
  transform: translateX(1.98rem);
}

:root[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 1;
  color: #30435f;
  transform: scale(1);
}

:root[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 0;
  transform: scale(0.84);
}

.risk-core {
  transform-origin: center;
  will-change: transform, opacity, filter; /* scrub contínuo + filter precisa de compositing */
}

.risk-core--ambient {
  position: fixed;
  inset: auto auto 5vh -8vw;
  width: min(38vw, 30rem);
  height: min(38vw, 30rem);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.core-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(54vw, 700px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 157, 217, 0.36), transparent 0 6%, rgba(4, 157, 217, 0.18) 7%, transparent 32%),
    radial-gradient(circle at center, rgba(1, 40, 64, 0.58), rgba(0, 63, 107, 0.24) 28%, rgba(0, 0, 0, 0) 66%);
  box-shadow:
    0 0 80px rgba(4, 157, 217, 0.22),
    inset 0 0 90px rgba(4, 157, 217, 0.15);
  opacity: 0.95;
  filter: saturate(1.16);
}

.core-orb::before,
.core-orb::after {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: inherit;
  border: 1px solid rgba(4, 157, 217, 0.18);
  animation: corePulse 5.6s ease-in-out infinite;
}

.core-orb::after {
  inset: 26%;
  animation-delay: -2.8s;
}

.graph-line {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawLine 5s ease-in-out infinite alternate;
}

.graph-line:nth-child(2n) {
  animation-delay: -1.8s;
}

.graph-node {
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.95));
  transform-origin: center;
  animation: nodePulse 3.4s ease-in-out infinite;
}

.graph-node:nth-of-type(2n) {
  animation-delay: -1.2s;
}

.eagle-core {
  filter: drop-shadow(0 0 30px rgba(4, 157, 217, 0.2));
  transform-origin: center;
}

@media (min-width: 1024px) {
  #hero .eagle-core {
    left: min(21vw, 25rem) !important;
    width: min(40vw, 42rem) !important;
    height: min(40vw, 42rem) !important;
  }
}

@media (min-width: 1800px) {
  #hero .eagle-core {
    left: min(23.5vw, 28rem) !important;
    width: min(42vw, 45rem) !important;
    height: min(42vw, 45rem) !important;
  }
}

@media (min-width: 700px) {
  #hero .hero-copy {
    margin-top: clamp(-9.5rem, calc((100svh - 900px) * 0.85), 0rem);
  }
}

@media (min-width: 700px) and (max-height: 860px) {
  #hero .absolute.bottom-8 {
    bottom: clamp(0.5rem, 1.4svh, 1.25rem);
  }
}

@media (min-width: 700px) and (max-width: 1100px) {
  #hero .absolute.bottom-8 {
    display: none;
  }
}

@media (max-width: 1023px) and (min-width: 700px) {
  #hero .eagle-core {
    left: 22% !important;
    top: 50%;
    width: min(58vw, 34rem) !important;
    height: min(58vw, 34rem) !important;
  }

  #hero .hero-copy {
    max-width: 72rem;
  }

  #hero .hero-copy > div:last-child {
    width: min(56%, 36rem);
    margin-left: auto;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 699px) {
  #hero {
    justify-content: center;
    min-height: 90svh;
  }

  #hero {
    align-items: flex-start !important;
    padding-top: clamp(5.2rem, 12svh, 6.1rem) !important;
    justify-content: flex-start !important;
  }

  #hero .eagle-core {
    left: clamp(5.05rem, 18vw, 6.1rem) !important;
    top: 43.75% !important;
    width: clamp(9rem, 31vw, 10.75rem) !important;
    height: clamp(9rem, 31vw, 10.75rem) !important;
    opacity: 1;
    transform: translate(0, -50%) !important;
  }

  #hero .hero-copy {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }

  #hero .hero-copy > div:last-child {
    align-items: stretch !important;
    text-align: left !important;
  }

  #hero #hero-title {
    text-align: right;
    max-width: 100%;
    padding-left: clamp(6.1rem, 30vw, 8rem);
    font-size: clamp(2.18rem, 8.7vw, 2.55rem) !important;
    line-height: 1.03 !important;
  }

  #hero #hero-title .hero-title-mobile-line {
    display: block;
  }

  #hero #hero-title .hero-title-mobile-line--state {
    white-space: nowrap;
  }

  #hero .hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }

  #hero .hero-primary-btn,
  #hero .hero-secondary-btn {
    white-space: nowrap;
  }

  #hero .absolute.bottom-8 {
    display: none;
  }

  .hero-metrics {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  #hero #hero-title {
    max-width: 100%;
    padding-left: clamp(5.65rem, 26vw, 7.25rem);
    font-size: clamp(2rem, 8.55vw, 2.36rem) !important;
    line-height: 1.04 !important;
  }

  #hero .eagle-core {
    left: clamp(5.05rem, 20vw, 5.35rem) !important;
    top: 43.75% !important;
    width: clamp(9rem, 39vw, 10.75rem) !important;
    height: clamp(9rem, 39vw, 10.75rem) !important;
  }

  #hero .hero-kicker {
    font-size: clamp(0.58rem, 1.85vw, 0.68rem);
    letter-spacing: 0.18em;
  }

  #hero .hero-terminal {
    font-size: clamp(0.64rem, 2.1vw, 0.78rem);
    letter-spacing: 0.14em;
  }
}

@media (max-width: 399px) {
  #hero .eagle-core {
    left: clamp(4.95rem, 21vw, 5.25rem) !important;
    top: 45.85% !important;
    width: clamp(9rem, 39vw, 9.7rem) !important;
    height: clamp(9rem, 39vw, 9.7rem) !important;
  }
}

@media (max-width: 380px) {
  #hero .eagle-core {
    top: 50.1% !important;
  }
}

@media (max-width: 699px) and (max-height: 720px) {
  #hero {
    min-height: auto;
  }

  #hero .hero-copy {
    padding-bottom: 0.9rem;
  }

  #hero .hero-kicker {
    margin-bottom: 0.78rem !important;
  }

  #hero .hero-terminal {
    margin-bottom: 0.62rem !important;
  }

  #hero .eagle-core {
    top: 47.65% !important;
  }

  .hero-metrics {
    margin-top: 1.25rem;
    transform: translateY(-0.4rem);
  }
}

@media (min-width: 421px) and (max-width: 699px) {
  #hero .eagle-core {
    top: clamp(22.55rem, calc(21.7rem + 4vw), 23.35rem) !important;
  }
}

@media (min-width: 381px) and (max-width: 420px) and (max-height: 820px) {
  #hero .eagle-core {
    top: 51.2% !important;
  }
}

@media (max-width: 380px) and (max-height: 720px) {
  #hero .eagle-core {
    top: 50.9% !important;
  }
}

@media (max-width: 374px) {
  #hero {
    min-height: 88svh;
  }

  #hero #hero-title {
    padding-left: clamp(5.2rem, 26vw, 5.75rem);
    font-size: clamp(1.82rem, 8.35vw, 2rem) !important;
    line-height: 1.03 !important;
  }

  #hero .eagle-core {
    left: clamp(4.85rem, 22vw, 5.15rem) !important;
    top: 50.1% !important;
    width: clamp(8.8rem, 39vw, 9.25rem) !important;
    height: clamp(8.8rem, 39vw, 9.25rem) !important;
  }

  #hero .hero-copy {
    padding-bottom: 0.9rem;
  }

  #hero .hero-primary-btn,
  #hero .hero-secondary-btn {
    letter-spacing: 0.16em !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-metrics {
    gap: 0.55rem;
    transform: translateY(-0.75rem);
  }

  .hero-metric strong {
    font-size: 1.5rem;
  }

  .hero-metric > span:last-child {
    font-size: 0.66rem;
  }
}

@media (max-width: 374px) and (max-height: 720px) {
  #hero .eagle-core {
    top: 50.9% !important;
  }
}

.eagle-halo {
  opacity: 0.72;
  animation: eagleHalo 6s ease-in-out infinite;
}

.eagle-ring {
  fill: none;
  stroke: rgba(4, 157, 217, 0.16);
  stroke-width: 1;
  stroke-dasharray: 18 16;
  transform-origin: center;
  animation: eagleRing 18s linear infinite;
}

.eagle-ring--inner {
  stroke: rgba(244, 247, 248, 0.12);
  stroke-dasharray: 8 20;
  animation-duration: 13s;
  animation-direction: reverse;
}

.eagle-geometry {
  filter: drop-shadow(0 0 18px rgba(4, 157, 217, 0.28));
}

.eagle-piece {
  fill: #023859;
  stroke: url(#eagleTrace);
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  vector-effect: non-scaling-stroke;
  opacity: 0.72;
  animation:
    eagleTrace 6.8s ease-in-out infinite alternate,
    eaglePiecePulse 4.8s ease-in-out infinite;
}

.eagle-piece--mid {
  fill: #03588c;
}

.eagle-piece--deep {
  fill: #012840;
}

.eagle-piece--bright {
  fill: #049dd9;
  opacity: 0.9;
  filter: drop-shadow(0 0 16px rgba(4, 157, 217, 0.62));
}

.eagle-piece--eye {
  fill: #FFD700 !important;
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.eagle-geometry .eagle-piece:nth-child(3n) {
  animation-delay: -0.9s, -1.5s;
}

.eagle-geometry .eagle-piece:nth-child(4n) {
  animation-delay: -1.8s, -2.4s;
}

.eagle-geometry .eagle-piece:nth-child(5n) {
  animation-delay: -2.7s, -3.2s;
}

.eagle-geometry .eagle-piece:nth-child(7n) {
  opacity: 0.58;
  animation-duration: 8s, 5.8s;
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(4, 157, 217, 0.18), transparent);
  height: 22%;
  transform: translateY(-100%);
  opacity: 0.42;
  animation: scan 6s linear infinite;
}

.glass-card {
  background:
    linear-gradient(180deg, rgba(2, 56, 89, 0.55), rgba(1, 40, 64, 0.38)),
    rgba(13, 13, 13, 0.72);
  border: 1px solid rgba(4, 157, 217, 0.22);
  box-shadow: 0 24px 90px rgba(0, 63, 107, 0.24);
}

:root[data-theme="light"] .glass-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(237, 244, 247, 0.78)),
    rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 63, 107, 0.14);
  box-shadow: 0 24px 80px rgba(0, 63, 107, 0.08);
}

:root[data-theme="light"] .product-card li.border,
:root[data-theme="light"] .service-option-list li {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(232, 245, 250, 0.46)) !important;
  border-color: rgba(4, 157, 217, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero-metrics {
  gap: clamp(1rem, 4vw, 3rem);
  transform: translateY(-1.3rem);
}

.hero-metric {
  display: grid;
  min-height: 4.4rem;
  place-items: center;
  gap: 0.7rem;
  padding: 0.35rem 0.25rem;
  text-align: center;
}

.hero-metric + .hero-metric {
  border-left: 0;
}

.hero-metric strong {
  color: #049DD9;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.935rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(4, 157, 217, 0.28);
}

[data-hero-counter] {
  display: inline-block;
  min-width: 4ch;
  font-variant-numeric: tabular-nums;
}

.hero-metric > span:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  font-weight: 400;
  line-height: 1.35;
}

:root[data-theme="light"] .hero-metrics {
  background: transparent !important;
  box-shadow: none;
}

:root[data-theme="light"] .hero-metric + .hero-metric {
  border-left-color: rgba(0, 63, 107, 0.1);
}

:root[data-theme="light"] .hero-metric strong {
  color: #049DD9;
  text-shadow: 0 0 20px rgba(4, 157, 217, 0.16);
}

:root[data-theme="light"] .hero-metric > span:last-child {
  color: rgba(1, 40, 64, 0.62);
}

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

.header-cta,
.hero-primary-btn,
.hero-secondary-btn {
  position: relative;
  overflow: hidden;
}

.hero-terminal {
  position: relative;
  z-index: 1;
}

:root[data-theme="light"] a.header-cta,
:root[data-theme="light"] .header-cta {
  border-color: rgba(3, 88, 140, 0.28);
  background: rgba(3, 88, 140, 0.72);
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(0, 63, 107, 0.1);
}

:root[data-theme="light"] a.header-cta:hover,
:root[data-theme="light"] .header-cta:hover {
  border-color: rgba(4, 157, 217, 0.52);
  background: rgba(4, 157, 217, 0.92);
  color: #ffffff !important;
}

:root[data-theme="light"] .section-kicker {
  border-color: rgba(3, 88, 140, 0.26) !important;
  background: linear-gradient(180deg, rgba(197, 226, 240, 0.9), rgba(180, 214, 230, 0.82)) !important;
  color: #049dd9 !important;
  box-shadow: 0 10px 24px rgba(0, 63, 107, 0.06);
}

:root[data-theme="light"] .hero-kicker {
  background: linear-gradient(180deg, rgba(188, 222, 239, 0.9), rgba(170, 210, 230, 0.82)) !important;
}

:root[data-theme="light"] .hero-terminal {
  color: #049dd9 !important;
  text-shadow: 0 0 14px rgba(4, 157, 217, 0.08);
}

:root[data-theme="light"] .hero-primary-btn {
  background: linear-gradient(180deg, #049dd9, #0387bc) !important;
  color: #012840 !important;
  box-shadow: 0 14px 28px rgba(4, 157, 217, 0.16);
}

:root[data-theme="light"] .hero-primary-btn:hover {
  background: linear-gradient(180deg, #18aae4, #049dd9) !important;
  color: #012840 !important;
}

:root[data-theme="light"] .hero-secondary-btn {
  border-color: rgba(0, 63, 107, 0.16) !important;
  background: rgba(255, 255, 255, 0.78);
  color: #012840 !important;
  box-shadow: 0 10px 26px rgba(0, 63, 107, 0.06);
}

:root[data-theme="light"] .hero-secondary-btn:hover {
  border-color: rgba(4, 157, 217, 0.42) !important;
  background: rgba(240, 249, 252, 0.92);
  color: #03588c !important;
}

:root[data-theme="light"] .risk-core {
  opacity: 0.88;
}

:root[data-theme="light"] .core-orb {
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 157, 217, 0.16), transparent 0 5%, rgba(4, 157, 217, 0.07) 6%, transparent 28%),
    radial-gradient(circle at center, rgba(154, 205, 229, 0.26), rgba(4, 157, 217, 0.08) 24%, rgba(0, 0, 0, 0) 58%);
  box-shadow:
    0 0 50px rgba(4, 157, 217, 0.1),
    inset 0 0 48px rgba(4, 157, 217, 0.08);
  opacity: 0.62;
  filter: saturate(1.02);
}

:root[data-theme="light"] .core-orb::before,
:root[data-theme="light"] .core-orb::after {
  border-color: rgba(4, 157, 217, 0.08);
}

:root[data-theme="light"] .eagle-halo {
  opacity: 0.34;
}

:root[data-theme="light"] .eagle-ring {
  stroke: rgba(4, 157, 217, 0.08);
}

:root[data-theme="light"] .eagle-ring--inner {
  stroke: rgba(1, 40, 64, 0.05);
}

:root[data-theme="light"] .eagle-geometry {
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.08));
}

:root[data-theme="light"] .eagle-piece {
  opacity: 0.56;
}

:root[data-theme="light"] .eagle-piece--bright {
  opacity: 0.76;
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.24));
}

:root[data-theme="light"] .scanline {
  background: linear-gradient(180deg, transparent, rgba(4, 157, 217, 0.09), transparent);
  opacity: 0.24;
}

:root[data-theme="light"] .product-visual {
  border-color: rgba(0, 63, 107, 0.1);
  background:
    radial-gradient(circle at 50% 40%, rgba(4, 157, 217, 0.14), transparent 52%),
    rgba(214, 226, 233, 0.74);
}

.product-feature-chip {
  position: relative;
  overflow: hidden;
  min-height: 8.75rem;
  background:
    linear-gradient(180deg, rgba(4, 157, 217, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.24);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-feature-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(4, 157, 217, 0.38);
  opacity: 0.6;
  pointer-events: none;
}

.product-feature-chip__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  padding-bottom: 0.62rem;
  border-bottom: 1px solid rgba(4, 157, 217, 0.2);
}

.product-feature-chip__icon {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(4, 157, 217, 0.42);
  border-radius: 999px;
  color: #8fdcff;
  background: radial-gradient(circle, rgba(4, 157, 217, 0.18), rgba(4, 157, 217, 0.04) 62%, transparent);
  box-shadow: 0 0 24px rgba(4, 157, 217, 0.08);
}

.product-feature-chip__icon svg {
  width: 1.32rem;
  height: 1.32rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-feature-chip__icon svg * {
  fill: none;
  stroke: currentColor;
}

.product-feature-chip strong {
  display: block;
  color: #12a8ea;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-feature-chip span:last-child {
  display: block;
  line-height: 1.6;
}

:root[data-theme="light"] .product-feature-chip {
  border-color: rgba(4, 157, 217, 0.16) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(229, 246, 252, 0.5)),
    rgba(255, 255, 255, 0.74) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 14px 32px rgba(0, 63, 107, 0.055);
}

:root[data-theme="light"] .product-feature-chip::before {
  border-top-color: rgba(4, 157, 217, 0.28);
}

:root[data-theme="light"] .product-feature-chip__head {
  border-bottom-color: rgba(4, 157, 217, 0.18);
}

:root[data-theme="light"] .product-feature-chip__icon {
  border-color: rgba(4, 157, 217, 0.34);
  color: rgba(3, 88, 140, 0.9);
  background: radial-gradient(circle, rgba(4, 157, 217, 0.12), rgba(255, 255, 255, 0.38) 64%, transparent);
}

:root[data-theme="light"] .product-feature-chip strong {
  color: #049dd9;
}

:root[data-theme="light"] .product-feature-chip span {
  color: rgba(1, 40, 64, 0.68);
}

.module-card,
.reveal-card {
  opacity: 1;
  transform: none;
}

.page-shell {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

.product-visual {
  position: relative;
  overflow: hidden;
  min-height: 9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 40%, rgba(4, 157, 217, 0.2), transparent 55%),
    rgba(0, 0, 0, 0.22);
}

.product-visual--eagle {
  min-height: clamp(16rem, 28vw, 22rem);
}

.product-visual--skan,
.product-visual--arke {
  min-height: clamp(22rem, 34vw, 28rem);
}

.product-intel-visual {
  display: grid;
  width: min(118%, 44rem);
  margin-left: clamp(-2.5rem, -3vw, -1rem);
  place-items: center;
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
  isolation: isolate;
}

.product-intel-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 157, 217, 0.16), transparent 0 18%, rgba(4, 157, 217, 0.08) 19%, transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(32, 224, 112, 0.08), transparent 48%);
  filter: blur(2px);
}

.product-intel-visual svg {
  width: 100%;
  max-width: 34rem;
  height: auto;
  overflow: visible;
}

.product-intel-visual__grid path {
  fill: none;
  stroke: rgba(143, 220, 255, 0.1);
  stroke-width: 1;
}

.product-intel-visual__links path,
.product-mail-visual__pipeline path {
  fill: none;
  stroke: url("#skan-line");
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.34));
}

.product-mail-visual__pipeline path {
  stroke: url("#arke-line");
}

.product-intel-visual__nodes circle {
  fill: rgba(4, 157, 217, 0.16);
  stroke: rgba(4, 157, 217, 0.8);
  stroke-width: 2;
}

.product-intel-visual__core rect,
.product-mail-visual__metrics rect {
  fill: rgba(1, 40, 64, 0.82);
  stroke: rgba(4, 157, 217, 0.72);
  stroke-width: 2;
  filter: drop-shadow(0 18px 40px rgba(0, 63, 107, 0.26));
}

.product-intel-visual__core path,
.product-mail-visual__metrics path {
  fill: none;
  stroke: #8fdcff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-mail-visual__envelopes rect {
  fill: rgba(1, 40, 64, 0.72);
  stroke: rgba(4, 157, 217, 0.68);
  stroke-width: 2;
}

.product-mail-visual__envelopes path {
  fill: none;
  stroke: #8fdcff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-intel-visual text {
  fill: rgba(255, 255, 255, 0.72);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-anchor: middle;
  text-transform: uppercase;
}

.product-intel-visual__labels text {
  fill: rgba(143, 220, 255, 0.76);
  font-size: 0.68rem;
}

:root[data-theme="light"] .product-intel-visual::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 157, 217, 0.18), transparent 0 18%, rgba(4, 157, 217, 0.07) 19%, transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.74), transparent 58%);
}

:root[data-theme="light"] .product-intel-visual__grid path {
  stroke: rgba(1, 40, 64, 0.08);
}

:root[data-theme="light"] .product-intel-visual__core rect,
:root[data-theme="light"] .product-mail-visual__metrics rect,
:root[data-theme="light"] .product-mail-visual__envelopes rect {
  fill: rgba(244, 247, 248, 0.9);
  stroke: rgba(4, 157, 217, 0.42);
  filter: drop-shadow(0 16px 36px rgba(0, 63, 107, 0.1));
}

:root[data-theme="light"] .product-intel-visual__core path,
:root[data-theme="light"] .product-mail-visual__metrics path,
:root[data-theme="light"] .product-mail-visual__envelopes path {
  stroke: #03588c;
}

:root[data-theme="light"] .product-intel-visual text {
  fill: rgba(1, 40, 64, 0.72);
}

:root[data-theme="light"] .product-intel-visual__labels text {
  fill: rgba(3, 88, 140, 0.72);
}

.eagle-motion-card {
  --spotlight-x: 58%;
  --spotlight-y: 42%;
  --eagle-tilt-x: 0deg;
  --eagle-tilt-y: 0deg;
  display: grid;
  min-height: clamp(24rem, 39vw, 32rem);
  width: min(122%, 48rem);
  margin-left: clamp(-3.5rem, -4vw, -1.25rem);
  place-items: center;
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  isolation: isolate;
  overflow: visible;
  perspective: 900px;
}

:root[data-theme="light"] .eagle-motion-card {
  background: transparent !important;
  box-shadow: none !important;
}

.eagle-motion-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.1), transparent 18rem),
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(4, 157, 217, 0.14), transparent 13rem);
  opacity: 0.62;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.eagle-motion-card::before {
  display: none;
}

.eagle-motion-card:hover::after {
  opacity: 1;
}

:root[data-theme="light"] .eagle-motion-card::after {
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.62), transparent 15rem),
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(4, 157, 217, 0.1), transparent 12rem);
}

.eagle-hero-proof-card {
  position: relative;
  overflow: hidden;
  min-height: 8.45rem;
  background:
    linear-gradient(180deg, rgba(4, 157, 217, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.eagle-hero-proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(4, 157, 217, 0.42);
  opacity: 0.6;
  pointer-events: none;
}

.eagle-hero-proof-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.78rem;
  padding-bottom: 0.72rem;
  padding-right: 0.35rem;
  border-bottom: 1px solid rgba(4, 157, 217, 0.2);
}

.eagle-hero-proof-card__icon {
  display: inline-grid;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 1.9rem;
  place-items: center;
  border: 1px solid rgba(4, 157, 217, 0.42);
  border-radius: 999px;
  color: #8fdcff;
  background: radial-gradient(circle, rgba(4, 157, 217, 0.18), rgba(4, 157, 217, 0.04) 62%, transparent);
  box-shadow: 0 0 24px rgba(4, 157, 217, 0.1);
}

.eagle-hero-proof-card__icon svg {
  width: 0.98rem;
  height: 0.98rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.eagle-hero-proof-card__icon svg * {
  fill: none;
  stroke: currentColor;
}

.eagle-hero-proof-card strong {
  display: block;
  min-width: 0;
  color: #12a8ea;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.18;
  text-transform: uppercase;
}

.eagle-hero-proof-card span:last-child {
  display: block;
  line-height: 1.5;
}

.eagle-hero-proof-card:hover {
  border-color: rgba(4, 157, 217, 0.48) !important;
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(4, 157, 217, 0.14);
}

:root[data-theme="light"] .eagle-hero-proof-card {
  border-color: rgba(4, 157, 217, 0.18) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(229, 246, 252, 0.46)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 14px 34px rgba(0, 63, 107, 0.055);
  backdrop-filter: blur(14px) saturate(1.08);
}

:root[data-theme="light"] .eagle-hero-proof-card:hover {
  border-color: rgba(4, 157, 217, 0.42) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 26px 74px rgba(0, 63, 107, 0.14);
}

:root[data-theme="light"] .eagle-hero-proof-card::before {
  border-top-color: rgba(4, 157, 217, 0.28);
}

:root[data-theme="light"] .eagle-hero-proof-card__head {
  border-bottom-color: rgba(4, 157, 217, 0.18);
}

:root[data-theme="light"] .eagle-hero-proof-card__icon {
  border-color: rgba(4, 157, 217, 0.34);
  color: rgba(3, 88, 140, 0.9);
  background: radial-gradient(circle, rgba(4, 157, 217, 0.12), rgba(255, 255, 255, 0.38) 64%, transparent);
}

:root[data-theme="light"] .eagle-hero-proof-card strong {
  color: #049dd9;
}

:root[data-theme="light"] .eagle-section-card {
  border-color: rgba(4, 157, 217, 0.16) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(229, 246, 252, 0.42)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 16px 40px rgba(0, 63, 107, 0.055);
  backdrop-filter: blur(14px) saturate(1.08);
}

:root[data-theme="light"] .eagle-section-card--module {
  background:
    radial-gradient(circle at 12% 18%, rgba(4, 157, 217, 0.09), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(229, 246, 252, 0.45)) !important;
}

.eagle-insight-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.eagle-insight-card__icon {
  display: inline-grid;
  width: 2.25rem;
  height: auto;
  flex: 0 0 2.25rem;
  place-items: center;
  border: 0;
  background: transparent;
  color: #8fdcff;
  align-self: center;
  box-shadow: none;
}

.eagle-insight-card__icon svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eagle-insight-card__icon svg * {
  fill: none;
  stroke: currentColor;
}

.eagle-insight-card--bare-icon {
  gap: 1.1rem;
}

.eagle-insight-card--bare-icon .eagle-insight-card__icon {
  width: 2.25rem;
  height: auto;
  flex-basis: 2.25rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #8fdcff;
}

.eagle-insight-card--bare-icon .eagle-insight-card__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.eagle-insight-card span:last-child {
  flex: 1;
  display: block;
}

:root[data-theme="light"] .eagle-insight-card__icon {
  border: 0;
  background: transparent;
  color: rgba(3, 88, 140, 0.88);
  box-shadow: none;
}

:root[data-theme="light"] .eagle-insight-card--bare-icon .eagle-insight-card__icon {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(3, 88, 140, 0.88);
}

.eagle-motion-card__halo {
  position: absolute;
  width: min(29rem, 74%);
  aspect-ratio: 1;
  border: 1px solid rgba(4, 157, 217, 0.12);
  border-radius: 999px;
  box-shadow: 0 0 72px rgba(4, 157, 217, 0.07);
  animation: eagleComplianceHalo 7.2s ease-in-out infinite;
}

.eagle-motion {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 42rem);
  height: auto;
}

.eagle-motion--legacy {
  display: none;
}

.eagle-ops-motion {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 37rem);
  min-height: clamp(17rem, 29vw, 23rem);
  place-items: center;
}

.eagle-ops-motion__brand {
  position: relative;
  display: grid;
  width: min(17rem, 58%);
  aspect-ratio: 356 / 393;
  overflow: hidden;
  place-items: center;
  transform: rotateX(var(--eagle-tilt-x)) rotateY(var(--eagle-tilt-y));
  animation: eagleBrandFloat 5.2s ease-in-out infinite;
  transform-style: preserve-3d;
}

.eagle-ops-motion__brand::before,
.eagle-ops-motion__brand::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(4, 157, 217, 0.22);
  border-radius: 999px;
  opacity: 0.52;
  animation: eagleIconOrbit 6.4s ease-in-out infinite;
  pointer-events: none;
}

.eagle-ops-motion__brand::after {
  inset: 18%;
  border-color: rgba(32, 224, 112, 0.26);
  animation-delay: -3.2s;
}

.eagle-ops-motion__logo {
  width: 276%;
  max-width: none;
  height: auto;
  justify-self: start;
  filter: drop-shadow(0 22px 40px rgba(4, 157, 217, 0.16));
  transform: translateZ(34px);
}

.eagle-ops-motion__scan {
  position: absolute;
  inset: 8% 4%;
  background: linear-gradient(105deg, transparent 0%, rgba(4, 157, 217, 0.18) 42%, rgba(32, 224, 112, 0.25) 50%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-42%);
  animation: eagleBrandScan 4.2s ease-in-out infinite;
  pointer-events: none;
}

.eagle-ops-motion__signal {
  display: none;
  position: absolute;
  left: 0.8rem;
  align-items: center;
  gap: 0.55rem;
  color: rgba(4, 157, 217, 0.86);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: eagleSignalApproach 3.8s ease-in-out infinite;
}

.eagle-ops-motion__signal::before {
  content: "";
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #049dd9;
  box-shadow: 0 0 16px rgba(4, 157, 217, 0.62);
}

.eagle-ops-motion__signal::after {
  content: "";
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(4, 157, 217, 0.7), transparent);
}

.eagle-ops-motion__signal--one {
  top: 26%;
}

.eagle-ops-motion__signal--two {
  top: 58%;
  animation-delay: -1.9s;
}

.eagle-ops-motion__flow {
  display: none;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  gap: 0.55rem;
  width: min(13rem, 48%);
}

.eagle-ops-motion__flow span {
  border: 1px solid rgba(4, 157, 217, 0.22);
  background: rgba(1, 40, 64, 0.42);
  padding: 0.7rem 0.8rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(0);
  animation: eagleFlowConfirm 4.8s ease-in-out infinite;
}

.eagle-ops-motion__flow span:nth-child(2) {
  animation-delay: -1.6s;
}

.eagle-ops-motion__flow span:nth-child(3) {
  border-color: rgba(32, 224, 112, 0.34);
  color: rgba(32, 224, 112, 0.92);
  animation-delay: -3.2s;
}

:root[data-theme="light"] .eagle-ops-motion__logo {
  filter: drop-shadow(0 22px 40px rgba(0, 63, 107, 0.13));
}

:root[data-theme="light"] .eagle-ops-motion__scan {
  mix-blend-mode: multiply;
  background: linear-gradient(105deg, transparent 0%, rgba(4, 157, 217, 0.12) 42%, rgba(32, 224, 112, 0.18) 50%, transparent 62%);
}

:root[data-theme="light"] .eagle-ops-motion__flow span {
  border-color: rgba(0, 63, 107, 0.13);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(1, 40, 64, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

:root[data-theme="light"] .eagle-ops-motion__flow span:nth-child(3) {
  border-color: rgba(32, 224, 112, 0.36);
  color: rgba(0, 92, 56, 0.82);
}

.eagle-ops-motion {
  display: none !important;
}

.eagle-cpu-architecture {
  position: relative;
  z-index: 2;
  display: block;
  width: min(126%, 50rem);
  height: auto;
  color: rgba(255, 255, 255, 0.28);
  filter: drop-shadow(0 28px 55px rgba(4, 157, 217, 0.12));
}

.eagle-cpu-architecture__paths {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.24;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  opacity: 0.42;
  animation: eagleCpuPathDraw 1.2s cubic-bezier(0.25, 0.1, 0.5, 1) forwards;
}

.eagle-cpu-pulse {
  offset-anchor: 10px 0;
  opacity: 0.86;
  mix-blend-mode: screen;
  animation: eagleCpuPulsePath infinite cubic-bezier(0.75, -0.01, 0, 0.99);
}

.eagle-cpu-line-1 {
  offset-path: path("M 10 20 h 79.5 q 5 0 5 5 v 30");
  animation-delay: 1s;
  animation-duration: 5s;
}

.eagle-cpu-line-2 {
  offset-path: path("M 180 10 h -69.7 q -5 0 -5 5 v 40");
  animation-delay: 6s;
  animation-duration: 2s;
}

.eagle-cpu-line-3 {
  offset-path: path("M 130 20 v 21.8 q 0 5 -5 5 h -25");
  animation-delay: 4s;
  animation-duration: 6s;
}

.eagle-cpu-line-4 {
  offset-path: path("M 170 80 v -21.8 q 0 -5 -5 -5 h -65");
  animation-delay: 3s;
  animation-duration: 3s;
}

.eagle-cpu-line-5 {
  offset-path: path("M 135 65 h 15 q 5 0 5 5 v 10 q 0 5 -5 5 h -39.8 q -5 0 -5 -5 v -35");
  animation-delay: 9s;
  animation-duration: 4s;
}

.eagle-cpu-line-6 {
  offset-path: path("M 94.8 95 v -46");
  animation-delay: 3s;
  animation-duration: 7s;
}

.eagle-cpu-line-7 {
  offset-path: path("M 88 88 v -15 q 0 -5 -5 -5 h -10 q -5 0 -5 -5 v -5 q 0 -5 5 -5 h 28");
  animation-delay: 4s;
  animation-duration: 4s;
}

.eagle-cpu-line-8 {
  offset-path: path("M 30 30 h 25 q 5 0 5 5 v 6.5 q 0 5 5 5 h 35");
  animation-delay: 3s;
  animation-duration: 3s;
}

.eagle-cpu-architecture__chip {
  transform-origin: center;
  transform-box: fill-box;
  animation: eagleCpuChipPulse 4s ease-in-out infinite;
}

.eagle-cpu-architecture__chip-box {
  fill: url("#eagle-cpu-chip-grad");
  stroke: rgba(4, 157, 217, 0.54);
  stroke-width: 0.35;
  filter: drop-shadow(0 0 8px rgba(4, 157, 217, 0.32));
}

@media (max-width: 1023px) {
  .eagle-motion-card {
    width: 100%;
    min-height: clamp(18rem, 62vw, 26rem);
    margin-left: 0;
  }

  .eagle-cpu-architecture {
    width: min(112%, 42rem);
  }
}

.eagle-cpu-icon--light {
  display: none;
}

:root[data-theme="light"] .eagle-cpu-icon--dark {
  display: none;
}

:root[data-theme="light"] .eagle-cpu-icon--light {
  display: block;
}

:root[data-theme="light"] .eagle-cpu-architecture {
  color: rgba(0, 63, 107, 0.2);
  filter: drop-shadow(0 28px 48px rgba(0, 63, 107, 0.09));
}

:root[data-theme="light"] .eagle-cpu-pulse {
  opacity: 0.7;
  mix-blend-mode: multiply;
}

:root[data-theme="light"] .eagle-cpu-architecture__chip-box {
  fill: rgba(255, 255, 255, 0.9);
  stroke: rgba(4, 157, 217, 0.38);
  filter: drop-shadow(0 10px 18px rgba(0, 63, 107, 0.12));
}

.eagle-motion__grid path {
  fill: none;
  stroke: rgba(4, 157, 217, 0.08);
  stroke-width: 1;
}

.eagle-motion__signal {
  fill: none;
  stroke: url("#eagleMotionLine");
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 22 18;
  opacity: 0.78;
  animation: eagleSignalFlow 4.8s linear infinite;
}

.eagle-motion__signal--two {
  animation-delay: -2.2s;
}

.eagle-flight__risk-feed text,
.eagle-flight__output text {
  fill: rgba(4, 157, 217, 0.82);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-anchor: middle;
  text-transform: uppercase;
}

.eagle-flight__feed-line,
.eagle-flight__decision-line {
  fill: none;
  stroke: url("#eagleMotionLine");
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 14 14;
  animation: eagleSignalFlow 3.6s linear infinite;
}

.eagle-flight__feed-line--delay {
  animation-delay: -1.8s;
}

.eagle-flight__risk-dot {
  fill: #049dd9;
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.7));
  transform-origin: center;
  transform-box: fill-box;
  animation: eagleRiskPulse 2.6s ease-in-out infinite;
}

.eagle-flight__risk-dot--delay {
  animation-delay: -1.3s;
}

.eagle-flight__bird {
  transform-origin: 52% 50%;
  transform-box: fill-box;
  animation: eagleBodyGlide 5.6s ease-in-out infinite;
}

.eagle-flight__wing {
  transform-box: fill-box;
  transform-origin: 78% 52%;
}

.eagle-flight__wing--left {
  animation: eagleWingLeft 2.8s ease-in-out infinite;
}

.eagle-flight__wing--right {
  transform-origin: 18% 52%;
  animation: eagleWingRight 2.8s ease-in-out infinite;
}

.eagle-flight__head {
  transform-box: fill-box;
  transform-origin: 28% 55%;
  animation: eagleHeadScan 4.2s ease-in-out infinite;
}

.eagle-flight__eye {
  fill: #20e070;
  filter: drop-shadow(0 0 9px rgba(32, 224, 112, 0.82));
  animation: eagleEyePulse 2.1s ease-in-out infinite;
}

.eagle-flight__scan {
  fill: none;
  stroke: #20e070;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 92;
  stroke-dashoffset: 92;
  opacity: 0;
  filter: drop-shadow(0 0 9px rgba(32, 224, 112, 0.62));
  animation: eagleScanBeam 4.2s ease-in-out infinite;
}

.eagle-flight__shield {
  fill: rgba(32, 224, 112, 0.08);
  stroke: rgba(32, 224, 112, 0.7);
  stroke-width: 2;
  filter: drop-shadow(0 0 16px rgba(32, 224, 112, 0.18));
  transform-origin: center;
  transform-box: fill-box;
  animation: eagleShieldConfirm 4.2s ease-in-out infinite;
}

.eagle-flight__check {
  fill: none;
  stroke: #20e070;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 86;
  stroke-dashoffset: 86;
  animation: eagleCheckDraw 4.2s ease-in-out infinite;
}

.eagle-motion__node {
  fill: #049dd9;
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.7));
  transform-origin: center;
  transform-box: fill-box;
  animation: eagleNodePulse 2.8s ease-in-out infinite;
}

.eagle-motion__node--delay {
  animation-delay: -1.4s;
}

.eagle-motion__node--green {
  fill: #20e070;
  filter: drop-shadow(0 0 10px rgba(32, 224, 112, 0.56));
}

.eagle-motion__eagle {
  transform-origin: 52% 50%;
  transform-box: fill-box;
  animation: eagleBodyGlide 5.6s ease-in-out infinite;
}

.eagle-motion__facet,
.eagle-motion__beak {
  fill: url("#eagleMotionFill");
  stroke: rgba(255, 255, 255, 0.44);
  stroke-width: 2.1;
  stroke-linejoin: round;
  transform-origin: center;
  transform-box: fill-box;
  animation: eagleFacetPulse 4.4s ease-in-out infinite;
}

.eagle-motion__facet--soft {
  animation-delay: -1.1s;
  opacity: 0.74;
}

.eagle-motion__facet--bright,
.eagle-motion__beak {
  stroke: rgba(4, 157, 217, 0.92);
  animation-delay: -2.1s;
  filter: drop-shadow(0 0 12px rgba(4, 157, 217, 0.28));
}

.eagle-motion__trace {
  fill: none;
  stroke: #049dd9;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 530;
  stroke-dashoffset: 530;
  opacity: 0.86;
  animation: eagleTraceBuild 4.8s ease-in-out infinite;
}

.eagle-motion__trace--delay {
  animation-delay: -1.2s;
}

.eagle-motion__trace--delay-two {
  animation-delay: -2.4s;
}

.eagle-motion__chip {
  transform-origin: center;
  transform-box: fill-box;
  animation: eagleChipActivate 4.8s ease-in-out infinite;
}

.eagle-motion__chip--two {
  animation-delay: -1.6s;
}

.eagle-motion__chip--three {
  animation-delay: -3.2s;
}

.eagle-motion__chip rect {
  fill: rgba(1, 40, 64, 0.58);
  stroke: rgba(4, 157, 217, 0.36);
  stroke-width: 1;
}

.eagle-motion__chip text {
  fill: #049dd9;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-anchor: middle;
  text-transform: uppercase;
}

:root[data-theme="light"] .eagle-motion__grid path {
  stroke: rgba(0, 63, 107, 0.075);
}

:root[data-theme="light"] .eagle-motion__facet,
:root[data-theme="light"] .eagle-motion__beak {
  stroke: rgba(0, 63, 107, 0.5);
}

:root[data-theme="light"] .eagle-motion__facet--bright,
:root[data-theme="light"] .eagle-motion__beak {
  stroke: rgba(4, 157, 217, 0.86);
}

:root[data-theme="light"] .eagle-motion__chip rect {
  fill: rgba(255, 255, 255, 0.62);
  stroke: rgba(0, 63, 107, 0.16);
}

:root[data-theme="light"] .eagle-motion__chip text {
  fill: var(--fx-deep);
}

:root[data-theme="light"] .eagle-flight__risk-feed text,
:root[data-theme="light"] .eagle-flight__output text {
  fill: rgba(1, 40, 64, 0.62);
}

:root[data-theme="light"] .eagle-flight__shield {
  fill: rgba(32, 224, 112, 0.1);
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
}

.product-status__dot {
  position: relative;
  display: inline-flex;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #20e070;
  box-shadow: 0 0 16px rgba(32, 224, 112, 0.78), 0 0 32px rgba(32, 224, 112, 0.32);
  animation: onlinePulse 1.9s ease-in-out infinite;
}

.product-status__dot::after {
  content: "";
  position: absolute;
  inset: -0.42rem;
  border-radius: inherit;
  border: 1px solid rgba(32, 224, 112, 0.42);
  opacity: 0;
  animation: onlineRipple 1.9s ease-out infinite;
}

.product-status--soon .product-status__dot {
  background: #ff9f1c;
  box-shadow: 0 0 16px rgba(255, 159, 28, 0.78), 0 0 32px rgba(255, 159, 28, 0.32);
  animation-name: pendingPulse;
}

.product-status--soon .product-status__dot::after {
  border-color: rgba(255, 159, 28, 0.42);
  animation-name: pendingRipple;
}

.product-benefits {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 16.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 72% 110%, rgba(3, 88, 140, 0.18), transparent 15rem),
    radial-gradient(circle at 100% 0%, rgba(4, 157, 217, 0.06), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.24);
  padding: clamp(1.35rem, 3vw, 1.9rem);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 24% 8%, black, transparent 58%);
  opacity: 0.7;
  pointer-events: none;
}

.benefit-card:hover {
  border-color: rgba(4, 157, 217, 0.42);
  background:
    radial-gradient(circle at 72% 110%, rgba(3, 88, 140, 0.26), transparent 15rem),
    radial-gradient(circle at 12% 0%, rgba(4, 157, 217, 0.12), transparent 13rem),
    radial-gradient(circle at 92% 8%, rgba(4, 157, 217, 0.1), transparent 11rem),
    rgba(0, 0, 0, 0.26);
  transform: translateY(-4px);
}

.benefit-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: #fff;
  filter: drop-shadow(0 0 18px rgba(4, 157, 217, 0.24));
}

.benefit-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.benefit-card h3,
.benefit-card p {
  position: relative;
  z-index: 1;
}

.benefit-card h3 {
  margin-top: 1.4rem;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.08;
}

.benefit-card p {
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.96rem;
  line-height: 1.7;
}

:root[data-theme="light"] .benefit-card {
  border-color: rgba(0, 63, 107, 0.12);
  background:
    radial-gradient(circle at 72% 110%, rgba(4, 157, 217, 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.36)),
    rgba(244, 247, 248, 0.64);
}

:root[data-theme="light"] .benefit-card::before {
  background:
    linear-gradient(rgba(0, 63, 107, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 63, 107, 0.045) 1px, transparent 1px);
}

:root[data-theme="light"] .benefit-card__icon,
:root[data-theme="light"] .benefit-card h3 {
  color: var(--fx-deep);
}

:root[data-theme="light"] .benefit-card p {
  color: rgba(1, 40, 64, 0.66);
}

.eagle-product-logo {
  display: block;
  width: min(17rem, 100%);
  height: auto;
  margin-top: 1.45rem;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 22px rgba(4, 157, 217, 0.2));
}

.eagle-product-logo--hero {
  width: min(14.5rem, 78%);
  margin-bottom: 1.9rem;
  opacity: 0.92;
}

:root[data-theme="light"] .eagle-product-logo {
  filter: drop-shadow(0 12px 24px rgba(1, 40, 64, 0.12));
}

.eagle-product-signature {
  display: flex;
  width: max-content;
  flex-direction: column;
  gap: 0.08rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(4, 157, 217, 0.78);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eagle-product-signature span {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 0.92;
}

.eagle-product-signature strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.eagle-preview-chip {
  position: relative;
  overflow: hidden;
  min-height: 9.1rem;
  background:
    linear-gradient(180deg, rgba(4, 157, 217, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.24);
}

.eagle-preview-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(4, 157, 217, 0.38);
  opacity: 0.6;
  pointer-events: none;
}

.eagle-preview-chip__head {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  margin-bottom: 0.78rem;
  padding-bottom: 0.72rem;
  padding-right: 0;
  border-bottom: 1px solid rgba(4, 157, 217, 0.2);
}

.eagle-preview-chip__icon {
  display: inline-grid;
  width: 1.62rem;
  height: 1.62rem;
  flex: 0 0 1.62rem;
  place-items: center;
  border: 1px solid rgba(4, 157, 217, 0.42);
  border-radius: 999px;
  color: #8fdcff;
  background: radial-gradient(circle, rgba(4, 157, 217, 0.18), rgba(4, 157, 217, 0.04) 62%, transparent);
  box-shadow: 0 0 24px rgba(4, 157, 217, 0.08);
}

.eagle-preview-chip__icon svg {
  width: 0.78rem;
  height: 0.78rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.eagle-preview-chip__icon svg * {
  fill: none;
  stroke: currentColor;
}

.eagle-preview-chip strong {
  display: block;
  min-width: 0;
  color: #12a8ea;
  font-size: clamp(0.54rem, 0.5vw, 0.61rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.18;
  text-transform: uppercase;
}

.eagle-preview-chip span:last-child {
  display: block;
  line-height: 1.5;
}

:root[data-theme="light"] .eagle-product-signature {
  border-left-color: rgba(4, 157, 217, 0.72);
  color: var(--fx-deep);
}

:root[data-theme="light"] .eagle-product-signature strong {
  color: rgba(1, 40, 64, 0.62);
}

:root[data-theme="light"] .eagle-preview-chip {
  border-color: rgba(4, 157, 217, 0.18) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(229, 246, 252, 0.44)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 14px 34px rgba(0, 63, 107, 0.055);
  backdrop-filter: blur(14px) saturate(1.08);
}

:root[data-theme="light"] .eagle-preview-chip::before {
  border-top-color: rgba(4, 157, 217, 0.28);
}

:root[data-theme="light"] .eagle-preview-chip__head {
  border-bottom-color: rgba(4, 157, 217, 0.18);
}

:root[data-theme="light"] .eagle-preview-chip__icon {
  border-color: rgba(4, 157, 217, 0.34);
  color: rgba(3, 88, 140, 0.9);
  background: radial-gradient(circle, rgba(4, 157, 217, 0.12), rgba(255, 255, 255, 0.38) 64%, transparent);
}

:root[data-theme="light"] .eagle-preview-chip strong {
  color: #049dd9;
}

:root[data-theme="light"] .eagle-preview-panel {
  border-color: rgba(4, 157, 217, 0.2) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(230, 247, 252, 0.46)),
    rgba(255, 255, 255, 0.56) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 28px 90px rgba(0, 63, 107, 0.11);
  backdrop-filter: blur(18px) saturate(1.12);
}

:root[data-theme="light"] .eagle-preview-panel__glow {
  background:
    radial-gradient(circle at 72% 18%, rgba(4, 157, 217, 0.18), transparent 18rem),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.82), transparent 17rem) !important;
  opacity: 0.96;
}

:root[data-theme="light"] .eagle-preview-panel__stat,
:root[data-theme="light"] .eagle-preview-panel__module,
:root[data-theme="light"] .eagle-preview-panel__flow {
  border-color: rgba(0, 63, 107, 0.12) !important;
  background: rgba(255, 255, 255, 0.52) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 44px rgba(0, 63, 107, 0.055);
  backdrop-filter: blur(12px) saturate(1.06);
}

:root[data-theme="light"] .eagle-preview-panel__stat strong {
  color: var(--fx-deep) !important;
}

.eagle-preview-panel__step {
  --step-border-idle: rgba(255, 255, 255, 0.1);
  --step-border-active: rgba(4, 157, 217, 0.48);
  --step-glow-active: rgba(4, 157, 217, 0.16);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--step-border-idle);
  background: rgba(255, 255, 255, 0.045);
  min-height: 4.35rem;
  padding: 0.85rem 0.95rem 0.85rem 1.2rem;
  animation: eagleStepFocus 3.45s ease-in-out infinite;
  animation-delay: var(--step-delay);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.eagle-preview-panel__step::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  bottom: 0.85rem;
  left: 0;
  width: 3px;
  background: var(--fx-cyan);
  box-shadow: 0 0 18px rgba(4, 157, 217, 0.45);
}

.eagle-preview-panel__step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(4, 157, 217, 0.18) 46%, transparent 76%);
  opacity: 0;
  transform: translateX(-115%);
  animation: eagleStepSweep 3.45s ease-in-out infinite;
  animation-delay: var(--step-delay);
  pointer-events: none;
}

.eagle-preview-panel__step span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

:root[data-theme="light"] .eagle-preview-panel__step {
  --step-border-idle: rgba(0, 63, 107, 0.1);
  --step-border-active: rgba(4, 157, 217, 0.36);
  --step-glow-active: rgba(0, 63, 107, 0.08);
  border-color: rgba(0, 63, 107, 0.1);
  background: rgba(255, 255, 255, 0.48);
  color: rgba(1, 40, 64, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

:root[data-theme="light"] .eagle-preview-panel__step::after {
  background: linear-gradient(110deg, transparent 0%, rgba(4, 157, 217, 0.14) 46%, transparent 76%);
}

.eagle-module-link {
  display: block;
  border: 1px solid rgba(4, 157, 217, 0.2);
  background: rgba(0, 0, 0, 0.22);
  padding: 1rem;
  color: inherit;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.eagle-module-link:hover {
  border-color: rgba(4, 157, 217, 0.58);
  background: rgba(4, 157, 217, 0.08);
  transform: translateY(-2px);
}

.eagle-module-link span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--fx-cyan);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.eagle-module-link strong {
  display: block;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.eagle-module-link em {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.5;
}

:root[data-theme="light"] .eagle-module-link {
  border-color: rgba(0, 63, 107, 0.16);
  background: rgba(255, 255, 255, 0.54);
}

:root[data-theme="light"] .eagle-module-link:hover {
  background: rgba(4, 157, 217, 0.08);
}

:root[data-theme="light"] .eagle-module-link strong {
  color: var(--fx-deep);
}

:root[data-theme="light"] .eagle-module-link em {
  color: rgba(1, 40, 64, 0.58);
}

:root[data-theme="light"] .future-product-icon {
  border-color: rgba(0, 63, 107, 0.18);
  color: rgba(0, 63, 107, 0.6);
}

.product-card--soon {
  position: relative;
  overflow: hidden;
}

.product-card--soon::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: min(19rem, 45vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(4, 157, 217, 0.16), transparent 70%);
  pointer-events: none;
}

.future-product-icon {
  margin-top: 2.5rem;
  display: grid;
  width: 4.2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(4, 157, 217, 0.25);
  color: rgba(4, 157, 217, 0.72);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 157, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 157, 217, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}

.ky-orbit {
  position: absolute;
  inset: 1.25rem;
  display: grid;
  place-items: center;
}

.ky-orbit span {
  position: absolute;
  width: var(--ring-size);
  aspect-ratio: 1;
  border: 1px solid rgba(4, 157, 217, 0.24);
  border-radius: 999px;
  animation: orbitPulse 4.4s ease-in-out infinite;
  animation-delay: var(--ring-delay);
}

.ky-check {
  position: relative;
  display: grid;
  width: 3.6rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(4, 157, 217, 0.42);
  background: rgba(1, 40, 64, 0.58);
  color: #049dd9;
  font-weight: 900;
  box-shadow: 0 0 38px rgba(4, 157, 217, 0.2);
}

.product-details {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.detail-toggle {
  cursor: pointer;
}

:root[data-theme="light"] .detail-toggle {
  background-color: rgba(0, 63, 107, 0.05) !important;
  border-color: rgba(0, 63, 107, 0.18) !important;
  color: #03588c !important;
}

:root[data-theme="light"] .product-details li {
  background-color: rgba(0, 63, 107, 0.04) !important;
  border-color: rgba(0, 63, 107, 0.12) !important;
  color: rgba(1, 40, 64, 0.78) !important;
}

:root[data-theme="light"] input,
:root[data-theme="light"] select,
:root[data-theme="light"] textarea {
  background-color: rgba(0, 63, 107, 0.04) !important;
  border-color: rgba(0, 63, 107, 0.18) !important;
  color: rgba(1, 40, 64, 0.9) !important;
}

:root[data-theme="light"] input::placeholder,
:root[data-theme="light"] textarea::placeholder {
  color: rgba(1, 40, 64, 0.38) !important;
}

:root[data-theme="light"] select option {
  background-color: #f0f5f9;
  color: rgba(1, 40, 64, 0.9);
}

.detail-toggle__icon {
  display: inline-block;
  transition: transform 220ms ease;
}

.detail-toggle[aria-expanded="true"] .detail-toggle__icon {
  transform: rotate(45deg);
}

.training-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.training-hero__panel {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(4, 157, 217, 0.22);
  background:
    radial-gradient(circle at 80% 12%, rgba(4, 157, 217, 0.22), transparent 10rem),
    linear-gradient(180deg, rgba(2, 56, 89, 0.48), rgba(1, 18, 26, 0.72));
  box-shadow: 0 24px 90px rgba(0, 63, 107, 0.2);
}

.training-hero__panel span {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 7, 10, 0.24);
  padding: 0.9rem 1rem;
  color: rgba(244, 247, 248, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.training-hero__panel span::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #049dd9;
  box-shadow: 0 0 22px rgba(4, 157, 217, 0.76);
}

.training-programs {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.training-program-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(1.5rem, 4vw, 3.4rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(4, 157, 217, 0.22);
  background:
    radial-gradient(circle at 14% 0%, rgba(4, 157, 217, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(2, 56, 89, 0.5), rgba(1, 25, 37, 0.72));
  box-shadow: 0 22px 84px rgba(0, 63, 107, 0.18);
}

.training-program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.035) 44%, transparent 62%);
}

.training-program-card__summary,
.training-program-card__details {
  position: relative;
  z-index: 1;
}

.training-program-card__index {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(4, 157, 217, 0.46);
  padding: 0.55rem 0.75rem;
  color: #049dd9;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.training-program-card h2 {
  margin-top: 1.35rem;
  color: rgba(244, 247, 248, 0.96);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.training-program-card__summary p {
  margin-top: 1.2rem;
  max-width: 38rem;
  color: rgba(244, 247, 248, 0.66);
  font-size: 1rem;
  line-height: 1.85;
}

.training-program-card__details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 7, 10, 0.24);
  padding: clamp(1rem, 2vw, 1.4rem);
}

.training-program-card__details > p {
  margin-bottom: 1rem;
  color: #049dd9;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.training-program-card__details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.training-program-card__details li {
  position: relative;
  display: flex;
  min-height: 3.15rem;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(4, 157, 217, 0.14);
  background: rgba(1, 40, 64, 0.28);
  padding: 0.85rem 0.95rem;
  color: rgba(244, 247, 248, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
}

.training-program-card__details li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(4, 157, 217, 0.9);
  box-shadow: 0 0 18px rgba(4, 157, 217, 0.54);
}

.consulting-execution-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(4, 157, 217, 0.14);
  background:
    radial-gradient(circle at 78% 100%, rgba(4, 157, 217, 0.16), transparent 14rem),
    rgba(1, 40, 64, 0.28);
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  color: rgba(244, 247, 248, 0.72);
  box-shadow: 0 20px 70px rgba(0, 63, 107, 0.12);
}

.consulting-execution-card h3 {
  color: rgba(244, 247, 248, 0.96) !important;
}

.consulting-execution-card p {
  color: rgba(244, 247, 248, 0.66) !important;
}

.training-cta {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(4, 157, 217, 0.22);
  background:
    radial-gradient(circle at 80% 12%, rgba(4, 157, 217, 0.2), transparent 16rem),
    linear-gradient(180deg, rgba(2, 56, 89, 0.52), rgba(1, 25, 37, 0.72));
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 24px 90px rgba(0, 63, 107, 0.2);
}

.training-cta p {
  margin-bottom: 0.85rem;
  color: #049dd9;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.training-cta h2 {
  color: rgba(244, 247, 248, 0.96);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.training-cta span {
  display: block;
  margin-top: 1.1rem;
  max-width: 46rem;
  color: rgba(244, 247, 248, 0.64);
  line-height: 1.75;
}

.training-cta a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: #049dd9;
  padding: 1rem 1.5rem;
  color: #012840;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.training-cta a:hover {
  background: rgba(244, 247, 248, 0.96);
}

:root[data-theme="light"] .training-hero__panel,
:root[data-theme="light"] .training-program-card,
:root[data-theme="light"] .training-cta {
  background:
    radial-gradient(circle at 82% 10%, rgba(4, 157, 217, 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 244, 247, 0.82));
  border-color: rgba(4, 157, 217, 0.18);
  box-shadow: 0 24px 80px rgba(0, 63, 107, 0.08);
}

:root[data-theme="light"] .training-hero__panel span,
:root[data-theme="light"] .training-program-card__details,
:root[data-theme="light"] .training-program-card__details li,
:root[data-theme="light"] .consulting-execution-card {
  background:
    radial-gradient(circle at 78% 100%, rgba(4, 157, 217, 0.1), transparent 14rem),
    rgba(255, 255, 255, 0.7);
  border-color: rgba(4, 157, 217, 0.16);
  color: rgba(1, 40, 64, 0.72);
  box-shadow: 0 20px 70px rgba(0, 63, 107, 0.06);
}

:root[data-theme="light"] .training-program-card h2,
:root[data-theme="light"] .training-cta h2,
:root[data-theme="light"] .consulting-execution-card h3 {
  color: rgba(1, 40, 64, 0.94);
}

:root[data-theme="light"] .training-program-card__summary p,
:root[data-theme="light"] .training-cta span,
:root[data-theme="light"] .consulting-execution-card p {
  color: rgba(1, 40, 64, 0.66);
}

@media (min-width: 1180px) {
  .training-program-card__details ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .training-hero,
  .training-program-card,
  .training-cta {
    grid-template-columns: 1fr;
  }

  .training-hero__panel {
    align-self: stretch;
  }

  .training-cta {
    display: grid;
  }

  .training-cta a {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .training-program-card__details ul {
    grid-template-columns: 1fr;
  }

  .training-program-card__details li {
    min-height: auto;
  }
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(4, 157, 217, 0.16), transparent 28rem),
    #02070a;
}

:root[data-theme="light"] .page-transition-overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(4, 157, 217, 0.18), transparent 28rem),
    #f4f7f8;
}

.fusionx-watermark {
  position: absolute;
  right: max(-4vw, -2rem);
  top: 50%;
  height: 90%;
  width: auto;
  max-width: 50vw;
  transform: translateY(-50%) rotate(-4deg);
  opacity: 0.18;
  filter: drop-shadow(0 0 42px rgba(4, 157, 217, 0.2));
  pointer-events: none;
  z-index: 0;
  --wm-top-1: #fff;
  --wm-top-2: #b7bfc5;
  --wm-top-3: #032135;
  --wm-bottom-1: #fff;
  --wm-bottom-2: #032238;
  --wm-main-1: #fff;
  --wm-main-2: #fff;
  --wm-main-3: #fff;
}

:root[data-theme="light"] .fusionx-watermark {
  opacity: 0.12;
  --wm-top-1: #359af6;
  --wm-top-2: #236eb0;
  --wm-top-3: #041e35;
  --wm-bottom-1: #1a609e;
  --wm-bottom-2: #041e35;
  --wm-main-1: #3293eb;
  --wm-main-2: #0e3b60;
  --wm-main-3: #031e32;
}

.about-scroll-stage {
  min-height: 112vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(4, 157, 217, 0.12), transparent 24rem),
    linear-gradient(180deg, #02070a 0%, #03080d 45%, #02070a 100%);
}

.about-scroll-wrap {
  position: relative;
  min-height: 112vh;
}

.about-scroll-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.about-scroll-header {
  position: absolute;
  top: clamp(4.25rem, 7.6vw, 5.8rem);
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100%, 74rem);
  transform: translateX(-50%);
  pointer-events: none;
}

.about-scroll-header h2 {
  max-width: none;
  font-size: clamp(3.6rem, 8.8vw, 6.2rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 0;
  white-space: nowrap;
  color: rgba(255, 255, 255, 1);
  text-shadow: none;
  text-wrap: balance;
}

.about-scroll-perspective {
  position: relative;
  perspective: 1400px;
  perspective-origin: 50% 8%;
  padding-top: clamp(7.3rem, 11vw, 9.2rem);
}

.about-scroll-card {
  position: relative;
  z-index: 3;
  width: min(100%, 67rem);
  margin: 0 auto;
  border-radius: 2.1rem;
  padding: clamp(0.95rem, 2vw, 1.15rem);
  border: 1px solid rgba(19, 24, 29, 0.88);
  background:
    linear-gradient(180deg, rgba(53, 57, 61, 0.92), rgba(26, 29, 33, 0.98)),
    rgba(26, 29, 33, 0.98);
  box-shadow:
    0 -22px 46px rgba(0, 0, 0, 0.28),
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 42px 88px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform-origin: center top;
  will-change: transform, opacity;
}

.about-scroll-card__inner {
  position: relative;
  overflow: hidden;
  min-height: clamp(28rem, 43vw, 33rem);
  border-radius: 1.2rem;
  border: 1px solid rgba(196, 208, 218, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(247, 250, 253, 0.995)),
    rgba(255, 255, 255, 0.995);
  padding: clamp(2rem, 4vw, 3rem) clamp(2.3rem, 5vw, 4rem);
}

.about-scroll-card__ghostmark {
  position: absolute;
  right: clamp(-0.75rem, 1vw, 1rem);
  top: 58%;
  width: min(27rem, 44%);
  transform: translateY(-50%) rotate(-5deg);
  opacity: 0.12;
  filter: none;
  pointer-events: none;
  z-index: 0;
  --about-x-top-1: #6bc5ff;
  --about-x-top-2: #236eb0;
  --about-x-top-3: #031e32;
  --about-x-bottom-1: #88d6ff;
  --about-x-bottom-2: #031e32;
  --about-x-main-1: #d3efff;
  --about-x-main-2: #3293eb;
  --about-x-main-3: #031e32;
}

.about-scroll-card__ghostmark svg {
  display: block;
  width: 100%;
  height: auto;
}

.about-scroll-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  max-width: min(100%, 54rem);
  padding-right: clamp(10rem, 18vw, 16rem);
}

.about-scroll-card__title {
  max-width: 15ch;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--fx-deep);
  text-wrap: balance;
}

.about-scroll-card__copy {
  width: min(100%, 100%);
  margin-top: clamp(1.6rem, 3vw, 2.1rem);
  display: grid;
  gap: 1.25rem;
}

.about-scroll-card__copy p {
  margin: 0;
  color: rgba(1, 40, 64, 0.74);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.62;
  max-width: 35rem;
}

:root[data-theme="light"] .about-scroll-stage {
  background:
    radial-gradient(circle at 50% 18%, rgba(4, 157, 217, 0.14), transparent 24rem),
    linear-gradient(180deg, #f3f8fb 0%, #edf5f9 48%, #f5fafc 100%);
}

:root[data-theme="light"] .about-scroll-card {
  border-color: rgba(19, 24, 29, 0.88);
  background:
    linear-gradient(180deg, rgba(53, 57, 61, 0.94), rgba(26, 29, 33, 0.98)),
    rgba(26, 29, 33, 0.98);
  box-shadow:
    0 -24px 48px rgba(0, 0, 0, 0.22),
    0 18px 36px rgba(0, 63, 107, 0.12),
    0 42px 80px rgba(0, 63, 107, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

:root[data-theme="light"] .about-scroll-card__inner {
  border-color: rgba(191, 206, 216, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 250, 253, 0.998)),
    rgba(255, 255, 255, 1);
}

:root[data-theme="light"] .about-scroll-card__ghostmark {
  opacity: 0.11;
  --about-x-top-1: #4db5ff;
  --about-x-top-2: #236eb0;
  --about-x-top-3: #041e35;
  --about-x-bottom-1: #59b2ff;
  --about-x-bottom-2: #082845;
  --about-x-main-1: #bfe6ff;
  --about-x-main-2: #3697ea;
  --about-x-main-3: #0d3558;
}

:root[data-theme="light"] .about-scroll-card__title {
  color: var(--fx-deep);
}

:root[data-theme="light"] .about-scroll-card__copy p {
  color: rgba(1, 40, 64, 0.74);
}

:root[data-theme="light"] .about-scroll-header h2 {
  color: rgba(1, 40, 64, 1);
  text-shadow: none;
}

@media (max-width: 1023px) {
  .about-scroll-header {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    margin-bottom: 1.4rem;
  }

  .about-scroll-header h2 {
    max-width: none;
    white-space: normal;
    font-size: clamp(2.6rem, 10vw, 4rem) !important;
  }

  .about-scroll-perspective {
    padding-top: 0;
  }

  .about-scroll-card__content {
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding-right: 0;
  }

  .about-scroll-card__title {
    max-width: 14ch;
  }

  .about-scroll-card__copy p {
    max-width: 100%;
    text-align: center;
  }

  .about-scroll-card__ghostmark {
    right: -0.5rem;
    top: auto;
    bottom: -0.25rem;
    width: min(15rem, 45%);
    transform: rotate(-5deg);
  }
}

.client-strip {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(1, 40, 64, 0.34), rgba(2, 7, 10, 0.9)),
    #02070a;
  box-shadow: inset 0 1px rgba(4, 157, 217, 0.12), inset 0 -1px rgba(255, 255, 255, 0.05);
}

:root[data-theme="light"] .client-strip {
  background:
    linear-gradient(180deg, rgba(244, 247, 248, 0.9), rgba(219, 236, 243, 0.92)),
    #f4f7f8;
  box-shadow: inset 0 1px rgba(0, 63, 107, 0.12), inset 0 -1px rgba(0, 63, 107, 0.08);
}

.client-ticker {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.client-ticker__track {
  display: flex;
  width: max-content;
  animation: clientTicker 24s linear infinite;
}

.client-ticker__group {
  display: flex;
  align-items: center;
  gap: clamp(4rem, 10vw, 9rem);
  min-width: max-content;
  padding-right: clamp(4rem, 10vw, 9rem);
}

.client-ticker img {
  max-height: clamp(2.8rem, 5vw, 4.4rem);
  max-width: clamp(10rem, 16vw, 15rem);
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 220ms ease, transform 220ms ease;
}

.client-ticker:hover .client-ticker__track {
  animation-play-state: paused;
}

.client-ticker img:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}

.processor-stage {
  position: relative;
  width: min(100%, 72rem);
  min-height: clamp(29rem, 42vw, 34rem);
  isolation: isolate;
}

.processor-stage::before {
  content: "";
  position: absolute;
  inset: 4% 14%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 157, 217, 0.22), transparent 0 14%, rgba(4, 157, 217, 0.08) 15%, transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(1, 40, 64, 0.44), transparent 64%);
  filter: blur(2px);
  opacity: 0.78;
  z-index: -1;
}

:root[data-theme="light"] .processor-stage::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 157, 217, 0.2), transparent 0 14%, rgba(4, 157, 217, 0.08) 15%, transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.62), transparent 64%);
}

.processor-traces {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.processor-axis {
  position: absolute;
  top: 50%;
  z-index: 2;
  color: rgba(126, 215, 255, 0.74);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.processor-axis--products {
  left: 39%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.processor-axis--services {
  right: 39%;
  transform: translate(50%, -50%);
}

.processor-trace {
  fill: none;
  stroke: url(#processorTraceGradient);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.44));
}

.trace-node {
  transform-origin: center;
  transform: scale(0);
}

.processor-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  width: clamp(8.6rem, 14vw, 10.4rem);
  aspect-ratio: 1;
  place-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  border: 1px solid rgba(4, 157, 217, 0.4);
  background: radial-gradient(circle at 50% 50%, rgba(1, 40, 64, 0.9), #010a10);
  box-shadow: 0 0 50px rgba(4, 157, 217, 0.25), inset 0 0 20px rgba(4, 157, 217, 0.2);
}

:root[data-theme="light"] .processor-core {
  background: radial-gradient(circle at 50% 50%, rgba(244, 247, 248, 0.96), #d8e9f0);
  box-shadow: 0 0 44px rgba(4, 157, 217, 0.22), inset 0 0 22px rgba(0, 63, 107, 0.12);
}

.processor-core::before,
.processor-core::after {
  content: "";
  position: absolute;
  inset: -0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(4, 157, 217, 0.16);
  pointer-events: none;
}

.processor-core::after {
  inset: -1.45rem;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.08);
}

.processor-core__eyebrow {
  color: rgba(4, 157, 217, 0.88);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.processor-core strong {
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1;
}

.processor-card {
  position: absolute;
  width: min(17.8rem, 76vw);
  min-height: 7.65rem;
  padding: 0.9rem 1rem;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
}

.processor-card span {
  display: inline-flex;
  margin-bottom: 0.58rem;
  border: 1px solid rgba(4, 157, 217, 0.32);
  padding: 0.28rem 0.5rem;
  color: var(--fx-cyan);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.processor-card strong {
  display: block;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.2rem, 1.95vw, 1.68rem);
  line-height: 1;
}

:root[data-theme="light"] .processor-card strong {
  color: var(--fx-deep);
}

.processor-card p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.42;
}

:root[data-theme="light"] .processor-card p {
  color: rgba(1, 40, 64, 0.68);
}

.processor-card--eagle {
  left: 2%;
  top: 0;
}

.processor-card--skan {
  left: 2%;
  top: 34%;
}

.processor-card--arke {
  left: 2%;
  top: 68%;
}

.processor-card--consultoria {
  right: 2%;
  top: 0;
}

.processor-card--treinamento {
  right: 2%;
  top: 34%;
}

.processor-card--especializado {
  right: 2%;
  top: 68%;
}

.processor-card--product {
  border-color: rgba(4, 157, 217, 0.34);
}

.processor-card--service {
  border-color: rgba(126, 215, 255, 0.26);
}

.processor-x-mark {
  width: clamp(4.2rem, 6.6vw, 5.2rem);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(4, 157, 217, 0.62));
}

.processor-x-mark__light {
  display: block;
}

.processor-x-mark__dark {
  display: none;
}

:root[data-theme="light"] .processor-x-mark__light {
  display: none;
}

:root[data-theme="light"] .processor-x-mark__dark {
  display: block;
}

.ecosystem-stage::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto auto;
  width: min(40vw, 34rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(4, 157, 217, 0.16), transparent 68%);
  pointer-events: none;
}

.ecosystem-orbit {
  position: relative;
  width: min(100%, 58rem);
  min-height: clamp(35rem, 58vw, 46rem);
  perspective: 1100px;
  transform-style: preserve-3d;
}

.ecosystem-orbit__glow {
  position: absolute;
  inset: 16% 10%;
  border: 1px solid rgba(4, 157, 217, 0.14);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 157, 217, 0.22), transparent 0 10%, rgba(4, 157, 217, 0.08) 11%, transparent 52%),
    linear-gradient(135deg, rgba(3, 88, 140, 0.18), transparent);
  box-shadow: 0 0 90px rgba(4, 157, 217, 0.12);
  animation: corePulse 6.4s ease-in-out infinite;
}

.ecosystem-card,
.ecosystem-core {
  position: absolute;
  will-change: transform;
}

.ecosystem-card {
  width: min(20rem, 72vw);
  min-height: 11.5rem;
  padding: 1.35rem;
  transform-style: preserve-3d;
}

.ecosystem-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  border: 1px solid rgba(4, 157, 217, 0.32);
  padding: 0.35rem 0.5rem;
  color: #049dd9;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.ecosystem-card strong {
  display: block;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 0.96;
}

.ecosystem-card p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.65;
}

.ecosystem-card--primary {
  left: 8%;
  top: 10%;
}

.ecosystem-card--ky {
  right: 2%;
  top: 18%;
}

.ecosystem-card--dossier {
  left: 2%;
  bottom: 14%;
}

.ecosystem-card--coaf {
  right: 11%;
  bottom: 7%;
}

.ecosystem-core {
  left: 50%;
  top: 50%;
  display: grid;
  width: clamp(9rem, 18vw, 13rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 70px rgba(4, 157, 217, 0.18),
    inset 0 0 46px rgba(4, 157, 217, 0.16);
}

.standard-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--fx-header-line);
  background: var(--fx-header);
}

header.fixed {
  background: var(--fx-header);
  border-bottom-color: var(--fx-header-line);
}

@media (max-width: 960px) {
  header.fixed nav,
  .standard-header nav {
    display: none !important;
  }
}

.standard-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #03080d;
}

.corporate-footer {
  border-top: 1px solid var(--fx-line);
  background:
    radial-gradient(circle at 75% 0%, rgba(4, 157, 217, 0.12), transparent 24rem),
    linear-gradient(180deg, #03080d, #010406);
}

:root[data-theme="light"] .standard-footer,
:root[data-theme="light"] .corporate-footer {
  background:
    radial-gradient(circle at 75% 0%, rgba(4, 157, 217, 0.12), transparent 24rem),
    linear-gradient(180deg, #f4f7f8, #d8e9f0);
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.footer-link-grid h3 {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

:root[data-theme="light"] .footer-link-grid h3 {
  color: rgba(1, 40, 64, 0.88);
}

.footer-link-grid a {
  display: block;
  margin-top: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms ease;
}

:root[data-theme="light"] .footer-link-grid a {
  color: rgba(1, 40, 64, 0.58);
}

.footer-link-grid a:hover {
  color: var(--fx-cyan);
  transform: translateX(2px);
}

.footer-link-grid a span {
  margin-left: 0.35rem;
  color: rgba(4, 157, 217, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .corporate-footer {
    text-align: center;
  }

  .corporate-footer .site-logo {
    margin-inline: auto;
  }

  .corporate-footer p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(9rem, 1fr));
    justify-items: center;
    text-align: center;
    gap: 2.35rem clamp(2rem, 8vw, 4rem);
  }

  .footer-link-grid a:hover {
    transform: none;
  }

  .corporate-footer > div:last-child {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .corporate-footer > div:last-child > div {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .footer-link-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .corporate-footer > div:last-child {
    gap: 1.15rem;
  }
}

.blog-card {
  position: relative;
  overflow: hidden;
  min-height: 29rem;
  transition: border-color 220ms ease, transform 220ms ease;
}

.blog-card:hover {
  border-color: rgba(4, 157, 217, 0.48);
  transform: translateY(-4px);
}

.blog-media,
.post-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(4, 157, 217, 0.28), transparent 42%),
    radial-gradient(circle at 70% 20%, rgba(244, 247, 248, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(1, 40, 64, 0.92), rgba(0, 0, 0, 0.36));
}

:root[data-theme="light"] .blog-media,
:root[data-theme="light"] .post-hero-media {
  border-color: rgba(0, 63, 107, 0.12);
  background:
    linear-gradient(135deg, rgba(4, 157, 217, 0.16), transparent 42%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.75), transparent 16rem),
    linear-gradient(145deg, rgba(244, 247, 248, 0.95), rgba(216, 233, 240, 0.62));
}

.blog-media::before,
.post-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 74%);
}

.blog-tag {
  display: inline-flex;
  border: 1px solid rgba(4, 157, 217, 0.34);
  padding: 0.34rem 0.55rem;
  color: var(--fx-cyan);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.post-body {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.95;
}

:root[data-theme="light"] .post-body {
  color: rgba(1, 40, 64, 0.72);
}

.post-body h2 {
  margin: 3rem 0 1rem;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

:root[data-theme="light"] .post-body h2 {
  color: var(--fx-deep);
}

.post-body p {
  margin: 1.3rem 0;
}

.post-body blockquote {
  margin: 2.5rem 0;
  border-left: 1px solid var(--fx-cyan);
  padding: 0.5rem 0 0.5rem 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.45;
}

:root[data-theme="light"] .post-body blockquote {
  color: rgba(1, 40, 64, 0.9);
}

.blog-admin-form label {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.blog-admin-form span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

:root[data-theme="light"] .blog-admin-form span {
  color: rgba(1, 40, 64, 0.58);
}

.blog-admin-form input,
.blog-admin-form select,
.blog-admin-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.24);
  padding: 0.95rem 1rem;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.blog-admin-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.blog-admin-form input:focus,
.blog-admin-form select:focus,
.blog-admin-form textarea:focus {
  border-color: rgba(4, 157, 217, 0.74);
  box-shadow: 0 0 0 3px rgba(4, 157, 217, 0.14);
}

.blog-admin-form input::placeholder,
.blog-admin-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

:root[data-theme="light"] .blog-admin-form input,
:root[data-theme="light"] .blog-admin-form select,
:root[data-theme="light"] .blog-admin-form textarea {
  border-color: rgba(0, 63, 107, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(1, 40, 64, 0.86);
}

:root[data-theme="light"] .blog-admin-form input::placeholder,
:root[data-theme="light"] .blog-admin-form textarea::placeholder {
  color: rgba(1, 40, 64, 0.34);
}

.legal-content {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.85;
}

.legal-content h2 {
  margin: 2.5rem 0 0.85rem;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.legal-content p {
  margin: 1rem 0;
}

.legal-content ul {
  margin: 0.85rem 0 1.1rem 1.25rem;
  list-style: disc;
}

.legal-content li {
  margin: 0.35rem 0;
  padding-left: 0.2rem;
}

.legal-content a {
  color: var(--fx-cyan);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

:root[data-theme="light"] .legal-content {
  color: rgba(1, 40, 64, 0.72);
}

:root[data-theme="light"] .legal-content h2 {
  color: var(--fx-deep);
}

/* SEO landing pages */
.seo-landing {
  --seo-card-border: rgba(4, 157, 217, 0.22);
  --seo-card-bg: linear-gradient(180deg, rgba(2, 56, 89, 0.42), rgba(1, 40, 64, 0.24)), rgba(13, 13, 13, 0.54);
  --seo-card-muted: rgba(244, 247, 248, 0.66);
}

:root[data-theme="light"] .seo-landing {
  --seo-card-border: rgba(0, 63, 107, 0.14);
  --seo-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(235, 246, 250, 0.68));
  --seo-card-muted: rgba(1, 40, 64, 0.66);
}

.seo-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: center;
}

.seo-page-section {
  margin-right: auto;
  margin-bottom: clamp(3.75rem, 6vw, 5.5rem);
  margin-left: auto;
}

.seo-page-section--product {
  padding-top: clamp(0.9rem, 2vw, 1.8rem);
}

.seo-page-section--links {
  margin-top: clamp(0.75rem, 2vw, 1.5rem);
}

.seo-page-section--faq {
  margin-top: clamp(0.6rem, 1.8vw, 1.25rem);
}

.seo-page-section--final {
  margin-bottom: clamp(5rem, 8vw, 7rem);
}

.seo-landing-hero__copy {
  min-width: 0;
}

.seo-landing-hero__copy h1,
.seo-landing-related-head h2,
.seo-landing-product h2,
.seo-reference-panel h2,
.seo-faq-panel h2,
.seo-final-cta h2 {
  margin: 0;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

:root[data-theme="light"] .seo-landing-hero__copy h1,
:root[data-theme="light"] .seo-landing-related-head h2,
:root[data-theme="light"] .seo-landing-product h2,
:root[data-theme="light"] .seo-reference-panel h2,
:root[data-theme="light"] .seo-faq-panel h2,
:root[data-theme="light"] .seo-final-cta h2 {
  color: var(--fx-deep);
}

.seo-landing-hero__copy h1 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 3.9vw, 3.55rem);
  line-height: 1.02;
}

.seo-landing-hero__copy h1 span {
  display: inline;
}

.seo-landing-intro {
  max-width: 42rem;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.76;
}

.seo-landing-promise {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  line-height: 1.78;
}

:root[data-theme="light"] .seo-landing-intro {
  color: rgba(1, 40, 64, 0.72);
}

:root[data-theme="light"] .seo-landing-promise {
  color: rgba(1, 40, 64, 0.58);
}

.seo-landing-actions,
.seo-final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.seo-landing-actions {
  margin-top: 2rem;
}

.seo-landing-btn {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 1rem 1.45rem;
  color: #012840;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.seo-landing-btn--primary {
  background: #049dd9;
  color: #012840;
}

.seo-landing-btn--primary:hover {
  background: #f4f7f8;
  color: #012840;
}

.seo-landing-btn--secondary {
  border-color: rgba(4, 157, 217, 0.36);
  color: var(--fx-cyan);
}

.seo-landing-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

:root[data-theme="light"] .seo-landing-btn--secondary:hover {
  border-color: rgba(4, 157, 217, 0.52);
  color: #03588c;
}

.seo-landing-visual {
  position: relative;
  min-height: clamp(20rem, 31vw, 30rem);
  overflow: hidden;
  border: 1px solid var(--seo-card-border);
  background:
    radial-gradient(circle at 48% 42%, rgba(4, 157, 217, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(2, 56, 89, 0.58), rgba(0, 0, 0, 0.18));
  box-shadow: 0 30px 90px rgba(0, 63, 107, 0.22);
}

:root[data-theme="light"] .seo-landing-visual {
  background:
    radial-gradient(circle at 48% 42%, rgba(4, 157, 217, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(222, 241, 248, 0.72));
  box-shadow: 0 28px 80px rgba(0, 63, 107, 0.1);
}

.seo-landing-visual::before,
.seo-landing-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.seo-landing-visual::before {
  inset: 1.2rem;
  border: 1px solid rgba(4, 157, 217, 0.18);
}

.seo-landing-visual::after {
  inset: auto 12% 18% 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 157, 217, 0.9), transparent);
  opacity: 0.72;
}

.seo-landing-visual__brand {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(9rem, 19vw, 14rem);
  aspect-ratio: 1;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(4, 157, 217, 0.28);
  background:
    radial-gradient(circle, rgba(4, 157, 217, 0.18), transparent 66%),
    rgba(1, 40, 64, 0.62);
  box-shadow:
    0 0 56px rgba(4, 157, 217, 0.18),
    inset 0 0 38px rgba(4, 157, 217, 0.1);
}

.seo-landing-visual__brand img {
  width: 64%;
  height: auto;
}

.seo-landing-visual__rail {
  position: absolute;
  inset: 2.6rem 2.2rem auto 2.2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.seo-landing-visual__rail span {
  position: relative;
  overflow: hidden;
  min-height: 4.3rem;
  border: 1px solid rgba(4, 157, 217, 0.24);
  background: rgba(0, 0, 0, 0.18);
  padding: 0.85rem 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(calc(var(--i) * 0.55rem));
}

:root[data-theme="light"] .seo-landing-visual__rail span {
  background: rgba(255, 255, 255, 0.54);
  color: rgba(1, 40, 64, 0.64);
}

.seo-landing-visual__matrix {
  position: absolute;
  inset: auto 2.2rem 2.6rem 2.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.seo-landing-visual__matrix span {
  position: relative;
  overflow: hidden;
  height: 2.2rem;
  border: 1px solid rgba(4, 157, 217, 0.16);
  background: rgba(4, 157, 217, 0.05);
  opacity: calc(0.28 + (var(--i) % 4) * 0.12);
}

.seo-landing-visual--system .seo-landing-visual__rail {
  gap: 0.42rem;
}

.seo-landing-visual--system .seo-landing-visual__rail span {
  min-height: 3.8rem;
  transform: none;
}

.seo-landing-visual--system .seo-landing-visual__rail span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.44rem;
  z-index: 2;
  width: 0.44rem;
  height: 1px;
  background: rgba(4, 157, 217, 0.82);
}

.seo-landing-visual--system .seo-landing-visual__matrix {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.seo-landing-visual--system .seo-landing-visual__matrix span:nth-child(5n+1),
.seo-landing-visual--system .seo-landing-visual__matrix span:nth-child(5n+3) {
  background: rgba(4, 157, 217, 0.1);
  opacity: 0.62;
}

.seo-system-flow {
  display: grid;
  min-height: clamp(20rem, 32vw, 30rem);
  place-items: center;
  padding: clamp(1rem, 2.2vw, 1.8rem);
}

.seo-system-flow > .seo-landing-visual__brand,
.seo-system-flow > .seo-landing-visual__rail,
.seo-system-flow > .seo-landing-visual__matrix {
  display: none;
}

.seo-system-flow-svg {
  position: relative;
  z-index: 1;
  width: min(100%, 43rem);
  height: auto;
  overflow: visible;
}

.seo-system-flow-svg text {
  fill: rgba(244, 247, 248, 0.82);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-flow-frame {
  fill: rgba(1, 40, 64, 0.18);
  stroke: rgba(4, 157, 217, 0.24);
  stroke-width: 1.4;
}

.system-flow-grid path {
  fill: none;
  stroke: rgba(4, 157, 217, 0.08);
  stroke-width: 1;
}

.system-flow-lines path {
  fill: none;
  stroke: url("#systemFlowLine");
  stroke-dasharray: 14 12;
  stroke-width: 3;
  animation: systemFlowMove 4.8s linear infinite;
}

.system-flow-lines path:nth-child(2),
.system-flow-lines path:nth-child(4) {
  animation-delay: -1.4s;
}

.system-flow-lines path:nth-child(3),
.system-flow-lines path:nth-child(5) {
  animation-delay: -2.8s;
}

.system-flow-node rect {
  fill: rgba(1, 40, 64, 0.58);
  stroke: rgba(4, 157, 217, 0.28);
  stroke-width: 1.2;
}

.system-flow-node path {
  fill: none;
  stroke: rgba(135, 222, 230, 0.54);
  stroke-linecap: round;
  stroke-width: 5;
}

.system-flow-node--rules path,
.system-flow-node--evidence path {
  stroke: rgba(33, 192, 122, 0.56);
}

.system-flow-node--alerts path,
.system-flow-node--decision path {
  stroke: rgba(243, 180, 78, 0.62);
}

.system-flow-core__glow {
  fill: url("#systemCoreGlow");
  animation: systemCoreGlow 4.2s ease-in-out infinite;
}

.system-flow-core__box {
  fill: url("#systemDarkPanel");
  stroke: rgba(4, 157, 217, 0.7);
  stroke-width: 1.4;
  filter: drop-shadow(0 22px 36px rgba(0, 63, 107, 0.28));
}

.system-flow-core__ring {
  fill: none;
  stroke: rgba(4, 157, 217, 0.28);
  stroke-dasharray: 12 14;
  stroke-width: 1.6;
  transform-origin: 380px 280px;
  animation: systemCoreSpin 24s linear infinite;
}

.system-flow-core__eagle {
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 12px 20px rgba(4, 157, 217, 0.2));
}

.system-flow-core__eagle--dark {
  display: none;
}

.system-flow-core__eagle--white {
  display: block;
}

.system-flow-pulses circle {
  fill: #049dd9;
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.74));
  transform-origin: center;
  animation: systemPulse 2.8s ease-in-out infinite;
}

.system-flow-pulses circle:nth-child(2) {
  animation-delay: 0.35s;
}

.system-flow-pulses circle:nth-child(3) {
  animation-delay: 0.7s;
}

.system-flow-pulses circle:nth-child(4) {
  animation-delay: 1.05s;
}

.system-flow-pulses circle:nth-child(5) {
  animation-delay: 1.4s;
}

:root[data-theme="light"] .system-flow-frame {
  fill: rgba(255, 255, 255, 0.5);
  stroke: rgba(4, 157, 217, 0.24);
}

:root[data-theme="light"] .system-flow-node rect {
  fill: url("#systemPanel");
  stroke: rgba(4, 157, 217, 0.24);
}

:root[data-theme="light"] .seo-system-flow-svg text {
  fill: rgba(1, 40, 64, 0.64);
}

:root[data-theme="light"] .system-flow-core__eagle--dark {
  display: none;
}

:root[data-theme="light"] .system-flow-core__eagle--white {
  display: block;
}

.seo-landing-visual--tool .seo-landing-visual__brand {
  top: 52%;
  left: 34%;
  width: clamp(7.8rem, 16vw, 11.5rem);
}

.seo-landing-visual--tool .seo-landing-visual__rail {
  inset: 2.35rem 2.2rem auto 43%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-landing-visual--tool .seo-landing-visual__rail span {
  min-height: 3.25rem;
  text-align: left;
  transform: none;
}

.seo-landing-visual--tool .seo-landing-visual__matrix {
  inset: auto 2.2rem 2.45rem 43%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-landing-visual--tool .seo-landing-visual__matrix span {
  height: 2.35rem;
  opacity: 0.5;
}

.seo-landing-visual--tool .seo-landing-visual__matrix span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.62rem;
  width: 52%;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(4, 157, 217, 0.9), rgba(33, 192, 122, 0.7));
}

.seo-landing-visual--tool .seo-landing-visual__matrix span:nth-child(3n+2)::after {
  width: 72%;
}

.seo-landing-visual--tool .seo-landing-visual__matrix span:nth-child(4n)::after {
  width: 38%;
}

.seo-tool-mockup {
  display: grid;
  min-height: clamp(20rem, 32vw, 30rem);
  place-items: center;
  padding: clamp(1.1rem, 2.4vw, 2rem);
}

.seo-tool-laptop-svg {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  height: auto;
  overflow: visible;
}

.seo-tool-laptop-svg .tool-laptop {
  transform-origin: 50% 62%;
  animation: toolLaptopFloat 7s ease-in-out infinite;
}

.seo-tool-laptop-svg .tool-risk-line {
  stroke-dasharray: 108;
  stroke-dashoffset: 18;
  animation: toolRiskScan 3.8s ease-in-out infinite;
}

.seo-tool-laptop-svg .tool-connection {
  stroke-dasharray: 8 8;
  animation: toolConnectionMove 2.6s linear infinite;
}

.seo-tool-laptop-svg .tool-pulse {
  transform-origin: 386px 273px;
  animation: toolPulse 2.2s ease-in-out infinite;
}

@keyframes toolLaptopFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes toolRiskScan {
  0%,
  100% {
    stroke-dashoffset: 24;
    opacity: 0.74;
  }

  50% {
    stroke-dashoffset: -24;
    opacity: 1;
  }
}

@keyframes toolConnectionMove {
  to {
    stroke-dashoffset: -16;
  }
}

@keyframes toolPulse {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes systemFlowMove {
  to {
    stroke-dashoffset: -52;
  }
}

@keyframes systemCoreGlow {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

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

@keyframes systemPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1.28);
  }
}

.seo-landing-visual--software .seo-landing-visual__brand {
  top: 47%;
  width: clamp(8rem, 16vw, 12rem);
}

.seo-landing-visual--software .seo-landing-visual__rail span {
  min-height: 3.3rem;
  transform: none;
}

.seo-landing-visual--software .seo-landing-visual__matrix {
  grid-template-columns: 1.25fr 0.82fr 1fr 0.9fr;
  gap: 0.62rem;
}

.seo-landing-visual--software .seo-landing-visual__matrix span {
  height: 2.55rem;
  border-color: rgba(4, 157, 217, 0.22);
  background: linear-gradient(90deg, rgba(4, 157, 217, 0.12), rgba(4, 157, 217, 0.03));
  opacity: 0.54;
}

.seo-landing-visual--software .seo-landing-visual__matrix span::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(33, 192, 122, 0.9);
  box-shadow: 0 0 18px rgba(33, 192, 122, 0.22);
}

.seo-software-cockpit {
  display: grid;
  min-height: clamp(20rem, 32vw, 30rem);
  place-items: center;
  padding: clamp(1rem, 2.2vw, 1.8rem);
}

.seo-software-cockpit > .seo-landing-visual__brand,
.seo-software-cockpit > .seo-landing-visual__rail,
.seo-software-cockpit > .seo-landing-visual__matrix {
  display: none;
}

.seo-software-cockpit-svg {
  position: relative;
  z-index: 1;
  width: min(100%, 43rem);
  height: auto;
  overflow: visible;
}

.seo-software-cockpit-svg text {
  fill: rgba(244, 247, 248, 0.74);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.software-cockpit-backplate {
  fill: rgba(1, 40, 64, 0.16);
  stroke: rgba(4, 157, 217, 0.22);
  stroke-width: 1.4;
}

.software-cockpit-window {
  transform-origin: 360px 286px;
  animation: softwareCockpitFloat 7.5s ease-in-out infinite;
}

.software-cockpit-screen {
  fill: rgba(1, 24, 38, 0.94);
  stroke: rgba(4, 157, 217, 0.34);
  stroke-width: 1.4;
}

.software-cockpit-topbar {
  fill: rgba(4, 157, 217, 0.11);
}

.software-cockpit-topbar-cut {
  fill: none;
  stroke: rgba(4, 157, 217, 0.16);
  stroke-width: 1;
}

.software-cockpit-dot {
  fill: rgba(135, 222, 230, 0.28);
}

.software-cockpit-dot--blue {
  fill: #049dd9;
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.54));
}

.software-cockpit-sidebar {
  fill: rgba(1, 40, 64, 0.82);
}

.software-cockpit-icons circle {
  fill: rgba(4, 157, 217, 0.08);
  stroke: rgba(4, 157, 217, 0.28);
}

.software-cockpit-icons path {
  fill: none;
  stroke: rgba(135, 222, 230, 0.66);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.software-cockpit-grid path {
  fill: none;
  stroke: rgba(4, 157, 217, 0.08);
  stroke-width: 1;
}

.software-cockpit-lines path {
  fill: none;
  stroke: url("#softwareCockpitLine");
  stroke-dasharray: 10 12;
  stroke-linecap: round;
  stroke-width: 2.4;
  animation: softwareCockpitFlow 3.8s linear infinite;
}

.software-cockpit-lines path:nth-child(2) {
  animation-delay: -0.8s;
}

.software-cockpit-lines path:nth-child(3) {
  animation-delay: -1.6s;
}

.software-cockpit-lines path:nth-child(4) {
  animation-delay: -2.4s;
}

.software-cockpit-panel rect,
.software-cockpit-decision rect {
  fill: url("#softwareCockpitDarkPanel");
  stroke: rgba(4, 157, 217, 0.26);
  stroke-width: 1.2;
}

.software-cockpit-row rect,
.software-cockpit-case rect {
  fill: rgba(4, 157, 217, 0.06);
  stroke: rgba(4, 157, 217, 0.18);
}

.software-cockpit-row path,
.software-cockpit-case path,
.software-cockpit-doc-line,
.software-cockpit-status path {
  fill: none;
  stroke: rgba(135, 222, 230, 0.62);
  stroke-linecap: round;
  stroke-width: 3;
}

.software-cockpit-row circle,
.software-cockpit-pulses circle {
  fill: #049dd9;
  filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.62));
  transform-origin: center;
  animation: softwareCockpitPulse 2.6s ease-in-out infinite;
}

.software-cockpit-panel--signals .software-cockpit-row:nth-child(3) circle {
  animation-delay: 0.45s;
}

.software-cockpit-panel--signals .software-cockpit-row:nth-child(4) circle {
  animation-delay: 0.9s;
}

.software-cockpit-case circle {
  fill: rgba(243, 180, 78, 0.95);
  filter: drop-shadow(0 0 10px rgba(243, 180, 78, 0.28));
}

.software-cockpit-panel--cases .software-cockpit-case:nth-child(3) circle {
  fill: #049dd9;
}

.software-cockpit-panel--cases .software-cockpit-case:nth-child(4) circle {
  fill: #21c07a;
}

.software-cockpit-doc {
  fill: rgba(4, 157, 217, 0.06);
  stroke: rgba(4, 157, 217, 0.3);
  stroke-width: 1.5;
}

.software-cockpit-check {
  fill: none;
  stroke: #21c07a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.software-cockpit-decision > rect {
  fill: rgba(1, 40, 64, 0.72);
}

.software-cockpit-status rect {
  fill: rgba(33, 192, 122, 0.1);
  stroke: rgba(33, 192, 122, 0.28);
}

.software-cockpit-status circle {
  fill: #21c07a;
  animation: softwareCockpitStatus 2.8s ease-in-out infinite;
}

.software-cockpit-pulses circle:nth-child(2) {
  animation-delay: 0.35s;
}

.software-cockpit-pulses circle:nth-child(3) {
  animation-delay: 0.7s;
}

.software-cockpit-pulses circle:nth-child(4) {
  animation-delay: 1.05s;
}

:root[data-theme="light"] .software-cockpit-backplate {
  fill: rgba(255, 255, 255, 0.5);
  stroke: rgba(4, 157, 217, 0.24);
}

:root[data-theme="light"] .software-cockpit-screen {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(4, 157, 217, 0.28);
}

:root[data-theme="light"] .software-cockpit-topbar {
  fill: rgba(222, 241, 248, 0.72);
}

:root[data-theme="light"] .software-cockpit-sidebar {
  fill: rgba(222, 241, 248, 0.84);
}

:root[data-theme="light"] .software-cockpit-panel rect,
:root[data-theme="light"] .software-cockpit-decision rect {
  fill: url("#softwareCockpitPanel");
  stroke: rgba(4, 157, 217, 0.24);
}

:root[data-theme="light"] .software-cockpit-decision > rect {
  fill: rgba(255, 255, 255, 0.72);
}

:root[data-theme="light"] .seo-software-cockpit-svg text {
  fill: rgba(1, 40, 64, 0.62);
}

@keyframes softwareCockpitFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes softwareCockpitFlow {
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes softwareCockpitPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes softwareCockpitStatus {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 1;
  }
}

.seo-landing-stack {
  display: grid;
  gap: clamp(1.6rem, 2.8vw, 2.15rem);
}

.seo-landing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(18rem, 0.54fr);
  gap: clamp(1.35rem, 3vw, 2.65rem);
  padding: clamp(1.35rem, 2.6vw, 2.2rem);
}

.seo-landing-eyebrow {
  margin: 0 0 0.7rem;
  color: #049dd9 !important;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.seo-landing .seo-landing-eyebrow,
.seo-resource-strip .seo-landing-eyebrow,
.seo-reference-panel .seo-landing-eyebrow,
.seo-faq-panel .seo-landing-eyebrow {
  color: #049dd9 !important;
}

.seo-reference-panel > .seo-landing-eyebrow,
.seo-faq-panel > .seo-landing-eyebrow {
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.26em;
}

.seo-landing-section h2 {
  margin: 0;
  max-width: 24ch;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.85rem, 2.35vw, 2.55rem);
  font-weight: 760;
  letter-spacing: -0.015em;
  line-height: 1.08;
  text-wrap: balance;
}

.seo-landing-section p {
  max-width: 62rem;
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.74;
}

.seo-landing-section ul {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-landing-section li {
  border: 1px solid rgba(4, 157, 217, 0.2);
  background: rgba(0, 0, 0, 0.18);
  padding: 0.78rem 0.9rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.5;
}

:root[data-theme="light"] .seo-landing-section h2,
:root[data-theme="light"] .seo-landing-capability h3,
:root[data-theme="light"] .seo-related-card strong {
  color: var(--fx-deep);
}

:root[data-theme="light"] .seo-landing-section p,
:root[data-theme="light"] .seo-landing-section li {
  color: rgba(1, 40, 64, 0.66);
}

:root[data-theme="light"] .seo-landing-section li {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(0, 63, 107, 0.12);
}

.seo-landing-product {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  column-gap: clamp(2.4rem, 5vw, 4.8rem);
  row-gap: clamp(1.6rem, 3vw, 2.25rem);
  align-items: start;
}

.seo-landing-product h2,
.seo-landing-related-head h2,
.seo-reference-panel h2,
.seo-faq-panel h2,
.seo-final-cta h2 {
  font-size: clamp(1.9rem, 2.45vw, 2.7rem);
  line-height: 1.08;
  text-wrap: balance;
}

.seo-reference-panel h2,
.seo-faq-panel h2 {
  font-size: clamp(2.05rem, 2.7vw, 2.95rem);
}

.seo-landing-product p,
.seo-reference-panel p,
.seo-final-cta p {
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.74;
}

.seo-reference-panel > .seo-landing-eyebrow,
.seo-faq-panel > .seo-landing-eyebrow {
  margin: 0 0 0.7rem;
}

:root[data-theme="light"] .seo-landing-product p,
:root[data-theme="light"] .seo-reference-panel p,
:root[data-theme="light"] .seo-final-cta p {
  color: rgba(1, 40, 64, 0.66);
}

.seo-landing-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.55rem, 2.6vw, 2.1rem);
  align-items: stretch;
}

.seo-landing-capability,
.seo-related-card,
.seo-reference-panel,
.seo-faq-panel,
.seo-final-cta {
  border: 1px solid var(--seo-card-border);
  background: var(--seo-card-bg);
  box-shadow: 0 22px 70px rgba(0, 63, 107, 0.16);
}

.seo-landing-capability {
  min-height: 10.4rem;
  padding: 1.15rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.seo-landing-capability:hover,
.seo-related-card:hover {
  border-color: rgba(4, 157, 217, 0.52);
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(4, 157, 217, 0.12);
}

.seo-landing-capability span {
  display: inline-flex;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(4, 157, 217, 0.38);
  padding: 0.32rem 0.5rem;
  color: var(--fx-cyan);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.seo-landing-capability h3 {
  margin: 0;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 1.16;
  text-wrap: balance;
}

.seo-landing-capability p,
.seo-related-card p {
  margin: 0.75rem 0 0;
  color: var(--seo-card-muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.seo-landing-related-head {
  display: flex;
  max-width: 62rem;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: clamp(1.35rem, 2.4vw, 1.85rem);
}

.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.45rem, 2.4vw, 1.95rem);
  margin-bottom: clamp(3rem, 5.5vw, 4.75rem);
  align-items: stretch;
}

.seo-reference-faq-grid {
  gap: clamp(1.6rem, 2.8vw, 2.2rem);
}

.seo-related-card {
  display: flex;
  min-height: 11.5rem;
  flex-direction: column;
  padding: 1.15rem;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.seo-related-card span {
  margin-bottom: 0.78rem;
  color: var(--fx-cyan);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.seo-related-card strong {
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.06rem;
  font-weight: 760;
  line-height: 1.17;
  text-wrap: balance;
}

.seo-reference-panel,
.seo-faq-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.seo-reference-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.seo-reference-list a {
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(4, 157, 217, 0.18);
  padding: 0.85rem;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.seo-reference-list a:hover {
  border-color: rgba(4, 157, 217, 0.48);
  background: rgba(4, 157, 217, 0.06);
}

.seo-reference-list strong {
  color: #fff;
  font-size: 0.9rem;
}

.seo-reference-list span {
  color: var(--seo-card-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

:root[data-theme="light"] .seo-reference-list strong {
  color: var(--fx-deep);
}

.seo-faq {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.seo-faq details {
  border: 1px solid rgba(4, 157, 217, 0.18);
  background: rgba(0, 0, 0, 0.14);
}

:root[data-theme="light"] .seo-faq details {
  background: rgba(255, 255, 255, 0.58);
}

.seo-faq summary {
  cursor: pointer;
  padding: 0.85rem 0.95rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}

.seo-faq summary:focus-visible {
  outline: 2px solid rgba(4, 157, 217, 0.85);
  outline-offset: 2px;
}

.seo-faq p {
  margin: 0;
  padding: 0 0.95rem 0.95rem;
  color: var(--seo-card-muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

:root[data-theme="light"] .seo-faq summary {
  color: var(--fx-deep);
}

.seo-final-cta {
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.45rem, 3vw, 2.35rem);
}

.seo-final-cta > div {
  max-width: 46rem;
}

.seo-resource-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3.6vw, 2.8rem);
  align-items: start;
  margin-bottom: 4rem;
}

.seo-resource-strip__copy h2 {
  margin: 0;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.95rem, 2.65vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.08;
  text-wrap: balance;
}

.seo-resource-strip__copy p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.96rem;
  line-height: 1.72;
}

:root[data-theme="light"] .seo-resource-strip__copy h2 {
  color: var(--fx-deep);
}

:root[data-theme="light"] .seo-resource-strip__copy p {
  color: rgba(1, 40, 64, 0.64);
}

.seo-resource-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.45rem, 2.4vw, 1.95rem);
  padding-top: clamp(1rem, 1.5vw, 1.25rem);
}

.seo-resource-strip__grid a {
  display: grid;
  gap: 0.7rem;
  min-height: 10.5rem;
  border: 1px solid var(--seo-card-border, rgba(4, 157, 217, 0.22));
  background: var(--seo-card-bg, rgba(0, 0, 0, 0.2));
  padding: 1.1rem;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.seo-resource-strip__grid a:hover {
  border-color: rgba(4, 157, 217, 0.52);
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(4, 157, 217, 0.12);
}

.seo-resource-strip__grid span {
  color: var(--fx-cyan);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.seo-resource-strip__grid strong {
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.04rem;
  font-weight: 760;
  line-height: 1.18;
  text-wrap: balance;
}

.seo-resource-strip__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.56;
}

:root[data-theme="light"] .seo-resource-strip__grid strong {
  color: var(--fx-deep);
}

:root[data-theme="light"] .seo-resource-strip__grid a {
  border-color: rgba(0, 63, 107, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 251, 0.68));
  box-shadow: 0 22px 70px rgba(0, 63, 107, 0.12);
}

:root[data-theme="light"] .seo-resource-strip__grid p {
  color: rgba(1, 40, 64, 0.62);
}

@media (max-width: 1120px) {
  .seo-landing-hero,
  .seo-landing-section,
  .seo-landing-product,
  .seo-resource-strip {
    grid-template-columns: 1fr;
  }

  .seo-related-grid,
  .seo-resource-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-resource-strip__grid {
    padding-top: 0;
  }

  .seo-landing-hero__copy h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  .seo-page-section {
    margin-bottom: clamp(2.75rem, 10vw, 4rem);
  }

  .seo-landing-hero__copy {
    width: calc(100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
  }

  .seo-landing-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 8.4vw, 2.55rem);
    line-height: 1.04;
  }

  .seo-landing-hero__copy h1 span {
    display: block;
  }

  .seo-landing-intro {
    width: calc(100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
    font-size: 1rem;
    line-height: 1.72;
  }

  .seo-landing-promise {
    width: calc(100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .seo-landing-visual {
    min-height: 24rem;
  }

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

  .seo-landing-visual--tool .seo-landing-visual__brand,
  .seo-landing-visual--software .seo-landing-visual__brand {
    top: 50%;
    left: 50%;
    width: clamp(7.5rem, 34vw, 10rem);
  }

  .seo-landing-visual--tool .seo-landing-visual__rail,
  .seo-landing-visual--software .seo-landing-visual__rail {
    inset: 2.6rem 2.2rem auto 2.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-landing-visual__rail span:nth-child(n+5) {
    display: none;
  }

  .seo-landing-visual__matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-landing-visual--tool .seo-landing-visual__matrix,
  .seo-landing-visual--software .seo-landing-visual__matrix {
    inset: auto 2.2rem 2.6rem 2.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-software-cockpit {
    min-height: 21rem;
    padding: 0.7rem;
  }

  .seo-software-cockpit-svg {
    width: min(112%, 38rem);
  }

  .seo-landing-capability-grid,
  .seo-related-grid,
  .seo-resource-strip__grid {
    grid-template-columns: 1fr;
  }

  .seo-landing-section {
    padding: 1.1rem;
  }

  .seo-landing-section h2,
  .seo-landing-product h2,
  .seo-landing-related-head h2,
  .seo-reference-panel h2,
  .seo-faq-panel h2,
  .seo-final-cta h2,
  .seo-resource-strip__copy h2 {
    font-size: clamp(1.72rem, 7.8vw, 2.2rem);
    line-height: 1.1;
  }

  .seo-final-cta .seo-landing-btn,
  .seo-landing-actions .seo-landing-btn {
    width: 100%;
  }
}

:root[data-theme="light"] .bg-black,
:root[data-theme="light"] .bg-\[\#02070a\],
:root[data-theme="light"] .bg-\[\#03080d\] {
  background-color: #f4f7f8 !important;
}

:root[data-theme="light"] .from-black {
  --tw-gradient-from: #f4f7f8 var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgba(244, 247, 248, 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

:root[data-theme="light"] .via-fusion-black {
  --tw-gradient-to: rgba(244, 247, 248, 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), #f4f7f8 var(--tw-gradient-via-position), var(--tw-gradient-to) !important;
}

:root[data-theme="light"] .to-\[\#02070a\] {
  --tw-gradient-to: #d8e9f0 var(--tw-gradient-to-position) !important;
}

:root[data-theme="light"] .text-white {
  color: #012840 !important;
}

:root[data-theme="light"] .text-white\/90 {
  color: rgba(1, 40, 64, 0.9) !important;
}

:root[data-theme="light"] .text-white\/86 {
  color: rgba(1, 40, 64, 0.86) !important;
}

:root[data-theme="light"] .text-white\/72,
:root[data-theme="light"] .text-white\/70,
:root[data-theme="light"] .text-white\/68 {
  color: rgba(1, 40, 64, 0.7) !important;
}

:root[data-theme="light"] .text-white\/64,
:root[data-theme="light"] .text-white\/60,
:root[data-theme="light"] .text-white\/58,
:root[data-theme="light"] .text-white\/56,
:root[data-theme="light"] .text-white\/54,
:root[data-theme="light"] .text-white\/50 {
  color: rgba(1, 40, 64, 0.58) !important;
}

:root[data-theme="light"] .text-white\/66 {
  color: rgba(1, 40, 64, 0.66) !important;
}

:root[data-theme="light"] .text-white\/42,
:root[data-theme="light"] .text-white\/40,
:root[data-theme="light"] .text-white\/38,
:root[data-theme="light"] .text-white\/36 {
  color: rgba(1, 40, 64, 0.42) !important;
}

:root[data-theme="light"] .border-white\/18,
:root[data-theme="light"] .border-white\/10,
:root[data-theme="light"] .border-white\/8,
:root[data-theme="light"] .border-white\/5 {
  border-color: rgba(0, 63, 107, 0.14) !important;
}

:root[data-theme="light"] .bg-white\/5 {
  background-color: rgba(0, 63, 107, 0.06) !important;
}

:root[data-theme="light"] .fill-white {
  fill: #012840 !important;
}

:root[data-theme="light"] .stroke-white {
  stroke: #012840 !important;
}

@keyframes corePulse {
  0%,
  100% {
    opacity: 0.16;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.42;
    transform: scale(1.04);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes scan {
  to {
    transform: translateY(460%);
  }
}

@keyframes eagleTrace {
  0% {
    stroke-dashoffset: 170;
    stroke-opacity: 0.18;
  }
  46%,
  100% {
    stroke-dashoffset: 0;
    stroke-opacity: 0.78;
  }
}

@keyframes eaglePiecePulse {
  0%,
  100% {
    opacity: 0.54;
  }
  48% {
    opacity: 1;
  }
}

@keyframes eagleHalo {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.84;
    transform: scale(1.04);
  }
}

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

@keyframes eagleComplianceHalo {
  0%,
  100% {
    transform: scale(0.92) rotate(0deg);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.04) rotate(9deg);
    opacity: 0.86;
  }
}

@keyframes eagleSignalFlow {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes eagleBrandFloat {
  0%,
  100% {
    translate: 0 0;
    scale: 1;
  }
  50% {
    translate: 0.35rem -0.35rem;
    scale: 1.012;
  }
}

@keyframes eagleBrandScan {
  0%,
  38%,
  100% {
    opacity: 0;
    transform: translateX(-42%);
  }
  50%,
  66% {
    opacity: 1;
    transform: translateX(36%);
  }
}

@keyframes eagleIconOrbit {
  0%,
  100% {
    transform: scale(0.92) rotate(0deg);
    opacity: 0.22;
  }
  50% {
    transform: scale(1.06) rotate(8deg);
    opacity: 0.64;
  }
}

@keyframes eagleCpuPathDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes eagleCpuPulsePath {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  10%,
  82% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

@keyframes eagleCpuChipPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

@keyframes eagleSignalApproach {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(0);
  }
  48%,
  66% {
    opacity: 1;
    transform: translateX(2.2rem);
  }
}

@keyframes eagleFlowConfirm {
  0%,
  100% {
    opacity: 0.58;
    transform: translateX(0);
  }
  44%,
  62% {
    opacity: 1;
    transform: translateX(-0.35rem);
  }
}

@keyframes eagleRiskPulse {
  0%,
  100% {
    transform: scale(0.78);
    opacity: 0.46;
  }
  50% {
    transform: scale(1.26);
    opacity: 1;
  }
}

@keyframes eagleWingLeft {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-6px);
  }
}

@keyframes eagleWingRight {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-6px);
  }
}

@keyframes eagleHeadScan {
  0%,
  100% {
    transform: rotate(0deg);
  }
  48%,
  64% {
    transform: rotate(2.4deg);
  }
}

@keyframes eagleEyePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes eagleScanBeam {
  0%,
  42%,
  100% {
    stroke-dashoffset: 92;
    opacity: 0;
  }
  54%,
  70% {
    stroke-dashoffset: 0;
    opacity: 0.9;
  }
}

@keyframes eagleShieldConfirm {
  0%,
  48%,
  100% {
    opacity: 0.58;
    transform: scale(0.96);
  }
  66%,
  82% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes eagleCheckDraw {
  0%,
  56% {
    stroke-dashoffset: 86;
    opacity: 0;
  }
  70%,
  88% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.62;
  }
}

@keyframes eagleNodePulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.56;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes eagleBodyGlide {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(5px, -4px, 0) scale(1.012);
  }
}

@keyframes eagleFacetPulse {
  0%,
  100% {
    opacity: 0.66;
  }
  50% {
    opacity: 1;
  }
}

@keyframes eagleTraceBuild {
  0% {
    stroke-dashoffset: 530;
    opacity: 0;
  }
  20%,
  68% {
    stroke-dashoffset: 0;
    opacity: 0.9;
  }
  100% {
    stroke-dashoffset: -530;
    opacity: 0;
  }
}

@keyframes eagleChipActivate {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(0);
  }
  42%,
  60% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.22;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.72;
  }
}

@keyframes eagleStepFocus {
  0%,
  100% {
    border-color: var(--step-border-idle);
    box-shadow: none;
    transform: translateY(0);
  }
  18%,
  34% {
    border-color: var(--step-border-active);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 24px var(--step-glow-active);
    transform: translateY(-1px);
  }
}

@keyframes eagleStepSweep {
  0%,
  10% {
    opacity: 0;
    transform: translateX(-115%);
  }
  22% {
    opacity: 1;
  }
  42%,
  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes onlinePulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes onlineRipple {
  0% {
    opacity: 0.5;
    transform: scale(0.55);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes pendingPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes pendingRipple {
  0% {
    opacity: 0.5;
    transform: scale(0.55);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes clientTicker {
  to {
    transform: translateX(-50%);
  }
}

/* Pausa total quando a aba fica inativa (via animation-optimizer.js) */
html.fx-tab-inactive *,
html.fx-tab-inactive *::before,
html.fx-tab-inactive *::after {
  animation-play-state: paused !important;
}


@media (max-width: 760px) {
  .fusionx-watermark {
    right: -9rem;
    width: 28rem;
    opacity: 0.04;
  }

  .ecosystem-orbit {
    display: grid;
    min-height: auto;
    gap: 1rem;
    perspective: none;
  }

  .ecosystem-orbit__glow,
  .ecosystem-core {
    display: none;
  }

  .ecosystem-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
  }

  .processor-stage {
    display: grid;
    min-height: auto;
    gap: 1rem;
  }

  .processor-stage::before,
  .processor-traces,
  .processor-axis,
  .processor-core {
    display: none;
  }

  .processor-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    opacity: 1;
    transform: none;
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
  }
}

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

  .module-card,
  .ecosystem-card,
  .ecosystem-core,
  .reveal-card,
  .product-details {
    opacity: 1;
    transform: none;
    height: auto;
  }
}

.product-feature-chip__icon :is(path, line, polyline, polygon, rect, circle),
.eagle-hero-proof-card__icon :is(path, line, polyline, polygon, rect, circle),
.eagle-insight-card__icon :is(path, line, polyline, polygon, rect, circle),
.eagle-preview-chip__icon :is(path, line, polyline, polygon, rect, circle) {
  fill: none !important;
  stroke: currentColor !important;
}

/* ── Tablet Splash Screen ─────────────────────────────────────────── */
.tablet-splash {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: inherit;
  pointer-events: none;
}

.tablet-splash__lottie {
  width: 60%;
  max-width: 22rem;
  aspect-ratio: 16/9;
}

.tablet-splash--hidden {
  display: none;
}

/* Contact form states (FormHandler) */
.form-feedback {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid;
  font-size: 0.875rem;
  line-height: 1.5;
}
.form-feedback[style*="flex"] {
  display: flex !important;
}
.form-feedback svg {
  flex-shrink: 0;
  width: 1.25rem !important;
  height: 1.25rem !important;
  max-width: 1.25rem;
  max-height: 1.25rem;
  margin-top: 0.15rem;
}
.form-feedback__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.45rem;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.05rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
}
.form-feedback p { margin: 0; line-height: 1.5; }
.form-feedback--success {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
}
:root[data-theme="dark"] .form-feedback--success { color: #bbf7d0; }

.form-feedback--error {
  border-color: rgba(220, 38, 38, 0.45);
  background: rgba(220, 38, 38, 0.12);
  color: #991b1b;
}
:root[data-theme="dark"] .form-feedback--error { color: #fecaca; }

#contact-form .form-error { color: #b91c1c; }
:root[data-theme="dark"] #contact-form .form-error { color: #fca5a5; }

#contact-form .form-error {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #fca5a5;
}
#contact-form input.error,
#contact-form textarea.error,
#contact-form select.error {
  border-color: rgba(248, 113, 113, 0.6);
}

.form-submit { position: relative; }
.form-submit .btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.form-submit .btn-loading svg {
  width: 1rem;
  height: 1rem;
  animation: fxSpin 0.8s linear infinite;
}
#contact-submit:not(.loading) .btn-loading,
.form-submit:not(.loading) .btn-loading {
  display: none !important;
}
#contact-submit.loading .btn-text,
.form-submit.loading .btn-text {
  display: none !important;
}
#contact-submit.loading .btn-loading,
.form-submit.loading .btn-loading {
  display: inline-flex !important;
}
@keyframes fxSpin { to { transform: rotate(360deg); } }

.lgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fx-muted);
  cursor: pointer;
}
.lgpd-check input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--fx-cyan);
}
.lgpd-check span { flex: 1; }
.lgpd-check a { color: var(--fx-cyan); text-decoration: underline; }
.lgpd-check a:hover { color: var(--fx-text); }
