* { box-sizing: border-box; }

:root {
  --bg-deep: #12001f;
  --bg-mid: #2a0050;
  --purple: #7b2fff;
  --magenta: #ff2fd6;
  --neon: #e8b4ff;
  --text: #f4e8ff;
  --muted: #c9a8e8;
  --glass: rgba(88, 24, 140, 0.35);
  --glass-border: rgba(255, 120, 255, 0.45);
  --btn-radius: 12px;
  --glow: 0 0 24px rgba(255, 47, 214, 0.55), 0 0 48px rgba(123, 47, 255, 0.35);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(180, 60, 255, 0.45), transparent 55%),
    radial-gradient(circle at 15% 60%, rgba(255, 47, 214, 0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(123, 47, 255, 0.22), transparent 42%),
    linear-gradient(165deg, #0a0014 0%, #1a0035 35%, #2d0060 70%, #180028 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  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)' opacity='0.08'/%3E%3C/svg%3E");
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-orb 12s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -8%;
  left: 20%;
  background: rgba(255, 47, 214, 0.35);
}

.orb-2 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  right: -5%;
  background: rgba(123, 47, 255, 0.4);
  animation-delay: -4s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  top: 45%;
  left: -8%;
  background: rgba(180, 100, 255, 0.3);
  animation-delay: -7s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.06); }
}

main { position: relative; z-index: 2; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(18, 0, 31, 0.75), rgba(18, 0, 31, 0.15));
  border-bottom: 1px solid rgba(255, 120, 255, 0.12);
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.14em;
  color: var(--neon);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(255, 47, 214, 0.8), 0 0 40px rgba(123, 47, 255, 0.5);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  border-radius: var(--btn-radius);
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links { display: flex; gap: 0.75rem; }

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  border-radius: var(--btn-radius);
  padding: 0.48rem 0.85rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  background: rgba(120, 40, 180, 0.55);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 5.5rem 1.8rem 3.5rem;
  overflow: hidden;
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: contrast(1.1) saturate(1.25) brightness(0.85);
  transform: scale(1.02);
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 0, 20, 0.9) 0%, rgba(10, 0, 20, 0.35) 28%, transparent 52%),
    linear-gradient(to bottom, transparent 55%, rgba(10, 0, 20, 0.15) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 92vw);
  height: min(180px, 22vh);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 214, 0.3) 0%, rgba(123, 47, 255, 0.12) 50%, transparent 72%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: min(1100px, 96vw);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.hero-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.title-glow {
  color: #fff;
  text-shadow:
    0 0 10px #ff2fd6,
    0 0 24px #ff2fd6,
    0 0 48px rgba(255, 47, 214, 0.7),
    0 0 80px rgba(123, 47, 255, 0.5),
    2px 2px 0 #5a1080,
    4px 4px 0 #3a0060;
}

.hero-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 0.72rem 1.25rem;
  border-radius: var(--btn-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--glass);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -145%;
  width: 120%;
  background: linear-gradient(115deg, transparent 10%, rgba(255, 200, 255, 0.45) 50%, transparent 90%);
  transform: skewX(-22deg);
  transition: left 0.46s ease;
}

.btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.04);
  box-shadow: var(--glow);
  background: rgba(140, 50, 200, 0.55);
  border-color: rgba(255, 180, 255, 0.7);
}

.btn:hover:not(:disabled)::before { left: 140%; }

.btn-icon {
  min-width: 56px;
  padding: 0.9rem 1rem;
}

.x-logo-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.btn-buy { min-width: 150px; }

.buy-icon {
  display: inline-flex;
  align-items: center;
}

.buy-icon svg {
  width: 16px;
  height: 16px;
}

.ca-block {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(40, 10, 70, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--btn-radius);
  padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  max-width: min(96vw, 520px);
  box-shadow: inset 0 0 20px rgba(255, 47, 214, 0.08);
}

#ca-text {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--neon);
  white-space: nowrap;
}

#copy-ca-btn {
  border: 1px solid var(--glass-border);
  background: rgba(255, 47, 214, 0.2);
  color: var(--text);
  border-radius: 10px;
  padding: 0.32rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

#copy-ca-btn:hover {
  background: rgba(255, 47, 214, 0.4);
}

.hero-blend {
  height: 140px;
  margin-top: -140px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  position: relative;
  z-index: 3;
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 120, 255, 0.2);
  border-bottom: 1px solid rgba(255, 120, 255, 0.2);
  background: linear-gradient(90deg, rgba(255, 47, 214, 0.15), rgba(123, 47, 255, 0.2), rgba(255, 47, 214, 0.15));
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 0.65rem 0;
  animation: ticker-scroll 22s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.ticker-group span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--neon);
  text-shadow: 0 0 16px rgba(255, 47, 214, 0.6);
}

.ticker-group i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* Sections */
.section {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 4rem 0;
  position: relative;
  scroll-margin-top: 5.5rem;
}

.section + .section {
  border-top: 1px solid rgba(255, 120, 255, 0.12);
}

.section::before {
  content: "";
  position: absolute;
  inset: 1rem -0.8rem;
  z-index: -1;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(123, 47, 255, 0.12), rgba(255, 47, 214, 0.08));
  border: 1px solid rgba(255, 120, 255, 0.1);
}

.section-head { margin-bottom: 1.5rem; }

.section-head h2 {
  margin: 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 47, 214, 0.5);
}

.section h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.05em;
  line-height: 1;
  background: linear-gradient(90deg, #fff 0%, var(--neon) 50%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head p,
.chart-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}

.section-head code {
  color: var(--neon);
  background: rgba(255, 47, 214, 0.12);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  font-size: 0.9em;
}

/* Roadmap timeline */
.roadmap {
  padding-bottom: 4.5rem;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(255, 47, 214, 0.2) 0%,
    rgba(255, 47, 214, 0.85) 25%,
    rgba(123, 47, 255, 0.9) 75%,
    rgba(255, 47, 214, 1) 100%
  );
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(255, 47, 214, 0.5), 0 0 40px rgba(123, 47, 255, 0.3);
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  position: relative;
}

.timeline-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 120, 255, 0.08);
}

.timeline-node {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: var(--btn-radius);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(120, 40, 200, 0.7), rgba(60, 10, 100, 0.9));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glow);
}

.timeline-node span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--neon);
  text-shadow: 0 0 12px rgba(255, 47, 214, 0.8);
}

.timeline-node-finale {
  background: linear-gradient(145deg, rgba(255, 47, 214, 0.5), rgba(123, 47, 255, 0.6));
  animation: node-pulse 2.5s ease-in-out infinite;
}

@keyframes node-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 47, 214, 0.5), 0 0 40px rgba(123, 47, 255, 0.35); }
  50% { box-shadow: 0 0 32px rgba(255, 47, 214, 0.85), 0 0 60px rgba(123, 47, 255, 0.55); }
}

.timeline-body {
  border-radius: 16px;
  background: rgba(45, 12, 80, 0.45);
  border: 1px solid rgba(255, 120, 255, 0.15);
  padding: 1rem 1.25rem 1.1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.timeline-item:hover .timeline-body {
  transform: translateX(6px);
  box-shadow: var(--glow);
  border-color: rgba(255, 180, 255, 0.35);
}

.timeline-phase {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  text-shadow: 0 0 10px rgba(255, 47, 214, 0.6);
  margin-bottom: 0.25rem;
}

.timeline-title {
  margin: 0 0 0.45rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 16px rgba(232, 180, 255, 0.4);
}

.timeline-title-glow {
  color: #fff;
  text-shadow:
    0 0 10px #ff2fd6,
    0 0 28px rgba(255, 47, 214, 0.75),
    0 0 48px rgba(123, 47, 255, 0.45);
}

.timeline-body > p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.timeline-points {
  margin: 0;
  padding-left: 1.1rem;
}

.timeline-points li {
  color: var(--neon);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.timeline-item-finale .timeline-body {
  background: linear-gradient(135deg, rgba(80, 20, 130, 0.55), rgba(50, 10, 90, 0.7));
  border-color: rgba(255, 47, 214, 0.35);
}

/* How to buy */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(45, 12, 80, 0.6);
  border: 1px solid var(--glass-border);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -145%;
  width: 120%;
  height: 100%;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 180, 255, 0.25) 50%, transparent 85%);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.step-card:hover::before { left: 140%; }

.step-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
}

.step-card h3 {
  margin: 0.5rem 0 0.35rem;
  font-size: 1.02rem;
  color: var(--neon);
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Chart */
.chart-card {
  margin-top: 0.5rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(40, 10, 70, 0.65);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glow);
}

#dexscreener-widget iframe {
  width: 100%;
  min-height: 500px;
  border: 1px solid rgba(255, 120, 255, 0.2);
  border-radius: 14px;
  background: #0d0018;
}

.widget-placeholder {
  min-height: 280px;
  border: 1px dashed rgba(255, 120, 255, 0.35);
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(30, 8, 55, 0.5);
}

.widget-placeholder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.widget-placeholder a {
  color: var(--magenta);
  text-shadow: 0 0 8px rgba(255, 47, 214, 0.5);
}

.widget-placeholder code {
  color: var(--neon);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 120, 255, 0.12);
  background: linear-gradient(to top, rgba(10, 0, 20, 0.9), transparent);
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--btn-radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.footer-logo svg {
  width: 20px;
  height: 20px;
}

.footer-logo:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--glow);
}

.pump-logo img {
  height: 22px;
  width: auto;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-video {
    object-position: 50% 42%;
    transform: scale(1.06);
  }

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

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }

  .timeline-node {
    width: 48px;
    height: 48px;
  }

  .timeline::before {
    left: 23px;
  }
}

@media (max-width: 760px) {
  .hero-video {
    object-position: 50% 38%;
    transform: scale(1.1);
  }

  .hero-title {
    font-size: clamp(1.85rem, 8.5vw, 2.8rem);
    white-space: normal;
    max-width: 100%;
  }

  .hero-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .menu-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    display: none;
    flex-direction: column;
    width: min(240px, calc(100% - 2rem));
    padding: 0.6rem;
    border-radius: var(--btn-radius);
    background: rgba(18, 0, 31, 0.92);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
  }

  .nav-links.is-open { display: flex; }

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