:root {
  --ink: #050505;
  --paper: #f2f3ef;
  --muted: #a7aaa2;
  --line: rgba(255, 255, 255, 0.15);
  --green: #00c805;
  --green-bright: #40ff45;
  --green-deep: #005e03;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: var(--ink); }
:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 4px; }

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  gap: 11px;
  letter-spacing: 0.14em;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  height: 37px;
  justify-content: center;
  width: 37px;
}

.brand-mark svg,
.button svg,
.orbit-button svg {
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  width: 20px;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 3vw, 50px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header nav a { color: #c7c8c3; transition: color 180ms ease; }
.site-header nav a:hover,
.site-header nav a:focus-visible { color: var(--green-bright); }

.chain-pill {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 9px;
  padding: 10px 14px;
}

.status-dot,
.terminal-dot {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(0, 200, 5, 0.9);
  display: inline-block;
  height: 7px;
  width: 7px;
}

.hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 24px 90px;
  position: relative;
  text-align: center;
}

.hero-grid {
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  inset: 0;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  opacity: 0.28;
  position: absolute;
}

.hero-glow {
  background: radial-gradient(circle, rgba(0, 200, 5, 0.27) 0%, rgba(0, 200, 5, 0.08) 34%, transparent 67%);
  filter: blur(14px);
  height: min(820px, 80vw);
  position: absolute;
  width: min(820px, 80vw);
}

.command-kicker {
  align-items: center;
  background: rgba(0, 200, 5, 0.08);
  border: 1px solid rgba(64, 255, 69, 0.25);
  border-radius: 999px;
  color: #d7dad3;
  display: inline-flex;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.11em;
  padding: 10px 14px;
  position: relative;
  text-transform: uppercase;
}

.hero-title-wrap {
  align-items: center;
  display: flex;
  margin: clamp(18px, 4vh, 40px) 0 12px;
  position: relative;
}
.hero h1 {
  font-size: clamp(132px, 29vw, 410px);
  font-weight: 900;
  letter-spacing: -0.105em;
  line-height: 0.72;
  margin: 0;
  padding-right: 0.1em;
  position: relative;
  text-shadow: 0 0 90px rgba(0, 200, 5, 0.13);
}
.prompt-symbol {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 300;
  margin-right: clamp(6px, 2vw, 24px);
}
.cursor-block {
  animation: blink 1.05s steps(1) infinite;
  background: var(--green);
  height: clamp(62px, 11vw, 142px);
  margin-left: clamp(4px, 1.4vw, 18px);
  width: clamp(11px, 2vw, 25px);
}
@keyframes blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.hero-deck {
  color: #b9bcb4;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
  margin: clamp(32px, 6vh, 66px) 0 0;
  max-width: 690px;
  position: relative;
}
.hero-deck strong { color: var(--green-bright); font-weight: 800; }
.hero-actions {
  align-items: center;
  display: flex;
  gap: 22px;
  margin-top: 32px;
  position: relative;
}
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 22px;
  letter-spacing: 0.08em;
  min-height: 56px;
  padding: 0 20px 0 24px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}
.button-primary { background: var(--green); color: var(--ink); }
.button-primary svg { transform: rotate(45deg); }
.button:hover,
.button:focus-visible { background: var(--green-bright); transform: translateY(-2px); }
.launch-state {
  color: #80837c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-orbit {
  align-items: center;
  bottom: 54px;
  display: flex;
  height: 122px;
  justify-content: center;
  position: absolute;
  right: clamp(22px, 5vw, 78px);
  width: 122px;
}
.orbit-copy { animation: spin 18s linear infinite; inset: 0; position: absolute; }
.orbit-copy span {
  color: #8d9089;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 7px;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.13em;
  position: absolute;
  top: 50%;
  white-space: nowrap;
}
.orbit-copy span:nth-child(1) { transform: translate(-50%, -58px); }
.orbit-copy span:nth-child(2) { transform: translate(-50%, 49px) rotate(180deg); }
.orbit-copy span:nth-child(3) { transform: translate(26px, -50%) rotate(90deg); }
.orbit-button {
  align-items: center;
  background: var(--paper);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue {
  align-items: center;
  bottom: 45px;
  color: #656861;
  display: flex;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  gap: 14px;
  left: clamp(22px, 5vw, 78px);
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
}
.scroll-line { background: #4b4e48; height: 1px; overflow: hidden; position: relative; width: 74px; }
.scroll-line::after {
  animation: scan 2.2s ease-in-out infinite;
  background: var(--green);
  content: "";
  height: 1px;
  left: -30px;
  position: absolute;
  width: 30px;
}
@keyframes scan { to { left: 100%; } }

.origin-intro {
  align-items: flex-end;
  background: var(--green);
  color: var(--ink);
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(180px, 0.6fr) 2fr;
  min-height: 500px;
  padding: clamp(72px, 11vw, 158px) clamp(24px, 6vw, 92px);
}
.eyebrow {
  align-items: center;
  align-self: start;
  display: flex;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow svg { fill: var(--ink); height: 22px; width: 22px; }
.origin-copy p { margin: 0; }
.origin-lead { font-size: clamp(28px, 4.4vw, 68px); font-weight: 500; letter-spacing: -0.045em; }
.origin-punch {
  font-size: clamp(44px, 7.5vw, 112px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.95;
  margin-top: 20px !important;
  max-width: 1100px;
}

.genesis { padding: clamp(90px, 12vw, 170px) clamp(20px, 6vw, 92px); }
.section-heading {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: 0.55fr 1.15fr 0.8fr;
  margin: 0 auto clamp(48px, 7vw, 92px);
  max-width: 1400px;
}
.section-index { color: var(--green); display: block; font-size: 14px; font-weight: 800; margin-bottom: 14px; }
.eyebrow-text {
  color: #7f827a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}
.section-heading h2 {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.92;
  margin: 0;
}
.section-heading > p { color: #999c95; font-size: 16px; line-height: 1.7; margin: 2px 0 0; max-width: 430px; }

.prompt-frame {
  background: #111;
  border: 1px solid #2c2d2a;
  border-radius: 26px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 200, 5, 0.05);
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
}
.prompt-frame::before {
  background: linear-gradient(90deg, transparent, rgba(0, 200, 5, 0.9), transparent);
  content: "";
  height: 1px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 0;
  z-index: 2;
}
.frame-topbar,
.prompt-frame figcaption {
  align-items: center;
  color: #747770;
  display: flex;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.12em;
  min-height: 54px;
  padding: 0 20px;
  text-transform: uppercase;
}
.window-dots { display: flex; gap: 7px; }
.window-dots span { background: #393b37; border-radius: 50%; height: 7px; width: 7px; }
.window-dots span:first-child { background: var(--green); }
.prompt-frame img {
  background: #000;
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 1183px;
  object-fit: contain;
  width: 100%;
}
.prompt-frame figcaption { border-top: 1px solid #242522; color: #8b8e86; }
.prompt-frame figcaption span:last-child { color: var(--green); }

.ticker-strip {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  padding: 20px 0;
}
.ticker-strip > div {
  align-items: center;
  animation: marquee 34s linear infinite;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 34px;
  letter-spacing: 0.11em;
  min-width: max-content;
  text-transform: uppercase;
}
.ticker-strip i { color: var(--green); font-size: 26px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.lore {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(96px, 12vw, 174px) clamp(20px, 6vw, 92px);
}
.section-heading-light { border-bottom: 1px solid rgba(5, 5, 5, 0.17); padding-bottom: clamp(52px, 7vw, 94px); }
.section-heading-light .eyebrow-text { color: #676b65; }
.section-heading-light > p { color: #555952; }

.lore-stage {
  align-items: center;
  display: grid;
  gap: clamp(26px, 4vw, 64px);
  grid-template-columns: 1.4fr auto 0.8fr;
  margin: 0 auto;
  max-width: 1400px;
  padding: clamp(80px, 11vw, 150px) 0;
}
.terminal-label {
  color: #62665f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.lore-question blockquote {
  font-size: clamp(42px, 6.5vw, 100px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 24px 0 0;
}
.lore-arrow {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  height: clamp(58px, 7vw, 92px);
  justify-content: center;
  transform: rotate(90deg);
  width: clamp(58px, 7vw, 92px);
}
.lore-arrow svg { height: 42%; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 42%; }
.lore-answer { text-align: right; }
.lore-answer p {
  color: var(--green);
  font-size: clamp(82px, 12vw, 188px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.7;
  margin: 36px 0 0;
}

.manifesto-grid {
  border-left: 1px solid rgba(5, 5, 5, 0.17);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1400px;
}
.manifesto-grid article {
  border-bottom: 1px solid rgba(5, 5, 5, 0.17);
  border-right: 1px solid rgba(5, 5, 5, 0.17);
  border-top: 1px solid rgba(5, 5, 5, 0.17);
  min-height: 320px;
  padding: clamp(28px, 4vw, 55px);
}
.manifesto-grid article > span {
  color: var(--green-deep, #005e03);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}
.manifesto-grid h3 { font-size: clamp(36px, 4vw, 60px); letter-spacing: -0.055em; margin: 92px 0 16px; }
.manifesto-grid p { color: #5e625b; font-size: 15px; line-height: 1.65; margin: 0; max-width: 280px; }

.roadmap {
  align-items: center;
  background: var(--green);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 760px;
  overflow: hidden;
  padding: 92px 24px;
  position: relative;
  text-align: center;
}
.roadmap::before,
.roadmap::after {
  border: 1px solid rgba(5, 5, 5, 0.15);
  border-radius: 50%;
  content: "";
  height: min(74vw, 900px);
  position: absolute;
  width: min(74vw, 900px);
}
.roadmap::after { height: min(48vw, 600px); width: min(48vw, 600px); }
.roadmap-label { align-items: center; display: flex; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 10px; font-weight: 800; gap: 12px; letter-spacing: 0.12em; position: relative; z-index: 1; }
.roadmap-label svg { fill: var(--ink); height: 21px; width: 21px; }
.roadmap-command { align-items: center; display: flex; margin: 24px 0 14px; position: relative; z-index: 1; }
.roadmap-command > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(42px, 6vw, 86px);
  margin-right: clamp(8px, 2vw, 28px);
}
.roadmap h2 {
  font-size: clamp(138px, 30vw, 450px);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.72;
  margin: 0;
  padding-right: 0.08em;
}
.roadmap > p { font-size: clamp(18px, 2vw, 28px); font-weight: 700; letter-spacing: -0.025em; margin: 34px 0 0; position: relative; z-index: 1; }

.token { padding: clamp(98px, 12vw, 174px) clamp(20px, 6vw, 92px); }
.token-heading {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: 0.55fr 1.15fr 0.8fr;
  margin: 0 auto clamp(58px, 8vw, 108px);
  max-width: 1400px;
}
.token-heading h2 {
  font-size: clamp(46px, 6vw, 92px);
  letter-spacing: -0.07em;
  line-height: 0.92;
  margin: 0;
}
.token-heading > p { color: #999c95; font-size: 16px; line-height: 1.7; margin: 4px 0 0; max-width: 430px; }

.token-panel {
  border: 1px solid #2d2f2b;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1.28fr;
  margin: 0 auto;
  max-width: 1400px;
  position: relative;
}
.token-emblem {
  align-items: center;
  background: var(--green);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
}
.token-emblem svg {
  border: 3px solid currentColor;
  border-radius: 50%;
  height: clamp(140px, 18vw, 250px);
  padding: 38px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: clamp(140px, 18vw, 250px);
}
.token-emblem span { font-size: clamp(38px, 5vw, 72px); font-weight: 900; letter-spacing: -0.06em; margin-top: 34px; }
.token-panel dl { margin: 0; padding: clamp(24px, 4vw, 54px); }
.token-panel dl > div {
  align-items: center;
  border-bottom: 1px solid #2b2d29;
  display: flex;
  justify-content: space-between;
  min-height: 84px;
}
.token-panel dt {
  color: #797d75;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.token-panel dd { font-size: clamp(18px, 2.2vw, 28px); font-weight: 700; letter-spacing: -0.025em; margin: 0; text-align: right; }
.pending-value { align-items: center; color: var(--green); display: flex; gap: 10px; }
.pending-value span { animation: pulse 1.8s ease-in-out infinite; background: var(--green); border-radius: 50%; height: 7px; width: 7px; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(0, 200, 5, 0); opacity: 0.6; } }
.token-status {
  align-items: center;
  background: #11120f;
  border-top: 1px solid #2d2f2b;
  bottom: 0;
  display: flex;
  gap: 14px;
  left: calc(35.5% + 1px);
  min-height: 74px;
  padding: 0 clamp(24px, 4vw, 54px);
  position: absolute;
  right: 0;
}
.token-status strong,
.token-status small { display: block; }
.token-status strong { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 10px; letter-spacing: 0.12em; }
.token-status small { color: #73766f; font-size: 11px; margin-top: 5px; }

.closing {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 870px;
  overflow: hidden;
  padding: 110px 24px;
  position: relative;
  text-align: center;
}
.closing-grid {
  background-image: linear-gradient(rgba(5, 5, 5, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.09) 1px, transparent 1px);
  background-size: 68px 68px;
  inset: 0;
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
  position: absolute;
}
.closing > p {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  position: relative;
  text-transform: uppercase;
}
.closing h2 {
  font-size: clamp(88px, 18vw, 270px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
  margin: clamp(55px, 8vw, 100px) 0;
  padding-right: 0.08em;
  position: relative;
}
.closing-command {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--paper);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 34px;
  letter-spacing: 0.1em;
  min-height: 70px;
  padding: 7px 8px 7px 30px;
  position: relative;
}
.closing-arrow {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  height: 56px;
  justify-content: center;
  width: 56px;
}
.closing-arrow svg { height: 24px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.4; width: 24px; }

footer {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 0.5fr 1.3fr 0.8fr;
  min-height: 170px;
  padding: 40px clamp(20px, 4vw, 64px);
}
.footer-brand { justify-self: start; }
footer > p { color: #70736c; font-size: 11px; line-height: 1.65; margin: 0; max-width: 570px; }
footer > div { display: flex; flex-wrap: wrap; gap: 14px 25px; justify-content: flex-end; }
footer > div span { color: #858880; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 9px; letter-spacing: 0.12em; }

@media (max-width: 800px) {
  :root { --header-height: 66px; }
  .site-header { padding: 0 18px; }
  .site-header nav a { display: none; }
  .chain-pill { font-size: 9px; padding: 9px 11px; }
  .hero { min-height: 780px; padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: clamp(108px, 40vw, 180px); }
  .prompt-symbol { font-size: 34px; margin-right: 5px; }
  .cursor-block { height: 53px; margin-left: 4px; width: 9px; }
  .hero-deck br { display: none; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .scroll-cue { display: none; }
  .hero-orbit { bottom: 28px; left: 50%; right: auto; transform: translateX(-50%) scale(0.82); }
  .origin-intro, .section-heading { grid-template-columns: 1fr; }
  .origin-intro { align-content: center; gap: 72px; min-height: 560px; }
  .section-heading { gap: 26px; }
  .section-heading > p { font-size: 15px; }
  .prompt-frame { border-radius: 16px; }
  .frame-topbar span:last-child { display: none; }
  .prompt-frame figcaption { align-items: flex-start; flex-direction: column; gap: 8px; justify-content: center; min-height: 70px; }
  .lore { padding-left: 18px; padding-right: 18px; }
  .lore-stage { grid-template-columns: 1fr; text-align: left; }
  .lore-arrow { margin: 10px auto; transform: rotate(180deg); }
  .lore-answer { text-align: left; }
  .lore-answer p { margin-top: 26px; }
  .manifesto-grid { border-left: 0; grid-template-columns: 1fr; }
  .manifesto-grid article { border-left: 1px solid rgba(5, 5, 5, 0.17); min-height: 250px; }
  .manifesto-grid h3 { margin-top: 58px; }
  .roadmap { min-height: 620px; }
  .roadmap h2 { font-size: clamp(116px, 38vw, 210px); }
  .token-heading { grid-template-columns: 1fr; }
  .token-panel { grid-template-columns: 1fr; }
  .token-emblem { min-height: 430px; }
  .token-panel dl { padding-bottom: 110px; }
  .token-panel dl > div { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
  .token-panel dd { text-align: left; }
  .token-status { left: 0; }
  .closing { min-height: 700px; }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer > div { justify-content: flex-start; }
}

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