/* ============================================
   ALTERED MINDS APPAREL — DESIGN SYSTEM
   Brand: black / white / purple accent
   Aesthetic: Psychedelic-minimal, dark
   ============================================ */

:root {
  --black:       #000000;
  --white:       #ffffff;
  --off-white:   #f0ece6;
  --purple:      #9b59ff;
  --purple-dim:  #6a2fbf;
  --purple-glow: rgba(155, 89, 255, 0.18);
  --acid:         #C8FF00;
  --acid-glow:    rgba(200, 255, 0, 0.18);
  --grey-1:      #111111;
  --grey-2:      #1a1a1a;
  --grey-3:      #2a2a2a;
  --grey-muted:  #666666;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    4px;
  --max-width: 1160px;
  --nav-h:     68px;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.1; }

/* ── UTILITIES ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 16px;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--acid);
  color: var(--black);
  border-color: var(--acid);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,0.25) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  background-position: -100% 0;
  transition: none;
  pointer-events: none;
}

.btn--primary:hover {
  background: #d4ff33;
  border-color: #d4ff33;
  box-shadow: 0 0 28px var(--acid-glow);
}

.btn--primary:hover::after {
  animation: scanlineWipe 0.55s ease forwards;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--acid);
  color: var(--black);
  border-color: var(--acid);
}

.btn--ghost {
  background: transparent;
  color: var(--purple);
  border-color: var(--grey-3);
  font-size: 13px;
  padding: 8px 18px;
}
.btn--ghost:hover {
  border-color: var(--acid);
  color: var(--acid);
  box-shadow: 0 0 14px var(--acid-glow);
}

.btn--lg {
  font-size: 17px;
  padding: 14px 36px;
  letter-spacing: 0.14em;
}

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

/* .nav__logo-text replaced by SVG logo */

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Grain texture overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* Radial glow behind logo — animated pulse */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 48%, rgba(155,89,255,0.10) 0%, transparent 70%);
  animation: heroPulse 6s 1.5s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
}

.hero__logo-wrap {
  position: relative;
}

/* .hero__logo-blob replaced by .hero__logo-svg — see SVG logo rules above */

.hero__sub {
  font-size: clamp(12px, 2vw, 15px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-muted);
  animation: liquidUp 0.9s 0.5s var(--ease-out-expo) both;
}

.hero__content .btn {
  animation: liquidUp 0.9s 0.7s var(--ease-out-expo) both;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--grey-muted);
  font-size: 18px;
  animation: bounce 2.4s ease-in-out infinite;
}

/* ── ABOUT ─────────────────────────────────── */
.about {
  padding: 120px 0;
  border-top: 1px solid var(--grey-2);
}

.about__inner {
  max-width: 640px;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 24px;
  will-change: transform, opacity;
}

.about__body {
  font-size: 16px;
  color: var(--grey-muted);
  max-width: 500px;
  margin-bottom: 12px;
}

/* ── PRODUCTS ──────────────────────────────── */
.products {
  padding: 80px 0 120px;
  border-top: 1px solid var(--grey-2);
}

.products__header {
  margin-bottom: 52px;
}

.products__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  color: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

/* Card */
.card {
  background: var(--grey-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out-expo);
}
.card:hover { transform: translateY(-4px); }

.card__img {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Placeholder cards with branded gradients */
.card__img--1 {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 50%, #0d0d0d 100%);
}
.card__img--2 {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a0a 50%, #0d0d0d 100%);
}
.card__img--3 {
  background: linear-gradient(135deg, #0d0d0d 0%, #2e0a1a 50%, #0d0d0d 100%);
}

/* Abstract decorative blob behind label */
.card__img::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--purple-glow);
  filter: blur(60px);
  pointer-events: none;
}

.card__img-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.card__img-label {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255,255,255,0.08);
}

/* Placeholder indicator */
.card__img::after {
  content: 'IMAGE PLACEHOLDER';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-top: 1px solid var(--grey-2);
}

.card__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.card__desc {
  font-size: 13px;
  color: var(--grey-muted);
  flex: 1;
}

/* ── CTA BANNER ─────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--grey-1);
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
}

.cta-banner__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(155,89,255,0.12) 0%, transparent 70%);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 100px 24px;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 0.04em;
  color: var(--white);
  max-width: 800px;
}

.cta-banner__sub {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--grey-2);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* .footer__logo replaced by SVG logo — see .footer__logo-svg */

.footer__tagline {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--acid); }

.footer__copy {
  font-size: 12px;
  color: var(--grey-3);
  letter-spacing: 0.06em;
}


/* ── NAV LOGO SVG ───────────────────────────── */
.nav__logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav__logo-link svg {
  width: 44px;
  height: auto;
  display: block;
}

/* ── HERO LOGO SVG ──────────────────────────── */
.hero__logo-svg {
  animation: glitchIn 1.1s var(--ease-out-expo) both;
}

/* Acid underline pulse after glitch settles */
.hero__logo-svg::after {
  animation: heroPulse 4s 1.4s ease-in-out infinite;
}

.hero__logo-svg svg {
  width: clamp(220px, 48vw, 420px);
  height: auto;
  display: block;
}

/* Acid underline accent below hero logo */
.hero__logo-svg::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--acid);
  margin: 20px auto 0;
  /* pulse animation added in glitch block above */
}


/* ── NAV GLOW (triggered by JS on scroll past hero) ── */
.nav--scrolled .nav__logo-link svg {
  animation: navGlow 1.2s ease forwards;
}

/* ── FOOTER LOGO SVG ─────────────────────────── */
.footer__logo-svg {
  margin-bottom: 6px;
  line-height: 0;
}

.footer__logo-svg svg {
  width: 120px;
  height: auto;
  display: block;
}


/* ── ARTIST ROSTER ──────────────────────────── */
.artists {
  padding: 80px 0 100px;
  border-top: 1px solid var(--grey-2);
}

.artists__header {
  margin-bottom: 52px;
}

.artists__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  color: var(--white);
}

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

.artist-card {
  background: var(--grey-1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}

.artist-card:hover {
  background: var(--grey-2);
}

/* Top accent bar — uses per-card --c variable */
.artist-card__accent {
  height: 2px;
  background: var(--c);
  width: 0;
  transition: width 0.4s var(--ease-out-expo);
}

.artist-card:hover .artist-card__accent {
  width: 100%;
}

.artist-card__body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.artist-card__genre {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--acid);
}

.artist-card__name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  transition: text-shadow 0.15s ease;
}

.artist-card:hover .artist-card__name {
  animation: chromaOn 0.4s ease forwards;
}

.artist-card__desc {
  font-size: 13px;
  color: var(--grey-muted);
  line-height: 1.6;
  flex: 1;
  padding-bottom: 8px;
}

/* ── SOCIAL / INSTAGRAM ─────────────────────── */
.social {
  padding: 80px 0 100px;
  border-top: 1px solid var(--grey-2);
}

.social__header {
  margin-bottom: 40px;
}

.social__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.social__sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  aspect-ratio: 3 / 2;
}

.social__tile {
  background: var(--grey-1);
  position: relative;
  overflow: hidden;
  display: block;
  transition: filter 0.25s, transform 0.25s var(--ease-out-expo);
  will-change: transform, opacity;
}

.social__tile:hover {
  transform: scale(1.02);
}

.social__tile:hover {
  filter: brightness(1.12);
}

/* Unique gradient per tile to hint at content variety */
.social__tile--1 { background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 60%, #0a0a0a 100%); }
.social__tile--2 { background: linear-gradient(135deg, #0d0d0d 0%, #0f1a06 60%, #0a0a0a 100%); }
.social__tile--3 { background: linear-gradient(160deg, #0a0a0a 0%, #1a0a1a 55%, #0d0d0d 100%); }
.social__tile--4 { background: linear-gradient(135deg, #0d0d0d 0%, #0a1a1a 60%, #0a0a0a 100%); }
.social__tile--5 { background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 60%, #0d0d0d 100%); }
.social__tile--6 { background: linear-gradient(160deg, #0a0a0a 0%, #130a1a 55%, #0d0d0d 100%); }

/* Subtle glow orb per tile */
.social__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(155,0,255,0.10) 0%, transparent 65%);
  transition: opacity 0.3s;
}

.social__tile--2::before,
.social__tile--5::before {
  background: radial-gradient(circle at 50% 50%, rgba(200,255,0,0.08) 0%, transparent 65%);
}

.social__tile:hover::before {
  opacity: 1.5;
}

/* Instagram placeholder cross-hair */
.social__tile::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 200;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}

.social__tile-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out-expo);
}

.social__tile:hover .social__tile-inner {
  transform: translateY(0);
}

.social__tile-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
}

.social__cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* Responsive overrides */
@media (max-width: 768px) {
  .artists__grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .social__grid {
    grid-template-columns: repeat(2, 1fr);
    aspect-ratio: auto;
  }
  .social__grid .social__tile {
    aspect-ratio: 1;
  }
  .artists { padding: 60px 0 80px; }
  .social  { padding: 60px 0 80px; }
}

@media (max-width: 480px) {
  .social__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── ANIMATIONS ─────────────────────────────── */

/* ── C: Liquid upward wipe (clip-based reveal) ── */
@keyframes liquidUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0% 0 0 0);
  }
}

/* ── C: Staggered flow for body text ── */
@keyframes flowUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── C: Card lift-in with depth ── */
@keyframes cardLift {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
}

/* ── C: Label draw-in (acid underline grows left to right) ── */
@keyframes labelDraw {
  from { opacity: 0; letter-spacing: 0.08em; transform: translateX(-8px); }
  to   { opacity: 1; letter-spacing: 0.22em; transform: translateX(0); }
}

/* ── B: Subtle hero glitch — two tiny position jitters then settle ── */
@keyframes glitchIn {
  0%   { opacity: 0; transform: translateY(20px) scale(0.97); filter: blur(4px); }
  40%  { opacity: 0.9; transform: translateY(0) scale(1); filter: blur(0); }
  52%  { transform: translate(2px, -1px) scale(1); filter: brightness(1.04); }
  56%  { transform: translate(-2px, 1px) scale(1); }
  60%  { transform: translate(1px, 0) scale(1); }
  64%  { transform: translate(0, 0) scale(1); filter: brightness(1); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); filter: none; }
}

/* ── B: Chromatic aberration on artist name hover ── */
@keyframes chromaOn {
  0%   { text-shadow: none; }
  40%  { text-shadow: 1px 0 0 rgba(200,255,0,0.5), -1px 0 0 rgba(155,0,255,0.5); }
  60%  { text-shadow: -1px 0 0 rgba(200,255,0,0.3), 1px 0 0 rgba(155,0,255,0.3); }
  80%  { text-shadow: 1px 0 0 rgba(200,255,0,0.2), -1px 0 0 rgba(155,0,255,0.2); }
  100% { text-shadow: 1px 0 0 rgba(200,255,0,0.4), -1px 0 0 rgba(155,0,255,0.4); }
}

/* ── B: Scanline button wipe on hover ── */
@keyframes scanlineWipe {
  from { background-position: -100% 0; }
  to   { background-position: 200% 0; }
}

/* ── A: Hero background pulse ── */
@keyframes heroPulse {
  0%, 100% { opacity: 0.10; transform: scale(1); }
  50%       { opacity: 0.16; transform: scale(1.06); }
}

/* ── Social tile stagger tilt-in ── */
@keyframes tileReveal {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(1.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* ── Nav acid glow pulse (fires once when scrolled) ── */
@keyframes navGlow {
  0%   { filter: drop-shadow(0 0 0px rgba(200,255,0,0)); }
  50%  { filter: drop-shadow(0 0 6px rgba(200,255,0,0.5)); }
  100% { filter: drop-shadow(0 0 2px rgba(200,255,0,0.15)); }
}

/* ── Existing: bounce for scroll hint ── */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── Existing: plain fadeUp (kept for fallback) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL REVEAL ──────────────────────────── */

/* Base state — hidden before reveal */
.reveal           { opacity: 0; }
.reveal-heading   { opacity: 0; }
.reveal-body      { opacity: 0; }
.reveal-card      { opacity: 0; }
.reveal-label     { opacity: 0; }
.reveal-tile      { opacity: 0; }

/* ── C: Heading liquid wipe ── */
.reveal-heading.is-visible {
  animation: liquidUp 0.85s var(--ease-out-expo) both;
}

/* ── C: Body text flow ── */
.reveal-body.is-visible {
  animation: flowUp 0.7s var(--ease-out-expo) both;
}

/* ── C: Card lift-in ── */
.reveal-card.is-visible {
  animation: cardLift 0.75s var(--ease-out-expo) both;
}

/* ── C: Label draw ── */
.reveal-label.is-visible {
  animation: labelDraw 0.6s var(--ease-out-expo) both;
}

/* ── Social tile tilt-in ── */
.reveal-tile.is-visible {
  animation: tileReveal 0.65s var(--ease-out-expo) both;
}

/* ── Fallback plain reveal ── */
.reveal.is-visible {
  animation: flowUp 0.8s var(--ease-out-expo) both;
}

/* Stagger delays */
.reveal--delay-1  { animation-delay: 0.08s !important; }
.reveal--delay-2  { animation-delay: 0.16s !important; }
.reveal--delay-3  { animation-delay: 0.24s !important; }
.reveal--delay-4  { animation-delay: 0.32s !important; }
.reveal--delay-5  { animation-delay: 0.40s !important; }
.reveal--delay-6  { animation-delay: 0.48s !important; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__logo-text { font-size: 18px; }
  .about { padding: 80px 0; }
  .products { padding: 60px 0 80px; }
  .products__grid { grid-template-columns: 1fr; gap: 1px; }
  .footer__inner { gap: 20px; }
  .footer__links { gap: 20px; }
}

@media (max-width: 480px) {
  .btn--lg { padding: 12px 28px; font-size: 15px; }
}

/* ── REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
