:root {
  color-scheme: light;
  --ink: #17252b;
  --ink-deep: #0b171d;
  --slate: #53646b;
  --muted: #7b8a90;
  --paper: #f6f9f7;
  --paper-soft: #eef5f2;
  --paper-warm: #fbf8f1;
  --card: rgba(255, 255, 255, 0.86);
  --card-solid: #ffffff;
  --line: rgba(23, 37, 43, 0.12);
  --line-strong: rgba(23, 37, 43, 0.2);
  --teal: #0c8f8a;
  --teal-dark: #07676f;
  --green: #5faa6f;
  --gold: #d69a35;
  --coral: #cf7058;
  --blue: #285f92;
  --shadow: 0 26px 70px rgba(20, 45, 50, 0.12);
  --shadow-soft: 0 16px 38px rgba(20, 45, 50, 0.08);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 6px;
  --gradient-brand: linear-gradient(135deg, #0c8f8a 0%, #5faa6f 54%, #d69a35 100%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(12, 143, 138, 0.08) 0%, transparent 34%),
    linear-gradient(245deg, rgba(214, 154, 53, 0.08) 0%, transparent 32%),
    linear-gradient(180deg, #f7fbf9 0%, #eef5f2 45%, #fbf8f1 100%);
  color: var(--ink);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -20;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 37, 43, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 37, 43, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 46%, rgba(12, 143, 138, 0.035) 46% 54%, transparent 54% 100%);
  background-size:
    72px 72px,
    72px 72px,
    28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.18) 76%, transparent);
}

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

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

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

.site-bg-a {
  background:
    linear-gradient(90deg, rgba(12, 143, 138, 0.06), transparent 44%),
    linear-gradient(270deg, rgba(40, 95, 146, 0.055), transparent 48%);
}

.site-bg-grid {
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(23, 37, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 37, 43, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 64%);
}

.site-bg-vignette {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 249, 247, 0.24) 44%, rgba(251, 248, 241, 0.76));
}

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 37, 43, 0.1);
  background: rgba(247, 251, 249, 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(23, 37, 43, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(20, 45, 50, 0.1);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-inner {
  min-height: 78px;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 66px;
}

.brand-link {
  display: inline-flex;
  min-width: 250px;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    var(--ink-deep);
  color: #ffffff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 26px rgba(23, 37, 43, 0.18);
}

.brand-name,
.brand-company {
  display: block;
  text-transform: uppercase;
}

.brand-name {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand-company {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.desktop-nav,
.header-actions,
.footer-inner nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.desktop-nav a,
.footer-inner a {
  position: relative;
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gradient-brand);
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover,
.footer-inner a:hover {
  color: var(--teal-dark);
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.74rem 1.14rem;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  border: 1px solid rgba(11, 23, 29, 0.12);
  background: var(--ink-deep);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(23, 37, 43, 0.16);
}

.button-primary:hover {
  background: #102831;
}

.button-outline {
  border: 1px solid rgba(23, 37, 43, 0.14);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
}

.button-outline:hover {
  border-color: rgba(12, 143, 138, 0.36);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 45, 50, 0.08);
}

.button-large {
  min-height: 48px;
  padding-inline: 1.35rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 37, 43, 0.1);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92) 0 48%, rgba(237, 247, 243, 0.88) 48% 100%),
    linear-gradient(180deg, #f8fbf8, #edf6f2);
  padding-block: clamp(4.8rem, 7vw, 7.2rem);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgba(23, 37, 43, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 37, 43, 0.052) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.2));
}

.hero-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 12px;
  content: "";
  background: var(--gradient-brand);
  opacity: 0.72;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: auto;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-copy {
  max-width: 670px;
  color: var(--ink);
}

.eyebrow,
.micro-label {
  margin: 0;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(12, 143, 138, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  padding: 0.42rem 0.58rem;
  box-shadow: 0 10px 24px rgba(20, 45, 50, 0.06);
}

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

h1,
.section-intro h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-deep);
  font-size: clamp(2.55rem, 4vw, 3.55rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero-text {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: var(--slate);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.78;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-cta .button-primary {
  border-color: transparent;
  background: var(--gradient-brand);
  color: #07171a;
  box-shadow: 0 16px 34px rgba(12, 143, 138, 0.2);
}

.hero-cta .button-primary:hover {
  box-shadow: 0 20px 42px rgba(12, 143, 138, 0.24);
}

.hero-cta .button-outline {
  border-color: rgba(23, 37, 43, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.85rem;
}

.data-card,
.feature-card,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.data-card {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.data-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gradient-brand);
}

.data-card strong {
  display: block;
  color: var(--ink-deep);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.55rem, 2.7vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
}

.data-card span {
  display: block;
  margin-top: 0.38rem;
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  align-self: center;
}

.media-shell,
.image-card {
  overflow: hidden;
  border: 1px solid rgba(23, 37, 43, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 0.65rem;
}

.media-shell {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 244, 0.82)),
    rgba(255, 255, 255, 0.8);
  transform: rotate(0.4deg);
}

.media-shell img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  object-fit: cover;
}

.hero-overlay-cards {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(20, 45, 50, 0.1);
  backdrop-filter: blur(16px);
}

.glass-card strong {
  display: block;
  margin-top: 0.62rem;
  color: var(--ink-deep);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.15;
}

.accent-card {
  border-color: rgba(12, 143, 138, 0.18);
  background: rgba(237, 248, 243, 0.9);
}

.coverage-card {
  position: absolute;
  top: -1rem;
  left: -1rem;
  display: none;
  max-width: 230px;
  border: 1px solid rgba(23, 37, 43, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(20, 45, 50, 0.14);
  padding: 1.1rem;
  backdrop-filter: blur(16px);
}

.coverage-card .eyebrow {
  margin-bottom: 0.65rem;
}

.coverage-card p:last-child {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.7;
}

.section-shell {
  position: relative;
  padding-block: clamp(4rem, 7vw, 6.8rem);
}

.section-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.section-shell.is-visible::before {
  opacity: 1;
}

.section-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(239, 247, 244, 0.56)),
    rgba(255, 255, 255, 0.5);
}

.editorial-grid,
.growth-grid,
.monetization-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.align-end {
  align-items: end;
}

.section-intro {
  max-width: 760px;
}

.section-intro .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.9rem;
  color: var(--coral);
}

.section-intro h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  line-height: 1.04;
  text-wrap: balance;
}

.section-intro p:not(.eyebrow),
.section-copy {
  margin: 1.1rem 0 0;
  color: var(--slate);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.78;
}

.image-card {
  position: relative;
}

.image-card::after {
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.image-card img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  transition:
    transform 520ms ease,
    filter 520ms ease;
}

.image-card:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.02);
}

#matrix .image-card img {
  aspect-ratio: 16 / 8.2;
}

.light-card {
  background: rgba(255, 255, 255, 0.82);
}

.light-card img {
  aspect-ratio: 16 / 9;
}

.card-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.1rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.feature-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 180ms ease;
}

.feature-card:hover {
  border-color: rgba(12, 143, 138, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.feature-card p {
  margin: 0.85rem 0 0;
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.72;
}

.feature-card .micro-label {
  margin-bottom: 0.85rem;
  color: var(--teal-dark);
  font-size: 0.66rem;
}

.icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(12, 143, 138, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(12, 143, 138, 0.12), rgba(95, 170, 111, 0.12)),
    #f5fbf8;
  color: var(--teal-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
}

.overlay-image {
  position: relative;
}

.overlay-image img {
  aspect-ratio: 16 / 10;
}

.image-note {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  max-width: 310px;
  border: 1px solid rgba(23, 37, 43, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.1rem;
  box-shadow: 0 14px 32px rgba(20, 45, 50, 0.1);
  backdrop-filter: blur(16px);
}

.image-note .eyebrow {
  margin-bottom: 0.58rem;
}

.image-note p:last-child {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.68;
}

.stacked-cards {
  display: grid;
  gap: 1rem;
}

.feature-card.compact {
  padding: 1.15rem;
}

.note-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.mini-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.6;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(20, 45, 50, 0.06);
  backdrop-filter: blur(16px);
}

.monetization-card {
  min-height: 226px;
}

.monetization-card span {
  display: block;
  width: 56px;
  height: 3px;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: var(--gradient-brand);
}

.about-card-grid {
  display: grid;
  gap: 1.1rem;
}

.wide-card strong {
  color: var(--ink);
}

.contact-section {
  border-top: 1px solid var(--line);
}

.contact-panel {
  margin-top: 1.8rem;
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.contact-panel p:not(.micro-label) {
  margin: 0.9rem 0 1.25rem;
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.72;
}

.contact-card {
  min-height: 196px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding-block: 2rem;
}

.footer-inner {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner strong {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-inner span {
  margin-left: 0.8rem;
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .media-shell.reveal-item,
.reveal-ready .image-card.reveal-item {
  transform: translateY(24px) scale(0.985);
}

.reveal-ready .media-shell.reveal-item.is-visible {
  transform: rotate(0.4deg) translateY(0) scale(1);
}

.reveal-ready .image-card.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}

@media (min-width: 760px) {
  .editorial-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  }

  .growth-grid {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .monetization-grid {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .about-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

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

  .hero-overlay-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid > .section-intro,
  .monetization-grid > .section-intro,
  .about-grid > .section-intro,
  .contact-grid > .section-intro {
    position: sticky;
    top: 104px;
    align-self: start;
  }
}

@media (min-width: 980px) {
  .four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .coverage-card {
    display: block;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .brand-link {
    min-width: auto;
  }
}

@media (max-width: 900px) {
  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 62px;
  }

  .brand-company,
  .hide-small {
    display: none;
  }

  .brand-name {
    font-size: 0.84rem;
    letter-spacing: 0.16em;
  }

  .button {
    min-height: 40px;
    padding-inline: 0.9rem;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .hero-section {
    padding-block: clamp(3.4rem, 14vw, 4.8rem);
  }

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

  .hero-cta .button {
    width: 100%;
  }

  .media-shell {
    transform: none;
  }

  .hero-overlay-cards {
    position: static;
    margin-top: 0.75rem;
  }

  .media-shell img {
    aspect-ratio: 4 / 3;
  }

  .image-note {
    position: static;
    max-width: none;
    margin-top: 0.75rem;
  }

  .footer-inner,
  .footer-inner nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner span {
    display: block;
    margin: 0.4rem 0 0;
  }

  .feature-card:hover,
  .image-card:hover img {
    transform: none;
  }
}

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

  .reveal-ready .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
