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

:root {
  --navy: #061433;
  --navy-deep: #030b1f;
  --navy-mid: #0a2463;
  --royal: #1240b8;
  --ice: #b8d4ff;
  --ice-hot: #dce9ff;
  --ice-dim: rgba(184, 212, 255, 0.16);
  --snow: #f7fbff;
  --white: #ffffff;
  --muted: #8aa4d4;
  --ink: #061433;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--snow);
  line-height: 1.6;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.045;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.snowfall {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  overflow: hidden;
}

.snowfall span {
  position: absolute;
  top: -12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 6px rgba(184, 212, 255, 0.55);
  animation: snow-fall 14s linear infinite;
}

.snowfall span:nth-child(1)  { left: 4%;  animation-duration: 11s; animation-delay: 0s; }
.snowfall span:nth-child(2)  { left: 12%; animation-duration: 16s; animation-delay: 2s; width: 3px; height: 3px; }
.snowfall span:nth-child(3)  { left: 21%; animation-duration: 13s; animation-delay: 4s; }
.snowfall span:nth-child(4)  { left: 29%; animation-duration: 18s; animation-delay: 1s; width: 4px; height: 4px; }
.snowfall span:nth-child(5)  { left: 38%; animation-duration: 12s; animation-delay: 6s; }
.snowfall span:nth-child(6)  { left: 47%; animation-duration: 15s; animation-delay: 3s; width: 3px; height: 3px; }
.snowfall span:nth-child(7)  { left: 56%; animation-duration: 17s; animation-delay: 5s; }
.snowfall span:nth-child(8)  { left: 64%; animation-duration: 11s; animation-delay: 1.5s; width: 6px; height: 6px; }
.snowfall span:nth-child(9)  { left: 72%; animation-duration: 14s; animation-delay: 7s; }
.snowfall span:nth-child(10) { left: 79%; animation-duration: 19s; animation-delay: 0.8s; width: 3px; height: 3px; }
.snowfall span:nth-child(11) { left: 86%; animation-duration: 13s; animation-delay: 4.5s; }
.snowfall span:nth-child(12) { left: 91%; animation-duration: 16s; animation-delay: 2.4s; }
.snowfall span:nth-child(13) { left: 8%;  animation-duration: 20s; animation-delay: 8s; width: 4px; height: 4px; }
.snowfall span:nth-child(14) { left: 53%; animation-duration: 12s; animation-delay: 9s; }
.snowfall span:nth-child(15) { left: 97%; animation-duration: 15s; animation-delay: 3.6s; width: 3px; height: 3px; }

@keyframes snow-fall {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.85; }
  100% { transform: translateY(110vh) translateX(28px); opacity: 0; }
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, 92vw);
}

.ice-text {
  color: var(--ice);
}

.center {
  text-align: center;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(3, 11, 31, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 212, 255, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 92vw);
  margin: 0 auto;
  height: 100%;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.nav-mark {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(184, 212, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(18, 64, 184, 0.25);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--white);
  font-weight: 600;
  text-transform: lowercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 9px 4px;
  border-radius: 99px;
}

.live-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
}

.live-pill.stale {
  color: rgba(255, 255, 255, 0.55);
}

.rpcnote {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  margin: 0;
  padding: 8px 4vw;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(184, 212, 255, 0.7);
  background: rgba(3, 11, 31, 0.82);
  backdrop-filter: blur(10px);
  text-align: center;
}

.rpcnote.bad {
  color: #ffd0d0;
  background: rgba(180, 40, 50, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: rgba(247, 251, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ice);
}

.nav-socials {
  display: flex;
  gap: 0.45rem;
}

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(184, 212, 255, 0.28);
  color: var(--snow) !important;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.nav-social:hover {
  border-color: var(--ice);
  color: var(--ice) !important;
  transform: translateY(-2px);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 1.15rem !important;
  background: var(--white);
  color: var(--navy) !important;
  border-radius: 999px;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--ice-hot) !important;
  color: var(--navy) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(184, 212, 255, 0.28);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ice);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3.2rem) 0 4.5rem;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: hero-drift 28s var(--ease-out) infinite alternate;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(3, 11, 31, 0.78) 0%,
      rgba(3, 11, 31, 0.42) 38%,
      rgba(3, 11, 31, 0.08) 68%,
      rgba(3, 11, 31, 0.28) 100%
    ),
    linear-gradient(to top, rgba(3, 11, 31, 0.88) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin: 0 auto;
  max-width: 640px;
  margin-left: max(4vw, calc((100vw - 1120px) / 2));
  animation: rise-in 1s var(--ease-out) both;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1rem;
}

.hero-title {
  margin-bottom: 1.15rem;
}

.hero-line,
.hero-script {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: lowercase;
  color: var(--white);
}

.hero-line {
  font-size: clamp(3.1rem, 8vw, 5.4rem);
}

.hero-script {
  font-size: clamp(3.1rem, 8vw, 5.4rem);
  font-style: italic;
  color: var(--ice);
}

.hero-lede {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(247, 251, 255, 0.78);
  max-width: 30rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s;
}

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

.btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 0 0 0 rgba(184, 212, 255, 0.4);
}

.btn-primary:hover {
  background: var(--ice-hot);
  box-shadow: 0 12px 32px rgba(184, 212, 255, 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--snow);
  border: 1.5px solid rgba(184, 212, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--ice);
  color: var(--ice);
}

.buy .btn-ghost {
  color: var(--navy);
  border-color: rgba(6, 20, 51, 0.28);
}

.buy .btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(6, 20, 51, 0.05);
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}

.btn-copy {
  flex-shrink: 0;
  padding: 0.7rem 1.2rem;
  font-size: 0.88rem;
}

.btn-copy.copied {
  background: var(--navy);
  color: var(--ice);
}

/* ── Ticker ── */
.ticker {
  background: var(--white);
  color: var(--navy);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 32s linear infinite;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ticker-sep {
  opacity: 0.35;
  font-style: normal;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 1.35rem;
  color: var(--white);
}

.section-text {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 1rem;
  max-width: 36rem;
}

.section-text strong {
  color: var(--ice);
  font-weight: 700;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.hill-divider {
  display: block;
  width: 100%;
  height: 72px;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--snow) 0 54%, transparent 55%),
    var(--navy-deep);
}

/* ── About ── */
.about {
  background:
    radial-gradient(ellipse at 12% 20%, rgba(18, 64, 184, 0.28), transparent 42%),
    var(--navy);
  color: var(--snow);
}

.about .section-title {
  color: var(--white);
}

.about .eyebrow {
  color: rgba(184, 212, 255, 0.55);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-portrait {
  position: relative;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 10% -6% -8% 10%;
  background: radial-gradient(circle, var(--royal), var(--navy-mid));
  border-radius: 50%;
  z-index: 0;
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(184, 212, 255, 0.35);
  box-shadow: 0 24px 60px rgba(3, 11, 31, 0.45);
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin-top: 2rem;
}

.value-row li {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
}

/* ── The Roll ── */
.quote-section {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(18, 64, 184, 0.22), transparent 46%),
    var(--navy-deep);
  color: var(--snow);
}

.quote-section .section-title {
  color: var(--white);
}

.quote-section .eyebrow {
  color: rgba(184, 212, 255, 0.55);
}

.quote-intro {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pillar {
  padding: 1.85rem 1.4rem;
  background: rgba(10, 36, 99, 0.45);
  border: 1px solid rgba(184, 212, 255, 0.18);
  border-radius: 28px;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 212, 255, 0.45);
}

.pillar-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--ice);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.95rem;
  color: rgba(184, 212, 255, 0.7);
  line-height: 1.55;
}

/* ── Contract ── */
.contract {
  background: var(--snow);
  color: var(--navy);
}

.contract .section-title {
  color: var(--navy);
}

.contract .eyebrow {
  color: rgba(6, 20, 51, 0.45);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 18px;
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.4vw, 0.85rem);
  color: var(--navy);
  word-break: break-all;
  line-height: 1.5;
}

.copy-toast {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  min-height: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-toast.show {
  opacity: 1;
}

/* ── Chart ── */
.chart-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(18, 64, 184, 0.28), transparent 50%),
    #08152e;
  color: var(--snow);
}

.chart-section .section-title {
  color: var(--white);
}

.chart-section .eyebrow {
  color: rgba(184, 212, 255, 0.5);
}

.chart-section .section-sub {
  color: rgba(184, 212, 255, 0.55);
}

.chart-frame {
  border: 2px solid rgba(184, 212, 255, 0.35);
  background: #061018;
  min-height: 500px;
  overflow: hidden;
  border-radius: 18px;
}

.dexscreener-embed {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}

.dexscreener-embed.hidden {
  display: none;
}

.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 2rem;
  text-align: center;
  color: rgba(184, 212, 255, 0.6);
}

.chart-placeholder code {
  color: var(--ice);
  background: var(--ice-dim);
  padding: 0.15rem 0.45rem;
}

.chart-placeholder.hidden {
  display: none;
}

.chart-link-wrap {
  text-align: center;
  margin-top: 1.25rem;
}

.text-link {
  color: var(--ice);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Buy ── */
.buy {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184, 212, 255, 0.55), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(18, 64, 184, 0.12), transparent 45%),
    var(--snow);
  color: var(--navy);
}

.buy .eyebrow {
  color: rgba(6, 20, 51, 0.5);
}

.buy .section-title {
  color: var(--navy);
}

.buy .ice-text {
  color: var(--royal);
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 3rem;
}

.step {
  background: var(--navy);
  color: var(--snow);
  padding: 1.85rem 1.4rem;
  border-radius: 28px;
  transition: transform 0.25s var(--ease-out);
}

.step:hover {
  transform: translateY(-6px);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  letter-spacing: 0.04em;
  color: var(--ice);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: rgba(184, 212, 255, 0.7);
  line-height: 1.55;
}

.buy-cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--navy-deep);
  color: rgba(184, 212, 255, 0.55);
  padding: 3.25rem 0 2.25rem;
  border-top: 2px solid rgba(184, 212, 255, 0.2);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(184, 212, 255, 0.45);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
  text-transform: lowercase;
  font-weight: 600;
}

.footer-brand span {
  font-size: 0.85rem;
  color: rgba(184, 212, 255, 0.5);
}

.footer-disclaimer {
  font-size: 0.75rem;
  max-width: 540px;
  line-height: 1.65;
}

/* ── Live stats / pad ── */
.stats-section {
  background: var(--navy-deep);
  padding-top: 4.5rem;
}

.stats4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stat-card {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 20px 48px -28px rgba(7, 40, 112, 0.45);
}

.stat-card .lbl,
.facts .k,
.tk {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-card .n,
.coin-big .n {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--navy);
  margin: 0.35rem 0 0.2rem;
}

.stat-card .s,
.stat-card .v {
  font-size: 0.88rem;
  color: #3a5480;
}

.tape {
  background: #fff;
  color: var(--navy);
  border-radius: 20px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.tape .track {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.92rem;
  color: #3a5480;
}

.tape .quiet { opacity: 0.55; font-style: italic; }

.coin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.coin-id {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.coin-id img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid rgba(184, 212, 255, 0.35);
  object-fit: cover;
}

.coin-id .section-title { margin-bottom: 0; }

.coin-big { text-align: right; }
.coin-big .n { color: var(--ice); }
.coin-big .k {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.coin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 212, 255, 0.16);
  border-radius: 20px;
  padding: 1.25rem;
}

.facts .v { color: var(--snow); word-break: break-all; font-size: 0.92rem; }
.facts a { color: var(--ice); }

.coins-section { background: var(--navy); }

.coin-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin: 1.5rem 0 1.75rem;
}

.find input {
  width: min(320px, 92vw);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 212, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
}

.seg {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.seg button {
  border: 1px solid rgba(184, 212, 255, 0.22);
  background: transparent;
  color: var(--ice);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.seg button[aria-pressed="true"] {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.coins {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.coin-card {
  background: #fff;
  color: var(--navy);
  border-radius: 20px;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  display: block;
  transition: transform 0.25s var(--ease-out);
}

.coin-card:hover { transform: translateY(-5px); }

.coin-card .h {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.coin-card img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #d9e7f6;
}

.coin-card .nm b { display: block; font-size: 1.05rem; }
.coin-card .nm span { font-size: 0.78rem; color: #3a5480; }

.st {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #e8f1fb;
  color: #1240b8;
  white-space: nowrap;
}

.st.pool { background: #d9f5e6; color: #0d7a45; }

.coin-card .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.coin-card .k {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7189a9;
}

.coin-card .v { font-weight: 700; font-size: 0.92rem; }
.coin-card .roll {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: #3a5480;
}

.notice {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 212, 255, 0.18);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  color: var(--ice);
}

.launch-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.launch-fields {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.launch-fields li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(184, 212, 255, 0.12);
  color: rgba(184, 212, 255, 0.75);
  font-size: 0.95rem;
}

.launch-fields strong { color: var(--white); }

.gets {
  background: #fff;
  color: var(--navy);
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
}

.gets .th {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.gets .splitk {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.gets table,
.docs table {
  width: 100%;
  border-collapse: collapse;
}

.gets td,
.docs td {
  vertical-align: top;
  padding: 0.7rem 0.55rem 0.7rem 0;
  border-top: 1px solid #e1eaf4;
  font-size: 0.9rem;
}

.gets td:first-child,
.docs td:first-child {
  width: 34%;
  font-weight: 700;
  color: var(--navy);
}

.how-section { background: var(--navy-deep); }

.how-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.5rem 0 2rem;
}

.how-toc a {
  color: var(--ice);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.how-toc a:hover { text-decoration: underline; }

.docs {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.docs h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}

.docs h3:first-child { margin-top: 0; }

.docs p {
  color: #3a5480;
  margin-bottom: 0.85rem;
}

.docs code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  word-break: break-all;
  background: #f2f7fc;
  padding: 0.1rem 0.35rem;
}

.lead-copy { max-width: 46rem; }

.footer-disclaimer a { color: var(--ice); }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .stats4,
  .coin-stats,
  .facts,
  .launch-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-portrait {
    max-width: 320px;
    margin: 0 auto;
  }

  .pillars,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-wordmark {
    font-size: 1.05rem;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(3, 11, 31, 0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.15rem;
    border-bottom: 1px solid rgba(184, 212, 255, 0.16);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 3.5rem;
  }

  .hero-veil {
    background:
      linear-gradient(
        to top,
        rgba(3, 11, 31, 0.94) 0%,
        rgba(3, 11, 31, 0.58) 48%,
        rgba(3, 11, 31, 0.28) 100%
      );
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-banner {
    object-position: 72% center;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy {
    justify-content: center;
  }

  .dexscreener-embed {
    height: 460px;
  }
}

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

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner,
  .ticker-track,
  .snowfall span {
    animation: none;
  }

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