:root {
  --bg: #050705;
  --bg-2: #0a0f0b;
  --bg-3: #101610;
  --ink: #f3efe2;
  --muted: #9aa694;
  --lime: #d2ff1a;
  --lime-2: #b8f000;
  --lime-soft: rgba(210, 255, 26, 0.16);
  --stroke: rgba(243, 239, 226, 0.1);
  --glow: 0 0 36px rgba(210, 255, 26, 0.32);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 24px;
  --header-h: 78px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100%;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
.btn {
  touch-action: manipulation;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

code {
  font-family: var(--font-mono);
}

::selection {
  background: var(--lime);
  color: #081108;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -72px;
  z-index: 90;
  background: var(--lime);
  color: #071007;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--lime-2), #f3ff8a);
  box-shadow: var(--glow);
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  background: radial-gradient(circle, rgba(210, 255, 26, 0.14), transparent 68%);
  mix-blend-mode: screen;
  transform: translate3d(-999px, -999px, 0);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 5, 0.74);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--stroke);
}

.nav-shell {
  width: min(calc(100% - 28px), 1280px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #0b0f0b, 0 0 0 4px var(--lime);
}

.nav-brand strong,
.nav-brand small {
  display: block;
  line-height: 1.1;
}

.nav-brand strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.nav-brand small {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.nav-desktop {
  display: none;
  margin-left: auto;
  gap: 26px;
}

.nav-desktop a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  transform: scaleX(1);
}

.btn-nav {
  display: none;
}

.nav-toggle {
  margin-left: auto;
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 55;
  padding: 28px 22px;
  background: rgba(5, 7, 5, 0.97);
  backdrop-filter: blur(18px);
}

.mobile-menu:not([hidden]) {
  animation: rise 0.35s var(--ease);
}

.mobile-menu-inner {
  display: grid;
  gap: 16px;
}

.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.7rem);
  text-transform: uppercase;
}

.mobile-kicker {
  margin: 0 0 8px;
  color: var(--lime);
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  max-width: 100%;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  will-change: transform;
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover svg {
  transform: translate(2px, -2px);
}

.btn:active {
  transform: translateY(1px) scale(0.985);
}

.btn-primary {
  background: var(--lime);
  color: #081108;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  box-shadow: 0 0 48px rgba(210, 255, 26, 0.48);
}

.btn-ghost,
.btn-line {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.btn-lg,
.btn-xl {
  min-height: 54px;
  padding: 0 22px;
}

.btn-xl {
  min-height: 64px;
  padding: 0 28px;
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 40%, transparent 20%, rgba(5, 7, 5, 0.55) 100%),
    linear-gradient(180deg, transparent, var(--bg));
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: -25%;
  background-image:
    linear-gradient(rgba(210, 255, 26, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 255, 26, 0.065) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 60% 40%, black, transparent 72%);
  animation: grid-shift 26s linear infinite;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.42;
}

.blob-a {
  width: 360px;
  height: 360px;
  left: -90px;
  top: 8%;
  background: #b6ff1a;
  animation: float-a 9s ease-in-out infinite;
}

.blob-b {
  width: 440px;
  height: 440px;
  right: -110px;
  top: 16%;
  background: #3dff88;
  animation: float-b 12s ease-in-out infinite;
}

.blob-c {
  width: 240px;
  height: 240px;
  left: 38%;
  bottom: -40px;
  background: var(--lime);
  opacity: 0.18;
}

.hero-light {
  position: absolute;
  width: 520px;
  height: 520px;
  left: 70%;
  top: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 255, 26, 0.2), transparent 70%);
  transform: translate(-50%, -50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 28px), 1280px);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  padding: 18px 0 96px;
}

.hero-watermark {
  position: absolute;
  top: -0.15em;
  left: -0.06em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 22vw, 16rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(210, 255, 26, 0.09);
  pointer-events: none;
  user-select: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.hero-ticker {
  margin: 18px 0 0;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 1.05rem;
}

.hero-title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.accent {
  color: var(--lime);
  text-shadow: 0 0 28px rgba(210, 255, 26, 0.28);
}

.hero-lead,
.lede {
  max-width: 40ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-stage {
  position: relative;
  min-height: min(58vh, 520px);
  display: grid;
  place-items: center;
}

.hero-orb {
  position: absolute;
  width: min(64vw, 320px);
  height: min(88vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 255, 26, 0.3), transparent 66%);
}

.hero-cat {
  position: relative;
  height: min(68vh, 620px);
  width: auto;
  max-width: min(86vw, 420px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 42%;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
  animation: float-cat 5.6s ease-in-out infinite;
}

.hero-float-card,
.hero-banner-chip {
  position: absolute;
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 8, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.hero-float-card {
  left: 2%;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  animation: float-a 6.2s ease-in-out infinite;
}

.hero-float-card img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.hero-banner-chip {
  top: 7%;
  right: 0;
  width: min(62vw, 260px);
  overflow: hidden;
  border-radius: 16px;
  animation: float-b 7.4s ease-in-out infinite;
}

.hero-banner-chip img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint i {
  position: relative;
  width: 18px;
  height: 28px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
}

.scroll-hint i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  transform: translateX(-50%);
  animation: drip 1.6s infinite;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--stroke);
  background: #080c08;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-b .marquee-track {
  animation-direction: reverse;
  animation-duration: 36s;
}

.marquee-track span {
  padding: 15px 0;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.65rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-inner {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.display-title {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.about-top,
.quote-grid,
.gallery-grid,
.token-meta,
.chart-bar,
.community-mosaic,
.footer-inner,
.token-card-top {
  display: grid;
}

.about-top {
  gap: 24px;
  margin-bottom: 24px;
}

.logo-card,
.quote-card,
.token-card,
.chart-card,
.about-banner {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--bg-2);
}

.logo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.logo-card-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  left: -24px;
  background: radial-gradient(circle, rgba(210, 255, 26, 0.24), transparent 70%);
}

.logo-card img {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.logo-card strong,
.logo-card span,
.logo-card em {
  display: block;
}

.logo-card strong {
  font-family: var(--font-display);
}

.logo-card span {
  color: var(--lime);
  font-family: var(--font-mono);
}

.logo-card em {
  color: var(--muted);
  font-style: normal;
}

.quote-grid {
  gap: 12px;
  margin-bottom: 22px;
}

.quote-card {
  min-height: 168px;
  padding: 22px;
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.quote-card figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.about-banner {
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  height: clamp(150px, 28vw, 280px);
  object-fit: cover;
}

.gallery-band {
  padding: 0 14px 48px;
}

.gallery-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

.token-head,
.chart-head {
  margin-bottom: 28px;
}

.token-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(210, 255, 26, 0.08), var(--glow);
}

.token-card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(210, 255, 26, 0.09), transparent 72%);
  transform: translateX(-65%);
  animation: shine 5.8s ease-in-out infinite;
}

.token-card > .btn {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 720px) {
  .token-card > .btn {
    width: auto;
  }
}

.token-card-top,
.token-meta {
  position: relative;
  z-index: 1;
}

.token-card-top {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.token-card-top img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.token-card-top p {
  margin: 0;
  color: var(--muted);
}

.token-card-top strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.chip {
  padding: 6px 10px;
  border: 1px solid var(--lime-soft);
  border-radius: 999px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.token-meta {
  gap: 0 18px;
  margin: 0 0 22px;
}

.token-meta > div {
  padding: 14px 0;
  border-top: 1px solid var(--stroke);
}

.token-meta dt {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.token-meta dd {
  margin: 6px 0 0;
  font-size: 1.12rem;
  font-weight: 700;
}

.token-contract dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.token-contract code {
  overflow-wrap: anywhere;
  color: var(--lime);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--lime-soft);
}

.copy-btn svg {
  width: 14px;
  height: 14px;
}

.copy-btn.is-copied {
  background: var(--lime);
  color: #081108;
}

.check-icon,
.copy-btn.is-copied .copy-icon {
  display: none;
}

.copy-btn.is-copied .check-icon {
  display: block;
}

.chart-card {
  overflow: hidden;
}

.chart-screen {
  position: relative;
  min-height: 380px;
  background: #061006;
}

.chart-screen iframe {
  display: block;
  width: 100%;
  height: min(62vh, 560px);
  min-height: 380px;
  border: 0;
}

.chart-bar {
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--stroke);
}

.chart-bar span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

a.is-pending {
  opacity: 0.72;
  cursor: not-allowed;
}

.community {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.community-line {
  margin: 0 0 26px;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.community-float span {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 8rem);
  color: rgba(210, 255, 26, 0.07);
  pointer-events: none;
  animation: float-a 11s ease-in-out infinite;
}

.community-float span:nth-child(1) { left: -6%; top: 8%; }
.community-float span:nth-child(2) { right: -8%; top: 30%; animation-delay: -3s; }
.community-float span:nth-child(3) { left: 16%; bottom: 4%; animation-delay: -6s; }

.community-mosaic {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 42px;
}

.community-mosaic img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 1px solid var(--stroke);
  border-radius: 20px;
}

.community-mosaic img:first-child {
  grid-column: 1 / -1;
  height: 250px;
}

.site-footer {
  padding: 36px 0 56px;
  border-top: 1px solid var(--stroke);
}

.footer-inner {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  gap: 16px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-inner a,
.footer-copy {
  color: var(--muted);
}

.footer-copy {
  font-family: var(--font-mono);
  overflow-wrap: anywhere;
}

.copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: #081108;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: 0.25s var(--ease);
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.hero .reveal {
  animation: rise 0.85s var(--ease) forwards;
}

.hero .eyebrow { animation-delay: 0.05s; }
.hero .hero-ticker { animation-delay: 0.14s; }
.hero-title .reveal:first-child { animation-delay: 0.22s; }
.hero-title .accent { animation-delay: 0.32s; }
.hero .hero-lead { animation-delay: 0.42s; }
.hero .hero-actions { animation-delay: 0.52s; }
.hero .hero-stage { animation-delay: 0.28s; }

@keyframes grid-shift {
  from { transform: translateY(0); }
  to { transform: translateY(72px); }
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-12px, 14px, 0); }
}

@keyframes float-cat {
  0%, 100% { transform: translateY(0) rotate(-1.4deg); }
  50% { transform: translateY(-14px) rotate(1.4deg); }
}

@keyframes drip {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shine {
  0%, 100% { transform: translateX(-65%); }
  50% { transform: translateX(65%); }
}

@keyframes scan {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

@keyframes draw {
  0% { stroke-dashoffset: 1400; }
  45%, 70% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1400; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 720px) {
  .nav-desktop,
  .btn-nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-menu {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid img {
    height: 228px;
  }

  .quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .token-meta {
    grid-template-columns: 1fr 1fr;
  }

  .about-top,
  .chart-bar,
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    min-height: calc(100svh - var(--header-h));
    padding: 10px 0 48px;
  }

  .hero-cat {
    height: min(72vh, 640px);
    max-width: min(42vw, 430px);
  }

  .hero-orb {
    width: min(28vw, 340px);
    height: min(58vh, 560px);
  }

  .community-mosaic {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .community-mosaic img,
  .community-mosaic img:first-child {
    grid-column: auto;
    height: 330px;
  }
}

@media (max-width: 979px) {
  .hero-layout {
    padding: 8px 0 84px;
  }

  .hero-stage {
    order: -1;
    min-height: 0;
  }

  .hero-cat {
    height: min(50vh, 440px);
    max-width: min(78vw, 340px);
  }

  .hero-orb {
    width: min(58vw, 280px);
    height: min(70vw, 420px);
  }
}
  .gallery-grid figure:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .hero-banner-chip {
    width: min(46vw, 150px);
  }

  .hero-banner-chip img {
    height: 64px;
  }
}

@media (max-width: 380px) {
  .hero-actions .btn {
    width: 100%;
  }

  .chip {
    display: none;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .marquee-track {
    animation: none !important;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }

  .cursor-glow,
  .hero-particles,
  .scroll-hint i::after {
    display: none;
  }
}
