:root {
  --ink: #10110d;
  --paper: #f5f1e9;
  --acid: #eaff2f;
  --acid-2: #c7ff00;
  --hot: #ff5d31;
  --muted: #76766d;
  --line: rgba(16, 17, 13, 0.16);
  --shadow: 10px 10px 0 #10110d;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.jehe-overdrive { animation: bodyPulse 0.42s steps(2) 5; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(234,255,47,.3), rgba(234,255,47,0) 67%);
  transform: translate(-50%, -50%);
  transition: opacity .2s;
}

.topbar {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  background: rgba(245, 241, 233, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  font-weight: 1000;
  letter-spacing: -.05em;
  text-decoration: none;
  font-size: 1.15rem;
}
.brand-face {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: white;
}
.brand-face img { width: 100%; height: 100%; object-fit: cover; }
.nav { display: flex; gap: 26px; }
.nav a {
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .08em;
}
.nav a:hover { text-decoration: underline; text-decoration-thickness: 3px; }
.mini-cta {
  justify-self: end;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .04em;
  font-weight: 950;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--acid);
}
.mini-cta:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--acid); }

.section-grid {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 6vw;
  align-items: center;
  padding: 7vw 6vw 8vw;
}
.hero { position: relative; isolation: isolate; }
.hero::before {
  content: "NYEHE";
  position: absolute;
  right: -3vw;
  top: 8vh;
  z-index: -1;
  font-size: clamp(8rem, 23vw, 28rem);
  line-height: .7;
  font-weight: 1000;
  letter-spacing: -.11em;
  color: rgba(16,17,13,.035);
  transform: rotate(-7deg);
}
.eyebrow, .kicker {
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 5px rgba(255,93,49,.15);
  animation: blink 1.2s steps(2) infinite;
}
.hero h1 {
  margin: 24px 0 22px;
  font-size: clamp(4rem, 8.7vw, 10.5rem);
  line-height: .72;
  letter-spacing: -.095em;
  font-weight: 1000;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
  transform: translateX(1.5vw);
}
.hero-lead {
  max-width: 720px;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.55;
  font-weight: 600;
}
.hero-lead strong { background: var(--acid); padding: 0 .2em; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0 26px; flex-wrap: wrap; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .025em;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.button-primary { background: var(--acid); box-shadow: 7px 7px 0 var(--ink); }
.button-primary:hover { transform: translate(-4px,-4px); box-shadow: 11px 11px 0 var(--ink); }
.button-ghost { background: transparent; }
.button-ghost:hover { background: white; transform: rotate(-1deg); }
.button-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: 7px 7px 0 white; }
.button-dark:hover { transform: translate(-4px,-4px); box-shadow: 11px 11px 0 white; }

.ca-box {
  max-width: 660px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 13px 13px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.ca-box > div { min-width: 0; }
.ca-label { display: block; font-size: .63rem; font-weight: 900; letter-spacing: .16em; color: var(--muted); margin-bottom: 4px; }
.ca-box code {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .82rem;
}
.ca-box button {
  border: 0;
  background: var(--ink);
  color: white;
  font-weight: 900;
  padding: 12px 14px;
  cursor: pointer;
}
.social-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 24px; }
.social-row a {
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-visual { position: relative; justify-self: center; width: min(100%, 620px); }
.cat-frame {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: 20px 22px 0 var(--acid);
  transform: rotate(1.5deg);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.cat-frame:hover { transform: rotate(-.8deg) scale(1.015); box-shadow: 26px 28px 0 var(--acid); }
.cat-frame:focus-visible { outline: 5px solid var(--hot); outline-offset: 5px; }
.cat-frame img { width: 100%; aspect-ratio: 800/734; object-fit: cover; filter: saturate(.82) contrast(1.08); }
.scanlines {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0 4px, rgba(0,0,0,.12) 5px 6px);
  mix-blend-mode: multiply; opacity: .35;
}
.camera-ui {
  position: absolute; inset: 16px 18px auto;
  display: flex; justify-content: space-between;
  color: white; font-family: ui-monospace, monospace; font-weight: 900; font-size: .7rem;
  text-shadow: 1px 1px 0 black;
}
.camera-ui span:first-child::before { content: "●"; color: #ff3f30; margin-right: 7px; }
.image-sticker {
  position: absolute;
  z-index: 3;
  background: var(--hot);
  color: white;
  padding: 10px 14px;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: clamp(.78rem, 1.2vw, 1rem);
  font-weight: 1000;
  letter-spacing: .08em;
}
.sticker-top { right: -4%; top: -4%; transform: rotate(7deg); }
.sticker-bottom { left: -6%; bottom: 4%; transform: rotate(-8deg); background: var(--acid); color: var(--ink); }
.click-hint { margin: 30px 0 0; text-align: center; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.marquee { overflow: hidden; border-block: 3px solid var(--ink); background: var(--ink); color: var(--acid); transform: rotate(-1deg) scale(1.02); }
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.marquee span { padding: 15px 0; white-space: nowrap; font-weight: 1000; font-size: clamp(1rem, 2vw, 1.65rem); letter-spacing: .04em; }

.section-pad { padding: 10vw 6vw; }
.section-head {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 6vw;
}
.section-number {
  width: 64px; height: 64px; display: grid; place-items: center;
  background: var(--acid); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink);
  font-weight: 1000;
}
.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(3rem, 7vw, 8.3rem);
  line-height: .82;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.kicker { margin: 0; color: var(--hot); }

.lore { position: relative; }
.lore::after {
  content: "";
  position: absolute;
  inset: 25% 0 0 auto;
  width: 43vw;
  background: linear-gradient(rgba(245,241,233,.86), rgba(245,241,233,.92)), url('assets/nyehehe-texture.jpg') center/cover;
  z-index: -1;
  opacity: .65;
}
.lore-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; }
.manifesto { padding-right: 4vw; }
.big-quote { font-size: clamp(2rem, 4vw, 4.7rem) !important; font-weight: 1000 !important; line-height: .95 !important; letter-spacing: -.05em; margin-top: 0 !important; }
.manifesto p { font-size: 1.1rem; line-height: 1.7; font-weight: 560; }
.manifesto-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.manifesto-tags span { border: 2px solid var(--ink); padding: 8px 10px; font-size: .7rem; font-weight: 950; background: white; }
.lore-cards { display: grid; gap: 18px; }
.lore-card {
  position: relative;
  min-height: 200px;
  padding: 32px;
  background: white;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transition: transform .2s;
}
.lore-card:nth-child(2) { background: var(--acid); margin-left: 4vw; }
.lore-card:nth-child(3) { background: var(--ink); color: var(--paper); margin-right: 3vw; }
.lore-card h3 { margin: 14px 0 10px; font-size: 1.6rem; text-transform: uppercase; letter-spacing: -.03em; }
.lore-card p { margin: 0; line-height: 1.55; font-weight: 560; }
.card-index { font-family: ui-monospace, monospace; font-weight: 900; }


.faces {
  position: relative;
  overflow: hidden;
  background: var(--acid);
  border-block: 3px solid var(--ink);
}
.faces::before {
  content: "NYEHE × NYEHE × NYEHE";
  position: absolute;
  left: -2vw;
  bottom: 1vw;
  font-size: clamp(5rem, 16vw, 18rem);
  line-height: .7;
  font-weight: 1000;
  letter-spacing: -.09em;
  color: rgba(16,17,13,.055);
  white-space: nowrap;
  transform: rotate(-3deg);
  pointer-events: none;
}
.face-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
  align-items: start;
}
.face-shot { margin: 0; }
.face-shot-main { grid-column: 1 / span 5; }
.face-shot-wide { grid-column: 6 / span 7; margin-top: 7vw; }
.face-shot-origin { grid-column: 3 / span 6; margin-top: -2vw; }
.face-image-wrap {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 13px 13px 0 var(--ink);
}
.face-shot-main .face-image-wrap { transform: rotate(-2deg); }
.face-shot-wide .face-image-wrap { transform: rotate(2.2deg); }
.face-shot-origin .face-image-wrap { transform: rotate(-1deg); }
.face-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(.82) contrast(1.08);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s;
}
.face-shot-wide .face-image-wrap img { aspect-ratio: 16 / 10; }
.face-shot-origin .face-image-wrap img { aspect-ratio: 16 / 11; }
.face-shot:hover .face-image-wrap img { transform: scale(1.045); filter: saturate(1) contrast(1.12); }
.face-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border: 2px solid var(--ink);
  background: var(--hot);
  color: white;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: .66rem;
  font-weight: 1000;
  letter-spacing: .12em;
}
.face-shot:nth-child(2) .face-badge { left: auto; right: 14px; background: var(--acid); color: var(--ink); }
.face-shot:nth-child(3) .face-badge { background: white; color: var(--ink); }
.face-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding: 18px 4px 0;
}
.face-shot figcaption strong {
  flex: 0 0 auto;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  letter-spacing: -.035em;
}
.face-shot figcaption span {
  max-width: 340px;
  color: rgba(16,17,13,.68);
  font-size: .78rem;
  line-height: 1.45;
  text-align: right;
  font-weight: 650;
}
.faces-caption {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 7vw 0 0 auto;
  padding: 18px 22px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 850;
  line-height: 1.4;
  transform: rotate(1deg);
}

.roadmap { background: var(--ink); color: var(--paper); position: relative; }
.roadmap .section-number { color: var(--ink); }
.roadmap .section-head h2 { color: var(--paper); }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.roadmap-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.055);
  transition: transform .2s, background .2s;
}
.roadmap-card:hover { transform: translateY(-8px) rotate(-1deg); background: rgba(234,255,47,.10); }
.phase { font-size: .68rem; letter-spacing: .13em; color: var(--acid); font-weight: 900; }
.phase-icon { font-size: 3.6rem; margin: 52px 0 20px; filter: grayscale(.2); }
.roadmap-card h3 { font-size: 1.7rem; margin: 0 0 16px; letter-spacing: -.04em; }
.roadmap-card p { color: rgba(245,241,233,.74); line-height: 1.6; margin: 0; }
.status { margin-top: auto; padding-top: 26px; font-size: .65rem; letter-spacing: .11em; font-weight: 900; color: rgba(245,241,233,.55); }
.status span { display: inline-block; width: 8px; height: 8px; background: rgba(255,255,255,.3); border-radius: 50%; margin-right: 7px; }
.status.active { color: var(--acid); }
.status.active span { background: var(--acid); box-shadow: 0 0 12px var(--acid); }
.roadmap-note { margin: 34px 0 0; color: rgba(245,241,233,.52); font-size: .72rem; }

.chart-section { background: #dfe3d4; }
.chart-shell { border: 3px solid var(--ink); box-shadow: 14px 14px 0 var(--ink); background: #0d0f0c; }
.chart-toolbar { min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 0 18px; color: white; border-bottom: 1px solid rgba(255,255,255,.15); font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.chart-title { display: flex; align-items: center; gap: 10px; }
.chart-toolbar a { color: var(--acid); }
.chart-wrap { position: relative; min-height: 620px; }
.chart-wrap iframe { display: block; width: 100%; height: 620px; border: 0; background: #0d0f0c; }
.chart-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 22px; padding: 30px; color: white; text-align: left; background: radial-gradient(circle at center, #1d231a, #0d0f0c 70%); }
.chart-placeholder img { width: 110px; height: 110px; border-radius: 50%; border: 3px solid var(--acid); object-fit: cover; animation: float 2.6s ease-in-out infinite; }
.chart-placeholder strong { display: block; font-size: clamp(1.2rem, 2.4vw, 2rem); }
.chart-placeholder p { color: rgba(255,255,255,.65); }
.chart-placeholder code { color: var(--acid); }

.buy { background: var(--hot); }
.buy .kicker { color: var(--ink); }
.buy-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.buy-step { min-height: 280px; padding: 25px; background: var(--paper); border: 2px solid var(--ink); }
.buy-step span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); border: 2px solid var(--ink); font-weight: 1000; }
.buy-step h3 { margin: 48px 0 12px; font-size: 1.35rem; text-transform: uppercase; }
.buy-step p { margin: 0; line-height: 1.55; }
.final-cta { margin-top: 7vw; display: flex; justify-content: space-between; align-items: center; gap: 35px; padding: clamp(28px, 5vw, 72px); background: var(--acid); border: 3px solid var(--ink); box-shadow: 14px 14px 0 var(--ink); }
.final-cta h2 { font-size: clamp(3rem, 7vw, 7rem); letter-spacing: -.07em; line-height: .83; margin: 10px 0 16px; text-transform: uppercase; }
.final-cta p:last-child { font-weight: 650; }

footer { padding: 6vw 6vw 3vw; background: var(--paper); }
.footer-brand { font-size: clamp(3rem, 10vw, 11rem); font-weight: 1000; letter-spacing: -.09em; line-height: .75; overflow: hidden; white-space: nowrap; }
.footer-bottom { margin-top: 5vw; padding-top: 28px; border-top: 2px solid var(--ink); display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer-bottom p { max-width: 720px; margin: 0; color: var(--muted); line-height: 1.55; font-size: .8rem; }
.footer-links { display: flex; gap: 10px; }
.footer-links a { width: 46px; height: 46px; display: grid; place-items: center; border: 2px solid var(--ink); background: white; font-weight: 950; text-decoration: none; }
.footer-links a:hover { background: var(--acid); }

[data-link].is-missing {
  opacity: .48;
  cursor: not-allowed;
  text-decoration-style: dashed;
}
.toast {
  position: fixed;
  z-index: 150;
  left: 50%; bottom: 26px;
  transform: translate(-50%, 120px);
  background: var(--ink); color: var(--acid);
  border: 2px solid var(--acid);
  padding: 13px 18px;
  font-size: .76rem; font-weight: 950; letter-spacing: .08em;
  transition: transform .25s ease;
}
.toast.show { transform: translate(-50%, 0); }
.floating-nyehe {
  position: fixed;
  z-index: 200;
  pointer-events: none;
  font-size: clamp(1.2rem, 3vw, 3.2rem);
  font-weight: 1000;
  color: var(--acid);
  -webkit-text-stroke: 1.5px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
  animation: popNyehe 1.25s ease-out forwards;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.1,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes blink { 50% { opacity: .35; } }
@keyframes float { 50% { transform: translateY(-10px) rotate(4deg); } }
@keyframes bodyPulse { 50% { filter: invert(1) hue-rotate(180deg); transform: translateX(3px); } }
@keyframes popNyehe {
  0% { transform: translate(-50%,-50%) scale(.35) rotate(-12deg); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translate(-50%,-180%) scale(1.4) rotate(8deg); opacity: 0; }
}

@media (max-width: 1100px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .section-grid { grid-template-columns: 1fr; padding-top: 9vw; }
  .hero-copy { max-width: 900px; }
  .hero-visual { margin-top: 4vw; }
  .lore-layout { grid-template-columns: 1fr; }
  .manifesto { max-width: 800px; }
  .roadmap-grid, .buy-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .topbar { height: 66px; padding: 0 18px; }
  .brand span:last-child { display: none; }
  .mini-cta { font-size: .64rem; padding: 10px 12px; }
  .section-grid, .section-pad { padding-left: 20px; padding-right: 20px; }
  .section-grid { min-height: auto; padding-top: 55px; padding-bottom: 90px; }
  .hero h1 { font-size: clamp(3.1rem, 18vw, 6rem); }
  .hero h1 span:nth-child(2) { -webkit-text-stroke-width: 1.5px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .ca-box { grid-template-columns: 1fr; }
  .ca-box button { width: 100%; }
  .hero-visual { width: calc(100% - 12px); }
  .cat-frame { box-shadow: 11px 13px 0 var(--acid); }
  .sticker-top { right: -2%; }
  .sticker-bottom { left: -2%; }
  .section-pad { padding-top: 110px; padding-bottom: 110px; }
  .section-head { grid-template-columns: 48px 1fr; gap: 16px; }
  .section-number { width: 46px; height: 46px; box-shadow: 4px 4px 0 var(--ink); }
  .section-head h2 { font-size: clamp(2.65rem, 13vw, 5rem); }
  .face-gallery { grid-template-columns: 1fr; gap: 54px; }
  .face-shot-main, .face-shot-wide, .face-shot-origin { grid-column: auto; margin: 0; }
  .face-shot figcaption { flex-direction: column; gap: 7px; }
  .face-shot figcaption span { text-align: left; }
  .faces-caption { margin-top: 70px; }
  .roadmap-grid, .buy-steps { grid-template-columns: 1fr; }
  .roadmap-card { min-height: 350px; }
  .lore-card:nth-child(2), .lore-card:nth-child(3) { margin: 0; }
  .chart-wrap, .chart-wrap iframe { min-height: 510px; height: 510px; }
  .chart-toolbar { align-items: flex-start; flex-direction: column; padding: 14px; }
  .chart-placeholder { flex-direction: column; text-align: center; }
  .final-cta { flex-direction: column; align-items: stretch; }
  .footer-bottom { flex-direction: column; }
}

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