:root {
  --bg-night: #06070D;
  --bg-elev: #0E1019;
  --bg-card: #131724;
  --bg-card-2: #1A1F30;
  --border: #232838;
  --border-strong: #353B52;
  --text: #FAFAFA;
  --text-mute: #A5A8B5;
  --text-dim: #6B6F7E;

  /* Ember/Fire — aus Logo */
  --ember: #E11D2E;
  --ember-hot: #FF6B3D;
  --ember-warm: #FF8556;
  --ember-deep: #A60E1B;
  --ember-glow: rgba(255, 107, 61, 0.45);

  /* Cobalt/Blue — aus Logo */
  --cobalt: #1E40AF;
  --cobalt-bright: #3B82F6;
  --cobalt-cyan: #4FC3F7;
  --cobalt-deep: #0B2349;
  --cobalt-glow: rgba(75, 137, 247, 0.4);

  /* Gold/Spark */
  --gold: #FCBF49;
  --gold-soft: #FFE699;
  --signal: #5CDB95;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html, body {
  background: var(--bg-night);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

.font-display {
  font-family: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 0.92;
}

.font-editorial {
  font-family: 'Fraunces', Georgia, serif;
  font-feature-settings: 'ss01', 'ss03';
  letter-spacing: -0.02em;
}

.font-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ════════════ Background Atmosphäre ════════════ */
.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
}

.radial-fade {
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

/* Aurora-Blobs — kombiniert blau+rot */
.aurora-ember {
  position: absolute;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255,107,61,0.5) 0%, rgba(225,29,46,0.25) 35%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  will-change: transform;
}
.aurora-cobalt {
  position: absolute;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,130,246,0.45) 0%, rgba(30,64,175,0.25) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  will-change: transform;
}

@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.1); }
  66%  { transform: translate(-30px, 40px) scale(0.95); }
}
.drift-slow { animation: aurora-drift 22s ease-in-out infinite; }
.drift-mid  { animation: aurora-drift 17s ease-in-out infinite reverse; }
.drift-fast { animation: aurora-drift 13s ease-in-out infinite; }

/* Conic rotation behind hero logo */
@keyframes conic-spin {
  to { transform: rotate(1turn); }
}
.conic-halo {
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(255,107,61,0.18) 12%,
    transparent 25%,
    rgba(59,130,246,0.18) 50%,
    transparent 65%,
    rgba(255,107,61,0.18) 80%,
    transparent 92%
  );
  border-radius: 50%;
  animation: conic-spin 24s linear infinite;
  filter: blur(20px);
  pointer-events: none;
}

/* Noise overlay */
.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ════════════ Gradient text — Shimmer-Sweep (Glut wandert durchs Wort) ════════════ */

@keyframes text-shimmer-sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

@keyframes text-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(255, 107, 61, 0.25)); }
  50%      { filter: drop-shadow(0 0 36px rgba(255, 107, 61, 0.55)); }
}

@keyframes text-glow-pulse-cobalt {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(75, 137, 247, 0.25)); }
  50%      { filter: drop-shadow(0 0 36px rgba(75, 137, 247, 0.55)); }
}

@keyframes text-glow-pulse-gold {
  0%, 100% { filter: drop-shadow(0 0 22px rgba(252, 191, 73, 0.3)); }
  50%      { filter: drop-shadow(0 0 38px rgba(252, 191, 73, 0.6)); }
}

@keyframes text-glow-pulse-fireice {
  0%, 100% { filter: drop-shadow(0 0 22px rgba(255, 107, 61, 0.25)) drop-shadow(0 0 22px rgba(75, 137, 247, 0.25)); }
  50%      { filter: drop-shadow(0 0 36px rgba(255, 107, 61, 0.45)) drop-shadow(0 0 36px rgba(75, 137, 247, 0.45)); }
}

.text-ember-gradient {
  background: linear-gradient(
    100deg,
    #E11D2E 0%,
    #FF3D5E 15%,
    #FF8556 30%,
    #FFE699 44%,
    #FFFFFF 50%,
    #FFE699 56%,
    #FF8556 70%,
    #FF3D5E 85%,
    #E11D2E 100%
  );
  background-size: 300% 100%;
  background-position: 50% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: text-shimmer-sweep 6s linear infinite,
             text-glow-pulse 4.5s ease-in-out infinite;
  display: inline-block;
}

.text-cobalt-gradient {
  background: linear-gradient(
    100deg,
    #1E40AF 0%,
    #2E5BC4 20%,
    #3B82F6 35%,
    #4FC3F7 46%,
    #FFFFFF 50%,
    #4FC3F7 54%,
    #3B82F6 65%,
    #2E5BC4 80%,
    #1E40AF 100%
  );
  background-size: 300% 100%;
  background-position: 50% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: text-shimmer-sweep 7s linear infinite -2s,
             text-glow-pulse-cobalt 5s ease-in-out infinite;
  display: inline-block;
}

.text-gold-gradient {
  background: linear-gradient(
    100deg,
    #FCBF49 0%,
    #FFD27A 25%,
    #FFE699 42%,
    #FFFFFF 50%,
    #FFE699 58%,
    #FFD27A 75%,
    #FCBF49 100%
  );
  background-size: 300% 100%;
  background-position: 50% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: text-shimmer-sweep 5.5s linear infinite -1s,
             text-glow-pulse-gold 4s ease-in-out infinite;
  display: inline-block;
}

.text-fire-ice {
  background: linear-gradient(
    100deg,
    #E11D2E 0%,
    #FF8556 18%,
    #FFE699 40%,
    #FFFFFF 50%,
    #4FC3F7 60%,
    #3B82F6 78%,
    #1E40AF 100%
  );
  background-size: 300% 100%;
  background-position: 50% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: text-shimmer-sweep 8s linear infinite,
             text-glow-pulse-fireice 6s ease-in-out infinite;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .text-ember-gradient,
  .text-cobalt-gradient,
  .text-gold-gradient,
  .text-fire-ice {
    animation: none !important;
    background-position: 50% 0 !important;
    filter: none !important;
  }
}

/* ════════════ Glass cards ════════════ */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.glass-strong {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-ember {
  background: linear-gradient(180deg, rgba(255,107,61,0.06) 0%, rgba(225,29,46,0.02) 100%);
  border: 1px solid rgba(255,107,61,0.2);
}

.glass-cobalt {
  background: linear-gradient(180deg, rgba(59,130,246,0.06) 0%, rgba(30,64,175,0.02) 100%);
  border: 1px solid rgba(59,130,246,0.2);
}

/* ════════════ Glow / Aura ════════════ */
.ember-glow {
  box-shadow:
    0 0 0 1px rgba(225,29,46,0.3),
    0 10px 40px -10px rgba(225,29,46,0.6),
    0 0 80px -20px rgba(255,107,61,0.4);
}

.dual-glow {
  box-shadow:
    0 -15px 60px -20px rgba(255,107,61,0.5),
    0 15px 60px -20px rgba(59,130,246,0.5);
}

/* ════════════ Funk-Code + Tags ════════════ */
.funk {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

.funk-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(255,107,61,0.12), rgba(59,130,246,0.12));
  color: #FFB89C;
  border: 1px solid rgba(255,107,61,0.3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.funk-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--ember-hot);
  box-shadow: 0 0 10px var(--ember-hot);
  animation: flicker 1.6s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ════════════ Buttons ════════════ */
.btn-ember {
  position: relative;
  background: linear-gradient(135deg, #FF8556 0%, #E11D2E 100%);
  color: white;
  font-weight: 600;
  padding: 1rem 1.7rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  box-shadow: 0 10px 30px -10px var(--ember-glow), 0 0 0 1px rgba(255,255,255,0.08) inset;
  overflow: hidden;
}
.btn-ember::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s;
}
.btn-ember:hover::before { transform: translateX(100%); }
.btn-ember:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px -10px var(--ember-glow), 0 0 0 1px rgba(255,255,255,0.12) inset;
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 500;
  padding: 1rem 1.7rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-strong);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--text-mute);
  transform: translateY(-1px);
}

/* ════════════ Hero: Logo Stage ════════════ */
.hero-logo-stage {
  position: relative;
  width: 240px;
  height: 240px;
  flex-shrink: 0;
}
@media (min-width: 640px)  { .hero-logo-stage { width: 280px; height: 280px; } }
@media (min-width: 1024px) { .hero-logo-stage { width: 320px; height: 320px; } }

/* Das EINE Logo — position:fixed, lebt im body außerhalb aller overflow-Container.
   JS setzt width/height/transform jeden Frame zwischen Hero-Stage und Header-Anchor. */
#logo-mover {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;       /* von JS gesetzt */
  height: 0;
  object-fit: contain;
  z-index: 45;
  pointer-events: none;
  filter: drop-shadow(0 20px 60px rgba(255,107,61,0.5))
          drop-shadow(0 -10px 40px rgba(59,130,246,0.4));
  opacity: 0;     /* sichtbar erst nach erster JS-Messung */
  will-change: transform, width, height;
  border-radius: 18%;
}
#logo-mover.ready { opacity: 1; transition: opacity 0.4s ease; }

/* Pulse rings around hero logo */
.pulse-ring {
  position: absolute;
  inset: 8%;
  border-radius: 9999px;
  border: 1.5px solid rgba(255,107,61,0.5);
  animation: pulse-ring 3.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}
.pulse-ring.cobalt { border-color: rgba(75,180,247,0.45); animation-delay: 1.2s; }
.pulse-ring.gold   { border-color: rgba(255,189,73,0.4);  animation-delay: 2.4s; }

@keyframes pulse-ring {
  0%   { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(2.3); opacity: 0; }
}

/* Spark particles emanating */
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  pointer-events: none;
  --d: 200px;
  --a: 0deg;
  --delay: 0s;
  background: var(--ember-hot);
  box-shadow: 0 0 8px var(--ember-hot);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spark-fly 3.5s ease-out var(--delay) infinite;
  opacity: 0;
}
.spark.cobalt { background: var(--cobalt-bright); box-shadow: 0 0 8px var(--cobalt-bright); }
.spark.gold   { background: var(--gold);          box-shadow: 0 0 8px var(--gold); }

@keyframes spark-fly {
  0%   { opacity: 0; transform: translate(-50%, -50%) rotate(var(--a)) translateY(0) scale(0.3); }
  15%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--a)) translateY(calc(-1 * var(--d))) scale(1); }
}

/* Hero entrance: logo BANG (transform-frei, JS übernimmt transform für Dock) */
@keyframes logo-bang {
  0%   { opacity: 0; filter: blur(30px) brightness(3) saturate(0.5); }
  55%  { opacity: 1; filter: blur(0) brightness(1.6) saturate(1.1); }
  100% { opacity: 1; filter: blur(0) brightness(1) saturate(1); }
}
.bang-logo { animation: logo-bang 1.4s cubic-bezier(0.16, 1, 0.3, 1) both; }

@keyframes halo-burst {
  0%   { opacity: 0; transform: scale(0.6); }
  40%  { opacity: 1; }
  100% { opacity: 0.6; transform: scale(1); }
}
.bang-halo { animation: halo-burst 1.8s cubic-bezier(0.16, 1, 0.3, 1) both; }

/* Headline word reveal */
.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.bang-words .word-reveal > span {
  animation: word-up 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.bang-words .word-reveal:nth-child(1) > span { animation-delay: 0.55s; }
.bang-words .word-reveal:nth-child(2) > span { animation-delay: 0.7s; }
.bang-words .word-reveal:nth-child(3) > span { animation-delay: 0.85s; }
.bang-words .word-reveal:nth-child(4) > span { animation-delay: 1.0s; }
.bang-words .word-reveal:nth-child(5) > span { animation-delay: 1.15s; }
.bang-words .word-reveal:nth-child(6) > span { animation-delay: 1.3s; }

@keyframes word-up {
  to { transform: translateY(0); opacity: 1; }
}

.bang-fade { opacity: 0; animation: bang-fade-in 1.2s ease-out 1.5s both; }
.bang-fade-2 { opacity: 0; animation: bang-fade-in 1.2s ease-out 1.7s both; }
.bang-fade-3 { opacity: 0; animation: bang-fade-in 1.2s ease-out 1.9s both; }

@keyframes bang-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════ Header — Dock-Anchor (leerer Platzhalter) ════════════ */
.header-logo-anchor {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 640px) { .header-logo-anchor { width: 48px; height: 48px; } }

/* Scan line */
@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.scan-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.scan-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,107,61,0.06) 50%, transparent 100%);
  height: 30%;
  animation: scan 8s linear infinite;
}

/* ════════════ Reveal on scroll ════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ════════════ Lift cards ════════════ */
.lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, background 0.4s;
}
.lift:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

/* ════════════ Spotlight cursor ════════════ */
.spotlight {
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,107,61,0.1), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.spotlight:hover::before { opacity: 1; }

.spotlight-cobalt::before {
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(75,180,247,0.1), transparent 40%);
}

/* ════════════ Form ════════════ */
.field-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.95rem 1.1rem;
  color: var(--text);
  width: 100%;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field-input:focus {
  outline: none;
  border-color: var(--ember-hot);
  background: rgba(255, 107, 61, 0.04);
  box-shadow: 0 0 0 4px rgba(255, 107, 61, 0.12);
}
.field-input::placeholder { color: var(--text-dim); }

.field-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hp { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

/* ════════════ Cookie banner ════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 720px;
  z-index: 80;
}

/* DSGVO-konforme Consent-Buttons:
   "Akzeptieren" und "Ablehnen" müssen visuell gleichwertig sein (BGH 2023). */
.btn-consent {
  padding: 0.7rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: inherit;
}
.btn-consent-primary {
  background: rgba(255, 255, 255, 0.10);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-consent-primary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}
.btn-consent-secondary {
  background: transparent;
  color: var(--text-mute);
  border: 1px solid var(--border);
}
.btn-consent-secondary:hover {
  color: #FFFFFF;
  border-color: var(--text-mute);
}

/* ════════════ Signal bars / radio motif ════════════ */
.signal-bars {
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 14px;
}
.signal-bars span {
  width: 3px;
  background: var(--ember-hot);
  border-radius: 1px;
  animation: signal 1.2s ease-in-out infinite;
}
.signal-bars span:nth-child(1) { height: 30%; animation-delay: 0s; }
.signal-bars span:nth-child(2) { height: 60%; animation-delay: 0.15s; }
.signal-bars span:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.signal-bars span:nth-child(4) { height: 70%; animation-delay: 0.45s; }
@keyframes signal {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: bottom; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ════════════ Underline accent ════════════ */
.underline-ember {
  position: relative;
  display: inline-block;
}
.underline-ember::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1em;
  height: 0.35em;
  background: linear-gradient(90deg, var(--ember) 0%, var(--ember-hot) 100%);
  opacity: 0.3;
  border-radius: 0.2em;
  z-index: -1;
}

/* ════════════ Notice ════════════ */
.notice {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: start;
}
.notice-ok {
  background: rgba(92, 219, 149, 0.08);
  border: 1px solid rgba(92, 219, 149, 0.3);
  color: var(--signal);
}
.notice-err {
  background: rgba(225, 29, 46, 0.08);
  border: 1px solid rgba(225, 29, 46, 0.3);
  color: var(--ember-hot);
}

/* ════════════ Divider ════════════ */
.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-strong) 50%, transparent 100%);
}

/* ════════════ Misc ════════════ */
::selection { background: var(--ember); color: white; }
html { scroll-behavior: smooth; }
:focus-visible { outline: 2px solid var(--ember-hot); outline-offset: 3px; border-radius: 0.5rem; }

@media (max-width: 640px) {
  .grid-bg { background-size: 42px 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .bang-logo, .bang-halo, .bang-words .word-reveal > span, .bang-fade, .bang-fade-2, .bang-fade-3,
  .conic-halo, .drift-slow, .drift-mid, .drift-fast, .spark, .pulse-ring, .scan-line::after, .signal-bars span, .funk-tag .dot {
    animation: none !important;
  }
  .word-reveal > span { transform: none !important; opacity: 1 !important; }
  .bang-fade, .bang-fade-2, .bang-fade-3 { opacity: 1 !important; transform: none !important; }
}
