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

:root {
  --void: #05060a;
  --coal: #0c0e14;
  --ash: #141821;
  --ember: #ffb020;
  --flame: #ffd44a;
  --gold: #ffe566;
  --hi-vis: #ffe14a;
  --hi-vis-deep: #f0c429;
  --ink: #f6f0e6;
  --ink-soft: #c8bba8;
  --white: #fff8ec;
  --neon: #5dff9a;
  --city-purple: #8b5cff;
  --font-display: "Bungee", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 16px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  --glow: 0 0 28px rgba(255, 212, 74, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 212, 74, 0.16), transparent 42%),
    radial-gradient(ellipse at 12% 28%, rgba(139, 92, 255, 0.1), transparent 38%),
    radial-gradient(ellipse at 50% 100%, rgba(93, 255, 154, 0.07), transparent 45%),
    linear-gradient(180deg, #07080d 0%, #0e1018 45%, #05060a 100%);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

.ember-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 212, 74, 0.08), transparent 28%),
    radial-gradient(circle at 85% 60%, rgba(139, 92, 255, 0.06), transparent 30%);
  opacity: 0.9;
}

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

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 10px var(--ember), 0 0 18px rgba(255, 196, 40, 0.6);
  opacity: 0.55;
  animation: riseSpark 12s linear infinite;
}

.spark-1 { left: 12%; bottom: -5%; animation-delay: 0s; }
.spark-2 { left: 32%; bottom: -5%; animation-delay: -2.5s; width: 3px; height: 3px; }
.spark-3 { left: 55%; bottom: -5%; animation-delay: -5s; }
.spark-4 { left: 72%; bottom: -5%; animation-delay: -7.5s; width: 5px; height: 5px; }
.spark-5 { left: 88%; bottom: -5%; animation-delay: -9s; }

@keyframes riseSpark {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.7; }
  100% { transform: translateY(-110vh) scale(0.4); opacity: 0; }
}

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

.accent { color: var(--hi-vis); }
.center { text-align: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 6, 5, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 140, 42, 0.18);
}

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

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

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ember);
  box-shadow: var(--glow);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

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

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.2s;
}

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

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

.nav-social {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--hi-vis-deep));
  color: var(--void) !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-social:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--hi-vis);
  border-radius: 2px;
}

/* Hero — full-bleed artwork */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-media picture,
.hero-full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media { z-index: 0; }

.hero-full-img {
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(5, 6, 10, 0.42) 0%,
      rgba(5, 6, 10, 0.08) 28%,
      rgba(5, 6, 10, 0.18) 55%,
      rgba(5, 6, 10, 0.88) 82%,
      rgba(5, 6, 10, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: 7.5rem 0 3.25rem;
  text-align: center;
  color: var(--white);
  animation: riseIn 0.9s ease-out both;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(7, 6, 5, 0.72);
  border: 1px solid rgba(255, 225, 74, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hi-vis);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hi-vis);
  box-shadow: 0 0 10px var(--hi-vis);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--hi-vis);
  margin-bottom: 0.85rem;
  letter-spacing: 0.12em;
  text-shadow: 0 0 24px rgba(255, 225, 74, 0.45);
}

.hero-bio {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 500;
  max-width: 36em;
  margin: 0 auto 1.6rem;
  color: rgba(246, 240, 230, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--hi-vis), var(--flame));
  color: var(--void);
  border-color: rgba(255, 248, 236, 0.25);
  box-shadow: 0 8px 28px rgba(255, 106, 26, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(255, 140, 42, 0.55);
}

.btn-ghost {
  background: rgba(255, 248, 236, 0.06);
  color: var(--white);
  border-color: rgba(255, 225, 74, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 140, 42, 0.15);
  border-color: rgba(255, 225, 74, 0.55);
}

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

.btn-copy {
  background: linear-gradient(135deg, var(--ember), var(--hi-vis-deep));
  color: var(--void);
  border-color: transparent;
  flex-shrink: 0;
}

.btn-copy.copied {
  background: var(--hi-vis);
}

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

/* Marquee */
.marquee {
  overflow: hidden;
  background: #0c0a08;
  color: var(--hi-vis);
  padding: 0.85rem 0;
  border-block: 2px solid rgba(255, 106, 26, 0.55);
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  animation: marquee 28s linear infinite;
}

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

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

.section-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--flame);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 38em;
}

.section-text.center,
.viral-lead {
  margin-inline: auto;
}

.section-text strong { color: var(--hi-vis); }

.story-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 800;
  color: var(--hi-vis);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 106, 26, 0.55);
  transition: color 0.2s;
}

.story-link:hover { color: var(--flame); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #05060a;
  border-radius: 28px;
  border: 2px solid rgba(255, 212, 74, 0.45);
  box-shadow: var(--shadow), var(--glow);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: var(--shadow), 0 0 28px rgba(255, 106, 26, 0.3); }
  50% { box-shadow: var(--shadow), 0 0 48px rgba(255, 140, 42, 0.55); }
}

/* Viral / embeds */
.viral {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 212, 74, 0.1), transparent 55%),
    transparent;
}

.embed-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 1.5rem;
  margin: 1.75rem auto 0;
  align-items: start;
}

.embed-card {
  background:
    linear-gradient(180deg, rgba(20, 24, 33, 0.96), rgba(12, 14, 20, 0.98));
  border: 1px solid rgba(255, 212, 74, 0.28);
  border-radius: 20px;
  box-shadow: var(--shadow), inset 0 0 40px rgba(255, 212, 74, 0.04);
  overflow: hidden;
  min-width: 0;
}

.embed-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(255, 212, 74, 0.16);
}

.embed-card-head a {
  color: var(--hi-vis);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
}

.embed-card-head a:hover { color: var(--flame); }

.embed-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tiktok-pill {
  background: rgba(255, 45, 85, 0.16);
  color: #ff8aa4;
  border: 1px solid rgba(255, 45, 85, 0.35);
}

.x-pill {
  background: rgba(255, 248, 236, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 248, 236, 0.2);
}

.tiktok-embed-wrap,
.tweet-embed-wrap {
  display: flex;
  justify-content: center;
  padding: 0.85rem 0.85rem 1.1rem;
  overflow: hidden;
}

.tiktok-embed-wrap {
  background: #000;
  min-height: 580px;
}

.tweet-embed-wrap {
  min-height: 360px;
}

.tiktok-embed-wrap .tiktok-embed {
  margin: 0 auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.tweet-embed-wrap .twitter-tweet {
  margin: 0 auto !important;
}

.tiktok-embed-wrap iframe,
.tweet-embed-wrap iframe {
  max-width: 100% !important;
}

/* Contract */
.contract {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 196, 40, 0.08), transparent 55%),
    transparent;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 820px;
  margin: 1.5rem auto 0;
  padding: 1rem 1rem 1rem 1.25rem;
  background: rgba(16, 14, 12, 0.9);
  border: 1px solid rgba(255, 140, 42, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ca-address {
  flex: 1;
  font-size: clamp(0.72rem, 2vw, 0.95rem);
  word-break: break-all;
  color: var(--hi-vis);
  font-weight: 700;
}

.copy-toast {
  text-align: center;
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--hi-vis);
  opacity: 0;
  transition: opacity 0.25s;
}

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

/* Chart */
.chart-wrapper {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 140, 42, 0.28);
  box-shadow: var(--shadow);
  background: #050403;
  min-height: 480px;
}

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

.chart-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 2rem;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 600;
}

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--hi-vis);
  text-decoration: none;
}

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

/* Buy steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.step {
  padding: 1.4rem 1.2rem;
  background: rgba(16, 14, 12, 0.72);
  border: 1px solid rgba(255, 140, 42, 0.18);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
  border-color: rgba(255, 225, 74, 0.4);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ember);
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

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

.buy .btn-ghost {
  background: rgba(255, 140, 42, 0.08);
  color: var(--hi-vis);
  border-color: rgba(255, 140, 42, 0.35);
}

.buy .btn-ghost:hover {
  background: rgba(255, 140, 42, 0.18);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 2rem;
  background: #050403;
  color: var(--ink-soft);
  border-top: 1px solid rgba(255, 140, 42, 0.22);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  text-align: center;
}

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

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ember);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--white);
}

.footer-brand span {
  font-size: 0.85rem;
  opacity: 0.8;
  color: var(--hi-vis);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--flame);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover { color: var(--hi-vis); }

.footer-disclaimer {
  max-width: 42em;
  font-size: 0.82rem;
  opacity: 0.65;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .section-text { margin-inline: auto; }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .embed-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 6, 5, 0.97);
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(255, 140, 42, 0.18);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

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

  .nav-links li { border-top: 1px solid rgba(255, 140, 42, 0.08); }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
  }

  .nav-socials {
    justify-content: center;
    padding: 0.75rem;
    margin: 0;
  }

  .nav-toggle { display: flex; }

  .hero {
    min-height: 100svh;
  }

  .hero-full-img {
    object-position: center 36%;
  }

  .hero-content {
    padding: 5.5rem 0 2.4rem;
  }

  .hero-badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

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

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

  .dexscreener-embed,
  .chart-wrapper { min-height: 420px; height: 420px; }

  .dexscreener-embed { height: 420px; }

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

  .tiktok-embed-wrap,
  .tweet-embed-wrap {
    padding: 0.65rem 0.35rem 0.85rem;
    min-height: 420px;
  }
}
