:root {
  color-scheme: dark;
  --ink: #05080d;
  --ink-soft: #080d14;
  --panel: #0d141e;
  --panel-bright: #111c29;
  --line: rgba(199, 225, 239, 0.14);
  --line-strong: rgba(199, 225, 239, 0.26);
  --text: #edf5f7;
  --muted: #9caeb7;
  --ice: #77d9ff;
  --ice-soft: #b9ebff;
  --gold: #d6a957;
  --gold-soft: #f0d499;
  --max-width: 1240px;
  --header-height: 84px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(30, 112, 153, 0.18), transparent 32rem),
    var(--ink);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

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

button {
  font: inherit;
}

::selection {
  background: var(--ice);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--text);
  color: var(--ink);
}

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

.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), calc(var(--max-width) + 24px));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 14px 12px 14px 18px;
  border-bottom: 1px solid transparent;
  transition:
    min-height 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  border-radius: 0 0 18px 18px;
  background: rgba(5, 8, 13, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(214, 169, 87, 0.44);
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.22em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.28em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c9d6dc;
  font-size: 0.9rem;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ice);
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(119, 217, 255, 0.35);
  border-radius: 999px;
  background: rgba(119, 217, 255, 0.08);
  color: var(--ice-soft);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--ice);
  background: var(--ice);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 13px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(13, 20, 30, 0.82);
  color: var(--text);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle > span:last-child {
  margin-top: 8px;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(4.5px) rotate(45deg);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(68px, 9vw, 118px) 58px;
}

.hero-grid {
  position: absolute;
  inset: 5% -20vw auto 46%;
  z-index: -2;
  height: 78%;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(119, 217, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 217, 255, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  transform: perspective(900px) rotateY(-18deg) rotateX(7deg);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 22rem;
  height: 22rem;
  pointer-events: none;
  filter: blur(90px);
  border-radius: 50%;
}

.hero-glow-one {
  top: 10%;
  right: 10%;
  background: rgba(23, 144, 199, 0.19);
}

.hero-glow-two {
  bottom: 10%;
  left: -14%;
  background: rgba(214, 169, 87, 0.09);
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--ice-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(214, 169, 87, 0.62);
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 6.6vw, 6.65rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 span {
  display: block;
  margin-top: 0.16em;
  color: var(--ice-soft);
}

.hero-intro {
  max-width: 600px;
  margin: 30px 0 0;
  color: #b6c6cd;
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 750;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ice);
  box-shadow: 0 14px 38px rgba(35, 154, 205, 0.18);
  color: #041017;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a7e8ff;
  box-shadow: 0 16px 46px rgba(35, 154, 205, 0.3);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(237, 245, 247, 0.54);
  background: rgba(255, 255, 255, 0.07);
}

.hero-note {
  margin: 20px 0 0;
  color: #768992;
  font-size: 0.78rem;
  letter-spacing: 0.035em;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  inset: -18px -18px -18px 38%;
  z-index: -1;
  content: "";
  border: 1px solid rgba(119, 217, 255, 0.15);
  border-radius: var(--radius-lg);
}

.image-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.18);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-rail span {
  padding: 17px 12px;
  color: #8598a1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.hero-rail span + span {
  border-left: 1px solid var(--line);
}

.focus {
  padding-block: clamp(100px, 12vw, 170px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 1fr);
  gap: 20px clamp(32px, 6vw, 90px);
  align-items: end;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -2px;
}

.section-heading h2,
.academy-content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.15rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.focus-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(150deg, rgba(119, 217, 255, 0.045), transparent 48%),
    var(--panel);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.focus-card::after {
  position: absolute;
  right: -40px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(119, 217, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(119, 217, 255, 0.024),
    0 0 0 48px rgba(119, 217, 255, 0.014);
}

.focus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(119, 217, 255, 0.34);
  background:
    linear-gradient(150deg, rgba(119, 217, 255, 0.09), transparent 52%),
    var(--panel-bright);
}

.card-topline {
  display: flex;
  align-items: center;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.focus-card h3 {
  max-width: 9ch;
  margin: 64px 0 18px;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.focus-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.focus-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
  padding: 30px 0 0;
  margin: auto 0 0;
  list-style: none;
}

.focus-card li {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #aebfc7;
  font-size: 0.78rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.academy {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  padding-block: clamp(98px, 12vw, 165px);
  border-top: 1px solid var(--line);
}

.academy-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.academy-visual::before {
  position: absolute;
  top: -24px;
  right: 42px;
  bottom: 48px;
  left: -24px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(214, 169, 87, 0.25);
  border-radius: var(--radius-lg);
}

.academy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.academy-content .section-kicker {
  color: var(--gold-soft);
}

.academy-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.learning-path {
  padding: 0;
  margin: 42px 0 38px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.learning-path li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.learning-path li > span {
  padding-top: 3px;
  color: var(--ice);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.learning-path h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.learning-path p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.channels {
  padding-block: clamp(100px, 12vw, 165px);
  border-top: 1px solid var(--line);
}

.channels-heading {
  grid-template-columns: 1fr;
  max-width: 830px;
}

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

.channel-card {
  position: relative;
  min-height: 236px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.channel-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: linear-gradient(130deg, rgba(119, 217, 255, 0.11), transparent 56%);
  transition: opacity 200ms ease;
}

.channel-card:hover,
.channel-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(119, 217, 255, 0.42);
  outline: none;
}

.channel-card:hover::before,
.channel-card:focus-visible::before {
  opacity: 1;
}

.channel-card-featured {
  border-color: rgba(214, 169, 87, 0.28);
  background:
    linear-gradient(140deg, rgba(214, 169, 87, 0.08), transparent 48%),
    var(--panel);
}

.channel-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #82959e;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.channel-meta > span:first-child {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ice-soft);
  font-size: 0.66rem;
}

.channel-card h3 {
  position: relative;
  z-index: 1;
  margin: 50px 0 2px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
}

.channel-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.channel-arrow {
  position: absolute;
  right: 26px;
  bottom: 23px;
  color: var(--ice);
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.channel-card:hover .channel-arrow,
.channel-card:focus-visible .channel-arrow {
  transform: translate(3px, -3px);
}

.about {
  padding-block: clamp(92px, 11vw, 150px);
  border-top: 1px solid var(--line);
}

.about .section-heading {
  grid-template-columns: 1fr;
}

.about-empty {
  position: relative;
  min-height: clamp(220px, 32vw, 400px);
  margin-top: 44px;
  overflow: hidden;
  border: 1px dashed rgba(199, 225, 239, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(119, 217, 255, 0.025), transparent 50%),
    rgba(255, 255, 255, 0.012);
}

.about-empty::before,
.about-empty::after {
  position: absolute;
  content: "";
  background: rgba(199, 225, 239, 0.08);
}

.about-empty::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.about-empty::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
  align-items: start;
  padding-block: 48px 24px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.footer-brand p,
.footer-note {
  margin: 5px 0 0;
  color: #81939c;
  font-size: 0.8rem;
}

.footer-note {
  margin: 0;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
  font-size: 0.82rem;
}

.footer-links a {
  color: #b8c7cd;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ice);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  color: #667983;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--text);
}

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

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

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% - 2px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 8, 13, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
    backdrop-filter: blur(18px);
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a {
    padding: 13px 12px;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 76px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.35rem, 10.8vw, 6.7rem);
  }

  .hero-visual {
    max-width: 860px;
  }

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

  .hero-rail span:nth-child(3) {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .hero-rail span:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .focus-card {
    min-height: 0;
  }

  .focus-card h3 {
    margin-top: 48px;
  }

  .academy {
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
    gap: 52px;
  }

}

@media (max-width: 720px) {
  .section-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    width: calc(100% - 20px);
    padding-inline: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand img,
  .footer-brand img {
    width: 42px;
    height: 42px;
  }

  .hero {
    gap: 44px;
    padding-top: 58px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3rem, 15vw, 5rem);
    line-height: 0.94;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual::before {
    inset: -12px -12px -12px 30%;
  }

  .image-frame {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .focus-grid {
    margin-top: 40px;
  }

  .focus-card {
    min-height: 0;
    padding: 24px;
  }

  .focus-card h3 {
    margin-top: 44px;
  }

  .focus-card ul {
    padding-top: 28px;
  }

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

  .academy-visual {
    width: min(90%, 460px);
    margin-inline: auto;
  }

  .academy-visual::before {
    right: 26px;
    left: -14px;
  }

  .channel-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-copy small {
    font-size: 0.6rem;
  }

  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-rail span + span {
    border-top: 1px solid var(--line);
    border-left: none;
  }

}

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

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

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