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

:root {
  --void: #030304;
  --iron: #0a0a0c;
  --steel: #121214;
  --plate: #1a1a1e;
  --edge: #2c2c34;
  --silver: #d8d8de;
  --ash: #8a8a94;
  --ash-dim: #4a4a52;
  --violet: #7a2fd0;
  --violet-hot: #b44dff;
  --violet-deep: #3b1468;
  --lightning: #d4b3ff;
  --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: "Anton", sans-serif;
  --font-mono: "Share Tech Mono", monospace;
  --font-body: "Barlow", system-ui, sans-serif;
  --cut: 12px;
  --glow-violet: 0 0 36px rgba(180, 77, 255, 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(180, 77, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 77, 255, 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(--violet-hot), 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;
  background: #000;
  border: 1px solid var(--edge);
  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.35rem;
  color: var(--silver);
  letter-spacing: 0.14em;
}

.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 32%;
  filter: contrast(1.06) saturate(1.05);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 38%, transparent 28%, rgba(3, 3, 4, 0.55) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(3, 3, 4, 0.42) 0%, rgba(3, 3, 4, 0.08) 22%, rgba(3, 3, 4, 0.12) 48%, rgba(3, 3, 4, 0.92) 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(3, 3, 4, 0.82) 0%, rgba(3, 3, 4, 0.35) 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 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 9.2vw, 5.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.title-metal {
  color: var(--silver);
  text-shadow:
    0 0 22px rgba(180, 77, 255, 0.55),
    0 0 48px rgba(122, 47, 208, 0.35),
    0 3px 0 #1a1028;
}

.title-white {
  color: #f3f3f6;
  text-shadow: 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(--violet-hot);
  letter-spacing: 0.32em;
  margin: 0.35rem 0 0.85rem;
  text-shadow: 0 0 18px rgba(180, 77, 255, 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, #9a3ef0 0%, #5a1aa0 100%);
  color: #f6f2ff;
  border: 1px solid var(--violet-hot);
  box-shadow: 0 8px 28px rgba(90, 26, 160, 0.45);
}

.btn-pump:hover {
  box-shadow: 0 10px 36px rgba(180, 77, 255, 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, #9a3ef0 0%, #5a1aa0 100%);
  color: #f6f2ff;
  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(--silver);
  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;
  filter: contrast(1.08);
}

.about-glow {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, rgba(122, 47, 208, 0.28) 0%, 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 tweet ── */
.origin {
  background: var(--iron);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

.x-embed {
  max-width: 568px;
  margin: 0 auto;
  padding: 1px;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.x-thread {
  display: block;
  text-decoration: none;
  color: #e7e9ea;
  background: #050506;
  padding: 0.95rem 1.05rem 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
}

.x-thread:hover {
  background: #0a0a0c;
}

.x-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.x-logo {
  color: #e7e9ea;
}

.x-open {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lightning);
}

.x-status {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.75rem;
}

.x-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.x-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  background: #202327;
  flex-shrink: 0;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.x-rail {
  flex: 1;
  width: 2px;
  min-height: 12px;
  margin: 4px 0 0;
  background: var(--edge);
}

.x-user {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.28rem;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.x-name {
  font-weight: 700;
  color: #e7e9ea;
}

.x-badge {
  display: block;
  flex-shrink: 0;
}

.x-handle,
.x-sep,
.x-user time {
  color: #71767b;
  font-weight: 400;
}

.x-text {
  font-size: 0.95rem;
  line-height: 1.35;
  color: #e7e9ea;
  margin-bottom: 0.7rem;
}

.x-text-z {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.15rem 0 0.85rem;
}

.x-stamp {
  color: #71767b;
  font-size: 0.92rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--edge);
}

.x-stamp strong {
  color: #e7e9ea;
  font-weight: 700;
}

.x-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  list-style: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--edge);
  color: #71767b;
  font-size: 0.88rem;
}

.x-stats strong {
  color: #e7e9ea;
  font-weight: 700;
  margin-right: 0.2rem;
}

.x-actions {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0.4rem 0.15rem 0;
  color: #71767b;
  font-size: 0.8rem;
}

.x-actions span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.x-status-end {
  margin-top: 0;
}

/* ── 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(--violet-deep), var(--violet-hot));
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: rgba(180, 77, 255, 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;
  background: #000;
  border: 1px solid var(--edge);
  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(3, 3, 4, 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;
  }

  .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) {
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(1.55rem, 8.4vw, 2.4rem);
    letter-spacing: 0.04em;
  }

  .x-thread {
    padding: 0.75rem 0.8rem 0.55rem;
  }

  .x-text-z {
    font-size: 1.55rem;
  }
}
