
:root {
  color-scheme: dark;
  --void: #05060d;
  --night: #0a0f1a;
  --panel: #0f1626;
  --elevated: #141d2f;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #e8ecf4;
  --muted: #8b95a8;
  --dim: #5c667a;
  --mint: #5eead4;
  --cyan: #22d3ee;
  --violet: #a78bfa;
  --rose: #fb7185;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--void);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.01em;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(94, 234, 212, 0.25);
  color: #fff;
}

.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ambient-aurora {
  position: absolute;
  inset: -20% -10% auto;
  height: 70vh;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(34, 211, 238, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 10%, rgba(167, 139, 250, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 55% 35%, rgba(251, 113, 133, 0.08), transparent 55%);
  filter: blur(2px);
}

.ambient-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--cyan), var(--violet));
  pointer-events: none;
}

/* ─── Header: full-width rail (not a floating pill) ─────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 320ms var(--ease), border-color 320ms ease, backdrop-filter 320ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 6, 13, 0.78);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-glyph {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.35), transparent 55%),
    linear-gradient(225deg, rgba(167, 139, 250, 0.45), transparent 50%),
    var(--panel);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.12), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.brand-name {
  font-size: 1.05rem;
}

.brand-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-family: var(--mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 200ms ease, background 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.header-cta {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--void);
  background: linear-gradient(120deg, var(--mint), var(--cyan));
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.25);
  transition: transform 200ms var(--ease), box-shadow 200ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(94, 234, 212, 0.35);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 260ms var(--ease), opacity 200ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(100px, 14vh, 140px) 0 clamp(56px, 8vh, 88px);
  min-height: min(100svh, 920px);
}

.hero-copy {
  padding-bottom: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
}

.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-gradient {
  display: block;
  background: linear-gradient(105deg, var(--text) 0%, var(--text) 35%, var(--cyan) 55%, var(--violet) 85%, var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 38ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 200ms var(--ease), box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

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

.btn-solid {
  color: var(--void);
  background: linear-gradient(120deg, var(--mint), var(--cyan));
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.22);
}

.btn-line {
  border-color: var(--line-strong);
  background: rgba(15, 22, 38, 0.6);
  color: var(--text);
}

.btn-wide {
  width: 100%;
}

/* Bento */
.hero-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.bento {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(15, 22, 38, 0.65);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.bento-visual {
  grid-row: span 2;
  padding: 0;
  margin: 0;
}

.bento-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.bento-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(5, 6, 13, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  color: var(--muted);
}

.mono-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

.bento-metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
  gap: 6px;
}

.bento-metric strong {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.bento-metric.accent-violet strong {
  background: linear-gradient(90deg, var(--text), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bento-hint {
  font-size: 0.78rem;
  color: var(--dim);
}

.bento-orbit {
  display: grid;
  place-items: center;
  min-height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.2), transparent 55%), var(--elevated);
}

.orbit-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: spin 18s linear infinite;
}

.orbit-core {
  position: relative;
  text-align: center;
}

.orbit-core strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
}

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

/* Marquee */
.marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  background: rgba(10, 15, 26, 0.85);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  padding: 16px 0;
  animation: marquee 32s linear infinite;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dim);
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.marquee-group span {
  flex-shrink: 0;
}

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

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-label {
  margin: 0 0 12px;
  color: var(--mint);
}

.section-head {
  margin-bottom: 40px;
}

.section-head-row {
  display: grid;
  grid-template-columns: 1fr minmax(0, 0.42fr);
  gap: 28px 40px;
  align-items: start;
}

.section-head h2,
.systems-head h2,
.industries-panel h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-deck {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

/* Services */
.service-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.svc-card {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(20, 29, 47, 0.95), rgba(10, 15, 26, 0.65));
  overflow: hidden;
  transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at var(--mx, 20%) -20%, rgba(94, 234, 212, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 234, 212, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

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

.svc-card-feature {
  border-color: rgba(167, 139, 250, 0.35);
  background: linear-gradient(160deg, rgba(167, 139, 250, 0.12), rgba(15, 22, 38, 0.92));
}

.svc-index {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 0.08em;
}

.svc-card h3 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
  font-weight: 650;
}

.svc-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.svc-link {
  display: inline-flex;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
}

.svc-link:hover {
  color: var(--mint);
}

/* Timeline systems */
.systems {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.4), rgba(5, 6, 13, 0.95));
  border-block: 1px solid var(--line);
}

.systems-wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 110px) 0;
}

.systems-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.systems-head .section-label {
  color: var(--violet);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--cyan), var(--violet));
  opacity: 0.35;
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 14px 0 0;
}

.timeline-node {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 2px solid var(--line-strong);
  background: var(--void);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.timeline-step.is-active .timeline-node {
  border-color: var(--mint);
  box-shadow: 0 0 0 6px rgba(94, 234, 212, 0.15), 0 0 24px rgba(94, 234, 212, 0.35);
  transform: scale(1.08);
}

.timeline-body .mono-label {
  color: var(--muted);
}

.timeline-body strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.1rem;
}

.timeline-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 300;
}

/* Cases */
.case-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-tile {
  position: relative;
  padding: 28px 22px 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms var(--ease);
}

.case-tile:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.case-water {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.case-sector {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

.case-tile h3 {
  position: relative;
  margin: 12px 0 10px;
  font-size: 1.2rem;
  line-height: 1.25;
  max-width: 16ch;
}

.case-note {
  position: relative;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}

.case-tile-spotlight {
  background: linear-gradient(160deg, rgba(94, 234, 212, 0.14), var(--panel));
  border-color: rgba(94, 234, 212, 0.28);
}

/* Industries */
.industries-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(15, 22, 38, 0.9));
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip-cloud li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(5, 6, 13, 0.55);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 200ms ease, background 200ms ease;
}

.chip-cloud li:hover {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.08);
}

/* Contact */
.contact {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 9vw, 100px) 0;
}

.contact-shell {
  position: relative;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--night);
  overflow: hidden;
}

.contact-visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 0% 100%, rgba(94, 234, 212, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(167, 139, 250, 0.22), transparent 45%);
  opacity: 0.9;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 40px;
  padding: clamp(32px, 5vw, 48px);
}

.contact-intro p:not(.section-label) {
  margin: 16px 0 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(5, 6, 13, 0.65);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(15, 22, 38, 0.85);
  color: var(--text);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: rgba(94, 234, 212, 0.5);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.12);
}

.contact-form textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  font-size: 0.85rem;
  color: var(--mint);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.78rem;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .bento-visual {
    grid-column: span 2;
    grid-row: span 1;
  }

  .section-head-row {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 10px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--mint), var(--cyan), var(--violet));
  }

  .timeline-step {
    padding: 0 0 0 36px;
  }

  .timeline-node {
    position: absolute;
    left: 0;
    top: 0;
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .header-cta {
    order: 3;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .site-nav {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 320ms var(--ease), opacity 240ms ease;
  }

  body.nav-open .site-nav {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    padding-top: 8px;
  }

  .site-nav a {
    border-radius: 12px;
    padding: 12px 14px;
  }

  .brand-pill {
    display: none;
  }

  .hero-bento {
    grid-template-columns: 1fr;
  }

  .bento-visual {
    grid-column: auto;
  }

  .service-deck {
    grid-template-columns: 1fr;
  }

  .case-row {
    grid-template-columns: 1fr;
  }

  .industries-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-actions,
  .btn {
    width: 100%;
  }

  .bento-visual img {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .marquee-group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .marquee-group[aria-hidden="true"] {
    display: none;
  }

  .orbit-ring {
    animation: none;
  }
}
