/* BCMS product landing — OptimizeSolux */
:root {
  --ink: #0b1a2e;
  --muted: #5a6b82;
  --line: rgba(11, 26, 46, 0.1);
  --navy-deep: #0b1a2e;
  --navy: #132744;
  --sapphire: #1e4a7a;
  --sapphire-mid: #2d6cb5;
  --ice: #f4f7fb;
  --ice-2: #e8eef6;
  --frost: #d4e0f0;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-bright: #e4c56a;
  --gold-soft: #f3ead2;
  --void: #05070c;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px rgba(11, 26, 46, 0.06);
  --shadow-md: 0 16px 48px rgba(11, 26, 46, 0.1);
  --shadow-lg: 0 28px 80px rgba(11, 26, 46, 0.16);
  --header-h: 72px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.14), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  mix-blend-mode: screen;
}

body.is-desktop .cursor-glow {
  opacity: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 12, 0.55);
  border-bottom: 1px solid rgba(228, 197, 106, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 1;
  min-width: 0;
  color: var(--white);
}

.site-header.scrolled .brand {
  color: var(--ink);
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1a1408, #0a0c12);
  color: var(--gold-bright);
  border: 1px solid rgba(228, 197, 106, 0.35);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.18);
}

.site-header.scrolled .brand-mark {
  background: var(--navy-deep);
  border-color: transparent;
  box-shadow: none;
  color: var(--gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-bright);
}

.site-header.scrolled .brand-text strong {
  color: var(--ink);
}

.brand-text small {
  font-size: 0.68rem;
  color: rgba(232, 238, 246, 0.55);
  font-weight: 500;
  max-width: 14rem;
  line-height: 1.25;
}

@media (max-width: 420px) {
  .brand-text small {
    display: none;
  }
}

.site-header.scrolled .brand-text small {
  color: var(--muted);
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(232, 238, 246, 0.72);
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--gold-bright);
}

.site-header.scrolled .nav-desktop a {
  color: var(--muted);
}

.site-header.scrolled .nav-desktop a:hover {
  color: var(--navy-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-desktop + .header-actions {
  margin-left: 0;
}

.header-cta {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(228, 197, 106, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.site-header.scrolled .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
}

.site-header.scrolled .nav-toggle span {
  background: var(--navy-deep);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(228, 197, 106, 0.12);
  background: rgba(5, 7, 12, 0.96);
  backdrop-filter: blur(12px);
}

.site-header.scrolled .mobile-nav {
  border-top-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0 1.25rem;
}

.mobile-nav a {
  padding: 0.75rem 0.25rem;
  font-weight: 600;
  color: rgba(232, 238, 246, 0.9);
}

.site-header.scrolled .mobile-nav a {
  color: var(--ink);
}

.mobile-nav .btn {
  margin-top: 0.65rem;
  text-align: center;
}

@media (min-width: 900px) {
  .mobile-nav,
  .mobile-nav.is-open {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 650;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 26, 46, 0.24);
}

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

.btn-gold {
  background: linear-gradient(135deg, #e4c56a 0%, #c9a227 48%, #a8841c 100%);
  color: #1a1408;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f0d78a 0%, #d4af37 50%, #b8953d 100%);
  box-shadow: 0 14px 34px rgba(201, 162, 39, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(228, 197, 106, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(228, 197, 106, 0.12);
  border-color: rgba(228, 197, 106, 0.55);
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1.02rem;
}

.btn-full {
  width: 100%;
}

/* Hero — full-bleed premium composition */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--void);
}

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-silk {
  position: absolute;
  inset: -4%;
  background:
    url("/assets/hero-silk.png") center 35% / cover no-repeat;
  transform: scale(1.06);
  animation: silk-breathe 22s var(--ease) infinite alternate;
  filter: saturate(1.08) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(5, 7, 12, 0.92) 0%,
      rgba(5, 7, 12, 0.78) 38%,
      rgba(5, 7, 12, 0.35) 62%,
      rgba(5, 7, 12, 0.55) 100%
    ),
    linear-gradient(to top, rgba(5, 7, 12, 0.88) 0%, transparent 42%),
    radial-gradient(ellipse 55% 60% at 78% 42%, rgba(201, 162, 39, 0.14), transparent 60%);
}

.hero-bloom {
  position: absolute;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  right: 2%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 197, 106, 0.22), transparent 68%);
  filter: blur(28px);
  animation: bloom-pulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 4.5rem;
  width: min(1180px, calc(100% - 2.5rem));
}

.hero-content {
  position: relative;
  max-width: 560px;
  color: var(--white);
  z-index: 2;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 0 0 0.35rem;
  line-height: 0.95;
  background: linear-gradient(180deg, #fff8e7 0%, #e4c56a 55%, #c9a227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(201, 162, 39, 0.25));
}

.hero-acronym {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(228, 197, 106, 0.78);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  max-width: 16ch;
  color: #f5f7fb;
}

.hero h1 .accent {
  display: block;
  color: var(--gold-bright);
  font-weight: 700;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(232, 238, 246, 0.82);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(232, 238, 246, 0.55);
}

.hero-note a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero visual stage */
.hero-stage {
  position: relative;
  justify-self: center;
  width: min(100%, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-stage-glow {
  position: absolute;
  inset: 10% 6%;
  background: radial-gradient(ellipse at center, rgba(228, 197, 106, 0.3), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: bloom-pulse 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  object-fit: contain;
  border-radius: 20px;
  user-select: none;
  pointer-events: none;
}

.hero-card-main {
  filter: drop-shadow(0 32px 56px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 32px rgba(228, 197, 106, 0.18));
  animation: card-drift-front 10s var(--ease) infinite alternate;
}

@keyframes silk-breathe {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes bloom-pulse {
  from {
    opacity: 0.65;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes card-drift-front {
  from {
    transform: translate3d(0, 0, 0) rotate(0.4deg);
  }
  to {
    transform: translate3d(0, -12px, 0) rotate(-0.6deg);
  }
}

@media (max-width: 899px) {
  .hero-stage {
    width: min(100%, 400px);
    order: -1;
    margin-top: 0.25rem;
  }

  .hero-card-main {
    max-width: 380px;
  }

  .hero-veil {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 12, 0.55) 0%,
        rgba(5, 7, 12, 0.72) 40%,
        rgba(5, 7, 12, 0.92) 100%
      ),
      radial-gradient(ellipse 80% 50% at 50% 20%, rgba(201, 162, 39, 0.16), transparent 55%);
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem 3rem;
    padding: 3.5rem 0 4.5rem;
    align-items: center;
  }

  .hero-stage {
    width: min(100%, 560px);
    justify-self: end;
  }

  .hero-card-main {
    max-width: 540px;
  }
}

/* Value strip */
.value-strip {
  background: var(--ice);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.value-grid article {
  padding: 0.25rem 0.5rem;
}

.value-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin-bottom: 0.15rem;
}

.value-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--ice);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sapphire-mid);
  margin: 0 0 0.75rem;
}

.section-head h2,
.why-copy h2,
.demo-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--navy-deep);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Features */
.features-grid {
  display: grid;
  gap: 1.25rem;
}

.feature {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease);
}

.section:not(.section-alt) .feature {
  background: var(--ice);
  border-color: transparent;
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--frost);
  color: var(--sapphire);
  margin-bottom: 1rem;
}

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

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--navy-deep);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  padding-top: 0.15rem;
}

.step h3 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  color: var(--navy-deep);
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Roles */
.roles-grid {
  display: grid;
  gap: 1rem;
}

.role {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--white), var(--ice));
}

.role h3 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  color: var(--navy-deep);
}

.role p {
  margin: 0;
  color: var(--muted);
}

/* Why */
.section-why {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(45, 108, 181, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(184, 149, 61, 0.08), transparent 50%),
    var(--ice);
}

.why-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.why-layout-single {
  max-width: 40rem;
}

.why-cta {
  margin-top: 1.75rem;
}

.why-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gold) center / 60% no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%230B1A2E' stroke-width='2'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}

/* Demo */
.section-demo {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.demo-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.demo-mail {
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.demo-mail a {
  color: var(--sapphire);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.demo-form {
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--ice);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  gap: 1rem;
}

.demo-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--navy-deep);
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: var(--sapphire-mid);
  box-shadow: 0 0 0 3px rgba(45, 108, 181, 0.22);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.form-note {
  margin: 0;
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

.form-note.is-success {
  color: var(--sapphire);
  font-weight: 600;
}

.form-note.is-error {
  color: #b42318;
  font-weight: 600;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  background: var(--navy-deep);
  color: rgba(232, 238, 246, 0.85);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}

.footer-brand span {
  font-size: 0.9rem;
  opacity: 0.75;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Reveal */
.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible,
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}

.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.24s;
}

/* Responsive */
@media (min-width: 720px) {
  .value-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .field-row {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
  }

  .header-actions {
    margin-left: 0;
  }

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

  .roles-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-layout,
  .demo-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .why-layout-single {
    grid-template-columns: 1fr;
    max-width: 40rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
