/* Market & Products — landing styles */

:root {
  --bg: #030303;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --white: #fafafa;
  --hero-orange: #f04c3e;
  --max: 1180px;
  --header-h: 72px;
}

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

html { scroll-behavior: auto; }

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 400px at 50% -10%, rgba(148, 163, 184, 0.22), transparent 55%),
    radial-gradient(700px 320px at 0% 8%, rgba(30, 41, 59, 0.3), transparent 60%),
    radial-gradient(700px 320px at 100% 8%, rgba(30, 41, 59, 0.24), transparent 60%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open { overflow: hidden; }

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.45) 65%, transparent 100%);
}

.container { width: min(var(--max), 92vw); margin-inline: auto; }
.hidden { display: none !important; }

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

main, .footer { position: relative; z-index: 2; }
section { padding: 5.6rem 0; }

.section--alt {
  border-block: 1px solid var(--line);
  background: rgba(8, 8, 10, 0.6);
}

.section-label {
  display: inline-block;
  margin-bottom: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e4e4e7;
}

.section-label--warm {
  border-color: rgba(240, 76, 62, 0.45);
  color: #fecaca;
  background: rgba(240, 76, 62, 0.12);
  box-shadow: 0 0 24px rgba(240, 76, 62, 0.12);
}

.section-head { margin-bottom: 2.4rem; max-width: 58rem; }

.section-head h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.035em;
  line-height: 0.94;
  margin-bottom: 0.8rem;
}

.section-head p,
.approach-lead { color: var(--muted); max-width: 70ch; }

.section-head--center { text-align: center; margin-inline: auto; }

.capabilities-head {
  max-width: none;
  width: 100%;
}

.capabilities-head p {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(0.8rem, 1.05vw, 0.92rem);
  line-height: 1.45;
}

@media (min-width: 901px) {
  .capabilities-head p {
    white-space: nowrap;
  }
}

.market-acronym { color: var(--hero-orange); font-weight: 700; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--hero-orange) 18%,
    rgba(240, 76, 62, 0.35) 50%,
    var(--hero-orange) 82%,
    transparent 100%
  );
  opacity: 0.85;
}

.header-bar {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: opacity 0.2s ease;
}

.brand:hover { opacity: 0.88; }

.brand-mark {
  display: block;
  height: 4rem;
  width: auto;
  max-width: 3.75rem;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  align-self: center;
}

.brand-text strong {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  display: block;
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text span {
  font-size: 0.68rem;
  color: #71717a;
  display: block;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-util {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem 0.35rem;
}

.lang-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.lang-btn {
  border: none;
  background: transparent;
  color: #71717a;
  cursor: pointer;
  padding: 0.3rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: color 0.2s ease;
}

.lang-btn:hover { color: #e4e4e7; }

.lang-btn.active {
  color: var(--hero-orange);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #a1a1aa;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link__index {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(240, 76, 62, 0.65);
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 1px;
  background: var(--hero-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fafafa;
  outline: none;
}

.nav-link:hover .nav-link__index,
.nav-link:focus-visible .nav-link__index {
  color: var(--hero-orange);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.5rem;
  padding: 0.48rem 0.95rem;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #f04c3e, #e44539);
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(240, 76, 62, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-cta__arrow {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.2s ease;
}

.nav-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(240, 76, 62, 0.38);
  color: #0a0a0a;
}

.nav-cta:hover .nav-cta__arrow {
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 14px;
  height: 2px;
  margin: 4px auto;
  background: #e4e4e7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(240, 76, 62, 0.45);
  background: rgba(240, 76, 62, 0.08);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero-rig {
  padding-top: calc(var(--header-h) + 5.3rem);
  padding-bottom: 4.8rem;
  background:
    repeating-linear-gradient(0deg, rgba(15, 15, 18, 0.1) 0, rgba(15, 15, 18, 0.1) 1px, transparent 1px, transparent 4px),
    linear-gradient(180deg, #f04c3e 0%, #e44539 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-rig__glow {
  position: absolute;
  width: 55%;
  height: 120%;
  top: -10%;
  right: -8%;
  background: radial-gradient(ellipse at center, rgba(255, 220, 200, 0.35), transparent 62%);
  animation: heroGlowDrift 9s ease-in-out infinite;
}

.hero-rig__bands {
  position: absolute;
  inset: -15% -25%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 28px,
    rgba(0, 0, 0, 0.11) 28px,
    rgba(0, 0, 0, 0.11) 34px,
    transparent 34px,
    transparent 52px,
    rgba(0, 0, 0, 0.07) 52px,
    rgba(0, 0, 0, 0.07) 56px
  );
  animation: heroBandsDrift 18s linear infinite;
}

.hero-rig__sheen {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    108deg,
    transparent 42%,
    rgba(255, 255, 255, 0.14) 49%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.14) 51%,
    transparent 58%
  );
  animation: heroSheen 6.5s ease-in-out infinite;
}

.hero-rig__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: heroScan 5.5s ease-in-out infinite;
}

.hero-rig::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 6%, rgba(0, 0, 0, 0.16) 6% 7.2%, transparent 7.2% 11%);
  opacity: 0.35;
  animation: heroBars 8s linear infinite;
}

.hero-rig__inner {
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-rig__title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #0a0a0a;
  margin-bottom: 1rem;
  max-width: 10ch;
}

.hero-rig__lead {
  color: rgba(10, 10, 10, 0.85);
  font-size: 1rem;
  max-width: 40ch;
  margin-bottom: 1.3rem;
  font-weight: 500;
}

.hero-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 7px;
  padding: 0.7rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero-rig .btn-primary { background: #0a0a0a; color: #f4f4f5; }

/* System diagram */
.system-map {
  background: #08090d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 3.8rem;
}

.system-map__stage {
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(9, 9, 12, 0.9), rgba(5, 6, 10, 0.95));
  padding: 1.4rem;
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  position: relative;
  overflow: hidden;
}

.system-map__stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -35%;
  height: 35%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  animation: mapSweep 4.8s ease-in-out infinite;
}

.sys-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.sys-box,
.sys-core {
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 5.4rem;
  padding: 0.8rem;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.sys-core {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  animation: corePulse 2.8s ease-in-out infinite;
}

.sys-box small,
.sys-core small {
  display: block;
  margin-top: 0.35rem;
  color: #a1a1aa;
  font-size: 0.63rem;
  text-transform: none;
  letter-spacing: 0.03em;
}

.sys-box--top,
.sys-box--bottom { width: min(100%, 10rem); min-height: 3.1rem; }

.sys-cross {
  color: #ef4444;
  font-weight: 700;
  letter-spacing: 0.1em;
  animation: crossBlink 1.9s steps(2, end) infinite;
}

.sys-box.is-hot,
.sys-core.is-hot {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 26px rgba(148, 163, 184, 0.16);
  background-color: rgba(255, 255, 255, 0.06);
}

/* Process highlight */
.offline-highlight {
  background: #0a0b10;
  border-bottom: 1px solid var(--line);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.offline-highlight__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  border: 1px solid var(--line);
}

.offline-visual {
  min-height: 19rem;
  background: linear-gradient(180deg, rgba(9, 9, 12, 0.98), rgba(6, 8, 14, 0.98));
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.offline-visual__mesh,
.offline-visual__core,
.offline-visual__ripple,
.offline-visual__orbit,
.offline-visual__sheen,
.offline-visual__scan {
  position: absolute;
  pointer-events: none;
}

.offline-visual__mesh {
  inset: -8%;
  background:
    radial-gradient(circle at 38% 50%, rgba(71, 85, 105, 0.45), transparent 48%),
    repeating-radial-gradient(
      circle at 38% 50%,
      rgba(255, 255, 255, 0.07) 0 1px,
      transparent 1px 17px
    );
  animation: offlineMeshPulse 5.5s ease-in-out infinite;
}

.offline-visual__core {
  left: 38%;
  top: 50%;
  width: 9rem;
  height: 9rem;
  margin: -4.5rem 0 0 -4.5rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 76, 62, 0.22) 0%,
    rgba(100, 116, 139, 0.28) 35%,
    transparent 68%
  );
  animation: offlineCorePulse 3.8s ease-in-out infinite;
}

.offline-visual__ripple {
  left: 38%;
  top: 50%;
  width: 4rem;
  height: 4rem;
  margin: -2rem 0 0 -2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(240, 76, 62, 0.08);
  animation: offlineRipple 4.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.offline-visual__ripple--2 { animation-delay: 1.4s; }
.offline-visual__ripple--3 { animation-delay: 2.8s; }

.offline-visual__orbit {
  left: 38%;
  top: 50%;
  width: 14rem;
  height: 14rem;
  margin: -7rem 0 0 -7rem;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  animation: offlineOrbit 16s linear infinite;
}

.offline-visual__orbit::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: rgba(240, 76, 62, 0.85);
  box-shadow: 0 0 12px rgba(240, 76, 62, 0.55);
}

.offline-visual__sheen {
  inset: -30% -50%;
  background: linear-gradient(
    100deg,
    transparent 44%,
    rgba(255, 255, 255, 0.09) 49%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(255, 255, 255, 0.09) 51%,
    transparent 56%
  );
  animation: offlineSheen 7s ease-in-out infinite;
}

.offline-visual__scan {
  left: 0;
  right: 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.12), transparent);
  animation: offlineScan 6s ease-in-out infinite;
}

.offline-copy {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offline-copy h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  margin-bottom: 0.6rem;
}

.offline-copy p { color: #a1a1aa; }

.offline-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: none;
}

.offline-card {
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: rgba(7, 7, 10, 0.9);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.offline-card:last-child { border-right: none; }

.offline-card h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.95rem;
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.offline-card p { color: #a1a1aa; font-size: 0.82rem; }

.offline-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Cards shared */
.capability-grid,
.process-grid,
.product-grid {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.capability-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.sector-card,
.process-card,
.capability-card,
.product-card,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.96), rgba(11, 13, 18, 0.86));
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s, box-shadow 0.2s;
}

.sector-card::before,
.process-card::before,
.capability-card::before,
.product-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%);
}

.sector-card:hover,
.process-card:hover,
.capability-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
}

.industry-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.sector-card { padding: 0.9rem 0.8rem; min-height: 7rem; }

.sector-card__visual {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
}

.sector-card__icon { width: 1rem; height: 1rem; fill: #f4f4f5; }
.sector-card__title { font-size: 0.82rem; font-weight: 700; }
.industries-footnote { margin-top: 1.2rem; color: var(--muted); font-size: 0.82rem; }

.process-card { padding: 1.1rem; min-height: 14rem; }
.process-card__head { display: flex; gap: 0.55rem; align-items: center; margin-bottom: 0.6rem; }
.process-card__num { font-size: 0.66rem; letter-spacing: 0.13em; color: #d4d4d8; }
.process-card__head h3 { font-size: 1rem; font-family: "Montserrat", system-ui, sans-serif; }
.process-card__detail { color: var(--muted); font-size: 0.84rem; }
.process-card__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.75rem; }
.process-card__tags span {
  display: inline-block;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d4d4d8;
}

.capability-card { padding: 1.1rem; min-height: 12.7rem; }
.capability-index { font-size: 0.68rem; letter-spacing: 0.13em; color: #cbd5e1; display: inline-block; margin-bottom: 0.65rem; }
.capability-card h3 { font-family: "Montserrat", system-ui, sans-serif; font-size: 1.04rem; line-height: 1.2; margin-bottom: 0.45rem; }
.capability-card p { font-size: 0.84rem; color: var(--muted); }

/* Products portfolio */
.products {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(240, 76, 62, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(6, 7, 11, 0.98), rgba(3, 3, 4, 1));
}

.products__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 85% 20%, rgba(99, 102, 241, 0.08), transparent 40%);
}

.products-head { margin-bottom: 2.8rem; }

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  counter-reset: prod;
}

.product-grid li { counter-increment: prod; }

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 15.5rem;
  text-decoration: none;
  color: inherit;
  border: none;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(10, 11, 15, 0.98), rgba(6, 7, 10, 0.96));
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.product-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
}

.product-card:hover::before { opacity: 1; }

.product-card__visual {
  position: relative;
  height: 6.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card__visual::before {
  content: counter(prod, decimal-leading-zero);
  position: absolute;
  left: 0.85rem;
  top: 0.55rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.product-card__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background:
    linear-gradient(160deg, var(--product-accent, rgba(240, 76, 62, 0.2)) 0%, transparent 55%),
    repeating-linear-gradient(
      -12deg,
      transparent 0,
      transparent 11px,
      rgba(255, 255, 255, 0.03) 11px,
      rgba(255, 255, 255, 0.03) 12px
    );
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.product-card:hover .product-card__mesh {
  transform: scale(1.06);
  opacity: 1;
}

.product-card__glyph {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: #fafafa;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem 1.15rem;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.product-card__badge {
  display: inline-block;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.04);
}

.product-card__go {
  font-size: 1rem;
  line-height: 1;
  color: var(--hero-orange);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-card__go {
  opacity: 1;
  transform: translate(0, 0);
}

.product-card__body h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.45rem;
}

.product-card__desc {
  color: #a1a1aa;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: auto;
  transition: color 0.25s ease;
}

.product-card:hover .product-card__desc { color: #d4d4d8; }

.product-card[data-product="archlytics"] { --product-accent: rgba(59, 130, 246, 0.35); }
.product-card[data-product="invenor"] { --product-accent: rgba(34, 197, 94, 0.32); }
.product-card[data-product="mining360"] { --product-accent: rgba(245, 158, 11, 0.34); }
.product-card[data-product="pharmatic"] { --product-accent: rgba(168, 85, 247, 0.32); }
.product-card[data-product="cyberx"] { --product-accent: rgba(244, 63, 94, 0.3); }
.product-card[data-product="learningtogether"] { --product-accent: rgba(139, 92, 246, 0.32); }
.product-card[data-product="marketmine"] { --product-accent: rgba(240, 76, 62, 0.38); }
.product-card[data-product="elex"] { --product-accent: rgba(250, 204, 21, 0.28); }

.product-card:hover[data-product="archlytics"] { box-shadow: 0 22px 50px rgba(59, 130, 246, 0.12); }
.product-card:hover[data-product="invenor"] { box-shadow: 0 22px 50px rgba(34, 197, 94, 0.12); }
.product-card:hover[data-product="mining360"] { box-shadow: 0 22px 50px rgba(245, 158, 11, 0.12); }
.product-card:hover[data-product="pharmatic"] { box-shadow: 0 22px 50px rgba(168, 85, 247, 0.12); }
.product-card:hover[data-product="cyberx"] { box-shadow: 0 22px 50px rgba(244, 63, 94, 0.12); }
.product-card:hover[data-product="learningtogether"] { box-shadow: 0 22px 50px rgba(139, 92, 246, 0.12); }
.product-card:hover[data-product="marketmine"] { box-shadow: 0 22px 50px rgba(240, 76, 62, 0.18); }
.product-card:hover[data-product="elex"] { box-shadow: 0 22px 50px rgba(250, 204, 21, 0.1); }

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: min(120%, 56rem);
  height: 22rem;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(240, 76, 62, 0.14), transparent 68%);
}

.contact-wrap { display: flex; justify-content: center; }

.contact-card {
  width: min(100%, 70rem);
  margin: 0 auto;
  border-radius: 10px;
  border-color: rgba(240, 76, 62, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 48px rgba(240, 76, 62, 0.08);
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(240, 76, 62, 0.55) 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(148, 163, 184, 0.2) 70%,
    rgba(240, 76, 62, 0.25) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 76, 62, 0.38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 32px 80px rgba(0, 0, 0, 0.52),
    0 0 64px rgba(240, 76, 62, 0.14);
}

.contact-card__layout { display: grid; grid-template-columns: 0.95fr 1.2fr; }

.contact-card__intro {
  padding: 1.55rem 1.55rem 1.55rem 1.7rem;
  border-right: 1px solid rgba(240, 76, 62, 0.2);
  background:
    linear-gradient(145deg, rgba(240, 76, 62, 0.14) 0%, transparent 42%),
    linear-gradient(180deg, rgba(14, 10, 12, 0.98), rgba(8, 8, 12, 0.94));
  position: relative;
  overflow: hidden;
}

.contact-card__intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--hero-orange), rgba(240, 76, 62, 0.15));
}

.contact-card__intro::after {
  content: "";
  position: absolute;
  right: -30%;
  top: -40%;
  width: 70%;
  height: 80%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(240, 76, 62, 0.18), transparent 62%);
}

.contact-card__intro h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-bottom: 0.6rem;
  position: relative;
}

.contact-card__intro h2 em,
.contact-card__intro h2 strong {
  font-style: normal;
  color: var(--hero-orange);
}

.contact-card__intro p {
  color: var(--muted);
  font-size: 0.85rem;
  position: relative;
}

.contact-card__tag {
  display: inline-block;
  margin-top: 0.8rem;
  border: 1px solid rgba(240, 76, 62, 0.4);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fecaca;
  background: rgba(240, 76, 62, 0.1);
  position: relative;
}

.contact-form__hint {
  margin-top: 0.8rem;
  color: #a1a1aa;
  font-size: 0.82rem;
  position: relative;
  padding-left: 1rem;
}

.contact-form__hint::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hero-orange);
  box-shadow: 0 0 10px rgba(240, 76, 62, 0.7);
  animation: contactPulse 2s ease-in-out infinite;
}

.contact-form {
  padding: 1.55rem;
  position: relative;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(71, 85, 105, 0.2), transparent 50%),
    linear-gradient(180deg, rgba(6, 7, 11, 0.92), rgba(4, 5, 8, 0.96));
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
  position: relative;
}

.contact-field--wide { grid-column: 1 / -1; }

.contact-field label {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a1a1aa;
  transition: color 0.2s ease;
}

.contact-field:focus-within label { color: #fca5a5; }

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f4f5;
  font: inherit;
  font-size: 0.82rem;
  padding: 0.58rem 0.78rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(240, 76, 62, 0.8) 50%),
    linear-gradient(135deg, rgba(240, 76, 62, 0.8) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.contact-field textarea { min-height: 88px; resize: vertical; }

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(240, 76, 62, 0.55);
  background-color: rgba(240, 76, 62, 0.06);
  box-shadow: 0 0 0 3px rgba(240, 76, 62, 0.12);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: 8px;
  margin-top: 0.85rem;
  cursor: pointer;
  width: 100%;
  min-height: 44px;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: #0a0a0a;
  background: linear-gradient(135deg, #fafafa 0%, #e4e4e7 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
}

.contact-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hero-orange), #dc2626);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.contact-submit span,
.contact-submit__icon {
  position: relative;
  z-index: 1;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(240, 76, 62, 0.35);
  color: #fff;
}

.contact-submit:hover::before { opacity: 1; }

.contact-submit:active { transform: translateY(0); }

.contact-submit__icon { width: 1rem; height: 1rem; }

.contact-form__status { font-size: 0.82rem; margin-top: 0.5rem; position: relative; }
.contact-form__status.is-success { color: #86efac; }
.contact-form__status.is-error { color: #fca5a5; }

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

.contact-submit.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.contact-modal[hidden] { display: none; }

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  padding: 1.6rem 1.4rem 1.35rem;
  border: 1px solid rgba(240, 76, 62, 0.35);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14, 12, 13, 0.98), rgba(8, 8, 10, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.contact-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  border: none;
  background: transparent;
  color: #a1a1aa;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
}

.contact-modal__close:hover { color: #fafafa; }

.contact-modal__icon {
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0a;
  background: linear-gradient(135deg, #f04c3e, #e44539);
  box-shadow: 0 8px 24px rgba(240, 76, 62, 0.35);
}

.contact-modal__panel h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.contact-modal__text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contact-modal__btn {
  border: none;
  border-radius: 6px;
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  color: #0a0a0a;
  background: linear-gradient(135deg, #fafafa, #e4e4e7);
}

.contact-modal__btn:hover {
  filter: brightness(1.05);
}

@keyframes contactPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1); }
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  padding: 0.75rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy-line {
  margin: 0;
  padding-left: 1.9rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #71717a;
}

.footer-credit {
  margin: 0;
  padding-right: 1.75rem;
  color: #71717a;
  font-size: 0.76rem;
  white-space: nowrap;
}

.footer-airon {
  color: #f4f4f5;
  text-decoration: none;
  font-weight: 600;
  animation: footer-airon-color 2.8s ease-in-out infinite;
}

.footer-airon:hover {
  animation-play-state: paused;
  color: var(--hero-orange);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1rem;
  z-index: 101;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(10, 10, 12, 0.92);
  color: #f4f4f5;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.3rem);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s, bottom 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 0.85rem; height: 0.85rem; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroBars {
  0% { transform: translateX(-4%); }
  50% { transform: translateX(4%); }
  100% { transform: translateX(-4%); }
}

@keyframes heroBandsDrift {
  0% { transform: translateX(0); }
  100% { transform: translateX(56px); }
}

@keyframes heroSheen {
  0%, 100% { transform: translateX(-35%) rotate(-8deg); opacity: 0; }
  20% { opacity: 0.85; }
  50% { transform: translateX(35%) rotate(-8deg); opacity: 1; }
  80% { opacity: 0.4; }
}

@keyframes heroGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-6%, 4%) scale(1.08); opacity: 0.85; }
}

@keyframes heroScan {
  0%, 100% { top: -30%; opacity: 0; }
  15% { opacity: 0.7; }
  50% { top: 75%; opacity: 0.9; }
  85% { opacity: 0.3; }
}

@keyframes mapSweep {
  0%, 100% { transform: translateY(-65%); opacity: 0.1; }
  50% { transform: translateY(230%); opacity: 0.35; }
}

@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(148, 163, 184, 0); }
  50% { box-shadow: 0 0 24px rgba(148, 163, 184, 0.15); }
}

@keyframes crossBlink {
  0%, 40% { opacity: 1; }
  41%, 57% { opacity: 0.35; }
  58%, 100% { opacity: 1; }
}

@keyframes visualSweep {
  0% { transform: translateX(-120%); opacity: 0; }
  25% { opacity: 1; }
  65% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes offlineMeshPulse {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes offlineCorePulse {
  0%, 100% { transform: scale(0.92); opacity: 0.65; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes offlineRipple {
  0% { transform: scale(0.35); opacity: 0.55; }
  100% { transform: scale(9); opacity: 0; }
}

@keyframes offlineOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes offlineSheen {
  0%, 100% { transform: translateX(-40%) skewX(-8deg); opacity: 0; }
  25% { opacity: 0.9; }
  50% { transform: translateX(40%) skewX(-8deg); opacity: 1; }
  75% { opacity: 0.4; }
}

@keyframes offlineScan {
  0%, 100% { top: -35%; opacity: 0; }
  20% { opacity: 0.75; }
  50% { top: 72%; opacity: 1; }
  80% { opacity: 0.35; }
}

@keyframes footer-airon-color {
  0%, 100% { color: #f4f4f5; }
  50% { color: var(--hero-orange); }
}

@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
  .process-grid,
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-card__layout { grid-template-columns: 1fr; }
  .contact-card__intro { border-right: none; border-bottom: 1px solid var(--line); }
  .hero-rig__inner { text-align: center; }
  .hero-rig__title,
  .hero-rig__lead { margin-inline: auto; }
  .offline-highlight__grid { grid-template-columns: 1fr; }
  .offline-visual { border-right: none; border-bottom: 1px solid var(--line); }
  .offline-cards { grid-template-columns: 1fr; }
  .offline-card { border-right: none; border-bottom: 1px solid var(--line); }
  .offline-card:last-child { border-bottom: none; }
}

@media (max-width: 1024px) {
  .nav-link { padding: 0.5rem 0.55rem; }
  .nav-link__index { display: none; }
}

@media (max-width: 767px) {
  :root { --header-h: 64px; }
  section { padding: 4rem 0; }
  .brand-text { display: none; }
  .brand-mark { height: 3.4rem; max-width: 3.2rem; }
  .header-bar { grid-template-columns: auto auto; }
  .header-util { gap: 0.5rem; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1.1rem;
    background:
      linear-gradient(180deg, rgba(240, 76, 62, 0.06) 0%, transparent 28%),
      rgba(5, 5, 6, 0.97);
    border-bottom: 1px solid rgba(240, 76, 62, 0.2);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-link {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
  }
  .nav-link__index { display: inline; font-size: 0.65rem; }
  .nav-link::after { display: none; }
  .nav-cta {
    margin-left: 0;
    margin-top: 0.65rem;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
  }
  .hero-rig { padding-top: calc(var(--header-h) + 2.9rem); }
  .hero-rig__title { font-size: clamp(2.2rem, 11vw, 3.25rem); }
  .hero-actions { flex-direction: column; max-width: 18rem; margin-inline: auto; }
  .hero-actions .btn { width: 100%; }
  .sys-row { grid-template-columns: 1fr; }
  .industry-grid,
  .process-grid,
  .capability-grid,
  .product-grid,
  .contact-form__grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.35rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rig__bands,
  .hero-rig__sheen,
  .hero-rig__glow,
  .hero-rig__scan,
  .hero-rig::before,
  .offline-visual__mesh,
  .offline-visual__core,
  .offline-visual__ripple,
  .offline-visual__orbit,
  .offline-visual__sheen,
  .offline-visual__scan,
  .system-map__stage::before,
  .sys-core,
  .sys-cross,
  .footer-airon,
  .reveal,
  .reveal.is-visible {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
