/* ═══════════════════════════════════════════════════════════
   DIGIVOLTA DESIGN SYSTEM v2 — "Bright Coral"
   Hell, foto-/produkt-reich, fette Grotesk, Coral als einziger Akzent.
   Floatende Rounded-Shell auf dunklem Backdrop.
   ═══════════════════════════════════════════════════════════ */

/* ─── Fonts: Clash Display (Display) + Satoshi (Body) ─── */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@400,500,700,900&display=swap');

:root {
  /* Brand — Coral */
  --coral: #FB4E2A;
  --coral-600: #E83C18;
  --coral-700: #C92F10;
  --coral-50: #FFEDE7;
  --coral-100: #FFDBD0;
  --coral-glow: rgba(251, 78, 42, .28);

  /* Ink & neutrals */
  --ink: #121214;
  --ink-soft: #2C2C31;
  --muted: #65656C;
  --faint: #9A9AA1;

  /* Surfaces (light) */
  --bg: #FFFFFF;
  --surface: #F5F4F1;
  --surface-2: #FAF9F7;
  --border: #ECEAE5;
  --line: #F1EFEA;

  /* Backdrop behind the floating shell */
  --backdrop-1: #110F1A;
  --backdrop-2: #0B0B10;
  --backdrop-glow: #4B2E8F;

  /* Dark sections (inside the shell) */
  --dark: #131318;
  --dark-2: #1B1B22;
  --on-dark: #F5F4F2;
  --on-dark-muted: rgba(245, 244, 242, .58);
  --border-dark: rgba(255, 255, 255, .09);

  /* Type */
  --display: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  --body: 'Satoshi', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-pill: 999px;
  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  /* Shadows — soft, layered */
  --sh-sm: 0 1px 2px rgba(18,18,20,.04), 0 4px 12px rgba(18,18,20,.05);
  --sh-md: 0 4px 12px rgba(18,18,20,.06), 0 16px 40px rgba(18,18,20,.07);
  --sh-lg: 0 8px 24px rgba(18,18,20,.08), 0 32px 64px rgba(18,18,20,.10);
  --sh-coral: 0 8px 24px var(--coral-glow), 0 2px 6px rgba(251,78,42,.2);

  /* Spacing */
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --gap: clamp(2rem, 5vw, 5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: .2s;
  --t-mid: .4s;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* scroll-behavior bleibt 'auto' — Lenis übernimmt das Smooth-Scrolling.
   CSS-smooth + Lenis kämpfen sonst gegeneinander (ruckeliges "langsam dann schnell"). */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body {
  font-family: var(--body);
  color: var(--ink);
  line-height: 1.6;
  background: var(--backdrop-2);
  padding: clamp(8px, 1.2vw, 18px);
  min-height: 100vh;
}
/* Backdrop als fixe Compositing-Ebene statt background-attachment:fixed
   (letzteres repaintet den ganzen Viewport pro Scroll-Frame → Jank). */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 18% -10%, var(--backdrop-glow) 0%, transparent 42%),
    radial-gradient(100% 70% at 100% 0%, #2a2540 0%, transparent 40%),
    linear-gradient(180deg, var(--backdrop-1), var(--backdrop-2));
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
::selection { background: var(--coral); color: #fff; }

/* ─── Floating shell ─── */
.shell {
  max-width: 1512px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--r-xl);
  overflow: clip;
  position: relative;
}

/* ─── Container ─── */
.w { max-width: 1240px; margin: 0 auto; padding: 0 var(--pad); }
.w-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(4.5rem, 9vw, 9rem) 0; }

/* ─── Typography ─── */
.display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}
.d-1 { font-size: clamp(3rem, 7vw, 6rem); }
.d-2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.d-3 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted); line-height: 1.65; max-width: 60ch; text-wrap: pretty; }
.muted { color: var(--muted); }

/* ─── Pill badge (eyebrow) ─── */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 16px 7px 7px;
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  box-shadow: var(--sh-sm);
}
.badge__ico {
  width: 26px; height: 26px; border-radius: var(--r-pill);
  background: var(--coral); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.badge__ico svg { width: 14px; height: 14px; }
.badge--dark { background: rgba(255,255,255,.05); border-color: var(--border-dark); color: var(--on-dark); box-shadow: none; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: 16px 28px; border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  will-change: transform; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-fast) var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--coral { background: var(--coral); color: #fff; box-shadow: var(--sh-coral); }
.btn--coral:hover { background: var(--coral-600); transform: translateY(-2px); box-shadow: 0 12px 34px var(--coral-glow); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn:active { transform: translateY(0) scale(.97); transition-duration: .08s; }

/* ─── Cards ─── */
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 2.5vw, 2.25rem);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid), border-color var(--t-mid);
}
.card--surface { background: var(--surface-2); }
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--coral-100); }

/* ─── Stats ─── */
.stat__num { font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 4.5vw, 4rem); line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.stat__num .accent { color: var(--coral); }
.stat__label { font-size: 0.95rem; color: var(--muted); margin-top: 8px; }

/* ─── Floating nav ─── */
.nav {
  position: fixed; top: clamp(14px, 1.6vw, 26px); left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; pointer-events: none;
  padding: 0 clamp(14px, 2vw, 28px);
}
.nav__inner {
  pointer-events: auto;
  width: min(1320px, 100%);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 22px;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-mid), background var(--t-mid);
}
.nav--scrolled .nav__inner { box-shadow: var(--sh-md); background: rgba(255,255,255,.92); }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.02em; color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); padding: 9px 16px; border-radius: var(--r-pill); transition: color var(--t-fast), background var(--t-fast); }
.nav__links a:hover { color: var(--coral); background: var(--coral-50); }
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__icon { width: 42px; height: 42px; border-radius: var(--r-pill); display: grid; place-items: center; color: var(--ink); transition: background var(--t-fast); }
.nav__icon:hover { background: var(--surface); }
.nav__cta { padding: 12px 22px; font-size: 0.95rem; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: var(--r-pill); place-items: center; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .3s var(--ease-out), opacity .2s; }
.nav__burger span::before, .nav__burger span::after { content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out); }
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav__burger.open span { background: transparent; }
.nav__burger.open span::before { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.menu { display: none; position: fixed; inset: clamp(8px,1.2vw,18px); z-index: 200; background: var(--bg); border-radius: var(--r-xl); flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.menu.open { display: flex; }
.menu a, .menu button { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 8vw, 3.2rem); color: var(--ink); letter-spacing: -0.02em; transition: color var(--t-fast); }
.menu a:hover { color: var(--coral); }
.menu__close { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; border-radius: var(--r-pill); display: grid; place-items: center; background: var(--surface); font-size: 1.6rem; }

/* ─── Logo strip ─── */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 4rem); opacity: .55; }
.logos span { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.01em; filter: grayscale(1); }

/* ─── Dark section ─── */
.section--dark { background: var(--dark); color: var(--on-dark); }
.section--dark .display { color: var(--on-dark); }
.section--dark .lead { color: var(--on-dark-muted); }

/* ─── Avatar/proof stack (abstract, honest) ─── */
.proof { display: inline-flex; align-items: center; gap: 14px; }
.proof__dots { display: flex; }
.proof__dot { width: 38px; height: 38px; border-radius: var(--r-pill); border: 2px solid var(--bg); margin-left: -12px; display: grid; place-items: center; font-weight: 700; font-size: .8rem; color: #fff; }
.proof__dot:first-child { margin-left: 0; }

/* ─── Product-UI mockup (shared component) ─── */
.mock { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; position: relative; z-index: 1; }
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.mock__dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.mock__title { margin-left: auto; font-size: .72rem; color: var(--faint); font-weight: 500; }
.mock__body { display: grid; grid-template-columns: 78px 1fr; min-height: 360px; }
.mock__side { background: var(--surface); border-right: 1px solid var(--line); padding: 18px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mock__si { width: 38px; height: 38px; border-radius: 11px; background: var(--bg); border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); flex-shrink: 0; }
.mock__si.on { background: var(--coral); border-color: var(--coral); color: #fff; box-shadow: var(--sh-coral); }
.mock__main { padding: 20px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.mock__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mock__h { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.mock__live { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); background: var(--coral-50); padding: 4px 10px; border-radius: var(--r-pill); white-space: nowrap; }
.mock__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock__tile { background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.mock__tn { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.mock__tl { font-size: .58rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); margin-top: 5px; }
.mock__chart { display: flex; align-items: flex-end; gap: 8px; height: 96px; padding: 12px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; }
.mock__col { flex: 1; border-radius: 5px 5px 0 0; background: var(--coral-100); transform-origin: bottom; min-width: 0; }
.mock__col.hi { background: var(--coral); }
.mock__rows { display: flex; flex-direction: column; gap: 8px; }
.mock__row { display: flex; align-items: center; gap: 9px; font-size: .72rem; color: var(--muted); }
.mock__chk { width: 17px; height: 17px; border-radius: 6px; background: var(--coral-50); display: grid; place-items: center; flex-shrink: 0; }
.mock__chip { position: absolute; right: -16px; bottom: -16px; z-index: 2; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: 12px 16px; display: flex; align-items: center; gap: 11px; }
/* Floating-Chip ist ein Homepage-Hero-Detail; auf Unterseiten-Mockups (mit Buttons im Mockup) raus, sonst überlappt er */
.page-hero__visual .mock__chip { display: none; }
.mock__chip .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.mock__chip b { font-size: .85rem; color: var(--ink); display: block; }
.mock__chip span { font-size: .68rem; color: var(--muted); }
/* SVG safety: never let mockup icons render unsized */
.mock__si svg { width: 20px; height: 20px; display: block; }
.mock__chk svg { width: 10px; height: 10px; display: block; }
.mock__chip .ic svg { width: 18px; height: 18px; display: block; }
.mock svg { max-width: 100%; }

/* ─── Shared chrome: CTA / Footer / Cookie / Modal ─── */
.cta { margin: 0 clamp(8px,1.5vw,18px) clamp(8px,1.5vw,18px); }
.cta__inner { background: var(--dark); border-radius: var(--r-xl); padding: clamp(3rem,7vw,6rem) var(--pad); text-align: center; position: relative; overflow: hidden; }
.cta__inner::before { content: ''; position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%); width: 70%; height: 80%; background: radial-gradient(circle, var(--coral-glow), transparent 70%); opacity: .6; pointer-events: none; }
.cta__inner > * { position: relative; z-index: 1; }
.cta__inner .badge { margin-bottom: 26px; }
.cta__inner h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem,5vw,4rem); letter-spacing: -0.035em; line-height: 1; color: var(--on-dark); margin-bottom: 20px; text-wrap: balance; }
.cta__inner p { color: var(--on-dark-muted); max-width: 480px; margin: 0 auto 34px; font-size: 1.05rem; }
.cta__mail { margin-top: 20px; font-size: .85rem; color: var(--on-dark-muted); }
.cta__mail a { color: var(--coral); font-weight: 700; }

.footer { background: var(--dark-2); color: var(--on-dark); padding: clamp(3rem,5vw,4.5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border-dark); }
.footer__logo { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__tag { color: var(--on-dark-muted); font-size: .95rem; max-width: 34ch; }
.footer__col h5 { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--on-dark-muted); font-size: .95rem; padding: 6px 0; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--coral); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 14px; font-size: .85rem; color: var(--faint); }

.ck { position: fixed; bottom: clamp(10px,1.5vw,20px); left: 50%; transform: translateX(-50%) translateY(160%); z-index: 300; width: min(880px, calc(100% - 28px)); background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 18px 22px; display: flex; align-items: center; gap: 20px; opacity: 0; transition: transform .5s var(--ease-out), opacity .5s; }
.ck.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.ck p { flex: 1; font-size: .85rem; color: var(--muted); }
.ck p strong { color: var(--ink); display: block; margin-bottom: 2px; }
.ck a { color: var(--coral); font-weight: 600; }
.ck__btns { display: flex; gap: 10px; flex-shrink: 0; }
.ck__btns .btn { padding: 11px 20px; font-size: .85rem; }

.ov { position: fixed; inset: 0; background: rgba(12,12,18,.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 400; opacity: 0; pointer-events: none; transition: opacity .3s; display: grid; place-items: center; padding: 20px; }
.ov.open { opacity: 1; pointer-events: all; }
.modal { background: var(--bg); border-radius: var(--r-xl); padding: clamp(28px,4vw,44px); max-width: 460px; width: 100%; box-shadow: var(--sh-lg); transform: translateY(16px) scale(.98); transition: transform .35s var(--ease-out); position: relative; }
.ov.open .modal { transform: none; }
.modal__close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: var(--r-pill); background: var(--surface); display: grid; place-items: center; font-size: 1.2rem; color: var(--muted); }
.modal h3 { font-family: var(--display); font-weight: 600; font-size: 1.7rem; color: var(--ink); margin-bottom: 6px; }
.modal__sub { color: var(--muted); font-size: .92rem; margin-bottom: 26px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .78rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea { border: 1px solid var(--border); border-radius: var(--r-md); padding: 13px 15px; font-family: var(--body); font-size: .95rem; color: var(--ink); background: var(--surface-2); outline: none; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.field input:focus, .field textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-50); }
.field textarea { resize: vertical; min-height: 96px; }
.modal__actions { display: flex; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.msg { padding: 13px 16px; border-radius: var(--r-md); font-size: .85rem; font-weight: 600; margin-top: 12px; display: none; }
.msg.ok { display: block; background: var(--coral-50); color: var(--coral-700); }
.msg.err { display: block; background: #FEECEC; color: #C92A2A; }
.spin { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .6s linear infinite; display: none; }
.btn.loading .spin { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .ck { flex-direction: column; text-align: center; }
  .ck__btns { width: 100%; }
  .ck__btns .btn { flex: 1; justify-content: center; }
}

/* ─── Reveal safety / motion states ─── */
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 6px; }
.section--dark :focus-visible { outline-color: #fff; }
[data-reveal] { will-change: opacity, transform; }
[data-reveal="mask"], [data-reveal="clip"] { will-change: clip-path, transform, opacity; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav__links, .nav__icon { display: none; }
  .nav__burger { display: grid; }
}
/* ─── Mobile polish ─── */
@media (max-width: 760px) {
  /* lange deutsche Komposita nie abschneiden (Hero hat overflow:hidden) */
  .display, h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; }
  /* dichteres vertikales Rhythmusgefühl auf kleinen Screens */
  .section { padding: clamp(3.25rem, 11vw, 5.5rem) 0; }
  /* größere Tap-Targets im Footer */
  .footer__col a { padding: 9px 0; }
  .footer__bottom { gap: 6px; }
}
@media (max-width: 600px) {
  body { padding: 8px; }
  .shell { border-radius: var(--r-lg); }
  /* Nav entschlacken: CTA lebt im Burger-Menü */
  .nav { top: 10px; padding: 0 10px; }
  .nav__inner { padding: 9px 9px 9px 16px; gap: 12px; }
  .nav__cta { display: none; }
  .nav__logo { font-size: 1.15rem; }
  .nav__burger { width: 42px; height: 42px; }
  /* Floating-Chip nach innen holen (hängt sonst links aus dem Mockup → SVG geclippt) */
  .mock__chip { display: none; }
  .mock__chip .ic { width: 32px; height: 32px; }
  /* Headline-Floors für kleine Screens */
  .d-1 { font-size: clamp(2.4rem, 12vw, 3.3rem); line-height: 1.02; }
  .d-2 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .d-3 { font-size: clamp(1.6rem, 6vw, 2.1rem); }
}
@media (max-width: 380px) {
  .d-1 { font-size: clamp(2.05rem, 11.5vw, 2.7rem); }
  .w, .w-wide { padding: 0 18px; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; filter: none !important; }
}
