/* =====================================================================
   Expient / Hum — shared design system
   Colours, typography, and component styles pulled from Hum iOS Theme.swift
   ===================================================================== */

:root {
  /* Core */
  --background:        #FFF8F0;
  --surface-card:      #F5EDE4;
  --terracotta:        #C45A2D;
  --terracotta-dark:   #8B4513;
  --gradient-start:    #C45A2D;
  --gradient-end:      #E8833A;
  --accent-peach:      #F5D5C8;

  /* Text */
  --text-primary:      #2C1810;
  --text-secondary:    #8B7D6B;
  --text-muted:        #C8B8A8;

  /* Borders & surfaces */
  --input-border:      #E8DDD0;
  --tag-chip-bg:       #F5EDE4;
  --tag-chip-border:   #DDD0C0;

  /* Semantic */
  --success:           #4CAF50;
  --destructive:       #E74C3C;

  /* Dark / call screen */
  --call-bg-top:       #1A0E08;
  --call-bg-bottom:    #2C1810;
  --waveform-orange:   #E8833A;

  /* Supplementary */
  --lavender-bg:       #E8E0F0;
  --lavender-text:     #7B6BA0;
  --feedback-purple:   #5D4E6D;

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Sizing */
  --content-max:       1200px;
  --prose-max:         720px;
  --radius-card:       16px;
  --radius-pill:       28px;
  --radius-chip:       20px;

  /* Shadows */
  --shadow-card:       0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-cta:        0 4px 16px rgba(196, 90, 45, 0.30);
  --shadow-cta-hover:  0 6px 22px rgba(196, 90, 45, 0.40);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--terracotta); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--terracotta-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(32px, 6vw, 64px); }
h2 { font-size: clamp(26px, 4.2vw, 40px); }
h3 { font-size: clamp(20px, 2.6vw, 28px); }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

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

.prose {
  max-width: var(--prose-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
}

/* ---------- Header / nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-nav.is-scrolled {
  border-bottom-color: var(--input-border);
}

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

.wordmark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--terracotta);
  letter-spacing: -0.01em;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:not(.cta-pill) {
  display: inline-flex;
  align-items: center;
  padding: 10px 4px;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-links .cta-pill { color: #fff; }

@media (max-width: 640px) {
  .nav-inner { height: 64px; padding: 0 16px; }
  .wordmark { font-size: 22px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.cta-pill) { font-size: 14px; }
  .nav-links .hide-sm { display: none; }
}

/* ---------- Buttons ---------- */
.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-pill:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-cta-hover);
  color: #fff;
}

.cta-pill.cta-sm { height: 40px; padding: 0 20px; font-size: 14px; min-height: 40px; }

@media (max-width: 640px) {
  .cta-pill { height: 48px; padding: 0 26px; font-size: 15px; }
  .cta-pill.cta-sm { height: 44px; padding: 0 18px; font-size: 14px; }
}

.cta-pill.cta-inverted {
  background: #fff;
  color: var(--terracotta);
}

.cta-pill.cta-inverted:hover { color: var(--terracotta-dark); }

/* ---------- Tag chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-chip);
  background: var(--tag-chip-bg);
  border: 1px solid var(--tag-chip-border);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
}

.chip.lavender {
  background: var(--lavender-bg);
  border-color: #D4C8E4;
  color: var(--lavender-text);
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface-card);
  padding: 64px 0 40px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-grid .wordmark { display: inline-block; margin-bottom: 12px; }
.footer-grid p { color: var(--text-secondary); margin-bottom: 0; }

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--text-secondary); }
.footer-grid a:hover { color: var(--terracotta); }

.footer-bottom {
  margin-top: 48px;
  padding: 24px 24px 0;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--input-border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 0 32px; }
}

/* =====================================================================
   Home / marketing sections
   ===================================================================== */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--background);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px 24px 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(36px, 6.4vw, 68px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero-meta {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 48px 24px 72px; gap: 32px; }
}

/* ---------- Floating bubbles ---------- */
.bubble {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.10);
  animation: float 5s ease-in-out infinite;
}

.bubble.peach { background: var(--accent-peach); }
.bubble.lavender { background: var(--lavender-bg); }

.bubble svg { width: 46%; height: 46%; color: var(--terracotta); }
.bubble.lavender svg { color: var(--lavender-text); }

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

/* Bubble placements on hero */
.hero .bubble.b1 { width: 120px; height: 120px; top: 18%; right: 6%; animation-delay: 0s; }
.hero .bubble.b2 { width: 88px; height: 88px; bottom: 14%; left: 4%; animation-delay: 1.2s; }
.hero .bubble.b3 { width: 64px; height: 64px; top: 72%; right: 18%; animation-delay: 2.4s; }

@media (max-width: 900px) {
  .hero .bubble.b1 { width: 88px; height: 88px; top: 3%; right: 6%; }
  .hero .bubble.b2 { width: 64px; height: 64px; bottom: 6%; left: 4%; }
  .hero .bubble.b3 { display: none; }
}

/* ---------- Phone mockup ---------- */
.phone-mock {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 18;
  border-radius: 36px;
  background: linear-gradient(175deg, #FFF8F0 0%, #F5D5C8 55%, #E8833A 100%);
  box-shadow:
    0 30px 60px rgba(139, 69, 19, 0.18),
    inset 0 0 0 10px rgba(44, 24, 16, 0.92);
  overflow: hidden;
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 22px;
  max-width: 120px;
  background: #1A0E08;
  border-radius: 14px;
  z-index: 3;
}

.phone-screen {
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  padding: 48px 22px 28px;
  background: radial-gradient(120% 80% at 50% 10%, #FFE7D2 0%, #F5D5C8 55%, #E8A27A 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--text-primary);
}

.phone-screen .label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--terracotta);
  text-transform: uppercase;
  text-align: center;
}

.phone-screen .title {
  font-family: var(--font-serif);
  font-weight: 700;
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
}

.phone-screen .waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 72px;
  margin-top: 8px;
}

.phone-screen .waveform span {
  width: 5px;
  border-radius: 3px;
  background: var(--terracotta);
  animation: wave 1.6s ease-in-out infinite;
}

.phone-screen .waveform span:nth-child(1) { height: 22%; animation-delay: 0s; }
.phone-screen .waveform span:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.phone-screen .waveform span:nth-child(3) { height: 78%; animation-delay: 0.2s; }
.phone-screen .waveform span:nth-child(4) { height: 92%; animation-delay: 0.3s; }
.phone-screen .waveform span:nth-child(5) { height: 78%; animation-delay: 0.4s; }
.phone-screen .waveform span:nth-child(6) { height: 55%; animation-delay: 0.5s; }
.phone-screen .waveform span:nth-child(7) { height: 30%; animation-delay: 0.6s; }
.phone-screen .waveform span:nth-child(8) { height: 45%; animation-delay: 0.7s; }
.phone-screen .waveform span:nth-child(9) { height: 20%; animation-delay: 0.8s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.7); }
  50% { transform: scaleY(1.05); }
}

.phone-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
}

.phone-chips .chip { padding: 6px 10px; font-size: 11px; }

/* Demo video filling the phone screen */
.phone-video {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  border-radius: 26px;
  object-fit: cover;
  background: #1A0E08;
  display: block;
  z-index: 2;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.step-card .step-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--accent-peach);
  line-height: 1;
}

.step-card .step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); margin-bottom: 0; }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Feature grid (Why Hum is different) ---------- */
.features {
  background: var(--surface-card);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-peach);
  color: var(--terracotta);
  margin-bottom: 18px;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature h3 { font-size: 22px; margin-bottom: 8px; }
.feature p { color: var(--text-secondary); margin-bottom: 0; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Trust section ---------- */
.trust {
  background: linear-gradient(180deg, rgba(245, 213, 200, 0.45) 0%, rgba(255, 248, 240, 1) 100%);
}

.trust-inner { max-width: 840px; margin: 0 auto; text-align: center; padding: 0 24px; }
.trust-inner p { color: var(--text-secondary); font-size: 18px; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.trust-badge svg { width: 18px; height: 18px; color: var(--terracotta); }

.trust-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- Pullquote ---------- */
.pullquote {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  border-left: 3px solid var(--terracotta);
  padding-left: 28px;
}

.pullquote blockquote {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--text-primary);
}

.pullquote cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* ---------- Download CTA (dark band) ---------- */
.cta-dark {
  background: linear-gradient(180deg, var(--call-bg-top), var(--call-bg-bottom));
  color: #fff;
  text-align: center;
}

.cta-dark h2 {
  color: #fff;
  margin-bottom: 10px;
}

.cta-dark p { color: rgba(255, 255, 255, 0.78); font-size: 18px; max-width: 640px; margin: 0 auto 32px; }

.cta-dark .langs {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* =====================================================================
   Legal / content pages
   ===================================================================== */

.doc-header {
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--input-border);
  background: var(--background);
}

.doc-header .container { max-width: var(--prose-max); }

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { margin: 0 6px; color: var(--text-muted); }

.doc-header h1 { margin-bottom: 8px; }
.doc-header .meta { color: var(--text-secondary); font-size: 14px; margin: 0; }

.doc-content {
  padding: 48px 0 96px;
}

.doc-content .prose { max-width: var(--prose-max); }

.doc-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 30px);
}

.doc-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 20px;
}

.doc-content p { color: var(--text-primary); }
.doc-content ul { padding-left: 22px; color: var(--text-primary); }
.doc-content li { margin-bottom: 8px; }

.doc-content strong { color: var(--text-primary); }
.doc-content a,
.prose a { word-break: break-word; overflow-wrap: break-word; }

.callout {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  margin: 32px 0;
  background: var(--accent-peach);
  border-radius: var(--radius-card);
  align-items: flex-start;
}

.callout svg { width: 26px; height: 26px; color: var(--terracotta-dark); flex-shrink: 0; margin-top: 2px; }
.callout p { margin: 0 0 6px; }
.callout a { font-weight: 600; }

.serious-border {
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 32px 0;
}

.reporting-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  margin: 32px 0;
}

.reporting-card h3 { margin-top: 0; }
.reporting-card ul { list-style: none; padding: 0; }
.reporting-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--input-border);
}
.reporting-card li:last-child { border-bottom: 0; }
.reporting-card a::after {
  content: " ↗";
  font-size: 0.85em;
  color: var(--text-muted);
}

/* =====================================================================
   Expient root home
   ===================================================================== */
.expient-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}

.expient-hero .eyebrow { color: var(--terracotta); }
.expient-hero h1 em { color: var(--terracotta); font-style: italic; }
.expient-hero p { color: var(--text-secondary); font-size: 19px; max-width: 620px; }

/* Expient hero split layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.expient-bubbles {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expient-bubbles .eb-main {
  width: 200px;
  height: 200px;
}

.expient-bubbles .eb-sm {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 6%;
  right: 8%;
  animation-delay: 1.2s;
}

.expient-bubbles .eb-xs {
  position: absolute;
  width: 64px;
  height: 64px;
  bottom: 6%;
  left: 8%;
  animation-delay: 2.4s;
}

@media (max-width: 900px) {
  .expient-hero { min-height: auto; padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .expient-bubbles { min-height: 200px; }
  .expient-bubbles .eb-main { width: 160px; height: 160px; }
  .expient-bubbles .eb-sm { width: 64px; height: 64px; }
  .expient-bubbles .eb-xs { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .expient-bubbles { min-height: 170px; }
  .expient-bubbles .eb-main { width: 140px; height: 140px; }
  .expient-bubbles .eb-sm { width: 56px; height: 56px; top: 4%; right: 4%; }
  .expient-bubbles .eb-xs { width: 48px; height: 48px; bottom: 4%; left: 4%; }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--text-primary);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(139, 69, 19, 0.12);
  color: var(--text-primary);
}

.product-card .pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--accent-peach);
  color: var(--terracotta-dark);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  align-self: flex-start;
}

.product-card h3 { margin-bottom: 4px; }
.product-card p { color: var(--text-secondary); margin: 0; }
.product-card .pc-cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--terracotta);
}

.product-card.is-soon {
  background: var(--surface-card);
  box-shadow: none;
}

.product-card.is-soon:hover { transform: none; box-shadow: none; }
.product-card.is-soon .pc-badge { background: #fff; color: var(--text-muted); }
.product-card.is-soon .pc-cta { color: var(--text-muted); }

@media (max-width: 768px) { .product-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Scroll-triggered fade-in
   ===================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

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