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

:root {
  --void: #050810;
  --iron: #0a1220;
  --steel: #101828;
  --plate: #162033;
  --edge: #2c3a52;
  --silver: #d8dce6;
  --ash: #8a93a4;
  --ash-dim: #4a5568;
  --violet: #b8962e;
  --violet-hot: #e8c547;
  --violet-deep: #6e5214;
  --lightning: #f3e4a8;
  --gold: #d4af37;
  --red: #c41e3a;
  --blue-streak: #1e6bb8;
  --black: var(--void);
  --black-card: var(--iron);
  --black-elevated: var(--plate);
  --white: #ececf0;
  --gray: var(--ash);
  --gray-dim: var(--ash-dim);
  --purple: var(--violet);
  --purple-bright: var(--violet-hot);
  --green: var(--violet-hot);
  --pump-green: #3f8f6a;
  --font-display: "Cinzel", serif;
  --font-mono: "Share Tech Mono", monospace;
  --font-body: "Barlow", system-ui, sans-serif;
  --cut: 12px;
  --glow-violet: 0 0 36px rgba(212, 175, 55, 0.28);
}

html {
  scroll-behavior: smooth;
}

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

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 30, 58, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 70% 20%, black 10%, transparent 70%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.07;
  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");
}

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

.deco {
  position: absolute;
  font-family: var(--font-display);
  opacity: 0.06;
  letter-spacing: 0.04em;
}

.deco-1 { top: 18%; left: 4%; color: var(--silver); font-size: 3rem; }
.deco-2 { top: 32%; right: 6%; color: var(--violet-hot); font-size: 1.2rem; }
.deco-3 { top: 58%; left: 2%; color: var(--violet); font-size: 2.4rem; }
.deco-4 { top: 72%; right: 5%; color: var(--silver); font-size: 1.1rem; }
.deco-5 { top: 88%; left: 8%; color: var(--lightning); font-size: 1.8rem; }
.deco-6 { top: 44%; right: 3%; color: var(--violet-deep); font-size: 1.3rem; }

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

.gold { color: var(--violet-hot); }
.center { text-align: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(3, 3, 4, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--edge);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
  opacity: 0.55;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, 92vw);
  margin: 0 auto;
  padding: 0.7rem 0;
}

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

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center 18%;
  background: #000;
  border: 1px solid var(--gold);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--silver);
  letter-spacing: 0.1em;
}

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

.nav-links a {
  color: var(--ash);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: color 0.2s;
}

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

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border: 1px solid var(--edge);
  color: var(--silver) !important;
  background: var(--steel);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-social:hover {
  border-color: var(--violet-hot);
  color: var(--lightning) !important;
  background: var(--violet-deep);
}

.nav-tg:hover {
  border-color: #2aabee;
  color: #2aabee !important;
  background: rgba(42, 171, 238, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.08) saturate(1.08);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 42%, transparent 22%, rgba(5, 8, 16, 0.5) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 8, 16, 0.28) 0%, rgba(5, 8, 16, 0.04) 24%, rgba(5, 8, 16, 0.18) 52%, rgba(5, 8, 16, 0.94) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: none;
  padding: 8rem 1.25rem 3.25rem;
  background: linear-gradient(to top, rgba(5, 8, 16, 0.92) 0%, rgba(5, 8, 16, 0.4) 55%, transparent 100%);
}

.hero-badges {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.badge {
  display: inline-block;
  padding: 0.32rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.badge-pump {
  background: rgba(63, 143, 106, 0.12);
  border: 1px solid rgba(63, 143, 106, 0.55);
  color: #7dcca4;
}

.badge-sol {
  background: rgba(122, 47, 208, 0.18);
  border: 1px solid var(--violet);
  color: var(--lightning);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  color: var(--lightning);
  margin-bottom: 0.4rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 10vw, 5.8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}

.title-metal {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.38em;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-shadow:
    0 0 22px rgba(232, 197, 71, 0.55),
    0 0 48px rgba(196, 30, 58, 0.28),
    0 2px 0 #2a1c08;
}

.title-metal::before,
.title-metal::after {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 10px rgba(196, 30, 58, 0.85);
}

.title-white {
  color: #f4f6fb;
  text-shadow:
    0 0 18px rgba(30, 107, 184, 0.35),
    0 3px 0 rgba(0, 0, 0, 0.7);
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  color: var(--gold);
  letter-spacing: 0.22em;
  margin: 0.35rem 0 0.85rem;
  text-shadow: 0 0 18px rgba(232, 197, 71, 0.5);
}

.hero-tagline {
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(232, 232, 240, 0.78);
  margin: 0 auto 1.75rem;
  max-width: 460px;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  border: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
}

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

.btn-pump {
  background: linear-gradient(180deg, #e8c547 0%, #9a7420 100%);
  color: #1a1408;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 28px rgba(196, 30, 58, 0.28);
}

.btn-pump:hover {
  box-shadow: 0 10px 36px rgba(232, 197, 71, 0.45);
}

.btn-secondary {
  background: linear-gradient(180deg, #1c1c22, #0e0e12);
  color: var(--silver);
  border: 1px solid var(--edge);
}

.btn-secondary:hover {
  border-color: var(--violet);
  color: var(--lightning);
}

.btn-lg {
  padding: 1.05rem 2.15rem;
  font-size: 0.95rem;
}

.btn-copy {
  background: linear-gradient(180deg, #e8c547 0%, #9a7420 100%);
  color: #1a1408;
  padding: 0.7rem 1.2rem;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.btn-copy.copied {
  background: var(--plate);
  color: var(--lightning);
}

/* ── Marquee ── */
.marquee {
  background: var(--iron);
  color: var(--gold);
  padding: 0.7rem 0;
  overflow: hidden;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--violet-deep);
}

.marquee-track {
  display: flex;
  gap: 2.2rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.22em;
}

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

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

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--violet-hot);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.4vw, 4.1rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.03em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

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

.section-text {
  color: rgba(232, 232, 240, 0.78);
  margin-bottom: 1rem;
  font-size: 1.08rem;
  font-weight: 500;
}

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

.inline-link {
  color: var(--violet-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--lightning);
}

/* ── About ── */
.about {
  background:
    linear-gradient(180deg, var(--void) 0%, var(--iron) 100%);
}

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

.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--edge);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.about-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.08);
}

.about-glow {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(196, 30, 58, 0.12) 38%, transparent 68%);
  z-index: 0;
}

.about-copy {
  max-width: 560px;
}

.meme-stats {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-top: 2.1rem;
}

.meme-stats li {
  text-align: left;
  min-width: 78px;
  padding: 0.85rem 0 0;
  border-top: 2px solid var(--violet);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--silver);
  line-height: 1;
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ash);
  font-weight: 600;
}

/* ── Origin ── */
.origin {
  background: var(--iron);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

.origin-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.1rem 1.8rem;
  background: var(--steel);
  border: 1px solid var(--edge);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.origin-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lightning);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.origin-text {
  color: rgba(232, 232, 240, 0.78);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.origin-text:last-child {
  margin-bottom: 0;
}

.origin-text strong {
  color: var(--lightning);
  font-weight: 700;
}

/* ── The Clip / X embed ── */
.moment {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 30, 58, 0.12) 0%, transparent 48%),
    linear-gradient(180deg, var(--iron) 0%, var(--void) 100%);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

.tweet-stage {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), var(--red), var(--blue-streak), var(--gold));
  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.18),
    0 24px 56px rgba(0, 0, 0, 0.55);
}

.tweet-stage-inner {
  background: #000;
  padding: 1.15rem 1.05rem 0.55rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tweet-stage .twitter-tweet,
.tweet-stage iframe.twitter-tweet,
.tweet-stage twitter-widget {
  margin: 0 auto !important;
}

blockquote.twitter-tweet {
  display: block;
  width: 100%;
  max-width: 550px;
  margin: 0 auto !important;
  padding: 0.35rem 0.4rem 0.85rem;
  color: #e7e9ea;
  background: transparent;
  border: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
}

blockquote.twitter-tweet a {
  color: var(--gold);
  text-decoration: none;
}

blockquote.twitter-tweet a:hover {
  text-decoration: underline;
}

.tweet-fallback {
  display: inline-flex;
  margin: 1rem auto 1.25rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ── Contract ── */
.contract {
  background: var(--void);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.05rem 1.25rem;
  background: var(--steel);
  border: 1px solid var(--edge);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 2.5vw, 1.05rem);
  color: var(--silver);
  word-break: break-all;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.copy-toast {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--lightning);
  min-height: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

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

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

.chart-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--edge);
  background: #000;
  min-height: 500px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.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: var(--ash);
  font-family: var(--font-mono);
}

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

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  color: var(--lightning);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.chart-link:hover {
  color: var(--violet-hot);
}

/* ── Buy ── */
.buy {
  background: linear-gradient(180deg, var(--iron) 0%, var(--void) 100%);
}

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

.step-card {
  background: var(--steel);
  border: 1px solid var(--edge);
  padding: 1.7rem 1.2rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: border-color 0.25s, transform 0.25s;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue-streak));
}

.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: rgba(232, 197, 71, 0.38);
  display: block;
  margin-bottom: 0.45rem;
  letter-spacing: 0.06em;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--silver);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.5;
  font-weight: 500;
}

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

/* ── Footer ── */
.footer {
  background: var(--iron);
  border-top: 1px solid var(--edge);
  padding: 3rem 0 2rem;
}

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

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

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: center 18%;
  background: #000;
  border: 1px solid var(--gold);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  text-transform: uppercase;
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--ash);
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--silver);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--edge);
  background: var(--steel);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: border-color 0.2s, color 0.2s;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-link:hover {
  border-color: var(--violet-hot);
  color: var(--lightning);
}

.footer-pump:hover {
  border-color: var(--pump-green);
  color: #7dcca4;
}

.footer-tg:hover {
  border-color: #2aabee;
  color: #2aabee;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--ash-dim);
  max-width: 600px;
  line-height: 1.65;
}

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

  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(5, 8, 16, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--edge);
    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;
  }

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

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

  .meme-stats {
    justify-content: flex-start;
  }

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

  .tweet-stage-inner {
    padding: 0.85rem 0.55rem 0.25rem;
  }

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

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

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

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

@media (max-width: 480px) {
  .nav-title {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

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

  .hero-title {
    font-size: clamp(2.1rem, 16vw, 3.2rem);
    letter-spacing: 0.04em;
  }
}
