/* DOINK — premium product landing
   design-taste: VARIANCE 8 / MOTION 6 / DENSITY 3
   Goal: funded-crypto-brand polish, not AI template
*/

@font-face {
  font-family: "Satoshi";
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/satoshi@latest/latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/satoshi@latest/latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/satoshi@latest/latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/satoshi@latest/latin-900-normal.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Dark tokens (default). Light overrides via [data-theme="light"] */
:root,
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090b0a;
  --bg-elev: #0e1210;
  --surface: #131916;
  --surface-2: #181f1b;
  --line: rgb(255 255 255 / 0.07);
  --line-2: rgb(200 242 74 / 0.22);
  --text: #f3f6f0;
  --muted: #9aa89a;
  --faint: #6a7668;
  --accent: #c8f24a;
  --accent-ink: #0b1008;
  --warm: #e4d06a;
  --danger: #e86f6f;
  --ok: #7ddea0;
  --nav-bg: rgb(9 11 10 / 0.72);
  --dock-bg: rgb(9 11 10 / 0.9);
  --badge-bg: rgb(9 11 10 / 0.88);
  --warn-bg: rgb(232 111 111 / 0.06);
  --warn-border: rgb(232 111 111 / 0.25);
  --warn-text: #f0a8a8;
  --glow: rgb(200 242 74 / 0.08);
  --glow-warm: rgb(228 208 106 / 0.05);
  --grid-line: rgb(255 255 255 / 0.03);
  --btn-ghost: rgb(255 255 255 / 0.03);
  --btn-ghost-hover: rgb(200 242 74 / 0.06);
  --shadow: 0 28px 80px rgb(0 0 0 / 0.45);
  --r: 18px;
  --r-sm: 12px;
  --nav: 64px;
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Satoshi", "Segoe UI", system-ui, sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --z-nav: 50;
  --z-progress: 60;
  --z-toast: 80;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f3f5ef;
  --bg-elev: #fafbf7;
  --surface: #ffffff;
  --surface-2: #eef1e6;
  --line: rgb(18 28 16 / 0.09);
  --line-2: rgb(110 150 30 / 0.28);
  --text: #101410;
  --muted: #4d584c;
  --faint: #7a8678;
  --accent: #6f9c12;
  --accent-ink: #f7ffe8;
  --warm: #b8961e;
  --danger: #c94a4a;
  --ok: #1f8a4c;
  --nav-bg: rgb(243 245 239 / 0.82);
  --dock-bg: rgb(255 255 255 / 0.92);
  --badge-bg: rgb(255 255 255 / 0.92);
  --warn-bg: rgb(201 74 74 / 0.07);
  --warn-border: rgb(201 74 74 / 0.28);
  --warn-text: #9a2e2e;
  --glow: rgb(111 156 18 / 0.1);
  --glow-warm: rgb(184 150 30 / 0.07);
  --grid-line: rgb(18 28 16 / 0.04);
  --btn-ghost: rgb(18 28 16 / 0.03);
  --btn-ghost-hover: rgb(111 156 18 / 0.08);
  --shadow: 0 24px 60px rgb(18 28 16 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

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

::selection {
  background: rgb(200 242 74 / 0.35);
  color: var(--text);
}

[data-theme="light"] ::selection {
  background: rgb(111 156 18 / 0.28);
  color: var(--text);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* Progress */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: var(--z-progress);
  background: linear-gradient(90deg, var(--accent), var(--warm));
  transform-origin: left;
  pointer-events: none;
}

/* Atmosphere */
.atm {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 600px at 10% -5%, var(--glow), transparent 55%),
    radial-gradient(800px 500px at 95% 15%, var(--glow-warm), transparent 50%),
    radial-gradient(600px 400px at 50% 110%, var(--glow), transparent 50%),
    var(--bg);
}

.atm-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}

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

[data-theme="light"] .atm-grain {
  opacity: 0.035;
  mix-blend-mode: multiply;
}

.page {
  position: relative;
  z-index: 2;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-size: 1rem;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgb(200 242 74 / 0.4);
}

.brand em {
  font-style: normal;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.1rem;
}

.nav-links a:not(.btn) {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--btn-ghost);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s var(--ease);
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--line-2);
  color: var(--text);
  background: var(--btn-ghost-hover);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.theme-toggle:active {
  transform: scale(0.96);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
  fill: currentColor;
  stroke: none;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 44px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  white-space: nowrap;
  transition:
    transform 0.15s var(--ease),
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 0 rgb(200 242 74 / 0);
}

.btn-primary:hover {
  box-shadow: 0 10px 40px rgb(200 242 74 / 0.22);
  filter: brightness(1.03);
}

.btn-secondary {
  background: var(--btn-ghost);
  color: var(--text);
  border-color: var(--line-2);
}

.btn-secondary:hover {
  background: var(--btn-ghost-hover);
  border-color: var(--accent);
}

.btn-sm {
  height: 36px;
  padding: 0 0.9rem;
  font-size: 0.8rem;
}

/* Hero */
.hero {
  min-height: calc(100dvh - var(--nav));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: 2.5rem 0 3.5rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.25rem;
}

.hero-kicker i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgb(125 222 160 / 0.6);
  animation: pulse 2s ease infinite;
  font-style: normal;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgb(125 222 160 / 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgb(125 222 160 / 0);
  }
}

.hero h1 {
  font-size: clamp(3.25rem, 7vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 1.1rem;
}

.hero h1 .dot {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 32ch;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--faint);
  letter-spacing: 0.02em;
}

.hero-meta b {
  color: var(--muted);
  font-weight: 600;
}

.hero-stage {
  position: relative;
  width: min(100%, 460px);
  justify-self: end;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  filter: blur(28px);
  z-index: 0;
  opacity: 2.2;
}

.hero-frame {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--surface);
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--badge-bg);
  border: 1px solid var(--line-2);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  color: var(--text);
}

.hero-badge span {
  color: var(--accent);
}

/* Trust rail under hero */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1rem;
}

.trust a,
.trust div {
  background: var(--bg-elev);
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.trust a:hover {
  background: var(--surface);
  text-decoration: none;
}

.trust .t-k {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin-bottom: 0.3rem;
}

.trust .t-v {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trust .t-v.ok {
  color: var(--ok);
}

/* Strip */
.strip {
  border-block: 1px solid var(--line);
  background: var(--bg-elev);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.strip-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.85rem 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  animation: marquee 36s linear infinite;
}

.strip-track b {
  color: var(--accent);
  font-weight: 700;
}

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

/* Sections */
.section {
  padding: 6rem 0;
}

.section-h {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section-h h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 0.7rem;
}

.section-h p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 42ch;
}

/* Split feature */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: stretch;
}

.split-visual {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  position: relative;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: 1.35rem 1.4rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.feature:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}

.feature h3 {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.stat {
  background: var(--surface);
  padding: 1.35rem 1.2rem;
}

.stat .k {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--faint);
  margin-bottom: 0.45rem;
}

.stat .v {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* Panel / CA */
.panel {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: 1.4rem 1.45rem;
}

.panel + .panel {
  margin-top: 0.85rem;
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.ca-row .info {
  flex: 1 1 260px;
  min-width: 0;
}

.ca-row .k {
  font-size: 0.72rem;
  color: var(--faint);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ca-row code {
  font-family: var(--mono);
  font-size: clamp(0.76rem, 2vw, 0.92rem);
  word-break: break-all;
  color: var(--text);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.chip:hover {
  border-color: var(--line-2);
  color: var(--text);
  text-decoration: none;
}

.chip.ok {
  border-color: rgb(125 222 160 / 0.3);
  color: var(--ok);
}

.warn {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--warn-border);
  background: var(--warn-bg);
  color: var(--warn-text);
  font-size: 0.86rem;
}

.mono {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--muted);
  word-break: break-all;
}

/* Buy */
.buy {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.steps {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
}

.step {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.5rem;
  padding: 1.2rem 1.3rem;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
}

.step-n {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.15rem;
}

.step h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

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

.buy-card {
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background:
    linear-gradient(160deg, var(--glow), transparent 50%),
    var(--surface);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav) + 1rem);
}

.buy-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.buy-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.buy-card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Memes */
.meme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.meme {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.meme:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}

.meme img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.meme:hover img {
  transform: scale(1.04);
}

.meme-f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--line);
}

.meme-f h3 {
  font-size: 0.86rem;
  font-weight: 700;
}

.meme-f p {
  font-size: 0.7rem;
  color: var(--faint);
}

.meme-note {
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface-2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.meme-note h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.meme-note p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  padding: 1.5rem;
  background:
    radial-gradient(600px 240px at 0% 50%, var(--glow), transparent 60%),
    var(--surface);
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.55rem;
}

.cta-band p {
  color: var(--muted);
  max-width: 40ch;
  margin-bottom: 1.15rem;
}

.cta-visual {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 5/4;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq {
  max-width: 680px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.05rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 800;
}

.faq details[open] summary {
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 58ch;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 3rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.footer p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
}

.disclaimer {
  font-size: 0.74rem;
  color: var(--faint);
  max-width: 72ch;
  line-height: 1.55;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

/* Mobile dock */
.dock {
  display: none;
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 45;
  gap: 0.5rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: var(--dock-bg);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.dock .btn {
  flex: 1;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(150%);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  z-index: var(--z-toast);
  transition: transform 0.3s var(--ease);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

.d1 {
  transition-delay: 0.05s;
}
.d2 {
  transition-delay: 0.1s;
}
.d3 {
  transition-delay: 0.15s;
}

/* Responsive */
@media (max-width: 1024px) {
  .meme-grid {
    grid-template-columns: 1fr 1fr;
  }

  .meme-note {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 0 2.5rem;
  }

  .hero-stage {
    justify-self: center;
    width: min(100%, 380px);
  }

  .trust {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .buy,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-visual {
    min-height: 260px;
  }

  .buy-card {
    position: static;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links > a:not(.btn) {
    display: none;
  }

  .nav-tools {
    gap: 0.35rem;
  }

  /* Keep theme + Buy in sticky nav; Chart lives in dock / page */
  .nav-tools .btn-secondary {
    display: none;
  }

  .dock {
    display: flex;
  }

  .page {
    padding-bottom: 5.5rem;
  }

  .toast {
    bottom: 5.5rem;
  }
}

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

  .meme-note {
    grid-column: auto;
  }

  .trust {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .strip-track {
    animation: none;
  }

  .hero-kicker i {
    animation: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav {
    background: var(--bg);
    backdrop-filter: none;
  }
}

/* ========== Blog ========== */
.blog-hero {
  padding: 3.5rem 0 2rem;
  max-width: 42rem;
}

.blog-hero .kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.85rem;
}

.blog-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.blog-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48ch;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-bottom: 4rem;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  padding: 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.blog-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}

.blog-card .tag {
  color: var(--accent);
  font-weight: 700;
}

.blog-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.blog-card .more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.25rem;
}

/* Article layout */
.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.article-header {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.article-header .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1rem;
}

.article-header .meta a {
  color: var(--accent);
  text-decoration: none;
}

.article-header h1 {
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.article-header .lede {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 52ch;
}

.article-body {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
}

.article-body > * + * {
  margin-top: 1.15rem;
}

.article-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 2.4rem;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.article-body h3 {
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-top: 1.75rem;
  margin-bottom: 0.45rem;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body strong {
  color: var(--text);
  font-weight: 700;
}

.article-body a {
  color: var(--accent);
  font-weight: 600;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: 0.4rem;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.35rem 0 0.35rem 1.1rem;
  margin: 1.5rem 0;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.article-body .callout {
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background:
    linear-gradient(160deg, var(--glow), transparent 55%),
    var(--surface);
  padding: 1.15rem 1.25rem;
  margin: 1.75rem 0;
}

.article-body .callout p {
  color: var(--muted);
  margin: 0;
}

.article-body .callout p + p {
  margin-top: 0.65rem;
}

.article-body .callout strong {
  color: var(--accent);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1.25rem 0;
}

.article-body th,
.article-body td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
}

.article-body th {
  background: var(--surface-2);
  color: var(--text);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-body td {
  color: var(--muted);
  background: var(--surface);
}

.article-body code {
  font-family: var(--mono);
  font-size: 0.86em;
  background: var(--surface-2);
  padding: 0.12em 0.35em;
  border-radius: 5px;
  word-break: break-all;
}

.article-body .faq-block details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}

.article-body .faq-block summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}

.article-body .faq-block summary::-webkit-details-marker {
  display: none;
}

.article-body .faq-block details[open] summary {
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.related h2 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.related-list {
  display: grid;
  gap: 0.65rem;
}

.related-list a {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.related-list a:hover {
  border-color: var(--line-2);
  text-decoration: none;
}

.related-list a span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--faint);
  margin-top: 0.25rem;
}

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