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

:root {
  --void: #070605;
  --coal: #100e0c;
  --ash: #1a1612;
  --ember: #ff6a1a;
  --flame: #ff8c2a;
  --gold: #ffc857;
  --hi-vis: #ffe14a;
  --hi-vis-deep: #f0b429;
  --ink: #f6f0e6;
  --ink-soft: #c8bba8;
  --white: #fff8ec;
  --font-display: "Bebas Neue", 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, 106, 26, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 106, 26, 0.18), transparent 42%),
    radial-gradient(ellipse at 10% 30%, rgba(255, 196, 40, 0.08), transparent 38%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 80, 10, 0.1), transparent 45%),
    linear-gradient(180deg, #0a0806 0%, #120e0a 45%, #080605 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, 140, 42, 0.08), transparent 28%),
    radial-gradient(circle at 85% 60%, rgba(255, 80, 10, 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.7rem;
  letter-spacing: 0.08em;
  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 — framed banner showcase */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: 7rem 0 4rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: -12%;
  z-index: -2;
}

.hero-ambient-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(56px) saturate(1.25) brightness(0.5);
  transform: scale(1.1);
}

.hero-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(7, 6, 5, 0.35), rgba(7, 6, 5, 0.88) 75%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.7) 0%, rgba(7, 6, 5, 0.4) 45%, rgba(7, 6, 5, 0.95) 100%);
}

.hero-content {
  width: min(1040px, 92vw);
  margin: 0 auto;
  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); }
}

.hero-showcase {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #050403;
  border: 1px solid rgba(255, 140, 42, 0.38);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 70px rgba(255, 106, 26, 0.22),
    inset 0 0 0 1px rgba(255, 225, 74, 0.08);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 225, 74, 0.14) 46%, transparent 60%);
  transform: translateX(-120%);
  animation: sheen 6.5s ease-in-out infinite;
}

@keyframes sheen {
  0%, 55% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.hero-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  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-logo {
  position: relative;
  z-index: 2;
  width: min(120px, 26vw);
  height: min(120px, 26vw);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 225, 74, 0.85);
  box-shadow: 0 0 40px rgba(255, 106, 26, 0.55), 0 12px 40px rgba(0, 0, 0, 0.5);
  margin: calc(min(120px, 26vw) / -2.4) 0 1rem;
  animation: floaty 3.4s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55), 0 0 40px rgba(255, 106, 26, 0.35);
  margin-bottom: 0.25rem;
}

.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: 1.25rem;
  letter-spacing: 0.08em;
  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(2.4rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  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: cover;
  border-radius: 28px;
  border: 2px solid rgba(255, 140, 42, 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 / tweet embed */
.viral {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 106, 26, 0.12), transparent 55%),
    transparent;
}

.tweet-embed-wrap {
  margin: 1.75rem auto 0;
  max-width: 560px;
  padding: 1.25rem 1rem 0.5rem;
  background:
    linear-gradient(180deg, rgba(26, 22, 18, 0.95), rgba(16, 14, 12, 0.98));
  border: 1px solid rgba(255, 140, 42, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 0 40px rgba(255, 106, 26, 0.05);
  display: flex;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
}

.tweet-embed-wrap .twitter-tweet {
  margin: 0 auto !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.45rem;
  letter-spacing: 0.04em;
  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: 1.35rem;
  letter-spacing: 0.05em;
  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);
  }
}

@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 {
    padding: 5.5rem 0 3rem;
    min-height: auto;
  }

  .hero-showcase { border-radius: 18px; }

  .hero-badge {
    top: 0.6rem;
    left: 0.6rem;
    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; }

  .tweet-embed-wrap {
    padding: 0.85rem 0.35rem 0.25rem;
    min-height: 280px;
  }
}
