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

:root {
  --gold: #c9a227;
  --gold-bright: #ffd700;
  --gold-light: #f5e6a3;
  --gold-dim: #8b6914;
  --gold-deep: #5c4a0e;
  --black: #030303;
  --black-card: #0c0c0c;
  --black-elevated: #141414;
  --white: #f5f0e6;
  --gray: #8a8275;
  --gray-dim: #4a453c;
  --pump-green: #4ade80;
  --pump-green-dim: #22c55e;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-mono: "Rubik Mono One", monospace;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --glow-gold: 0 0 40px rgba(201, 162, 39, 0.35);
  --glow-gold-strong: 0 0 70px rgba(255, 215, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  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.9' 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-size: 1.5rem;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.deco-1 { top: 12%; left: 4%; animation-delay: 0s; font-size: 2rem; }
.deco-2 { top: 28%; right: 7%; animation-delay: -2s; }
.deco-3 { top: 52%; left: 2%; animation-delay: -4s; font-size: 1.75rem; }
.deco-4 { top: 68%; right: 4%; animation-delay: -1s; color: var(--gold-bright); font-weight: 900; font-size: 2rem; }
.deco-5 { top: 82%; left: 8%; animation-delay: -3s; }
.deco-6 { top: 42%; right: 2%; animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

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

.gold { color: var(--gold-bright); }
.center { text-align: center; }
.center-block { text-align: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(3, 3, 3, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

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

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

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

.nav-title {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
}

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

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

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

.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-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--gold-light) !important;
  background: rgba(201, 162, 39, 0.06);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.nav-social:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright) !important;
  background: rgba(255, 215, 0, 0.12);
}

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

.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(--gold-bright);
  transition: transform 0.3s, opacity 0.3s;
}

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

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

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(3, 3, 3, 0.4) 0%, rgba(3, 3, 3, 0.72) 55%, var(--black) 100%),
    radial-gradient(ellipse at center 35%, rgba(255, 215, 0, 0.14) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-logo {
  width: min(200px, 42vw);
  height: auto;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold-bright);
  box-shadow: var(--glow-gold-strong);
  margin-bottom: 1rem;
  animation: logo-pulse 3s ease-in-out infinite;
}

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

.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-pump {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid var(--pump-green);
  color: var(--pump-green);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.15);
}

.badge-sol {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--gold-bright);
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: var(--glow-gold); }
  50% { box-shadow: var(--glow-gold-strong); }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  font-weight: 900;
}

.title-gold {
  display: block;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-bright) 45%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.35));
  animation: shimmer 4s ease-in-out infinite;
}

.title-white {
  display: block;
  color: var(--white);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

@keyframes shimmer {
  0%, 100% { filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.35)) brightness(1); }
  50% { filter: drop-shadow(0 2px 16px rgba(255, 215, 0, 0.55)) brightness(1.15); }
}

.hero-ticker {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 4.5vw, 2.25rem);
  color: var(--gold-bright);
  letter-spacing: 0.25em;
  margin: 0.5rem 0 1rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(245, 240, 230, 0.72);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-pump {
  background: linear-gradient(135deg, var(--pump-green), var(--pump-green-dim));
  color: var(--black);
  box-shadow: 0 4px 24px rgba(74, 222, 128, 0.3);
}

.btn-pump:hover {
  box-shadow: 0 6px 32px rgba(74, 222, 128, 0.45);
}

.btn-secondary {
  background: rgba(255, 215, 0, 0.06);
  color: var(--gold-light);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(255, 215, 0, 0.12);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}

.btn-copy {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: var(--black);
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.btn-copy.copied {
  background: var(--pump-green);
}

/* ── Marquee ── */
.marquee {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright), var(--gold), var(--gold-deep));
  background-size: 200% 100%;
  animation: gold-shift 6s ease-in-out infinite;
  color: var(--black);
  padding: 0.65rem 0;
  overflow: hidden;
  border-top: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
}

@keyframes gold-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  font-weight: 700;
}

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

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

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.section-text {
  color: rgba(245, 240, 230, 0.78);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.section-text strong {
  color: var(--gold-bright);
}

.inline-link {
  color: #2aabee;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.inline-link:hover {
  color: #5bc8ff;
}

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

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

.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--gold-bright);
  box-shadow: var(--glow-gold-strong);
  transform: rotate(-1.5deg);
  transition: transform 0.4s;
}

.about-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-frame img {
  width: 100%;
  display: block;
}

.about-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, transparent 70%);
  z-index: 0;
}

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

.meme-stats li {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

/* ── Quotes ── */
.quotes {
  background: var(--black-card);
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

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

.quote-card {
  background: var(--black-elevated);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: -0.25rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 215, 0, 0.12);
}

.quote-card p {
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.85);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.quote-card cite {
  font-size: 0.75rem;
  color: var(--gold-dim);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Contract ── */
.contract {
  background: var(--black);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: var(--black-elevated);
  border: 2px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius);
  box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.04), var(--glow-gold);
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 2.5vw, 0.8rem);
  color: var(--gold-bright);
  word-break: break-all;
  line-height: 1.5;
}

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

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

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

.chart-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: var(--glow-gold);
  background: var(--black-elevated);
  min-height: 500px;
}

.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(--gray);
}

.chart-placeholder code {
  color: var(--gold-bright);
  background: var(--black);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

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

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  color: var(--gold-bright);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.chart-link:hover {
  color: var(--gold-light);
}

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

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

.step-card {
  background: var(--black-elevated);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

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

.step-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: rgba(255, 215, 0, 0.2);
  display: block;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

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

/* ── Footer ── */
.footer {
  background: var(--black-card);
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  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: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.2);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}

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

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

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-size: 0.85rem;
}

.footer-link:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(255, 215, 0, 0.06);
}

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

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

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--gray-dim);
  max-width: 640px;
  line-height: 1.6;
}

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

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

  .about-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .meme-stats {
    justify-content: center;
  }

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

  .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: 2.5rem;
  }
}
