:root {
  --ink: #070b0c;
  --charcoal: #263033;
  --muted: #647274;
  --paper: #ffffff;
  --soft: #f4faf9;
  --blue: #2daab8;
  --blue-ink: #0d6370;
  --aqua: #81dce2;
  --green: #59b762;
  --green-ink: #2f8f4d;
  --forest: #113432;
  --line: rgba(7, 11, 12, 0.12);
  --line-blue: rgba(45, 170, 184, 0.2);
  --gradient: linear-gradient(135deg, #0d6370 0%, #2daab8 52%, #2f8f4d 100%);
  --soft-gradient: linear-gradient(135deg, rgba(45, 170, 184, 0.18), rgba(89, 183, 98, 0.16));
  --shadow: 0 28px 80px rgba(7, 11, 12, 0.12);
  --shadow-small: 0 16px 42px rgba(7, 11, 12, 0.08);
  --max: 1200px;
  --gutter: 28px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 760;
  transition: transform 180ms ease;
}

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

.page-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 12px 0;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.page-header.is-scrolled,
.page-header.is-open {
  border-bottom-color: rgba(7, 11, 12, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(45, 170, 184, 0.08);
  padding: 7px 0;
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100%, calc(var(--max) + (var(--gutter) * 2)));
  min-height: 82px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 108px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(7, 11, 12, 0.72);
  font-size: 1rem;
  font-weight: 660;
  line-height: 1.15;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav .nav-cta {
  border-radius: 999px;
  background: var(--gradient);
  color: #ffffff !important;
  padding: 12px 20px;
  font-weight: 780;
  box-shadow: 0 12px 24px rgba(45, 170, 184, 0.22);
  -webkit-text-fill-color: #ffffff;
}

.nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

[id] {
  scroll-margin-top: 110px;
}

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

h1,
h2,
h3 {
  color: var(--charcoal);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7.2vw, 7.25rem);
  font-weight: 830;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 805;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  font-weight: 780;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  color: var(--blue-ink);
  font-size: 0.76rem;
  font-weight: 830;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: var(--gradient);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gradient);
  color: #ffffff !important;
  padding: 14px 24px;
  font-size: 0.96rem;
  font-weight: 790;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 15px 35px rgba(45, 170, 184, 0.23);
  transition: transform 180ms ease, box-shadow 180ms ease;
  -webkit-text-fill-color: #ffffff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(45, 170, 184, 0.28);
}

.button-small {
  min-height: 48px;
  padding-inline: 20px;
}

.button-light {
  background: #ffffff;
  color: var(--blue-ink) !important;
  -webkit-text-fill-color: var(--blue-ink);
}

.button:focus-visible,
.quiet-link:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(45, 170, 184, 0.35);
  outline-offset: 4px;
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(45, 170, 184, 0.55);
  padding-bottom: 4px;
  color: var(--blue-ink);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.2;
}

.arrow-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 12px;
  flex: 0 0 auto;
}

.arrow-icon::before,
.arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
}

.arrow-icon::before {
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.arrow-icon::after {
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.hero,
.intro-band,
.training-section,
.resources-section,
.groups-section,
.videos-section,
.book-section,
.final-section {
  position: relative;
  overflow: hidden;
  padding: 112px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.hero {
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.74fr);
  gap: 48px;
  align-items: center;
  padding-top: 154px;
  background:
    radial-gradient(circle at 83% 20%, rgba(89, 183, 98, 0.17), transparent 31%),
    radial-gradient(circle at 20% 78%, rgba(45, 170, 184, 0.12), transparent 30%),
    linear-gradient(120deg, #ffffff 0%, #ffffff 58%, #edf9f8 58%, #f7fbfa 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 102px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 170, 184, 0.24), transparent);
}

.hero-copy,
.hero-system {
  position: relative;
  z-index: 1;
}

.hero-lede {
  max-width: 740px;
  color: var(--charcoal);
  font-size: 1.31rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.hero-system {
  min-height: 620px;
}

.system-center {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(68vw, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 0 0 1px rgba(45, 170, 184, 0.12), 0 28px 80px rgba(45, 170, 184, 0.14);
  transform: translate(-50%, -50%);
}

.system-center::before,
.system-center::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.system-center::before {
  inset: -16%;
  border: 1px solid rgba(45, 170, 184, 0.16);
}

.system-center::after {
  inset: 16%;
  border: 1px solid rgba(89, 183, 98, 0.2);
}

.system-center img {
  position: relative;
  z-index: 1;
  width: 84%;
  filter: drop-shadow(0 24px 50px rgba(45, 170, 184, 0.2));
}

.orbit-card {
  position: absolute;
  width: min(48%, 260px);
  border: 1px solid rgba(45, 170, 184, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(16px);
  animation: floatSoft 7s ease-in-out infinite;
}

.orbit-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-ink);
  font-size: 0.72rem;
  font-weight: 830;
  text-transform: uppercase;
}

.orbit-card strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.15;
}

.orbit-training {
  top: 40px;
  left: 0;
}

.orbit-conversation {
  top: 118px;
  right: 0;
  animation-delay: -1.6s;
}

.orbit-growth {
  left: 22px;
  bottom: 96px;
  animation-delay: -3.2s;
}

.orbit-video {
  right: 14px;
  bottom: 48px;
  animation-delay: -4.4s;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: end;
  background: var(--forest);
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(45, 170, 184, 0.2), transparent 34%),
    radial-gradient(circle at 92% 72%, rgba(89, 183, 98, 0.18), transparent 35%);
}

.intro-copy,
.intro-statement {
  position: relative;
  z-index: 1;
}

.intro-band .eyebrow,
.training-panel .panel-label {
  color: rgba(255, 255, 255, 0.82);
}

.intro-band .eyebrow::before {
  background: rgba(255, 255, 255, 0.68);
}

.intro-copy h2 {
  color: #ffffff;
}

.intro-statement {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
  line-height: 1.22;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 58px;
}

.section-heading p:not(.eyebrow),
.video-heading p:not(.eyebrow),
.book-copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.16rem;
}

.training-section {
  background: #ffffff;
}

.training-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: stretch;
}

.training-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.2), transparent 24%),
    var(--gradient);
  padding: 36px;
  box-shadow: var(--shadow);
}

.panel-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 830;
  text-transform: uppercase;
}

.training-panel h3 {
  max-width: 440px;
  margin: 18px 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.training-panel p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.78);
}

.training-panel .button {
  margin-top: 18px;
  background: #ffffff;
  color: var(--blue-ink) !important;
  -webkit-text-fill-color: var(--blue-ink);
}

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

.practice-path article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(45, 170, 184, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  padding: 28px;
  box-shadow: var(--shadow-small);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.practice-path article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.practice-path span {
  color: rgba(13, 99, 112, 0.5);
  font-size: 0.88rem;
  font-weight: 830;
}

.practice-path h3 {
  margin: auto 0 12px;
  color: var(--blue-ink);
  font-size: 2rem;
}

.practice-path p {
  margin-bottom: 0;
}

.resources-section {
  background:
    linear-gradient(90deg, rgba(246, 250, 249, 0.95) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(246, 250, 249, 0.95) 0 1px, transparent 1px 100%),
    #ffffff;
  background-size: 82px 82px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.resource-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(45, 170, 184, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  padding: 28px;
  box-shadow: var(--shadow-small);
}

.resource-card span,
.video-card span {
  display: block;
  margin-bottom: auto;
  color: var(--blue-ink);
  font-size: 0.74rem;
  font-weight: 830;
  text-transform: uppercase;
}

.resource-card h3 {
  margin-top: 96px;
  color: var(--ink);
  font-size: 1.55rem;
}

.resource-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.groups-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 68px;
  align-items: center;
  background: var(--soft);
}

.group-visual {
  position: relative;
  min-height: 560px;
}

.conversation-card {
  position: absolute;
  width: min(78%, 430px);
  border: 1px solid rgba(45, 170, 184, 0.18);
  border-radius: 22px;
  background: #ffffff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.conversation-card span {
  display: inline-flex;
  margin-bottom: 52px;
  border-radius: 999px;
  background: rgba(45, 170, 184, 0.12);
  color: var(--blue-ink);
  padding: 8px 12px;
  font-size: 0.74rem;
  font-weight: 830;
  text-transform: uppercase;
}

.conversation-card p {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  font-weight: 760;
  line-height: 1.12;
}

.card-one {
  top: 20px;
  left: 0;
}

.card-two {
  top: 178px;
  right: 0;
  background: var(--forest);
}

.card-two p {
  color: #ffffff;
}

.card-three {
  left: 12%;
  bottom: 22px;
}

.group-copy p:not(.eyebrow) {
  max-width: 590px;
  font-size: 1.14rem;
}

.group-list {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.group-list li {
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  padding-bottom: 12px;
  font-weight: 690;
}

.videos-section {
  background: #ffffff;
}

.video-heading {
  max-width: 940px;
  margin-bottom: 58px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.video-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 30px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.video-card h3 {
  margin-top: auto;
  color: var(--ink);
  font-size: 1.52rem;
}

.video-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.video-card:hover {
  background: var(--soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-small);
}

.book-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
  background:
    radial-gradient(circle at 16% 20%, rgba(45, 170, 184, 0.1), transparent 29%),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow-small);
}

.book-grid span {
  min-height: 160px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-ink);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 790;
  text-align: center;
}

.final-section {
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, 0.22), transparent 25%),
    radial-gradient(circle at 8% 88%, rgba(45, 170, 184, 0.22), transparent 30%),
    var(--gradient);
  color: #ffffff;
  text-align: center;
}

.final-panel {
  max-width: 820px;
  margin: 0 auto;
}

.final-panel img {
  width: 146px;
  margin: 0 auto 24px;
}

.final-panel .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.final-panel .eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

.final-panel h2 {
  color: #ffffff;
}

.final-panel p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
}

.final-panel .button {
  margin-top: 16px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1120px) {
  .hero,
  .intro-band,
  .training-layout,
  .groups-section,
  .book-section {
    grid-template-columns: 1fr;
  }

  .hero-system {
    max-width: 680px;
    min-height: 620px;
  }

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

@media (max-width: 900px) {
  :root {
    --gutter: 22px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 90px 14px auto;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    padding: 14px;
    box-shadow: var(--shadow-small);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 13px 12px;
  }

  .nav .nav-cta {
    justify-content: center;
  }

  .hero,
  .intro-band,
  .training-section,
  .resources-section,
  .groups-section,
  .videos-section,
  .book-section,
  .final-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero {
    min-height: 0;
    padding-top: 120px;
  }

  .practice-path,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .group-visual {
    min-height: 640px;
  }

  .conversation-card {
    width: min(90%, 430px);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .brand img {
    width: 96px;
    height: 58px;
  }

  .hero,
  .intro-band,
  .training-section,
  .resources-section,
  .groups-section,
  .videos-section,
  .book-section,
  .final-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .video-heading p:not(.eyebrow),
  .book-copy p:not(.eyebrow),
  .final-panel p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quiet-link {
    width: auto;
  }

  .hero-system {
    min-height: 650px;
  }

  .system-center {
    width: min(92vw, 360px);
  }

  .orbit-card {
    width: min(76%, 250px);
  }

  .orbit-training {
    top: 0;
    left: 0;
  }

  .orbit-conversation {
    top: 116px;
    right: 0;
  }

  .orbit-growth {
    left: 0;
    bottom: 118px;
  }

  .orbit-video {
    right: 0;
    bottom: 12px;
  }

  .training-panel {
    min-height: 440px;
    border-radius: 22px;
    padding: 28px;
  }

  .practice-path article,
  .resource-card,
  .video-card {
    min-height: 0;
  }

  .resource-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .resource-card h3 {
    margin-top: 52px;
  }

  .group-visual {
    min-height: 610px;
  }

  .conversation-card {
    padding: 24px;
  }

  .card-one {
    top: 0;
  }

  .card-two {
    top: 190px;
  }

  .card-three {
    left: 0;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: block;
    padding: 12px 18px 14px;
    border-top: 1px solid rgba(10, 13, 14, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -14px 34px rgba(10, 13, 14, 0.08);
    transform: translateY(110%);
    transition: transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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