/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #FAF9F6;
  --fg: #4A4A4A;
  --primary: #E65C00;
  --primary-fg: #FFFFFF;
  --secondary: #F0EDE6;
  --muted: #E8E5DF;
  --muted-fg: #8C887D;
  --accent: #FF6B6B;
  --card: #FDFCF8;
  --border: #E5E0D5;
  --capture-bg: #171717;
  
  --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.16);
  --glow: 0 8px 18px rgba(230,92,0,0.30);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted-fg);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(229, 224, 213, 0.5);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
}

.nav-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
}

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

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: var(--secondary);
}

.nav-cta {
  background: var(--primary);
  color: var(--primary-fg) !important;
  box-shadow: var(--glow);
}

.nav-cta:hover {
  background: #d45500;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FCEEE2 0%, var(--bg) 50%, #FBEAEA 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.hero-logo-wrap {
  width: 160px;
  height: 160px;
  margin-bottom: 32px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.16));
  animation: bob 3s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-stamp-decoration {
  width: 160px;
  height: 4px;
  background: var(--primary);
  border-radius: var(--radius-pill);
  opacity: 0.35;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted-fg);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-fg);
  max-width: 460px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-caption {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted-fg);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.2s ease;
  min-height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  width: 100%;
  max-width: 320px;
}

.btn:active {
  transform: scale(0.97);
  opacity: 0.92;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--glow);
}

.btn-secondary {
  background: var(--card);
  color: var(--fg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--secondary);
}

/* ── Preview Section ──────────────────────────────────────── */
.preview-section {
  padding: 40px 0 80px;
  position: relative;
  z-index: 2;
}

.phone-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.phone-frame {
  width: 280px;
  height: 570px;
  background: var(--capture-bg);
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--capture-bg);
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.screen-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.phone-shadow {
  width: 260px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, transparent 70%);
  margin-top: 16px;
}

/* ── Stamp Frame (CSS recreation) ───────────────────────── */
.stamp-preview {
  width: 100%;
  display: flex;
  justify-content: center;
}

.stamp-frame {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3/4;
  background: var(--card);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  overflow: visible;
}

.stamp-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2px;
}

.stamp-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stamp-tint {
  position: absolute;
  inset: 0;
  background: rgba(230, 92, 0, 0.05);
  pointer-events: none;
}

.stamp-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 8px;
  font-style: italic;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.35);
  z-index: 2;
}

.stamp-postmark {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.42;
  transform: rotate(-13deg);
  z-index: 2;
}

.postmark-ring {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(0,0,0,0.32);
  border-radius: 50%;
}

.postmark-top {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 6px;
  letter-spacing: 1.1px;
  color: rgba(0,0,0,0.9);
  text-transform: uppercase;
}

.postmark-divider {
  width: 32px;
  height: 1px;
  background: rgba(0,0,0,0.3);
  margin: 2px 0;
}

.postmark-bottom {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5.5px;
  letter-spacing: 0.8px;
  color: rgba(0,0,0,0.75);
  text-transform: uppercase;
}

/* Holes for stamp edges */
.hole {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--bg);
  border-radius: 50%;
  z-index: 3;
}

.hole-t {
  top: -9px;
  transform: translateX(-50%);
}

.hole-b {
  bottom: -9px;
  transform: translateX(-50%);
}

.hole-l {
  left: -9px;
  transform: translateY(-50%);
}

.hole-r {
  right: -9px;
  transform: translateY(-50%);
}

/* ── Features ─────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-highlight {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(230, 92, 0, 0.10);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 8px;
}

.feature-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-fg);
}

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.feature-img-device {
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}

/* ── How It Works ───────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 32px 0;
}

.step:nth-child(even) .step-visual {
  order: -1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--glow);
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-fg);
  max-width: 360px;
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-stamp {
  position: relative;
  width: 200px;
  aspect-ratio: 3/4;
  background: var(--card);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: rotate(-2deg);
}

.step-stamp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-stamp-capture {
  transform: rotate(1deg);
}

.step-stamp-result {
  transform: rotate(-1.5deg);
}

.step-stamp-collection {
  transform: rotate(2deg);
}

.stamp-overlay-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 8px;
  font-style: italic;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.35);
}

.stamp-overlay-postmark {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 54px;
  height: 54px;
  border: 1.5px solid rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.42;
  transform: rotate(-13deg);
}

.stamp-overlay-postmark span:first-child {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5.5px;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.9);
  text-transform: uppercase;
}

.stamp-overlay-postmark span:last-child {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5px;
  letter-spacing: 0.6px;
  color: rgba(0,0,0,0.75);
  text-transform: uppercase;
}

.postmark-line {
  width: 28px;
  height: 1px;
  background: rgba(0,0,0,0.3);
  margin: 2px 0;
}

.step-arrow {
  color: var(--muted-fg);
  opacity: 0.4;
  padding: 8px 0;
}

/* ── Gallery Preview ────────────────────────────────────── */
.gallery-preview {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  overflow: hidden;
}

.gallery-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.showcase-stamp {
  position: relative;
  width: 180px;
  aspect-ratio: 3/4;
  background: var(--card);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-stamp:hover {
  transform: translateY(-12px) rotate(0deg) scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.showcase-stamp-1 {
  transform: rotate(-3deg);
}

.showcase-stamp-2 {
  transform: rotate(1.5deg) translateY(-20px);
}

.showcase-stamp-3 {
  transform: rotate(2.5deg);
}

.showcase-stamp-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2px;
}

.showcase-stamp-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-stamp-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 7px;
  font-style: italic;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.35);
  z-index: 2;
}

.showcase-stamp-postmark {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.42;
  transform: rotate(-13deg);
  z-index: 2;
}

.showcase-stamp-postmark span:first-child {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5px;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.9);
  text-transform: uppercase;
}

.showcase-stamp-postmark span:last-child {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4.5px;
  letter-spacing: 0.6px;
  color: rgba(0,0,0,0.75);
  text-transform: uppercase;
}

/* Showcase holes */
.showcase-stamp-holes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.s-hole {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--bg);
  border-radius: 50%;
  z-index: 3;
}

.s-hole-t { top: -7px; transform: translateX(-50%); }
.s-hole-b { bottom: -7px; transform: translateX(-50%); }
.s-hole-l { left: -7px; transform: translateY(-50%); }
.s-hole-r { right: -7px; transform: translateY(-50%); }

/* ── Download / CTA ───────────────────────────────────────── */
.download {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.download-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, #FCEEE2 40%, #FBEAEA 100%);
  z-index: 0;
}

.download-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.download-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}

.download-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 12px;
}

.download-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted-fg);
  margin-bottom: 32px;
}

.download-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.store-badge {
  display: block;
  width: 140px;
  height: 46px;
  transition: transform 0.2s ease;
}

.store-badge:hover {
  transform: scale(1.04);
}

.store-badge svg {
  width: 100%;
  height: 100%;
}

.download-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted-fg);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  padding: 48px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.3px;
  color: var(--fg);
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  color: var(--muted-fg);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--fg);
}

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

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-highlight {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .feature-visual {
    order: -1;
  }
  
  .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .step:nth-child(even) .step-visual {
    order: 0;
  }
  
  .step-visual {
    justify-content: center;
  }
  
  .step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .step-text {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 249, 246, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  
  .nav-links-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
  
  .nav-mobile-toggle-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-mobile-toggle-open span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-mobile-toggle-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-logo-wrap {
    width: 120px;
    height: 120px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .phone-frame {
    width: 240px;
    height: 488px;
  }
  
  .gallery-showcase {
    gap: 20px;
  }
  
  .showcase-stamp {
    width: 140px;
  }
  
  .showcase-stamp-2 {
    transform: rotate(1.5deg) translateY(-10px);
  }
}

/* ── Reduced Motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
