/* =========================================================
   PulsarSol — Medical IT Consulting
   Lightweight, elegant, Apple-inspired one-pager
   ========================================================= */

:root {
  /* Logo-derived palette */
  --gold-1: #FFE5B4;
  --gold-2: #F5C77E;
  --gold-3: #E6B566;
  --bronze: #8C8472;
  --bronze-dark: #6E665A;

  /* Neutrals */
  --ink: #0E1116;
  --ink-2: #161A22;
  --ink-3: #1F242E;
  --cream: #FAF7F2;
  --cream-2: #F2EDE4;
  --line: rgba(140, 132, 114, 0.18);
  --line-dark: rgba(245, 199, 126, 0.14);
  --muted: #6B6D74;
  --muted-dark: #9A9CA3;

  /* Type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.9s;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  background: rgba(14, 17, 22, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--cream);
}
.nav.scrolled {
  background: rgba(14, 17, 22, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line-dark);
  padding: 10px var(--pad);
}
.nav-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: .02em; }
.nav-logo { height: 28px; width: auto; object-fit: contain; filter: brightness(1.4) saturate(.6); }
.footer-logo { height: 22px; width: auto; object-fit: contain; }
.footer-wordmark { height: 22px; width: auto; object-fit: contain; opacity: .9; }
.nav-word { font-size: 15px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; opacity: .82;
  position: relative; padding: 6px 0;
  transition: opacity .25s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-2); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--cream); margin: 5px 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 120px var(--pad) 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
  will-change: transform;
}
.orb-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), transparent 60%);
  top: -120px; left: -120px;
}
.orb-2 {
  width: 620px; height: 620px;
  background: radial-gradient(circle at 70% 70%, var(--bronze), transparent 60%);
  bottom: -180px; right: -160px; opacity: .4;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245, 199, 126, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 199, 126, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 980px; text-align: center;
}
.eyebrow {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2); margin: 0 0 22px;
  font-weight: 500;
}
.hero-wordmark {
  display: block;
  height: clamp(30px, 3.75vw, 45px);
  width: auto;
  margin: 0 auto 28px;
  opacity: .92;
}
.hero-title .line {
  display: block;
}

/* Hero intro orchestration — items start hidden, JS adds .in to animate them in sequence */
.hero-anim {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  will-change: opacity, transform, filter;
}
.hero-anim.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* Wordmark uses a slightly different motion — scale-in instead of slide-up */
.hero-wordmark.hero-anim {
  transform: scale(.96);
}
.hero-wordmark.hero-anim.in {
  transform: scale(1);
  opacity: .92;
}
/* The scroll-hint should fade in at lower opacity, matching its base style */
.scroll-hint.hero-anim.in { opacity: 1; }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.grad {
  background: linear-gradient(110deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(250, 247, 242, 0.72);
  max-width: 640px; margin: 0 auto 36px;
}
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-cta .btn { flex: 1 1 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(110deg, var(--gold-1), var(--gold-2) 60%, var(--gold-3));
  color: #2A2419;
  box-shadow: 0 10px 30px -10px rgba(245, 199, 126, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--cream); border-color: rgba(250, 247, 242, 0.25);
}
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(250, 247, 242, 0.5);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 42px; background: linear-gradient(to bottom, transparent, var(--gold-2));
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .25; transform: scaleY(.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  position: relative;
}
.section-light { background: var(--cream); color: var(--ink); }
.section-dark  { background: var(--ink);  color: var(--cream); }
.section-dark .eyebrow { color: var(--gold-2); }
.section-light .eyebrow { color: var(--bronze-dark); }
.container { max-width: var(--maxw); margin: 0 auto; }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.section-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 720px;
  color: var(--muted);
  margin: 0 0 56px;
}
.section-dark .section-lead { color: var(--muted-dark); }
.dot { color: var(--gold-2); margin: 0 4px; }

/* ---------- WERTE ---------- */
.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.value {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px -30px rgba(140, 132, 114, 0.45);
  border-color: var(--gold-2);
}
.value-num {
  font-family: var(--serif);
  font-size: 28px; color: var(--gold-3); margin-bottom: 18px;
}
.value h3 { font-size: 20px; margin: 0 0 10px; font-weight: 600; letter-spacing: -.01em; }
.value p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- WIR ---------- */
.two-col {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.bullets { list-style: none; padding: 0; margin: 24px 0 0; }
.bullets li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 15px; color: var(--muted-dark);
  display: flex; align-items: center; gap: 12px;
}
.bullets li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2);
}
.card-stack {
  display: grid; gap: 18px;
}
.stat {
  padding: 28px 32px;
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.08), rgba(245, 199, 126, 0.02));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: flex; align-items: baseline; gap: 20px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 56px; line-height: 1;
  background: linear-gradient(110deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  min-width: 100px;
}
.stat-num::after { content: "+"; margin-left: 2px; }
.stat-num.stat-num--no-plus::after { content: ""; }
.stat-label { color: var(--muted-dark); font-size: 14px; }

/* ---------- WIR ON LIGHT BG (overrides for stats + bullets) ---------- */
.section-light .stat {
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.12), rgba(245, 199, 126, 0.03));
  border-color: var(--line);
}
.section-light .stat-label { color: var(--muted); }
.section-light .bullets li {
  color: var(--muted);
  border-bottom-color: var(--line);
}

/* ---------- TEAM ---------- */
.team-wrap { margin-top: clamp(64px, 9vw, 120px); }
.team-eyebrow { margin-bottom: 28px; }
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.team-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.06), rgba(245, 199, 126, 0.015));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  align-items: center;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 199, 126, 0.45);
  box-shadow: 0 24px 60px -28px rgba(245, 199, 126, 0.25);
}
.team-photo {
  position: relative;
  width: 100%; aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink-2);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: filter .6s var(--ease), transform .8s var(--ease);
}
.team-card:hover .team-photo img {
  filter: grayscale(0.2) contrast(1.02);
  transform: scale(1.03);
}
.team-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  color: var(--cream);
}
.team-role {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 14px;
  font-weight: 500;
}
.team-bio {
  margin: 0;
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.65;
}

/* Team cards on light bg */
.section-light .team-card {
  background: #fff;
  border-color: var(--line);
}
.section-light .team-card:hover {
  border-color: var(--gold-2);
  box-shadow: 0 24px 60px -28px rgba(140, 132, 114, 0.4);
}
.section-light .team-name { color: var(--ink); }
.section-light .team-role { color: var(--bronze-dark); }
.section-light .team-bio  { color: var(--muted); }
.section-light .team-photo { background: var(--cream-2); }

@media (max-width: 760px) {
  .team { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 140px 1fr; gap: 20px; padding: 18px; }
}
@media (max-width: 480px) {
  .team-card { grid-template-columns: 1fr; }
  .team-photo { max-width: 200px; }
}

/* ---------- SOLUTIONS ---------- */
.solutions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.solution {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative; overflow: hidden;
}
.solution::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 199, 126, 0.12), transparent 60%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.solution:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -28px rgba(140, 132, 114, 0.4);
  border-color: var(--gold-2);
}
.solution:hover::before { opacity: 1; }
.solution-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.18), rgba(140, 132, 114, 0.08));
  color: var(--bronze-dark);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.solution-icon svg { width: 28px; height: 28px; }
.solution h3 { font-size: 22px; margin: 0 0 12px; font-weight: 600; letter-spacing: -.01em; position: relative; }
.solution p { margin: 0; color: var(--muted); font-size: 15px; position: relative; }

/* Solution cards on dark bg */
.section-dark .solution {
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.06), rgba(245, 199, 126, 0.015));
  border-color: var(--line-dark);
}
.section-dark .solution:hover {
  border-color: rgba(245, 199, 126, 0.45);
  box-shadow: 0 24px 60px -28px rgba(245, 199, 126, 0.25);
}
.section-dark .solution h3 { color: var(--cream); }
.section-dark .solution p  { color: var(--muted-dark); }
.section-dark .solution-icon {
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.22), rgba(245, 199, 126, 0.06));
  color: var(--gold-2);
}

/* ---------- ERFAHRUNG / TIMELINE ---------- */
.timeline {
  position: relative; margin-top: 24px;
  padding-left: 28px;
}
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(to bottom, var(--gold-2), transparent);
}
.t-item {
  position: relative;
  padding: 18px 0 30px 28px;
}
.t-dot {
  position: absolute; left: -28px; top: 26px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(245, 199, 126, 0.18);
}
.t-content h4 { margin: 0 0 6px; font-size: 18px; font-weight: 600; }
.t-content p { margin: 0; color: var(--muted-dark); font-size: 15px; }
.section-light .t-content p { color: var(--muted); }

/* ---------- KONTAKT ---------- */
.section-contact { padding-bottom: clamp(60px, 8vw, 100px); }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 16px;
}
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 36px 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  text-align: center;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-2);
  box-shadow: 0 20px 40px -24px rgba(140, 132, 114, 0.4);
}
.c-label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze-dark); }
.c-value { font-size: 18px; font-weight: 500; letter-spacing: -.01em; }
.c-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin-top: 12px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.22), rgba(140, 132, 114, 0.06));
  color: var(--bronze-dark);
  transition: transform .45s var(--ease), background .45s var(--ease), color .45s var(--ease);
}
.c-icon svg { width: 32px; height: 32px; }
.contact-card:hover .c-icon {
  transform: scale(1.06) rotate(-2deg);
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.32), rgba(245, 199, 126, 0.08));
  color: var(--gold-3);
}
.c-arrow {
  position: absolute; top: 24px; right: 24px;
  font-size: 18px; color: var(--gold-3);
  transition: transform .3s var(--ease);
}
.contact-card:hover .c-arrow { transform: translate(4px, -4px); }

/* Contact cards on dark bg */
.section-dark .contact-card {
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.06), rgba(245, 199, 126, 0.015));
  border-color: var(--line-dark);
}
.section-dark .contact-card:hover {
  border-color: rgba(245, 199, 126, 0.45);
  box-shadow: 0 24px 60px -28px rgba(245, 199, 126, 0.25);
}
.section-dark .c-label { color: var(--gold-2); }
.section-dark .c-value { color: var(--cream); }
.section-dark .c-icon {
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.16), rgba(245, 199, 126, 0.04));
  color: var(--gold-2);
}
.section-dark .contact-card:hover .c-icon {
  background: linear-gradient(160deg, rgba(245, 199, 126, 0.28), rgba(245, 199, 126, 0.08));
  color: var(--gold-1);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.6);
  padding: 36px var(--pad);
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--cream); font-weight: 500; }
.footer-meta { display: inline-flex; gap: 22px; font-size: 13px; }
.footer-meta a { transition: color .25s var(--ease); }
.footer-meta a:hover { color: var(--gold-2); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.in:nth-child(2) { transition-delay: .05s; }
.reveal.in:nth-child(3) { transition-delay: .1s; }
.reveal.in:nth-child(4) { transition-delay: .15s; }

/* ---------- RESPONSIVE ---------- */
/* ---------- LEGAL PAGE ---------- */
.page-legal { background: var(--cream); }
.legal { padding: 140px var(--pad) 80px; }
.legal-container { max-width: 920px; }
.legal .section-title { margin-bottom: 40px; }
.legal-section { margin-top: clamp(72px, 10vw, 120px); }

.legal-grid {
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.legal-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.legal-key {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bronze-dark); font-weight: 500;
  padding-top: 2px;
}
.legal-val {
  font-size: 16px; color: var(--ink); line-height: 1.7;
}
.legal-sub { display: flex; flex-wrap: wrap; gap: 8px; }
.legal-sub > span:first-child { color: var(--muted); min-width: 110px; }
.legal-link {
  color: var(--bronze-dark);
  border-bottom: 1px solid var(--line);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.legal-link:hover { color: var(--gold-3); border-color: var(--gold-2); }

.legal-note { margin-top: 56px; }
.legal-note h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; margin: 28px 0 8px; letter-spacing: -.01em;
}
.legal-note p { color: var(--muted); font-size: 15px; margin: 0 0 12px; }

.privacybee-wrap {
  margin-top: 16px;
  padding: 28px clamp(20px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  line-height: 1.7;
}

/* Privacybee imprint widget (used on impressum.html) */
imprint-widget,
imprint-widget * {
  font-family: var(--sans) !important;
}

imprint-widget {
  display: block;
  font-size: 16px;
  color: var(--ink);
}

imprint-widget::part(root) {
  font-family: var(--sans);
}

@media (max-width: 700px) {
  .legal-row { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; color: var(--cream); }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 12px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(14, 17, 22, 0.95);
    backdrop-filter: blur(16px);
    padding: 20px var(--pad);
    border-bottom: 1px solid var(--line-dark);
  }
  .values, .solutions, .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .stat-num { font-size: 44px; min-width: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
