/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg: #080810;
  --bg-light: #0e0e1a;
  --text: #F0F0F8;
  --text-muted: rgba(240, 240, 248, 0.5);
  --accent: #FF3D2E;
  --accent-glow: rgba(255, 61, 46, 0.15);
  --blue: #4A7CFF;
  --blue-glow: rgba(74, 124, 255, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(8, 8, 16, 0.95);
  --font-display: 'Sora', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1320px;
  --px: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

button {
  font-family: inherit;
  cursor: none;
}

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

ul {
  list-style: none;
}

/* ===== GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}

.cursor.expand {
  width: 40px;
  height: 40px;
  background: rgba(255, 61, 46, 0.08);
  border-color: var(--accent);
}

.cursor::before,
.cursor::after {
  content: '';
  position: absolute;
  background: var(--accent);
}

.cursor:not(.expand)::before {
  width: 1px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cursor:not(.expand)::after {
  width: 18px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, backdrop-filter .4s;
}

.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav-wordmark span {
  color: var(--accent);
  font-size: .7em;
  vertical-align: super;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .btn-outline {
  border: 1px solid var(--accent);
  padding: .5rem 1.2rem;
  color: var(--accent);
  transition: background .3s, color .3s;
}

.nav-links .btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  transform: translateY(30px);
  opacity: 0;
  transition: transform .5s, opacity .5s;
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: .08s
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: .16s
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: .24s
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem var(--px) 5rem;
  position: relative;
}

.hero-left {
  flex: 0 0 55%;
  max-width: 55%;
}

.hero-right {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: .06em;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-headline .cycle-word {
  color: var(--accent);
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-headline .cycle-word span {
  display: inline-block;
  animation: clipReveal .6s ease forwards;
}

@keyframes clipReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: .85rem 2rem;
  border: none;
  border-radius: 0;
  transition: filter .3s;
}

.btn-primary:hover {
  filter: brightness(1.15);
}

.btn-text {
  font-size: .92rem;
  color: var(--text-muted);
  transition: color .3s;
}

.btn-text:hover {
  color: var(--text);
}

.hero-tags {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(240, 240, 248, 0.25);
  letter-spacing: .04em;
}

/* Hero cards */
.data-stream {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.data-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 1.1rem 1.3rem;
  border-radius: 2px;
  opacity: 0;
  animation: cardIn .8s ease forwards, cardFloat 6s ease-in-out infinite;
}

.data-card:nth-child(odd) {
  margin-left: 0;
  margin-right: 15%;
}

.data-card:nth-child(even) {
  margin-left: 15%;
  margin-right: 0;
}

.data-card:nth-child(1) {
  animation-delay: 0s, .8s;
}

.data-card:nth-child(2) {
  animation-delay: .15s, .95s;
}

.data-card:nth-child(3) {
  animation-delay: .3s, 1.1s;
}

.data-card:nth-child(4) {
  animation-delay: .45s, 1.25s;
}

.data-card:nth-child(5) {
  animation-delay: .6s, 1.4s;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

.data-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .65rem;
}

.card-label {
  font-family: var(--font-body);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.green {
  background: #34D399;
  box-shadow: 0 0 6px #34D399;
}

.status-dot.amber {
  background: #FBBF24;
  box-shadow: 0 0 6px #FBBF24;
}

.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .8rem;
}

.card-metric {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(240, 240, 248, 0.6);
}

.card-metric b {
  color: var(--text);
  font-weight: 500;
}

.data-stream::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Hero bottom */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--px);
}

.hero-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: .5rem;
}

.marquee-wrap {
  overflow: hidden;
  padding: 1.2rem 0 1.8rem;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: rgba(240, 240, 248, 0.2);
  animation: marquee 40s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===== SECTION SHARED ===== */
section {
  padding: 7rem var(--px);
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  max-width: 800px;
}

/* ===== SECTION 2 — PROBLEM ===== */
.problem {
  text-align: center;
}

.problem .section-heading {
  margin: 0 auto 3.5rem;
  max-width: 880px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.stat {
  flex: 1;
  max-width: 320px;
  padding: 0 2.5rem;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--accent);
  margin-bottom: .5rem;
}

.stat-label {
  font-size: .92rem;
  color: var(--text-muted);
}

.problem-closing {
  color: var(--text-muted);
  font-size: .95rem;
}

/* ===== SECTION 3 — ACCORDION ===== */
.accordion-item {
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.accordion-item.active {
  background: rgba(255, 61, 46, 0.04);
  border-left: 3px solid var(--accent);
}

.accordion-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 1.5rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.acc-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  color: rgba(240, 240, 248, 0.035);
  line-height: 1;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.acc-center {
  padding-left: 4.5rem;
  position: relative;
  z-index: 1;
}

.acc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: .2rem;
}

.acc-desc-short {
  font-size: .9rem;
  color: var(--text-muted);
}

.acc-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: transform .3s, color .3s;
}

.accordion-item.active .acc-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .5s;
  padding: 0 1.5rem 0 6.5rem;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding-bottom: 2rem;
}

.acc-full-desc {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1rem;
  max-width: 500px;
}

.acc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.pill {
  font-family: var(--font-mono);
  font-size: .72rem;
  padding: .35rem .75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

/* ===== SECTION 4 — STEPS ===== */
.steps-section {
  overflow: hidden;
}

.steps-section .binary-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .03;
  font-family: var(--font-mono);
  font-size: .7rem;
  line-height: 1.8;
  color: var(--text);
  word-break: break-all;
}

.steps-wrap {
  display: flex;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  padding-top: .5rem;
  position: sticky;
  top: 30vh;
  align-self: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: border-color .5s, color .5s, box-shadow .5s;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.step-num.active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 61, 46, 0.25);
}

.step-line {
  width: 2px;
  height: 80px;
  background: var(--border);
  position: relative;
}

.step-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent);
  transition: height .6s;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.step-panel {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}

.step-panel.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.step-panel h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-panel p {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ===== SECTION 5 — PROOF ===== */
.proof {
  background: var(--bg-light);
  text-align: center;
  padding: 5rem var(--px);
}

.proof .stats-row {
  margin-bottom: 1.5rem;
}

.proof-note {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== SECTION 6 — WHO WE SERVE ===== */
.serve {
  padding: 0;
}

.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.serve-panel {
  padding: clamp(3rem, 6vw, 6rem) var(--px);
  position: relative;
}

.serve-panel.left {
  background: #0D0D20;
  border-top: 2px solid var(--accent);
}

.serve-panel.right {
  background: #0A1020;
  border-top: 2px solid var(--blue);
}

.serve-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.serve-panel.left .serve-big {
  color: var(--accent);
}

.serve-panel.right .serve-big {
  color: var(--blue);
}

.serve-panel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.serve-panel .serve-body {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.serve-outcomes {
  margin-bottom: 2rem;
}

.serve-outcomes li {
  padding: .4rem 0;
  font-size: .95rem;
}

.serve-outcomes li span {
  color: var(--accent);
  margin-right: .5rem;
  font-weight: 700;
}

.serve-panel.right .serve-outcomes li span {
  color: var(--blue);
}

.serve-cta {
  font-size: .95rem;
  color: var(--accent);
  font-weight: 600;
  transition: opacity .3s;
}

.serve-cta:hover {
  opacity: .7;
}

.serve-panel.right .serve-cta {
  color: var(--blue);
}

.serve-divider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

/* ===== SECTION 7 — MANIFESTO ===== */
.manifesto {
  background: var(--bg-light);
  text-align: center;
  padding: 8rem var(--px);
}

.manifesto-line {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}

.manifesto-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.manifesto-line.muted {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  font-weight: 400;
}

.manifesto-line.accent {
  color: var(--accent);
}

/* ===== SECTION 8 — CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact .section-heading {
  margin-bottom: 1.2rem;
}

.contact-body {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .8rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.stage-toggle {
  display: flex;
  gap: 0;
}

.stage-toggle button {
  flex: 1;
  padding: .7rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .9rem;
  transition: all .3s;
}

.stage-toggle button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: filter .3s;
  margin-top: .5rem;
}

.form-submit:hover {
  filter: brightness(1.15);
}

.next-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 2rem;
}

.next-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.next-list {
  counter-reset: next;
}

.next-list li {
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  gap: .8rem;
}

.next-list li .nl-num {
  color: var(--accent);
  font-weight: 700;
}

.next-email {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 1.8rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-tagline {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

.footer-email {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-muted);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .65rem;
  color: rgba(240, 240, 248, 0.2);
  margin-top: .5rem;
}

/* ===== SCROLL ANIM ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s, transform .7s;
}

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

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
  .hero {
    flex-direction: column;
    padding-top: 6rem;
  }

  .hero-left,
  .hero-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

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

  .data-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
  }

  .steps-wrap {
    flex-direction: column;
    gap: 3rem;
  }

  .step-indicator {
    flex-direction: row;
    gap: 1rem;
    position: relative;
    top: auto;
  }

  .step-line {
    width: 60px;
    height: 2px;
  }

  .step-line-fill {
    width: 0 !important;
    height: 100% !important;
  }

  .step-content {
    gap: 3rem;
  }

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

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

  .hamburger {
    display: flex;
  }

  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 2rem;
  }

  .stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .accordion-header {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .acc-number {
    display: none;
  }

  .acc-center {
    padding-left: 0;
  }

  .accordion-body {
    padding-left: 1.5rem;
  }

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

  .serve-divider {
    display: none;
  }
}

/* reduced motion */
@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .marquee-track {
    animation: none;
  }
}