: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(0, 0, 0, 0.4);
  --fx-header-line: rgba(255, 255, 255, 0.05);
}

: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(244, 247, 248, 0.78);
  --fx-header-line: rgba(0, 63, 107, 0.12);
}

* {
  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: 0;
}

: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 viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%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)' opacity='0.5'/%3E%3C/svg%3E");
}

: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;
}

.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;
}

.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.42), rgba(1, 40, 64, 0.18)),
    rgba(13, 13, 13, 0.52);
  border: 1px solid rgba(4, 157, 217, 0.22);
  backdrop-filter: blur(18px);
  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);
}

.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);
}

.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);
}

.module-card,
.reveal-card {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

.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-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.35rem;
  height: 2.35rem;
  place-items: center;
  color: #fff;
  filter: drop-shadow(0 0 18px rgba(4, 157, 217, 0.24));
}

.benefit-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  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));
}

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

.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;
}

.msac-bars {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  align-items: end;
  gap: 0.45rem;
  height: 5.8rem;
}

.msac-bars span {
  display: block;
  height: var(--bar-height);
  min-height: 1rem;
  background: linear-gradient(180deg, rgba(4, 157, 217, 0.95), rgba(3, 88, 140, 0.22));
  box-shadow: 0 0 18px rgba(4, 157, 217, 0.28);
  transform-origin: bottom;
  animation: barSignal 2.8s ease-in-out infinite;
  animation-delay: var(--bar-delay);
}

.msac-scan {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #049dd9, transparent);
  box-shadow: 0 0 18px rgba(4, 157, 217, 0.8);
  animation: visualSweep 3.4s ease-in-out infinite;
}

.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;
}

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

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

.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;
}

.client-strip {
  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;
  will-change: transform;
}

.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%, 70rem);
  min-height: clamp(42rem, 65vw, 52rem);
  isolation: isolate;
}

.processor-stage::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  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-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);
  will-change: transform;
}

.processor-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  width: clamp(10rem, 18vw, 12rem);
  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);
  will-change: transform, opacity;
}

: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: -1rem;
  border-radius: 20px;
  border: 1px solid rgba(4, 157, 217, 0.16);
  pointer-events: none;
}

.processor-core::after {
  inset: -2rem;
  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(21rem, 76vw);
  min-height: 12rem;
  padding: 1.35rem;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  will-change: transform, opacity;
}

.processor-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  border: 1px solid rgba(4, 157, 217, 0.32);
  padding: 0.34rem 0.55rem;
  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.55rem, 3vw, 2.55rem);
  line-height: 1;
}

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

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

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

.processor-card--msac {
  left: 0;
  top: 10%;
}

.processor-card--ky {
  right: 0;
  top: 10%;
}

.processor-card--consultoria {
  left: 0;
  bottom: 10%;
}

.processor-card--treinamento {
  right: 0;
  bottom: 10%;
}

.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);
  backdrop-filter: blur(18px);
}

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

.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(3, 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;
}

.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);
}

.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);
}

: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;
}

@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;
    filter: drop-shadow(0 0 6px rgba(4, 157, 217, 0.16));
  }
  48% {
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(4, 157, 217, 0.62));
  }
}

@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 barSignal {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.58;
  }
  50% {
    transform: scaleY(1.12);
    opacity: 1;
  }
}

@keyframes visualSweep {
  0%,
  100% {
    transform: translateY(-2.4rem);
    opacity: 0.28;
  }
  50% {
    transform: translateY(2.4rem);
    opacity: 1;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.22;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.72;
  }
}

@keyframes onlinePulse {
  0%,
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 14px rgba(32, 224, 112, 0.7), 0 0 30px rgba(32, 224, 112, 0.28);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(32, 224, 112, 0.95), 0 0 46px rgba(32, 224, 112, 0.42);
  }
}

@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);
    box-shadow: 0 0 14px rgba(255, 159, 28, 0.7), 0 0 30px rgba(255, 159, 28, 0.28);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.95), 0 0 46px rgba(255, 159, 28, 0.42);
  }
}

@keyframes pendingRipple {
  0% {
    opacity: 0.5;
    transform: scale(0.55);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes clientTicker {
  to {
    transform: translateX(-50%);
  }
}

@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-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;
  }
}
