/* ============================================
   ORACLE OWL — Landing Page Design System
   Apple-Inspired Light Theme with Liquid Glass
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Variables ────────────────────────────── */
:root {
  --bg: #fffdf5;
  --bg-warm: #fef9eb;
  --accent: #f74d02;
  --accent-light: #ff7a3d;
  --accent-glow: rgba(247, 77, 2, 0.15);
  --dark: #090909;
  --dark-soft: #1a1a1a;
  --text: #2c2c2e;
  --text-secondary: #6e6e73;
  --text-tertiary: #aeaeb2;

  /* Liquid Glass tokens */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --glass-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  --glass-blur: 24px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol { list-style: none; }

/* ── Utility ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Glass Card ───────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.glass:hover {
  box-shadow: var(--glass-shadow-hover);
}

.glass--strong {
  background: var(--glass-bg-strong);
}

/* ── Navigation ───────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.nav.scrolled {
  background: rgba(255, 253, 245, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--dark);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--accent);
  transform: scale(1.03);
}

.nav__cta svg {
  width: 18px;
  height: 18px;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
  overflow: hidden;
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
}

.hero__bg-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 77, 2, 0.2), transparent 70%);
  top: -10%;
  right: -5%;
}

.hero__bg-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 77, 2, 0.1), transparent 70%);
  bottom: 10%;
  left: -10%;
}

.hero__bg-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 193, 100, 0.15), transparent 70%);
  top: 40%;
  left: 30%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-glow);
  border: 1px solid rgba(247, 77, 2, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease forwards;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 480px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

/* App Store Button */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.app-store-btn:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.app-store-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.app-store-btn__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-store-btn__text small {
  font-size: 0.6875rem;
  font-weight: 400;
  opacity: 0.8;
}

.app-store-btn__text strong {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease 0.4s forwards;
  opacity: 0;
}

.hero__phone-container {
  position: relative;
  width: 300px;
}

.hero__phone-frame {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.06);
}

.hero__phone-frame img {
  width: 100%;
  display: block;
}

.hero__owl-float {
  position: absolute;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero__owl-float--1 {
  width: 110px;
  top: -30px;
  right: -50px;
  animation-delay: 0s;
}

.hero__owl-float--2 {
  width: 80px;
  bottom: 40px;
  left: -45px;
  animation-delay: 1.5s;
}

/* ── Features Section ─────────────────────── */
.features {
  padding: var(--space-3xl) 0;
  position: relative;
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-inline: auto;
  margin-top: var(--space-sm);
  line-height: 1.6;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 1.75rem;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Screenshots Showcase ─────────────────── */
.showcase {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

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

.showcase__inner {
  position: relative;
  z-index: 1;
}

.showcase__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.showcase__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.showcase__track {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-md);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  user-select: none;
}

.showcase__track:active {
  cursor: grabbing;
}

.showcase__slide {
  flex: 0 0 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.showcase__slide:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.showcase__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.showcase__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--dark);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--glass-shadow);
}

.showcase__btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.08);
}

.showcase__dots {
  display: flex;
  gap: 8px;
}

.showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-tertiary);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.showcase__dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--accent);
}

/* ── Download CTA Section ─────────────────── */
.cta-section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.cta-card {
  position: relative;
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--dark) 0%, #1c1c1e 60%, #2c1a0e 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-card__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-card__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(247, 77, 2, 0.25);
  top: -30%;
  right: -10%;
}

.cta-card__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 163, 77, 0.12);
  bottom: -20%;
  left: -5%;
}

.cta-card__content {
  position: relative;
  z-index: 2;
}

.cta-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto var(--space-md);
}

.cta-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.cta-card__subtitle {
  font-size: 1.0625rem;
  opacity: 0.75;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.cta-card .app-store-btn {
  background: #fff;
  color: var(--dark);
  margin-inline: auto;
}

.cta-card .app-store-btn:hover {
  background: #f5f5f5;
}

/* ── Footer ───────────────────────────────── */
.footer {
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.footer__links {
  display: flex;
  gap: var(--space-md);
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ── Legal Pages ──────────────────────────── */
.legal-page {
  padding-top: calc(80px + var(--space-2xl));
  padding-bottom: var(--space-3xl);
}

.legal-page__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.legal-page__date {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.legal-content {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--accent-glow);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

.legal-content ul li {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.375rem;
  position: relative;
  list-style: none;
  padding-left: 1.25rem;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-content a {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.legal-content a:hover {
  border-bottom-color: var(--accent);
}

/* ── Animations ───────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll-triggered animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ───────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .hero__content {
    max-width: 600px;
    margin-inline: auto;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__phone-container {
    width: 260px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__slide {
    flex: 0 0 220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 253, 245, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__link {
    font-size: 1.125rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(80px + var(--space-xl));
  }

  .hero__phone-container {
    width: 220px;
  }

  .hero__owl-float--1 {
    width: 80px;
    right: -25px;
    top: -20px;
  }

  .hero__owl-float--2 {
    width: 60px;
    left: -20px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .feature-card {
    padding: var(--space-md);
  }

  .showcase__slide {
    flex: 0 0 200px;
  }

  .cta-card {
    padding: var(--space-xl) var(--space-md);
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .legal-content {
    padding: var(--space-md);
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero__phone-container {
    width: 190px;
  }

  .showcase__slide {
    flex: 0 0 170px;
  }

  .cta-card__title {
    font-size: 1.5rem;
  }
}

/* ── Mobile Nav Overlay ───────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
