/* =========================================================
   $CHONKERS — dark memecoin landing
   Palette: near-black base, cyan glow, acid-yellow pop.
   ========================================================= */

:root {
  --bg:        #04060B;
  --bg-2:      #0A0F1E;
  --bg-3:      #11182B;
  --bg-4:      #1A2235;

  --ink:       #FFFFFF;
  --ink-2:     #B8C2D9;
  --ink-3:     #6B7593;

  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.16);

  --cyan:      #00E5FF;
  --cyan-soft: rgba(0, 229, 255, 0.14);
  --acid:      #DDFF00;
  --magenta:   #FF2EBE;

  --glow-cyan: 0 0 30px rgba(0, 229, 255, 0.45), 0 0 80px rgba(0, 229, 255, 0.18);
  --shadow:    0 6px 24px rgba(0, 0, 0, 0.45), 0 16px 48px rgba(0, 0, 0, 0.35);

  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   28px;
  --radius-pill: 999px;

  --font-display: "Bagel Fat One", system-ui, sans-serif;
  --font-body:    "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle film grain — adds expensive texture to dark background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

img, svg, model-viewer { display: block; max-width: 100%; }

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(3.5rem, 11vw, 9rem); }
h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p { color: var(--ink-2); margin: 0 0 1em; }
strong { color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-soft);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  border: 1px solid rgba(0, 229, 255, 0.3);
}
.eyebrow::before {
  content: "●";
  color: var(--cyan);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.section-lede {
  max-width: 60ch;
  font-size: 1.05rem;
  margin: 0 0 3rem;
  color: var(--ink-2);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover {
  background: white;
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.7), 0 0 100px rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-soft);
}
.btn-large { padding: 18px 34px; font-size: 1.05rem; }
.btn-small { padding: 10px 18px; font-size: 0.85rem; }

.btn-copy {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-copy:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-copy.is-copied { background: var(--acid); border-color: var(--acid); color: var(--bg); }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 6, 11, 0.7);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.brand-mark {
  display: inline-block;
  vertical-align: middle;
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
  font-size: 0.93rem;
}
.nav-links a:not(.btn) { color: var(--ink-2); transition: color 0.15s; }
.nav-links a:not(.btn):hover { color: var(--cyan); }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--acid);
  color: var(--bg);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  align-items: center;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.marquee-item::after {
  content: "★";
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(48px, 8vw, 100px) 0 clamp(64px, 9vw, 120px);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
.hero::before {
  inset: -10% 25% auto auto;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.32), transparent 60%);
}
.hero::after {
  inset: auto auto -20% -10%;
  width: 40vw; height: 40vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(circle at center, rgba(221, 255, 0, 0.18), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9.5vw, 7.8rem);
  line-height: 0.92;
  margin: 6px 0 18px;
  letter-spacing: -0.02em;
}
/* Mouse-following water gradient. JS updates --mx and --my as the
   pointer moves; the radial-gradient creates a light-on-water spot. */
.hero-headline .accent {
  --mx: 50%;
  --my: 50%;
  background:
    radial-gradient(
      circle 520px at var(--mx) var(--my),
      #FFFFFF 0%,
      #E0FAFF 6%,
      #6FF1FF 18%,
      var(--cyan) 32%,
      #0099CC 60%,
      #1F4D6E 92%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: filter 0.4s ease;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.3));
}
/* While idle, gently drift the bright spot so the text always feels alive */
@media (hover: none) {
  .hero-headline .accent { animation: drift-spot 8s ease-in-out infinite; }
}
@keyframes drift-spot {
  0%, 100% { --mx: 30%; --my: 40%; }
  50%      { --mx: 70%; --my: 60%; }
}
@property --mx { syntax: "<length-percentage>"; inherits: false; initial-value: 50%; }
@property --my { syntax: "<length-percentage>"; inherits: false; initial-value: 50%; }
.hero-tag {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink-2);
  max-width: 50ch;
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-tag strong { color: var(--ink); font-weight: 700; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--ink);
  line-height: 1;
}
.hero-stats span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
/* Countdown to 7am Pacific (Chonkers' showing time). Mono font for stable
   digit width while ticking; "NOW!" state is display font + acid glow. */
.hero-stats [data-chonker-eta] {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.hero-stats [data-chonker-eta].eta-now {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.01em;
  color: var(--acid);
  text-shadow: 0 0 18px rgba(221, 255, 0, 0.6);
  animation: eta-pulse 1.5s ease-in-out infinite;
}
@keyframes eta-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.65; }
}

.hero-model {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 115%;
  max-width: 760px;
  margin-left: -10%;
  justify-self: end;
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-model::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.5), transparent 65%);
  filter: blur(24px);
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}
.hero-model model-viewer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  --poster-color: transparent;
  background: transparent;
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-model {
    justify-self: center;
    width: 100%;
    max-width: 520px;
    margin-left: 0;
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section structure ---------- */

main > section {
  position: relative;
  padding: clamp(72px, 10vw, 130px) 0;
  z-index: 2;
}
main > section + section { border-top: 1px solid var(--line); }

/* ---------- Story ---------- */

.story { background: var(--bg-2); }
.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.story-copy p { font-size: 1.05rem; color: var(--ink); line-height: 1.65; }
.story-copy p + p { margin-top: 1em; }
.story-pull {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.1;
  color: var(--cyan);
  margin: 28px 0 4px;
  padding: 24px 28px;
  background: var(--bg-3);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
  letter-spacing: -0.01em;
}
.stats-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px;
}
.stats-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stats-card li {
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats-card li:nth-child(1) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-card li:nth-child(2) { border-bottom: 1px solid var(--line); }
.stats-card li:nth-child(3) { border-right: 1px solid var(--line); }
.stats-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}
.stats-card span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

@media (max-width: 800px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ---------- Tokenomics ---------- */

.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.token-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.18s, transform 0.18s;
}
.token-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.token-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.token-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.token-card-wide {
  grid-column: 1 / -1;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border-color: var(--line-2);
}
.contract {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contract code {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--cyan);
  background: var(--bg);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  word-break: break-all;
  flex: 1 1 320px;
}

@media (max-width: 880px) { .token-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .token-grid { grid-template-columns: 1fr; } }

/* ---------- How to buy ---------- */

.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps li {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.18s;
}
.steps li:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 18px;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.4);
}
.steps h3 { color: var(--ink); margin-bottom: 8px; }
.steps p { font-size: 0.93rem; color: var(--ink-2); margin: 0; }

@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- How to buy: parallel paths (token page) ---------- */

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
.path {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.18s, transform 0.18s;
}
.path:hover { border-color: var(--cyan); transform: translateY(-3px); }
.path-easy {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), var(--bg-3));
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.12);
}
.path-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.12);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 229, 255, 0.3);
}
.path-easy .path-tag { background: var(--cyan); color: var(--bg); border-color: transparent; }
.path h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.path-blurb {
  font-size: 1rem;
  color: var(--ink-2);
  margin: 0;
}
.path-steps {
  margin: 0;
  padding-left: 24px;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.path-steps li { margin-bottom: 8px; }
.path-steps li:last-child { margin-bottom: 0; }
.path-steps a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.path-steps a:hover { color: var(--ink); }
.path .btn {
  align-self: flex-start;
  margin-top: auto;
}
.path-fineprint {
  margin: 24px auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-3);
  max-width: 70ch;
}

@media (max-width: 800px) {
  .paths-grid { grid-template-columns: 1fr; }
  .path { padding: 30px 26px; }
}

/* ---------- News (tile design with virality score) ---------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.news-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.18);
}
.news-card-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d3b50 0%, #061a25 70%, #04060B 100%);
  background-size: cover;
  background-position: center;
}
.news-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 6, 11, 0.96) 0%,
    rgba(4, 6, 11, 0.55) 35%,
    rgba(4, 6, 11, 0) 60%,
    rgba(4, 6, 11, 0.45) 100%
  );
  display: flex;
  flex-direction: column;
  padding: 12px;
  z-index: 1;
}
.news-card-source {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.65);
  color: var(--cyan);
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 229, 255, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: calc(100% - 70px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-card-virality {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: -0.01em;
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.4);
}
.news-card-virality-num { font-size: 1.05rem; }
.news-card-virality-label {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.85;
}
.news-card-virality.virality-fire {
  background: var(--acid);
  color: var(--bg);
  box-shadow: 0 0 18px rgba(221, 255, 0, 0.55);
}
.news-card-virality.virality-warm {
  background: rgba(0, 229, 255, 0.7);
  color: var(--bg);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
}
.news-card-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news-card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}
.news-card-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 56px 24px;
  border: 2px dashed var(--line-2);
  border-radius: var(--radius);
  text-align: center;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.02);
}
.empty-state strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

@media (max-width: 1100px) { .news-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 880px)  { .news-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .news-grid { grid-template-columns: 1fr; } }

/* ---------- Videos ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.video-card {
  display: block;
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.2);
}
.video-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 6, 11, 0.95) 0%, rgba(4, 6, 11, 0) 50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}
.video-card-platform {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  color: var(--cyan);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 229, 255, 0.4);
  backdrop-filter: blur(8px);
}
.video-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: var(--glow-cyan);
  transition: transform 0.18s;
}
.video-card:hover .video-card-play { transform: translate(-50%, -50%) scale(1.1); }
.video-card-caption {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .video-grid { grid-template-columns: 1fr; } }

/* ---------- Roadmap ---------- */

.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.phase {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.phase:hover { border-color: var(--cyan); transform: translateY(-3px); }
.phase::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cyan);
}
.phase:nth-child(2)::before { background: var(--acid); }
.phase:nth-child(3)::before { background: var(--magenta); }
.phase-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.phase h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.phase p { font-size: 0.95rem; margin: 0; color: var(--ink-2); }

@media (max-width: 760px) { .phases { grid-template-columns: 1fr; } }

/* ---------- Community ---------- */

.socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.social-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}
.social-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.4);
}
.social-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  flex: 1;
}
.social-action {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
}

@media (max-width: 600px) { .socials { grid-template-columns: 1fr; } }

/* ---------- Plush shoutout ---------- */

.plush { background: var(--bg-2); }
.plush-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.plush-image {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 229, 255, 0.18), transparent 60%),
    linear-gradient(135deg, var(--bg-3), var(--bg-4));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.plush-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plush-placeholder {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 2px dashed var(--line-2);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  text-align: center;
  max-width: 80%;
}
.plush-image::after {
  content: "Official";
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--acid);
  color: var(--bg);
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.plush-text h2 { margin-bottom: 18px; }
.plush-text .lede { font-size: 1.08rem; color: var(--ink); }
.plush-text p { font-size: 1rem; color: var(--ink-2); }
.plush-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--ink-2);
  margin: 14px 0 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
}
.plush-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cyan);
  letter-spacing: -0.01em;
}
.plush-divider { color: var(--ink-3); }
.plush-fineprint {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 16px;
  max-width: 50ch;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .plush-inner { grid-template-columns: 1fr; }
  .plush-image { max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ---------- Charity / token tease ---------- */

.charity {
  background:
    radial-gradient(circle at 80% 30%, rgba(0, 229, 255, 0.12), transparent 55%),
    var(--bg);
}
.charity-card {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.charity-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.18), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.charity-card .eyebrow { background: rgba(221, 255, 0, 0.12); color: var(--acid); border-color: rgba(221, 255, 0, 0.3); }
.charity-card .eyebrow::before { color: var(--acid); }
.charity-card h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}
.charity-card p {
  font-size: 1.08rem;
  color: var(--ink);
  max-width: 60ch;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.charity-card .btn { position: relative; z-index: 1; }
.charity-fineprint {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin: 18px 0 0;
  max-width: 60ch;
}

/* ---------- Token page: nav-current ---------- */

.nav-links .nav-current { color: var(--cyan); position: relative; }
.nav-links .nav-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

/* ---------- Token page: hero (split layout with rotating coin) ---------- */

.token-hero {
  position: relative;
  padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.token-hero::before {
  content: "";
  position: absolute;
  inset: -10% 25% auto auto;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.32), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.token-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.token-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.token-hero .hero-headline {
  font-size: clamp(3.4rem, 9.5vw, 7.8rem);
  text-align: left;
  margin: 6px 0 18px;
}
.token-hero .hero-tag {
  text-align: left;
  margin: 0 0 32px;
  max-width: 50ch;
}
.token-hero .hero-cta {
  justify-content: flex-start;
  margin-bottom: 0;
}
.token-hero .hero-stats {
  margin-top: 32px;
  padding-top: 28px;
  width: 100%;
}

.coin-model {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 115%;
  max-width: 660px;
  margin-left: -10%;
  justify-self: end;
  z-index: 1;
}
.coin-model::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.55), transparent 65%);
  filter: blur(28px);
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}
.coin-model model-viewer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  --poster-color: transparent;
  background: transparent;
  animation: float 6.5s ease-in-out infinite;
}

@media (max-width: 880px) {
  .token-hero-inner { grid-template-columns: 1fr; }
  .token-hero-text {
    align-items: center;
    text-align: center;
  }
  .token-hero .hero-headline { text-align: center; }
  .token-hero .hero-tag { text-align: center; margin-left: auto; margin-right: auto; }
  .token-hero .hero-cta { justify-content: center; }
  .coin-model {
    width: 100%;
    max-width: 460px;
    margin-left: 0;
    justify-self: center;
  }
}

/* ---------- Mission section ---------- */

.mission { background: var(--bg-2); }
.mission-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.mission-grid p {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.65;
}
.mission-grid p + p { margin-top: 1em; }
.mission-aside {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-aside::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.18), transparent 55%);
  filter: blur(30px);
}
.mission-pct {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 7.5rem);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--cyan) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}
.mission-pct-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
  margin-top: 14px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .mission-grid { grid-template-columns: 1fr; }
}

/* ---------- Fees breakdown ---------- */

.fees-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fee-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: border-color 0.18s;
}
.fee-row:hover { border-color: var(--line-2); }
.fee-row-charity {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), var(--bg-3));
  border-color: rgba(0, 229, 255, 0.4);
}
.fee-pct {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.fee-row-charity .fee-pct {
  background: linear-gradient(180deg, var(--cyan) 0%, #FFFFFF 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.4));
}
.fee-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fee-body strong {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 700;
}
.fee-body span {
  font-size: 0.92rem;
  color: var(--ink-2);
}
.fee-body code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan);
}

@media (max-width: 560px) {
  .fee-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 22px; }
  .fee-pct { font-size: 1.8rem; }
}

/* ---------- Resources ---------- */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.resource-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.18s;
}
.resource-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  text-decoration: none;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
}
.resource-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.resource-action {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

@media (max-width: 880px) { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .resource-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */

footer {
  background: var(--bg-2);
  color: var(--ink-2);
  padding: 60px 0 36px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
}
.footer-contract {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer-contract code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  color: var(--cyan);
  word-break: break-all;
}
.disclaimer {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 86ch;
}
.copyright {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin: 16px 0 0;
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--cyan);
  color: var(--bg);
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--glow-cyan);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Water effects ---------- */

/* WebGL water-surface canvas. Sits behind everything in the hero. */
.fluid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Ambient caustic drift — subtle moving light pattern, like underwater */
body::after {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(0, 229, 255, 0.08), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(0, 229, 255, 0.06), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(221, 255, 0, 0.025), transparent 42%);
  filter: blur(20px);
  animation: caustic 22s ease-in-out infinite;
}
@keyframes caustic {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-2%, 2%) scale(1.05); }
  66%      { transform: translate(2%, -1%) scale(0.97); }
}

/* 3D model bobs in addition to its rotation — like sitting in water */
.hero-model model-viewer {
  animation: float 6.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Drifting bubbles in the hero */
.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.bubble {
  position: absolute;
  bottom: -4vh;
  width: var(--size, 12px);
  height: var(--size, 12px);
  left: var(--x, 50%);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(0, 229, 255, 0.35) 40%, rgba(0, 229, 255, 0.05) 80%);
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4), inset 0 -2px 4px rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: bubble-rise var(--dur, 14s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes bubble-rise {
  0%   { transform: translate(0, 0)  scale(0.5); opacity: 0; }
  10%  { opacity: 0.85; }
  50%  { transform: translate(-12px, -45vh) scale(1); }
  90%  { opacity: 0.85; }
  100% { transform: translate(8px, -95vh) scale(1.15); opacity: 0; }
}

/* Wave layers at the bottom of the hero, transitioning into the story */
.hero-waves {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 110px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.hero-waves svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}
.hero-waves .wave-back {
  fill: rgba(0, 229, 255, 0.10);
  animation: wave-flow 18s linear infinite;
}
.hero-waves .wave-mid {
  fill: rgba(0, 229, 255, 0.18);
  animation: wave-flow 13s linear infinite reverse;
}
.hero-waves .wave-front {
  fill: var(--bg-2);
  animation: wave-flow 9s linear infinite;
}
@keyframes wave-flow {
  to { transform: translateX(-50%); }
}

/* ---------- Mobile refinements (no desktop changes) ---------- */

@media (max-width: 720px) {
  .container { padding: 0 18px; }

  /* Tighter section spacing on phones */
  main > section { padding: clamp(48px, 11vw, 72px) 0; }

  /* Hero: less padding, smaller headline so it doesn't dominate */
  .hero { padding: 28px 0 56px; }
  .hero-headline { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-tag { font-size: 0.98rem; margin-bottom: 24px; }
  .hero-cta { gap: 10px; margin-bottom: 24px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .hero-stats { padding-top: 22px; gap: 12px; }

  /* Token page hero same treatment */
  .token-hero { padding: 32px 0 56px; }
  .token-hero .hero-headline { font-size: clamp(3rem, 14vw, 4.5rem); }
  .token-hero .hero-stats { margin-top: 24px; padding-top: 22px; }

  /* Marquee a bit smaller */
  .marquee { padding: 11px 0; }
  .marquee-item { font-size: 1rem; letter-spacing: 0.03em; }
  .marquee-track { gap: 28px; }

  /* Section headings smaller min */
  h2 { font-size: clamp(2rem, 7vw, 3rem); }

  /* Section ledes */
  .section-lede { font-size: 0.98rem; margin-bottom: 2rem; }

  /* Story pull-quote smaller */
  .story-pull { font-size: 1.35rem; padding: 18px 22px; }

  /* Stats card padding tighter */
  .stats-card li { padding: 18px 18px; }
  .stats-card strong { font-size: 1.7rem; }

  /* Plushie section: tighter heading rhythm */
  .plush-text h2 { margin-bottom: 14px; }

  /* Charity card tighter */
  .charity-card {
    padding: 30px 24px;
    border-radius: var(--radius);
  }
  .charity-card h2 { font-size: clamp(1.7rem, 6vw, 2.3rem); }

  /* Path cards smaller padding + headings */
  .path { padding: 26px 22px; gap: 14px; }
  .path h3 { font-size: clamp(1.6rem, 6vw, 2rem); }

  /* News tile titles slightly smaller */
  .news-card-title { font-size: 0.88rem; }
  .news-card-virality { padding: 5px 9px; top: 10px; right: 10px; }
  .news-card-virality-num { font-size: 0.95rem; }

  /* Token cards slightly tighter */
  .token-card { padding: 22px 18px; }
  .token-value { font-size: 1.45rem; }

  /* Phases */
  .phase { padding: 28px 24px; }
  .phase h3 { font-size: 1.7rem; }

  /* Footer: stack a bit nicer */
  .footer-top { gap: 16px; padding-bottom: 24px; margin-bottom: 22px; }
  .footer-contract code { font-size: 0.78rem; padding: 7px 10px; }
  .disclaimer { font-size: 0.78rem; }

  /* Mission section */
  .mission-aside { padding: 28px 22px; }
}

@media (max-width: 420px) {
  /* Tiny phones (iPhone SE, small Androids) */
  .nav-inner { height: 60px; }
  .brand { font-size: 1.3rem; }
  .brand-mark { width: 32px; height: 32px; }

  .hero-headline { font-size: clamp(2.5rem, 13vw, 3.4rem); }
  .token-hero .hero-headline { font-size: clamp(2.5rem, 13vw, 3.4rem); }

  .hero-stats strong { font-size: 1.3rem; }
  .hero-stats span { font-size: 9px; letter-spacing: 0.14em; }

  /* Hero CTAs full-width when truly tight */
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; }

  .marquee-item { font-size: 0.9rem; }
  .marquee-track { gap: 20px; }

  /* Story pull-quote calmer */
  .story-pull { font-size: 1.15rem; padding: 16px 18px; }

  /* News tiles: tighter overlay */
  .news-card-overlay { padding: 10px; }
  .news-card-source { font-size: 9px; padding: 4px 8px; }
  .news-card-title { font-size: 0.83rem; }
}

/* ---------- Reduced motion ---------- */

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