:root {
  color-scheme: dark;
  --bg: #030303;
  --panel: rgba(16, 16, 17, 0.78);
  --panel-solid: #111113;
  --text: #f7f7f7;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, 0.13);
  --white: #ffffff;
  --cyan: #9ee7ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
}

body::selection {
  background: rgba(158, 231, 255, 0.36);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle at 84% 24%, rgba(158, 231, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #050505, #020202 52%, #080808);
}

.site-fx::before,
.site-fx::after {
  content: "";
  position: absolute;
  inset: -18%;
  opacity: 0.34;
  pointer-events: none;
}

.site-fx::before {
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(245deg, transparent 18%, rgba(158, 231, 255, 0.14), transparent 34%);
  filter: blur(18px);
  animation: lightSweep 13s ease-in-out infinite alternate;
}

.site-fx::after {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(158, 231, 255, 0.34) 0 1px, transparent 1.7px);
  background-position: 0 0, 36px 44px;
  background-size: 120px 120px, 180px 180px;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 82%, transparent);
  animation: particleDrift 28s linear infinite;
}

.grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 231, 255, 0.06) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, transparent, black 12%, black 76%, transparent);
  animation: gridMove 20s linear infinite;
}

.scan {
  position: absolute;
  width: 70vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), rgba(158, 231, 255, 0.7), transparent);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.44));
  transform: rotate(-18deg);
}

.scan-a {
  top: 22%;
  left: -25%;
  animation: scanA 8s ease-in-out infinite;
}

.scan-b {
  right: -30%;
  bottom: 24%;
  animation: scanB 11s ease-in-out infinite;
}

.welcome-loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(158, 231, 255, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(3, 3, 3, 0.98));
  opacity: 1;
  pointer-events: auto;
}

.welcome-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms ease, visibility 620ms ease;
  visibility: hidden;
}

.loader-inner {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(640px, 100%);
  padding: clamp(28px, 6vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(158, 231, 255, 0.34);
  background: rgba(8, 8, 10, 0.74);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.58), 0 0 70px rgba(158, 231, 255, 0.18);
  text-align: center;
  animation: loaderEnter 760ms ease both;
}

.loader-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-120%);
  animation: welcomeShine 2.4s ease-in-out 350ms both;
  pointer-events: none;
}

.loader-inner span,
.loader-inner strong,
.loader-inner small,
.loader-line {
  position: relative;
  z-index: 1;
}

.loader-inner span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.loader-inner strong {
  font-size: clamp(34px, 8vw, 76px);
  line-height: 1.1;
  background: linear-gradient(100deg, #ffffff, #9ee7ff, #ffffff);
  background-size: 220% 100%;
  background-clip: text;
  color: transparent;
  animation: titleShine 3.8s ease-in-out infinite;
}

.loader-inner small {
  color: var(--muted);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
  line-height: 1.5;
}

.loader-line {
  height: 3px;
  margin-top: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.loader-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(158, 231, 255, 0.92));
  transform-origin: left;
  animation: loaderProgress 1.85s ease-in-out both;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(3, 3, 3, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 3, 0.9);
  border-color: var(--line);
}

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

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 22px rgba(158, 231, 255, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 900;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a:hover {
  color: var(--white);
}

nav a,
.brand,
.discord-tag {
  transition: color 160ms ease, transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

nav a:hover,
.brand:hover,
.discord-tag:hover {
  transform: translateY(-2px);
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-button,
.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.button.primary {
  background: var(--white);
  color: #050505;
  border-color: var(--white);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
  animation: buttonPulse 3.2s ease-in-out infinite;
}

.button:hover,
.header-button:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 231, 255, 0.58);
  box-shadow: 0 0 30px rgba(158, 231, 255, 0.15);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: 136px clamp(18px, 6vw, 78px) 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.94;
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 34%, #9ee7ff 48%, #ffffff 62%, #dcdcdc 100%);
  background-size: 220% 100%;
  background-clip: text;
  color: transparent;
  animation: titleShine 6s ease-in-out infinite;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.02;
}

.hero-copy p,
.section p,
.text-stack p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy > p {
  max-width: 700px;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-copy {
  animation: revealUp 850ms ease both 120ms;
}

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

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(158, 231, 255, 0.06)), rgba(10, 10, 11, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: revealScale 900ms ease both 260ms;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 90deg, transparent, rgba(255, 255, 255, 0.2), transparent, rgba(158, 231, 255, 0.22), transparent);
  animation: rotateGlow 11s linear infinite;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(58%, 280px);
  filter: drop-shadow(0 0 34px rgba(158, 231, 255, 0.2));
  animation: floatMark 4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.orbit-one {
  width: 70%;
  aspect-ratio: 1;
  animation: orbit 14s linear infinite;
}

.orbit-two {
  width: 48%;
  aspect-ratio: 1;
  border-color: rgba(158, 231, 255, 0.2);
  animation: orbit 9s linear infinite reverse;
}

.visual-stat {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  animation: statFloat 4.8s ease-in-out infinite;
}

.visual-stat.top {
  top: 28px;
  right: 28px;
}

.visual-stat.bottom {
  left: 28px;
  bottom: 28px;
  animation-delay: -1.4s;
}

.visual-stat strong,
.visual-stat span {
  display: block;
}

.visual-stat strong {
  font-size: 22px;
}

.visual-stat span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stats article {
  min-height: 132px;
  padding: 24px clamp(18px, 3vw, 34px);
  background: rgba(10, 10, 11, 0.88);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
}

.stats article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(158, 231, 255, 0.9), transparent);
  transform: translateX(-110%);
  animation: meterSlide 4.6s ease-in-out infinite;
}

.stats article:hover {
  transform: translateY(-3px);
  background: rgba(18, 18, 20, 0.94);
  box-shadow: inset 0 1px 0 rgba(158, 231, 255, 0.22), 0 0 22px rgba(158, 231, 255, 0.08);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 40px);
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 96px clamp(18px, 6vw, 78px);
}

.reveal,
.reveal-item,
.stats article,
.skill-grid span,
.section-heading,
.text-stack,
.contact-copy {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(32px) scale(0.985);
}

.reveal.is-visible,
.reveal-item.is-visible,
.stats article.is-visible,
.skill-grid span.is-visible,
.section-heading.is-visible,
.text-stack.is-visible,
.contact-copy.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 760ms ease, transform 760ms ease, filter 760ms ease;
}

.reveal-item:nth-child(2),
.stats article:nth-child(2),
.skill-grid span:nth-child(2n) {
  transition-delay: 80ms;
}

.reveal-item:nth-child(3),
.stats article:nth-child(3),
.skill-grid span:nth-child(3n) {
  transition-delay: 150ms;
}

.reveal-item:nth-child(4),
.stats article:nth-child(4),
.skill-grid span:nth-child(4n) {
  transition-delay: 220ms;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

.text-stack {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 34px;
}

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

.project-card,
.timeline article,
.value-grid article,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.project-card {
  min-height: 360px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.project-card::before,
.value-grid article::before,
.timeline article::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-120%);
  transition: transform 600ms ease;
  pointer-events: none;
}

.project-card:hover::before,
.value-grid article:hover::before,
.timeline article:hover::before,
.contact-form:hover::before {
  transform: translateX(120%);
}

.project-card:hover,
.timeline article:hover,
.value-grid article:hover,
.contact-form:hover {
  transform: translateY(-4px);
  border-color: rgba(158, 231, 255, 0.42);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), 0 0 28px rgba(158, 231, 255, 0.08);
}

.project-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  color: var(--cyan);
  font-weight: 900;
  box-shadow: 0 0 20px rgba(158, 231, 255, 0.08);
  animation: badgeGlow 3.8s ease-in-out infinite;
}

.project-card h3 {
  font-size: 22px;
}

.project-card p {
  min-height: 100px;
}

.project-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.project-card li::before {
  content: "/";
  margin-right: 8px;
  color: var(--cyan);
}

.skills {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-grid span {
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  position: relative;
  overflow: hidden;
}

.skill-grid span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-125%);
  transition: transform 480ms ease;
}

.skill-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 231, 255, 0.5);
  box-shadow: 0 0 22px rgba(158, 231, 255, 0.12);
}

.skill-grid span:hover::after {
  transform: translateX(125%);
}

.value {
  background: rgba(255, 255, 255, 0.018);
}

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

.value-grid article {
  min-height: 250px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  color: var(--cyan);
  font-weight: 900;
}

.value-grid h3 {
  font-size: 22px;
}

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

.timeline article {
  min-height: 230px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.timeline span {
  display: block;
  margin-bottom: 30px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 540px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.discord-tag {
  display: inline-flex;
  margin-top: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(158, 231, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  box-shadow: 0 0 28px rgba(158, 231, 255, 0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: #070707;
  color: var(--text);
}

textarea {
  min-height: 144px;
  padding-top: 14px;
  resize: vertical;
  line-height: 1.55;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(158, 231, 255, 0.45);
  outline-offset: 2px;
  box-shadow: 0 0 24px rgba(158, 231, 255, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--cyan);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 78px);
  border-top: 1px solid var(--line);
  background: #020202;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

@keyframes lightSweep {
  from {
    transform: translate3d(-7%, -3%, 0) rotate(0deg);
  }

  to {
    transform: translate3d(7%, 4%, 0) rotate(2deg);
  }
}

@keyframes particleDrift {
  to {
    transform: translate3d(-90px, 120px, 0);
  }
}

@keyframes welcomeShine {
  to {
    transform: translateX(120%);
  }
}

@keyframes loaderEnter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes gridMove {
  to {
    transform: translate3d(62px, 62px, 0);
  }
}

@keyframes scanA {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  50% {
    opacity: 0.85;
    transform: translate3d(138vw, 34vh, 0) rotate(-18deg);
  }
}

@keyframes scanB {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  50% {
    opacity: 0.65;
    transform: translate3d(-130vw, -30vh, 0) rotate(-18deg);
  }
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

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

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

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

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

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
  }

  50% {
    box-shadow: 0 0 36px rgba(158, 231, 255, 0.32);
  }
}

@keyframes titleShine {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes badgeGlow {
  0%,
  100% {
    border-color: var(--line);
  }

  50% {
    border-color: rgba(158, 231, 255, 0.55);
    box-shadow: 0 0 24px rgba(158, 231, 255, 0.14);
  }
}

@keyframes meterSlide {
  0%,
  35% {
    transform: translateX(-110%);
  }

  70%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .value-grid,
  .timeline,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .loader-inner {
    padding: 26px 18px;
  }

  nav,
  .header-button,
  .brand small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .reveal,
  .reveal-item,
  .stats article,
  .skill-grid span,
  .section-heading,
  .text-stack,
  .contact-copy {
    transform: translateY(18px);
  }

  .site-fx::before {
    opacity: 0.22;
    filter: blur(24px);
  }

  .site-fx::after {
    opacity: 0.24;
    background-size: 96px 96px, 144px 144px;
  }

  .project-grid,
  .value-grid,
  .timeline,
  .stats {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

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