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

:root {
  --plum: #360F3C;
  --accent: #6F2C91;
  --brand-orange: #F88819;
  --brand-pink: #C532B8;
  --wash: #F3EAF7;
  --cream: #FEFBF2;
  --white: #FFFFFF;
  --muted: #6B5A70;
  --nav-color: #4A3A50;
  --divider: #E8E0EB;
  --btn-shadow: 0 6px 18px rgba(62, 34, 69, 0.15);
  --btn-hover-shadow: 0 8px 24px rgba(62, 34, 69, 0.22);
  --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; background: var(--cream); }

body {
  font-family: var(--font);
  background: linear-gradient(180deg, var(--cream) 0%, #F8F2E2 50%, var(--cream) 100%);
  background-attachment: fixed;
  background-size: 100% 300vh;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Respect reduced motion globally */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-line { opacity: 1 !important; filter: none !important; transform: none !important; }
  .anim, .anim-title { opacity: 1 !important; transform: none !important; }
}

/* Disable fixed background on mobile to prevent jank */
@media (max-width: 768px) {
  body { background-attachment: scroll; }
}

/* =========================================
   ANIMATIONS
   ========================================= */

/* Scroll reveal — body elements rise subtly */
.anim {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Section titles: planted, no vertical movement — just materialise */
.anim-title {
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}
.anim-title.visible {
  opacity: 1;
}
.anim.d1, .anim-title.d1 { transition-delay: 0.1s; }
.anim.d2, .anim-title.d2 { transition-delay: 0.2s; }
.anim.d3, .anim-title.d3 { transition-delay: 0.3s; }
.anim.d4, .anim-title.d4 { transition-delay: 0.4s; }
.anim.d5, .anim-title.d5 { transition-delay: 0.5s; }
.anim.d6, .anim-title.d6 { transition-delay: 0.6s; }

/* Hero sequence — line-by-line headline */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes underlineReveal {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

.hero-line {
  display: block;
  opacity: 0;
  filter: blur(8px);
  animation: heroDeblur 0.8s var(--ease) forwards;
}
.hero-line-1 { animation-delay: 0ms; }
.hero-line-2 { animation-delay: 200ms; }

@keyframes heroDeblur {
  0% { opacity: 0; filter: blur(8px); transform: translateY(10px); }
  60% { opacity: 1; filter: blur(2px); transform: translateY(2px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.hero-anim-line {
  opacity: 0;
  transform-origin: left;
  animation: underlineReveal 0.45s var(--ease) 280ms forwards;
}
.hero-anim-desc {
  opacity: 0;
  animation: heroFadeIn 0.6s var(--ease) 320ms forwards;
}
.hero-tagline {
  display: block;
  margin-top: 16px;
  margin-bottom: 40px;
}
.hero-tagline .tag-lead {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-tagline .tag-brand {
  display: block;
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.hero-anim-tag {
  opacity: 0;
  animation: heroFadeIn 0.5s var(--ease) 380ms forwards;
}
.hero-anim-btns {
  opacity: 0;
  animation: heroFadeIn 0.6s var(--ease) 460ms forwards;
}

/* Hub entrance — materializes after headline */
@keyframes hubEntrance {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hub line stagger fade-in */
@keyframes lineFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hub node entrance — scale in, then hand off to pulse */
@keyframes nodeEnter {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

/* Hub breathing pulse */
@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.02); }
}

/* Node subtle opacity pulse — narrowed range */
@keyframes nodePulse {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}

/* Check mark snap-in */
@keyframes checkSnap {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Section divider draw from center */
@keyframes dividerDraw {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* CTA text color shift */
@keyframes colorReveal {
  from { color: var(--muted); }
  to { color: var(--accent); }
}

/* Why Benegrate — word reveal */
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(8px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Tile icon shimmer */
@keyframes iconShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* CTA radial glow pulse */
@keyframes ctaGlow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

/* Is/Is Not slide toward each other */
.is-col.anim {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.is-col.anim.visible {
  opacity: 1;
  transform: translateX(0);
}
.is-col-not.anim {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.is-col-not.anim.visible {
  opacity: 1;
  transform: translateX(0);
}

/* What We Operate — text from left, graphic from right */
.operate-text.anim-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.operate-text.anim-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.operate-graphic.anim-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease) 0.15s, transform 0.7s var(--ease) 0.15s;
}
.operate-graphic.anim-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Check circles — start hidden, animate on scroll */
.chk, .serve-chk, .tick {
  opacity: 0;
  transform: scale(0);
}
.anim.visible .chk,
.anim.visible .serve-chk,
.anim.visible .tick {
  animation: checkSnap 0.4s var(--ease) forwards;
}
/* Stagger checks within list based on parent delay */
.anim.d2.visible .chk, .anim.d2.visible .serve-chk, .anim.d2.visible .tick { animation-delay: 0.25s; }
.anim.d3.visible .chk, .anim.d3.visible .serve-chk, .anim.d3.visible .tick { animation-delay: 0.35s; }
.anim.d4.visible .chk, .anim.d4.visible .serve-chk, .anim.d4.visible .tick { animation-delay: 0.45s; }
.anim.d5.visible .chk, .anim.d5.visible .serve-chk, .anim.d5.visible .tick { animation-delay: 0.55s; }
.anim.d6.visible .chk, .anim.d6.visible .serve-chk, .anim.d6.visible .tick { animation-delay: 0.65s; }

/* Section dividers animate from center */
.section-divider {
  height: 1px;
  background: var(--divider);
  max-width: 1200px;
  margin: 0 auto;
  transform-origin: center;
  opacity: 0;
  transform: scaleX(0);
}
.section-divider.visible {
  animation: dividerDraw 0.6s var(--ease) forwards;
}
.section-divider.divider-accent {
  background: linear-gradient(90deg, var(--divider) 0%, var(--brand-pink) 50%, var(--divider) 100%);
}

/* Accordion items stagger */
.tile.anim.cg1 { transition-delay: 0.06s; }
.tile.anim.cg2 { transition-delay: 0.12s; }
.tile.anim.cg3 { transition-delay: 0.18s; }
.tile.anim.cg4 { transition-delay: 0.24s; }
.tile.anim.cg5 { transition-delay: 0.30s; }
.tile.anim.cg6 { transition-delay: 0.36s; }

/* CTA "All Benegrated" color shift */
.cta-sub-animate {
  color: var(--muted);
}
.cta-sub-animate.visible {
  animation: colorReveal 0.8s var(--ease) 0.3s forwards;
}

/* =========================================
   DEFAULT SECTION
   ========================================= */
section { background: transparent; padding: 120px 40px; }

/* Subtle section parallax — alternating layers */
.hero { transform-style: preserve-3d; }
#what-we-operate,
#operational-coverage,
#what-is {
  position: relative;
  z-index: 1;
}
#why-benegrate,
#who-we-serve,
.cta-section {
  position: relative;
  z-index: 2;
}

/* =========================================
   NAV
   ========================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(254, 251, 242, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--divider); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0;
  position: relative;
}
.logo-group {
  display: block;
  line-height: 0;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 400;
  color: var(--brand-pink);
  letter-spacing: 0.01em;
  text-transform: none;
  margin-top: -4px;
  padding-left: 42px;
  opacity: 0.6;
  line-height: 1;
}

/* Brand dots motif */
.brand-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.brand-dots .dot {
  width: 24px;
  height: 10px;
  border-radius: 5px;
}
.brand-dots .dot-orange { background: var(--brand-orange); }
.brand-dots .dot-pink { background: var(--brand-pink); }
.brand-dots .dot-plum { background: var(--plum); }
.logo-svg {
  height: 28px;
  width: auto;
  min-height: 28px;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--plum);
  line-height: 1;
  white-space: nowrap;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--nav-color);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--plum);
  border-radius: 1px;
}

/* =========================================
   HERO — bg: cream
   ========================================= */
.hero {
  background: transparent;
  padding: 168px 40px 120px;
  position: relative;
  overflow: hidden;
}
/* Cursor-reactive gradient */
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(111, 44, 145, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 70vh;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 540px; }

.hero h1 {
  font-size: 64px;
  line-height: 1.10;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--plum);
}

.hero-underline {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-pink), var(--accent));
  margin: 28px 0;
  border-radius: 2px;
}

.hero-desc {
  font-size: 17px;
  color: var(--plum);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Animated keyword highlight */
.highlight-word {
  position: relative;
  display: inline;
}
.highlight-word::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 6px;
  background: rgba(198, 50, 183, 0.15);
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.highlight-word.swept::after {
  width: 100%;
}
.highlight-word:nth-child(1)::after { transition-delay: 0.8s; }
.highlight-word:nth-child(2)::after { transition-delay: 1.1s; }
.highlight-word:nth-child(3)::after { transition-delay: 1.4s; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-block;
  background: var(--plum);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font);
  border: none; cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: background 0.2s, transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s;
  will-change: transform;
}
.btn-primary:hover {
  background: #4F2A57;
  transform: translateY(-2px);
  box-shadow: var(--btn-hover-shadow);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--plum);
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font);
  border: 1.5px solid var(--plum);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  background: var(--wash);
  transform: translateY(-2px);
}

/* =========================================
   HERO GRAPHIC — layered infrastructure
   ========================================= */
.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  opacity: 0;
  animation: hubEntrance 0.8s var(--ease) 300ms forwards;
}

.infra-stack {
  position: relative;
  width: 340px;
  height: 340px;
  perspective: 800px;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Shared layer styles */
.infra-layer {
  position: absolute;
  left: 50%;
  width: 260px;
  border-radius: 16px;
  padding: 18px 24px;
  transform: translateX(-50%);
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.infra-layer-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.infra-layer-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.infra-layer-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  border-radius: 2px;
}

/* Layer 1 — Data (bottom, lightest) */
.infra-l1 {
  bottom: 20px;
  background: rgba(54, 15, 60, 0.06);
  border: 1px solid rgba(54, 15, 60, 0.10);
  animation: layerSlideUp 0.6s var(--ease) 0.5s forwards;
}
.infra-l1 .infra-layer-label { color: rgba(54, 15, 60, 0.50); }
.infra-l1 .infra-layer-bar { background: rgba(54, 15, 60, 0.06); }
.infra-l1 .infra-layer-bar::after { background: var(--brand-orange); opacity: 0.5; animation: barSweep 3s ease-in-out 1.4s infinite; }

/* Layer 2 — Operations (middle) */
.infra-l2 {
  bottom: 112px;
  background: rgba(54, 15, 60, 0.14);
  border: 1px solid rgba(54, 15, 60, 0.18);
  animation: layerSlideLeft 0.6s var(--ease) 0.8s forwards;
}
.infra-l2 .infra-layer-label { color: rgba(54, 15, 60, 0.65); }
.infra-l2 .infra-layer-bar { background: rgba(54, 15, 60, 0.08); }
.infra-l2 .infra-layer-bar::after { background: var(--brand-pink); opacity: 0.4; animation: barSweep 3s ease-in-out 1.8s infinite; }

/* Layer 3 — Compliance (top, darkest) */
.infra-l3 {
  bottom: 204px;
  background: var(--plum);
  border: 1px solid var(--plum);
  box-shadow: 0 8px 32px rgba(54, 15, 60, 0.25);
  animation: layerSlideRight 0.6s var(--ease) 1.1s forwards;
}
.infra-l3 .infra-layer-label { color: rgba(255, 255, 255, 0.90); }
.infra-l3 .infra-layer-bar { background: rgba(255, 255, 255, 0.15); }
.infra-l3 .infra-layer-bar::after { background: rgba(255, 255, 255, 0.40); animation: barSweep 3s ease-in-out 2.2s infinite; }

/* Connectors between layers */
.infra-connector {
  position: absolute;
  left: 50%;
  width: 1px;
  background: var(--divider);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
}
.infra-c1 { bottom: 78px; height: 34px; animation: connectorGrow 0.4s var(--ease) 1.0s forwards; }
.infra-c2 { bottom: 170px; height: 34px; animation: connectorGrow 0.4s var(--ease) 1.3s forwards; }

/* Connector dots */
.infra-dot {
  position: absolute;
  left: 50%;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  z-index: 2;
}
.infra-d1 { bottom: 76px; animation: nodeEnter 0.3s var(--ease) 1.2s forwards; }
.infra-d2 { bottom: 110px; animation: nodeEnter 0.3s var(--ease) 1.25s forwards; }
.infra-d3 { bottom: 168px; animation: nodeEnter 0.3s var(--ease) 1.5s forwards; }
.infra-d4 { bottom: 202px; animation: nodeEnter 0.3s var(--ease) 1.55s forwards; }

@keyframes layerSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes layerSlideLeft {
  from { opacity: 0; transform: translateX(-60%); }
  to { opacity: 1; transform: translateX(-50%); }
}
@keyframes layerSlideRight {
  from { opacity: 0; transform: translateX(-40%); }
  to { opacity: 1; transform: translateX(-50%); }
}
@keyframes connectorGrow {
  from { transform: translateX(-50%) scaleY(0); }
  to { transform: translateX(-50%) scaleY(1); }
}
@keyframes barSweep {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* =========================================
   SHARED SECTION STYLES
   ========================================= */
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-title {
  font-size: 36px;
  color: var(--plum);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 400;
}


/* Check icon reusable */
.chk {
  width: 22px; height: 22px; min-width: 22px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
}
.chk svg {
  width: 11px; height: 11px;
  stroke: var(--accent);
  fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Tick icon (no circle) */
.tick { min-width: 20px; width: 20px; height: 20px; margin-top: 2px; }
.tick svg {
  width: 20px; height: 20px;
  stroke: var(--plum);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.tick-light svg {
  stroke: rgba(255, 255, 255, 0.5);
}

/* =========================================
   SYSTEM STATUS STRIP
   ========================================= */
.status-strip {
  background: #1A0F1E;
  padding: 16px 40px;
  overflow: hidden;
}
.status-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.4);
  flex-shrink: 0;
  position: relative;
}
.status-dot::after {
  content: '';
  position: absolute;
  top: -3px; left: -3px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  animation: statusPulse 2.5s ease-in-out infinite;
}
.status-dot.amber {
  background: #FBBF24;
  box-shadow: 0 0 6px rgba(251, 191, 36, 0.4);
}
.status-dot.amber::after {
  background: rgba(251, 191, 36, 0.15);
}
.status-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}
.status-value {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.02em;
}
.status-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.08);
}

@keyframes statusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* =========================================
   WHAT WE OPERATE — bg: white
   ========================================= */
#what-we-operate { background: var(--white); }

.operate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.operate-text { max-width: 540px; }

.operate-list {
  list-style: none;
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.operate-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 17px; color: var(--muted); line-height: 1.55;
}

/* Operate hub */
.operate-graphic {
  display: flex; align-items: center; justify-content: center;
  height: 300px;
}
.operate-hub { position: relative; width: 260px; height: 260px; }

.mini-hub-bg {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  background: var(--wash);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.mini-hub-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 190px; height: 190px;
  border: 1.5px dashed var(--divider);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.mini-hub-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 72px; height: 72px;
  background: var(--plum);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  box-shadow: 0 0 0 10px rgba(62,34,69,0.07), 0 0 0 22px rgba(62,34,69,0.025);
  animation: breathe 4.5s ease-in-out infinite;
}

.mini-node {
  position: absolute;
  width: 22px; height: 22px;
  background: var(--white);
  border: 1.5px solid var(--divider);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  animation: nodePulse 5.5s ease-in-out infinite;
}
.mini-node::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.mini-lines line {
  stroke: var(--divider);
  stroke-width: 1;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mini-lines.draw line { stroke-dashoffset: 0; }
.mini-lines.draw line:nth-child(1) { transition-delay: 0.0s; }
.mini-lines.draw line:nth-child(2) { transition-delay: 0.12s; }
.mini-lines.draw line:nth-child(3) { transition-delay: 0.24s; }
.mini-lines.draw line:nth-child(4) { transition-delay: 0.36s; }
.mini-lines.draw line:nth-child(5) { transition-delay: 0.48s; }
.mini-lines.draw line:nth-child(6) { transition-delay: 0.60s; }

/* =========================================
   WHY BENEGRATE — bg: cream
   ========================================= */
#why-benegrate {
  background: linear-gradient(135deg, #360F3C 0%, #4A2858 50%, #360F3C 100%);
  background-size: 200% 200%;
  animation: plumShift 8s ease-in-out infinite;
}

@keyframes plumShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.why-content { text-align: center; max-width: 720px; margin: 0 auto; }

.why-statement {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.why-statement .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
}
.why-statement.visible .w {
  animation: wordReveal 0.4s var(--ease) forwards;
}

.why-statement-sub {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  margin-bottom: 56px;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--brand-pink);
  font-weight: 300;
  animation: cursorBlink 0.7s step-end infinite;
  margin-left: 2px;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}
.why-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: rgba(255, 255, 255, 0.75); line-height: 1.5;
}

/* =========================================
   OPERATIONAL COVERAGE — hybrid tile accordion
   ========================================= */
#operational-coverage { background: var(--white); }

.coverage-header { text-align: center; margin-bottom: 48px; }
.coverage-header .section-subtitle { margin: 10px auto 0; }


.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tile {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(62, 34, 69, 0.04);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.tile:hover {
  border-color: rgba(111, 44, 145, 0.18);
  box-shadow: 0 4px 16px rgba(62, 34, 69, 0.07);
  transform: translateY(-2px);
}
.tile.active {
  border-color: var(--brand-pink);
  box-shadow: 0 6px 24px rgba(198, 50, 183, 0.10);
  grid-column: 1 / -1;
  transform: none;
}
.tile.active:hover { transform: none; }

.tile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  -webkit-appearance: none;
}
.tile-header:focus { outline: none; }
.tile-header:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; border-radius: 12px; }

.tile-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(110deg, var(--wash) 30%, rgba(111,44,145,0.08) 50%, var(--wash) 70%);
  background-size: 200% 100%;
  animation: iconShimmer 6s ease-in-out infinite;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s var(--ease), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tile:hover .tile-icon {
  transform: scale(1.1) rotate(-4deg);
}
.tile.active:hover .tile-icon {
  transform: none;
}
.tile.active .tile-icon { background: var(--brand-pink); animation: none; }
.tile-icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s var(--ease);
}
.tile.active .tile-icon svg { stroke: var(--white); }

.tile-text { flex: 1; min-width: 0; }

.tile-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--plum);
  line-height: 1.3;
  margin-bottom: 3px;
}

.tile-preview {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 400;
}

.tile-chevron {
  width: 18px; height: 18px; min-width: 18px;
  color: var(--muted);
  transition: transform 0.28s var(--ease), color 0.25s var(--ease);
  flex-shrink: 0;
}
.tile.active .tile-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.tile-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.tile-panel-inner {
  padding: 0 24px 28px 82px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
}

.tile-bullet {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.tile.active .tile-bullet {
  opacity: 1;
  transform: translateY(0);
}
.tile.active .tile-bullet:nth-child(1) { transition-delay: 0.06s; }
.tile.active .tile-bullet:nth-child(2) { transition-delay: 0.12s; }
.tile.active .tile-bullet:nth-child(3) { transition-delay: 0.18s; }
.tile.active .tile-bullet:nth-child(4) { transition-delay: 0.24s; }
.tile.active .tile-bullet:nth-child(5) { transition-delay: 0.30s; }
.tile.active .tile-bullet:nth-child(6) { transition-delay: 0.36s; }
.tile-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.tile.active::before {
  content: '';
  display: block;
  height: 2px;
  background: var(--brand-pink);
}

/* =========================================
   WHO WE SERVE — bg: cream
   ========================================= */
#who-we-serve { background: transparent; }

.serve-header { text-align: center; margin-bottom: 48px; }
.serve-header .section-subtitle { margin: 10px auto 0; }

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

.serve-card {
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 40px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(62, 34, 69, 0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.serve-card:hover {
  border-color: rgba(111, 44, 145, 0.18);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(62, 34, 69, 0.07);
}

.serve-card h3 {
  font-size: 22px; color: var(--plum);
  margin-bottom: 10px; font-weight: 500;
  letter-spacing: -0.01em;
}
.serve-card > p {
  font-size: 16px; color: var(--muted);
  line-height: 1.7; margin-bottom: 24px;
}

.serve-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.serve-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--muted); line-height: 1.55;
}

.serve-chk {
  min-width: 20px; width: 20px; height: 20px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.serve-chk svg {
  width: 10px; height: 10px;
  stroke: var(--accent); fill: none;
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}

.serve-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.serve-tag {
  padding: 7px 16px;
  border: 1px solid var(--divider);
  border-radius: 20px;
  font-size: 13px; color: var(--muted);
  background: linear-gradient(90deg, var(--wash) 50%, var(--cream) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: border-color 0.3s, background-position 0.4s var(--ease), color 0.3s;
}
.serve-tag:hover {
  border-color: rgba(111, 44, 145, 0.22);
  background-position: 0% 0;
  color: var(--accent);
}

/* =========================================
   WHAT BENEGRATE IS / IS NOT — bg: white
   ========================================= */
#what-is { background: var(--white); padding: 100px 40px; }

.is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 800px;
  margin: 0 auto;
}

.is-col h3 {
  font-size: 20px; color: var(--plum);
  margin-bottom: 20px; font-weight: 500;
  letter-spacing: -0.01em;
}
.is-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.is-col ul li {
  font-size: 16px; color: var(--muted);
  padding-left: 18px; position: relative;
  line-height: 1.55;
}
.is-col ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent);
  font-size: 14px; line-height: 1.5;
  font-weight: 600;
}

/* "Is Not" column — muted, reduced, crossed out feel */
.is-col-not h3 {
  font-size: 20px; color: var(--muted);
  margin-bottom: 20px; font-weight: 500;
  letter-spacing: -0.01em;
}
.is-col-not ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.is-col-not ul li {
  font-size: 16px; color: rgba(107, 90, 112, 0.6);
  padding-left: 18px; position: relative;
  line-height: 1.55;
}
.is-col-not ul li::before {
  content: '✗';
  position: absolute; left: 0;
  color: rgba(107, 90, 112, 0.4);
  font-size: 14px; line-height: 1.5;
  font-weight: 600;
}

/* =========================================
   CTA — bg: cream
   ========================================= */
.cta-section {
  background: var(--wash);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(111, 44, 145, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ctaGlow 5s ease-in-out infinite;
  pointer-events: none;
}
.cta-section .anim { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: 40px; color: var(--plum);
  font-weight: 600; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 36px; color: var(--muted);
  font-weight: 500; margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.btn-cta {
  display: inline-block;
  background: var(--plum);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px; font-weight: 500;
  font-family: var(--font);
  box-shadow: var(--btn-shadow);
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s, background 0.2s;
  will-change: transform;
}
.btn-cta:hover {
  background: #4F2A57;
  transform: translateY(-2px);
  box-shadow: var(--btn-hover-shadow);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--plum);
  padding: 56px 40px 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-brand svg { width: 22px; height: 25px; }
.footer-brand-name {
  font-size: 19px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.02em;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255, 255, 255, 0.8); }
.footer-contact {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: rgba(255, 255, 255, 0.85); }
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* =========================================
   CONTACT MODAL
   ========================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(62, 34, 69, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  width: 520px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px 44px;
  z-index: 201;
  box-shadow: 0 24px 80px rgba(62, 34, 69, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.modal-backdrop.active + .modal,
.modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border: none;
  background: var(--wash);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--divider); }
.modal-close svg {
  width: 16px; height: 16px;
  stroke: var(--plum);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.modal h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.modal-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group label .optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--divider);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--plum);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(111, 44, 145, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 90, 112, 0.4);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--plum);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.btn-submit:hover {
  background: #4F2A57;
  transform: translateY(-1px);
  box-shadow: var(--btn-hover-shadow);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 56px; height: 56px;
  background: var(--wash);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success-icon svg {
  width: 28px; height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success h3 {
  font-size: 22px;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================
   MOBILE NAV
   ========================================= */
.mobile-nav {
  display: none;
  position: fixed;
  top: 92px; left: 0; right: 0;
  background: var(--cream);
  padding: 16px 40px 24px;
  border-bottom: 1px solid var(--divider);
  z-index: 99;
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block; padding: 12px 0;
  text-decoration: none;
  color: var(--nav-color);
  font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--divider);
}
.mobile-nav a:last-child { border-bottom: none; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .nav-inner { height: 80px; }
  .mobile-nav { top: 80px; }
  .hero { padding: 148px 40px 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero h1 { font-size: 48px; }
  .hero-graphic { height: 320px; }
  .infra-stack { width: 300px; height: 300px; }
  .infra-layer { width: 230px; }
  .operate-grid { grid-template-columns: 1fr; }
  .operate-graphic { display: none; }
  .serve-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .is-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 100px 40px; }
  .why-list { grid-template-columns: 1fr; gap: 16px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-links { flex-wrap: wrap; gap: 16px 24px; }
}

@media (max-width: 600px) {
  .nav-inner { height: 72px; padding: 0 24px; }
  .mobile-nav { top: 72px; }
  .hero { padding: 120px 24px 60px; }
  .hero h1 { font-size: 38px; }
  section { padding: 80px 24px; }
  .serve-card { padding: 28px; }
  .hero-graphic { height: 280px; }
  .infra-stack { width: 260px; height: 260px; }
  .infra-layer { width: 210px; padding: 14px 18px; }
  .infra-l1 { bottom: 10px; }
  .infra-l2 { bottom: 92px; }
  .infra-l3 { bottom: 174px; }
  .infra-c1 { bottom: 60px; height: 32px; }
  .infra-c2 { bottom: 148px; height: 26px; }
  .infra-d1 { bottom: 58px; }
  .infra-d2 { bottom: 90px; }
  .infra-d3 { bottom: 146px; }
  .infra-d4 { bottom: 172px; }
  .section-title { font-size: 28px; }
  .hero-tagline .tag-lead { font-size: 15px; letter-spacing: 0.06em; }
  .hero-tagline .tag-brand { font-size: 22px; }
  .tile-grid { grid-template-columns: 1fr; }
  .tile-panel-inner { padding-left: 24px; grid-template-columns: 1fr; }
  .status-strip { padding: 14px 24px; }
  .status-strip-inner { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .status-sep { display: none; }
  .status-label { font-size: 11px; }
  .status-value { font-size: 11px; }
  footer { padding: 40px 24px 28px; }
  .modal { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Tablet: hide tile preview in collapsed state */
@media (max-width: 960px) and (min-width: 601px) {
  .tile:not(.active) .tile-preview { display: none; }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim, .anim-title { opacity: 1; transform: none; }
  .hero-line { opacity: 1; filter: none; transform: none; }
  .hero-anim-line, .hero-anim-desc, .hero-anim-tag, .hero-anim-btns { opacity: 1; }
  .hero-graphic { opacity: 1; }
  .section-divider { opacity: 1; transform: scaleX(1); }
  .chk, .serve-chk, .tick { opacity: 1; transform: scale(1); }
  .cta-sub-animate { color: var(--accent); }
  .why-statement .w { opacity: 1; transform: none; filter: none; }
  .infra-layer { opacity: 1; transform: translateX(-50%); }
  .infra-connector { transform: translateX(-50%) scaleY(1); }
  .infra-dot { transform: translateX(-50%) scale(1); }
  .operate-text.anim-slide-left, .operate-graphic.anim-slide-right { opacity: 1; transform: none; }
  .mini-lines line { stroke-dashoffset: 0; }
  .highlight-word::after { width: 100%; transition: none; }
  .typewriter-cursor { animation: none; }
  .is-col.anim, .is-col-not.anim { opacity: 1; transform: none; }
  .hero-glow { display: none; }
  #why-benegrate { animation: none; background: var(--plum); }
  .tile-bullet { opacity: 1; transform: none; }
  .status-dot::after { animation: none; }
}
