/* ============================================================
   MedDealer — style.css
   Direction: Controlled trading floor — structured, confident
   Palette: Navy / Brand Blue / Ice / White / Gray
   Type: Poppins (display only) + Inter (everything else)
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* --- Tokens --- */
:root {
  --navy:       #0f1923;
  --blue:       #1a56a0;
  --blue-bright:#3b6fba;
  --blue-pale:  #e8effc;
  --white:      #ffffff;
  --gray:       #f4f6fa;
  --ink:        #1c1f26;
  --ink-sub:    #555d6e;
  --ink-muted:  #8891a0;
  --border:     #dce1ea;
  --border-lt:  #edf0f5;
  --red:        #c44040;
  --radius:     8px;
  --radius-card:12px;
  --radius-full:9999px;
  --shadow-sm:  0 1px 2px rgba(15,25,35,0.05);
  --shadow-md:  0 4px 16px rgba(15,25,35,0.07);
  --shadow-lg:  0 8px 32px rgba(15,25,35,0.10);
  --container:  1200px;
  --section-y:  96px;
}

/* --- Base --- */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* --- Typography --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-sub);
  max-width: 520px;
  margin: 12px auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--blue-bright);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,86,160,0.3);
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--blue-bright);
  color: var(--blue);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--blue-pale);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.30);
}

/* Store badges */
.store-badge {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.store-badge:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.store-badge img {
  display: block;
  height: 44px;
  width: auto;
}

/* Coming Soon state */
.badge-soon {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue-pale);
  color: var(--blue);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-left: 2px;
}

/* Badge color variants for dark backgrounds */
.hero .badge-soon {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.btn-white .badge-soon {
  background: var(--blue-pale);
  color: var(--blue);
}
.btn-ghost .badge-soon {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}

/* --- Scroll Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in[data-delay="1"] { transition-delay: 0.06s; }
.fade-in[data-delay="2"] { transition-delay: 0.12s; }
.fade-in[data-delay="3"] { transition-delay: 0.18s; }
.fade-in[data-delay="4"] { transition-delay: 0.24s; }
.fade-in[data-delay="5"] { transition-delay: 0.30s; }
.fade-in[data-delay="6"] { transition-delay: 0.36s; }


/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.35s;
}
.navbar.scrolled .nav-brand { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav-link:hover           { color: var(--white); }
.nav-link.active          { color: var(--white); }
.navbar.scrolled .nav-link       { color: var(--ink-sub); }
.navbar.scrolled .nav-link:hover { color: var(--blue); }
.navbar.scrolled .nav-link.active{ color: var(--blue); }

.nav-cta {
  padding: 9px 20px;
  font-size: 13px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s, background 0.35s;
}
.navbar.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link {
    padding: 14px 24px;
    width: 100%;
    font-size: 15px;
    color: var(--ink-sub);
  }
  .nav-links .nav-link:hover { color: var(--blue); }
}


/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  padding-bottom: var(--section-y);
  background: linear-gradient(170deg, #0f1923 0%, #142435 100%);
  position: relative;
  overflow: hidden;
}

/* One subtle glow behind phone area — not scattered blobs */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,86,160,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 420px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

/* Restyle buttons over dark hero */
.hero .btn-primary {
  background: var(--white);
  color: var(--blue);
  box-shadow: none;
}
.hero .btn-primary:hover {
  background: var(--blue-pale);
  box-shadow: 0 4px 20px rgba(255,255,255,0.08);
}
.hero .btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.32);
  color: var(--white);
}

.trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.trust-sep { padding: 0 2px; }

/* Phone Mockup — the signature element */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,86,160,0.20) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.phone-frame {
  width: 300px;
  height: 620px;
  background: #0e1521;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 64px rgba(15,25,35,0.50),
    0 8px 24px rgba(15,25,35,0.30);
  position: relative;
}

.phone-screen {
  width: 100%; height: 100%;
  background: var(--white);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Glass reflection — one quiet embellishment */
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    transparent 36%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.14) 42%,
    rgba(255,255,255,0.08) 44%,
    transparent 48%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 10;
}

.phone-island {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding-top: 6px;
}
.phone-island-pill {
  width: 68px; height: 8px;
  background: #0e1521;
  border-radius: var(--radius-full);
}

/* App UI inside phone */
.app-header {
  background: var(--blue);
  padding: 10px 14px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-header-name {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.app-header-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin-top: 1px;
}
.app-online-dot {
  width: 8px; height: 8px;
  background: #34d399;
  border-radius: 50%;
}

.app-chat {
  flex: 1;
  background: var(--gray);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
}

.chat-msg {
  max-width: 88%;
  padding: 7px 10px;
  border-radius: 10px;
}
.chat-msg.received {
  background: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.chat-msg.sent {
  background: var(--blue-bright);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chat-user-label {
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 2px;
}
.received .chat-user-label { color: var(--blue); }
.sent .chat-user-label     { color: rgba(255,255,255,0.7); }

.chat-text { font-size: 10px; line-height: 1.4; }
.received .chat-text { color: var(--ink); }
.sent .chat-text     { color: var(--white); }

.chat-system { text-align: center; padding: 2px 0; }
.chat-system span {
  display: inline-block;
  background: rgba(26,86,160,0.08);
  color: var(--blue);
  font-size: 8px; font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.app-input-bar {
  background: var(--white);
  border-top: 1px solid var(--border-lt);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.app-input-field {
  flex: 1;
  background: var(--gray);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 10px;
  color: var(--ink-muted);
}
.app-send-btn {
  width: 26px; height: 26px;
  background: var(--blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-send-btn svg { width: 12px; height: 12px; color: white; }

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text h1    { font-size: 40px; }
  .hero-subtitle   { max-width: 100%; margin-left: auto; margin-right: auto; }
  .store-buttons   { justify-content: center; }
  .trust-badges    { justify-content: center; }
  .hero-visual     { order: -1; }
  .phone-frame     { width: 240px; height: 496px; }
  .phone-glow      { width: 280px; height: 280px; }
}
@media (max-width: 480px) {
  .hero-text h1    { font-size: 34px; }
  .store-buttons   { flex-direction: column; align-items: center; }
}


/* ==========================================================
   STATS BAR
   ========================================================== */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}


/* ==========================================================
   PROBLEM VS SOLUTION
   ========================================================== */
.problem-solution {
  padding: var(--section-y) 0;
  background: var(--gray);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ps-card {
  padding: 36px;
  border-radius: var(--radius-card);
}

.ps-card.problem {
  background: var(--navy);
}
.ps-card.solution {
  background: var(--blue);
}

.ps-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}
.ps-card.problem .ps-card-title  { color: rgba(255,255,255,0.5); }
.ps-card.solution .ps-card-title { color: var(--white); }

.ps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.ps-card.problem .ps-list li  { color: rgba(255,255,255,0.75); }
.ps-card.solution .ps-list li { color: rgba(255,255,255,0.88); }

.ps-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.ps-card.problem .ps-icon  { color: var(--red); }
.ps-card.solution .ps-icon { color: rgba(255,255,255,0.7); }

@media (max-width: 720px) {
  .ps-grid { grid-template-columns: 1fr; }
  .ps-card { padding: 28px; }
}


/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.how-it-works {
  padding: var(--section-y) 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step-card {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

/* Vertical dividers between steps */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--border-lt);
}

.step-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-sub);
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .step-card:nth-child(2)::after { display: none; }
  .step-card:nth-child(even) { border-left: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .step-card::after { display: none !important; }
  .step-card { padding: 0; }
}


/* ==========================================================
   FEATURES GRID
   ========================================================== */
.features {
  padding: var(--section-y) 0;
  background: var(--gray);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon-wrap svg {
  width: 22px; height: 22px;
  color: var(--blue);
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-sub);
}

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


/* ==========================================================
   WHO IT'S FOR
   ========================================================== */
.who-its-for {
  padding: var(--section-y) 0;
  background: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.who-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  transition: box-shadow 0.25s;
}
.who-card:hover {
  box-shadow: var(--shadow-md);
}

.who-icon-wrap {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.who-icon-wrap svg { width: 24px; height: 24px; color: var(--blue); }

.who-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.who-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-sub);
  margin-bottom: 20px;
}

.who-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

@media (max-width: 680px) {
  .who-grid { grid-template-columns: 1fr; }
  .who-card { padding: 28px; }
}


/* ==========================================================
   DOWNLOAD CTA
   ========================================================== */
.download-cta {
  padding: var(--section-y) 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,86,160,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}

@media (max-width: 480px) {
  .cta-title   { font-size: 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}


/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.footer-copy {
  font-size: 13px;
  color: var(--ink-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-sub);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--blue); }

@media (max-width: 720px) {
  .footer-inner { flex-direction: column; text-align: center; gap: 14px; }
  .footer-links { justify-content: center; }
}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */
.btn:focus-visible,
.nav-link:focus-visible,
.nav-brand:focus-visible,
.footer-link:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
}
