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

:root {
  --void: #0a0a0a;
  --space: #111111;
  --panel: #161208;
  --white: #f7f4ea;
  --dim: #a89f88;
  --line: rgba(243, 186, 47, 0.14);
  --line-strong: rgba(243, 186, 47, 0.35);
  --flame: #f3ba2f;
  --flame-hot: #fcd535;
  --mars: #e5a91a;
  --earth: #ffe08a;
  --boot: #f3ba2f;
  --silver: #d9d0b8;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: Sora, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --font-hand: Caveat, "Segoe Script", cursive;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 68px;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

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

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

.accent {
  color: var(--flame);
}

.center {
  text-align: center;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s, backdrop-filter 0.35s;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

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

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

.nav-mark {
  width: 38px;
  height: 38px;
  object-fit: cover;
  object-position: center;
  background: var(--flame);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-ticker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--void);
  background: var(--flame);
  border: 1px solid var(--flame);
  padding: 0.22rem 0.45rem;
}

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

.nav-links a {
  color: rgba(247, 244, 234, 0.72);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  color: var(--white) !important;
}

.nav-social:hover {
  border-color: var(--flame);
  color: var(--flame) !important;
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 1.1rem !important;
  background: var(--flame);
  color: var(--void) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s, transform 0.2s !important;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 1.5rem) 0 5.5rem;
  overflow: hidden;
}

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

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

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.12) 28%, rgba(10, 10, 10, 0.72) 68%, #0a0a0a 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.55) 0%, transparent 48%);
}

.hero-limb {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18%;
  height: 42%;
  background: radial-gradient(ellipse at 50% 100%, rgba(243, 186, 47, 0.28), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 186, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 186, 47, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  margin: 0 auto;
  animation: rise-in 1.1s var(--ease-out) both;
}

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

.hero-kicker span {
  color: var(--white);
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.2rem, 12vw, 8.5rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin-bottom: 0.45rem;
  animation: letter-in 0.9s var(--ease-out) both;
  filter: drop-shadow(0 18px 48px rgba(243, 186, 47, 0.28));
}

.title-binance {
  color: var(--flame);
}

.title-pepe {
  color: var(--white);
  text-shadow: 0 0 28px rgba(243, 186, 47, 0.45);
}

.hero-wordmark {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: 0.04em;
  color: var(--flame-hot);
  margin-bottom: 1rem;
}

.hero-lede {
  max-width: 36rem;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: rgba(247, 244, 234, 0.78);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.hero-lede strong {
  color: var(--flame);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 2.2rem;
}

.hero-stats dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.3rem;
}

.hero-stats dd {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.08em;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.4%, -1%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

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

@keyframes letter-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.95rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

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

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--flame);
  color: var(--void);
}

.btn-primary:hover:not(:disabled) {
  background: var(--flame-hot);
  box-shadow: 0 16px 40px rgba(243, 186, 47, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--flame);
  background: rgba(243, 186, 47, 0.08);
}

.btn-lg {
  padding: 1.1rem 2.1rem;
}

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

.btn-copy.copied {
  background: var(--flame-hot);
  color: var(--void);
}

/* ── Ticker ── */
.ticker {
  position: relative;
  z-index: 2;
  background: var(--flame);
  color: var(--void);
  padding: 0.9rem 0;
  overflow: hidden;
}

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

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

.ticker-track img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.ticker-sep {
  opacity: 0.45;
  color: var(--void);
}

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

/* ── Sections ── */
.section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.6rem;
}

.section-head .section-sub {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame);
  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-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.section-text {
  color: rgba(247, 244, 234, 0.68);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 36rem;
}

.section-text strong {
  color: var(--white);
  font-weight: 650;
}

.section-sub {
  color: var(--dim);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 40rem;
}

/* ── About ── */
.about {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(243, 186, 47, 0.12), transparent 42%),
    var(--space);
}

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

.pillar {
  padding: 1.75rem 1.4rem;
  border: 1px solid var(--line);
  border-top: 2px solid var(--flame);
  background: rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--flame);
}

.pillar-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--flame);
  margin-bottom: 0.75rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.pillar p {
  font-size: 0.95rem;
  color: rgba(247, 244, 234, 0.65);
}

.banner-frame {
  margin-top: 0.5rem;
  border: 1px solid var(--line-strong);
  background: #000;
}

.banner-frame img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 48%;
}

.banner-frame figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.hand-script {
  font-family: var(--font-hand);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--flame);
}

/* ── Drawing / mascot ── */
.drawing {
  background:
    radial-gradient(ellipse at 12% 20%, rgba(243, 186, 47, 0.14), transparent 40%),
    var(--space);
}

.drawing-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.drawing-stage {
  position: relative;
  background: var(--flame);
  border: 1px solid var(--line-strong);
  padding: 1.25rem;
}

.drawing-stage img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.drawing-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.55rem;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid var(--line);
  color: var(--flame);
}

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

.value-row li {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 0.95rem;
  background: var(--flame);
  color: var(--void);
}

/* ── Contract / CA ── */
.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--line-strong);
}

.ca-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
  flex-shrink: 0;
}

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

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

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

/* ── Chart ── */
.chart-section {
  background: var(--panel);
}

.chart-section .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.chart-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  min-height: 320px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: rgba(247, 244, 234, 0.6);
  border: 1px dashed var(--line-strong);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(243, 186, 47, 0.12), transparent 55%),
    rgba(0, 0, 0, 0.35);
}

.chart-placeholder img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--flame);
  object-fit: cover;
}

.chart-placeholder p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── Buy ── */
.buy {
  overflow: hidden;
  background: #0d0b05;
}

.buy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.buy-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.28;
  filter: saturate(1.1) blur(2px);
}

.buy .container {
  position: relative;
  z-index: 1;
}

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

.step {
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid var(--line);
  border-top: 2px solid var(--flame);
  padding: 1.85rem 1.4rem;
  backdrop-filter: blur(10px);
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--flame);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--flame);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.step p {
  font-size: 0.95rem;
  color: rgba(247, 244, 234, 0.65);
}

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

.buy-ca {
  max-width: 760px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}

.buy .copy-toast {
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ── Tokenomics ── */
.tokenomics {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(243, 186, 47, 0.14), transparent 42%),
    radial-gradient(ellipse at 10% 100%, rgba(252, 213, 53, 0.06), transparent 45%),
    #0a0906;
}

.center-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.center-head .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.tok-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  align-items: center;
}

.tok-payload {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.tok-ring {
  width: min(280px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, #0a0906 0 58%, transparent 59%),
    conic-gradient(from 210deg, var(--flame) 0 100%);
  box-shadow: 0 0 60px rgba(243, 186, 47, 0.28);
  position: relative;
}

.tok-ring::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(243, 186, 47, 0.18);
}

.tok-ring span {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.2rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--white);
}

.tok-ring small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--flame);
  margin-top: 0.45rem;
}

.tok-payload-copy {
  max-width: 18rem;
  color: var(--dim);
  font-size: 0.95rem;
}

.tok-sheet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.tok-sheet > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.tok-sheet > div:nth-child(2n) {
  border-right: none;
}

.tok-sheet > div:nth-last-child(-n + 2) {
  border-bottom: none;
}

.tok-sheet dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.tok-sheet dd {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  background: var(--void);
  color: rgba(247, 244, 234, 0.55);
  padding: 3.25rem 0 2.25rem;
  border-top: 1px solid var(--line);
}

.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: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.3;
}

.footer-brand span {
  font-size: 0.82rem;
  color: var(--dim);
}

.footer-x {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--flame);
  text-decoration: none;
}

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

.footer-disclaimer {
  font-size: 0.72rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── 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: 980px) {
  .pillars,
  .drawing-layout,
  .tok-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-stats {
    gap: 1.2rem;
  }
}

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

  .nav-wordmark {
    letter-spacing: 0.02em;
    font-size: 1.35rem;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--line);
    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 {
    padding-bottom: 3.2rem;
  }

  .hero-content {
    width: min(1180px, 92vw);
  }

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

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

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

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

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

  .tok-sheet {
    grid-template-columns: 1fr;
  }

  .tok-sheet > div {
    border-right: none;
  }

  .tok-sheet > div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .tok-sheet > div:last-child {
    border-bottom: none;
  }
}

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

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