﻿@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@600;700;800&family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root {
  --black: #050505;
  --panel: #0b0a08;
  --panel-soft: rgba(255, 255, 255, 0.045);
  --white: #fffdf7;
  --muted: rgba(255, 253, 247, 0.68);
  --faint: rgba(255, 253, 247, 0.48);
  --line: rgba(255, 197, 27, 0.16);
  --gold: #ffc51b;
  --gold-soft: #ffdd69;
  --amber: #ff8a1f;
  --cyan: #35e3ff;
  --deep-gold: #d89000;
  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.5;
}

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

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  animation: page-enter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fixed-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at top, rgba(255, 197, 27, 0.2), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(53, 227, 255, 0.14), transparent 22%),
    radial-gradient(circle at 20% 85%, rgba(255, 138, 31, 0.12), transparent 24%),
    linear-gradient(180deg, #050505 0%, #050505 100%);
  transform: scale(1.04);
  transform-origin: top center;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 1px 1px, rgba(255, 197, 27, 0.22) 1px, transparent 1.8px);
  background-size: 72px 72px, 72px 72px, 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), transparent 94%);
}

.bg-scan {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    linear-gradient(110deg, transparent 0 43%, rgba(255, 197, 27, 0.2) 50%, transparent 57% 100%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 10px);
  animation: scan-flow 12s ease-in-out infinite alternate;
}

.wrap {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 28px 24px 96px;
  flex-direction: column;
  gap: 92px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  width: min(210px, 54vw);
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.brand img {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 0.9fr);
  gap: 60px;
  align-items: start;
  margin-top: -52px;
}

.hero-copy,
.section-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 30px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 197, 27, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 8px 16px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 197, 27, 0.9);
}

.eyebrow {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(4.4rem, 7.1vw, 7.4rem);
  line-height: 0.86;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.9vw, 5.4rem);
  line-height: 0.9;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

h4 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.lead {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cta {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 197, 27, 0.42);
  border-radius: 999px;
  padding: 0 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft) 56%, var(--amber));
  box-shadow: 0 22px 54px rgba(255, 197, 27, 0.24);
  color: #140f00;
  font-weight: 900;
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(255, 197, 27, 0.36);
}

.cta.primary {
  border-color: rgba(255, 221, 105, 0.64);
}

.cta .line {
  display: block;
  line-height: 1.05;
}

.cta-full {
  width: 100%;
}

.cta-note {
  max-width: 300px;
  margin: 0;
  color: var(--faint);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-tile,
.tile,
.method-panel,
.showcase-panel,
.guarantee-tile,
.price-tile,
.faq-tile,
.proof-tile,
.testimonial-tile,
.final-cta {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 197, 27, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mini-tile {
  min-height: 138px;
  border-radius: var(--radius);
  padding: 20px;
}

.mini-label,
.result-label,
.module-title,
.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-small,
.mini-title {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.mini-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.proof-wrap {
  position: sticky;
  top: 28px;
  min-width: 0;
  max-width: 620px;
  margin-left: auto;
}

.product-mockup {
  position: relative;
  z-index: 2;
  width: min(660px, 122%);
  margin: 0 -40px -132px auto;
  pointer-events: none;
}

.product-mockup img {
  filter: drop-shadow(0 34px 70px rgba(255, 197, 27, 0.22));
}

.proof-tile {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 590px;
  grid-template-columns: minmax(180px, 0.74fr) minmax(260px, 1fr);
  gap: 20px;
  align-items: start;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 132px 22px 22px;
}

.proof-tile::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 197, 27, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%);
}

.proof-head,
.inside-box {
  position: relative;
  z-index: 1;
}

.result-number {
  margin: 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(4.2rem, 5.4vw, 5.8rem);
  font-weight: 800;
  line-height: 0.82;
}

.result-copy {
  max-width: 210px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.organic-pill,
.price-pill {
  display: inline-flex;
  width: fit-content;
  height: fit-content;
  border: 1px solid rgba(255, 197, 27, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 197, 27, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.organic-pill {
  margin-top: 16px;
}

.inside-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.26);
}

.inside-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inside-head p {
  margin: 0;
  font-weight: 900;
}

.old-price {
  display: inline-block;
  margin: 18px 0 4px;
  color: var(--faint);
  font-weight: 900;
  text-decoration: line-through;
}

.deal-price,
.price-label {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.deal-price {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.95rem;
  line-height: 1;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before,
.trust-grid div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 4px;
}

.feature-list span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.32;
}

.inside-box .cta {
  min-height: 58px;
  margin-top: 34px;
  padding: 0 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

.section-copy p,
.section-head p,
.text-stack p,
.method-panel p,
.module-tile p,
.guarantee-tile p,
.faq-tile p,
.testimonial-tile p,
.final-cta p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tile {
  min-height: 210px;
  border-radius: var(--radius);
  padding: 24px;
}

.tile-index {
  margin: 0 0 42px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
}

.tile p:last-child {
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.82);
  font-weight: 800;
  line-height: 1.55;
}

.band,
.showcase-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
}

.band {
  border: 1px solid rgba(255, 197, 27, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 197, 27, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p,
.method-panel p {
  margin: 0;
}

.text-stack .strong {
  color: var(--white);
  font-weight: 900;
}

.method-panel {
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
}

.method-panel strong {
  color: var(--gold);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: end;
}

.section-head h2 {
  margin-top: 16px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.module-tile {
  min-height: 280px;
}

.module-tile h3 {
  color: var(--white);
}

.showcase-panel {
  border: 1px solid rgba(255, 197, 27, 0.2);
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 227, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 197, 27, 0.085), rgba(255, 255, 255, 0.025));
}

.showcase-image {
  display: grid;
  min-height: 340px;
  place-items: center;
  border: 1px solid rgba(255, 197, 27, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.showcase-image img {
  width: min(440px, 96%);
  filter: drop-shadow(0 26px 44px rgba(255, 197, 27, 0.18));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.testimonial-tile {
  min-height: 280px;
  border-radius: var(--radius);
  padding: 24px;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.testimonial-tile strong {
  color: var(--gold);
}

.founder-panel {
  align-items: center;
}

.founder-image {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
}

.founder-image::before {
  content: "";
  position: absolute;
  inset: 10% -7% -4% 7%;
  border: 1px solid rgba(255, 197, 27, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 197, 27, 0.2), rgba(53, 227, 255, 0.1));
}

.founder-image img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

.guarantee-tile,
.price-tile {
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
}

.guarantee-tile img {
  width: 148px;
  margin-bottom: 22px;
}

.price-tile {
  position: relative;
  overflow: hidden;
}

.big-price {
  display: flex;
  align-items: flex-start;
  margin: 10px 0 4px;
  color: var(--gold);
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.82;
}

.currency {
  margin-top: 0.18em;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.number {
  font-size: clamp(5.5rem, 11vw, 9.5rem);
}

.cents {
  margin-top: 0.26em;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

.installments {
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 900;
}

.trust-grid {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.trust-grid div {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 253, 247, 0.8);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-tile {
  border-radius: var(--radius);
  padding: 24px;
}

.faq-tile h3 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.25rem;
}

.faq-tile p {
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
}

.final-cta img,
.final-cta h2,
.final-cta p,
.final-cta .kicker,
.final-cta .cta {
  position: relative;
  z-index: 1;
}

.final-cta img {
  width: min(230px, 66vw);
  margin: 0 auto 20px;
}

.final-cta h2 {
  max-width: 920px;
  margin: 0 auto 20px;
}

.final-cta p:not(.kicker) {
  max-width: 760px;
  margin: 0 auto 28px;
}

.footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.9rem;
  text-align: center;
}

.footer p {
  margin: 4px 0;
}

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

.back-top,
.floating-cta {
  position: fixed;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 197, 27, 0.18);
  background: rgba(5, 5, 5, 0.74);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.back-top {
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.back-top svg {
  width: 20px;
  height: 20px;
}

.floating-cta {
  right: 84px;
  bottom: 22px;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
  color: #140f00;
  background: var(--gold);
  box-shadow: 0 18px 42px rgba(255, 197, 27, 0.18);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

.delay-4 {
  transition-delay: 360ms;
}

.delay-5 {
  transition-delay: 450ms;
}

.reveal {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-up {
  transform: translateY(28px);
}

.reveal-down {
  transform: translateY(-20px);
}

.reveal-left {
  transform: translateX(28px);
}

.reveal-right {
  transform: translateX(-28px);
}

.reveal-zoom {
  transform: scale(0.96);
}

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

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scan-flow {
  from {
    transform: translateY(-2%);
  }

  to {
    transform: translateY(2%);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
    gap: 34px;
  }

  h1 {
    font-size: clamp(3.8rem, 6.7vw, 5.6rem);
  }

  .product-mockup {
    width: min(530px, 116%);
    margin-bottom: -112px;
  }

  .proof-tile {
    display: block;
    max-width: 470px;
    padding-top: 122px;
  }

  .inside-box {
    margin-top: 22px;
  }
}

@media (max-width: 980px) {
  .wrap {
    gap: 72px;
    padding: 24px 18px 84px;
  }

  .hero,
  .split,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    margin-top: 0;
  }

  .proof-wrap {
    position: static;
    max-width: none;
    margin: 0;
  }

  .product-mockup {
    width: min(560px, 100%);
    margin: 0 auto -62px;
    transform: none;
  }

  .proof-tile {
    max-width: none;
    padding-top: 82px;
  }

  .mini-grid,
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  html,
  body,
  .page-shell,
  .wrap {
    width: 100%;
    max-width: 100%;
  }

  .wrap {
    gap: 56px;
    overflow: hidden;
    padding: 16px 16px 78px;
  }

  .brand {
    width: min(190px, 54vw);
  }

  .hero,
  .hero-copy,
  .hero-copy > div,
  .split,
  .section-head,
  .proof-wrap,
  .inside-box,
  .price-tile,
  .final-cta {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy,
  .hero-copy > div,
  .eyebrow,
  h1,
  .lead,
  .cta-row,
  .mini-grid {
    width: 100%;
    max-width: 358px;
  }

  .tag {
    width: 100%;
    max-width: 358px;
    align-items: flex-start;
    white-space: normal;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11.6vw, 3.05rem);
    line-height: 0.96;
    letter-spacing: -0.015em;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10.5vw, 3.2rem);
    line-height: 0.96;
  }

  .eyebrow {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .lead {
    display: block;
    width: 100%;
    font-size: 1.05rem;
    white-space: normal;
  }

  .lead,
  .cta-note,
  .mini-sub,
  .tile p,
  .method-panel p,
  .section-copy p,
  .faq-tile p,
  .final-cta p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .cta-row,
  .cta {
    width: 100%;
  }

  .cta {
    max-width: 100%;
    min-height: 58px;
    padding: 0 18px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mini-tile,
  .tile,
  .method-panel,
  .showcase-panel,
  .guarantee-tile,
  .price-tile,
  .faq-tile,
  .proof-tile,
  .final-cta {
    max-width: 100%;
  }

  .mini-grid,
  .pain-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .proof-tile {
    position: relative;
    z-index: 1;
    padding: 82px 18px 18px;
  }

  .inside-box {
    padding: 18px;
  }

  .tile,
  .module-tile,
  .testimonial-tile {
    min-height: auto;
  }

  .result-number {
    font-size: clamp(3.8rem, 18vw, 5rem);
  }

  .showcase-image {
    min-height: 260px;
  }

  .number {
    font-size: clamp(4.6rem, 22vw, 6.4rem);
  }

  .currency {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .cents {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .back-top {
    right: 14px;
    bottom: 14px;
  }

  .floating-cta {
    right: 76px;
    bottom: 14px;
    max-width: calc(100vw - 104px);
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

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

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