* { box-sizing: border-box; }

:root {
  --text: #171513;
  --muted: #4a4745;
  --mood: 0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(199, 152, 72, 0.22), transparent 35%),
    radial-gradient(circle at 94% 0%, rgba(125, 160, 182, 0.2), transparent 34%),
    linear-gradient(180deg, #d1c4ad 0%, #bca98f 100%);
}

body { min-height: 100vh; overflow-x: hidden; }
main { width: 100%; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: var(--mood);
  background:
    radial-gradient(circle at 20% 80%, rgba(42, 61, 88, 0.38), transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(93, 54, 97, 0.33), transparent 46%),
    linear-gradient(180deg, rgba(24, 29, 38, 0.08), rgba(19, 22, 32, 0.48));
  transition: opacity 0.2s linear;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.18) brightness(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 5, 5, 0.58) 0%, rgba(5, 5, 5, 0.08) 48%, rgba(255, 255, 255, 0.04) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.22));
}

.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(10px);
  background: linear-gradient(to bottom, rgba(16, 16, 16, 0.35), rgba(16, 16, 16, 0.05));
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  margin-right: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  padding: 0.46rem 0.68rem;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 4rem;
}

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

.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  padding: 0.86rem 1.7rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.84rem;
  min-width: 130px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(5px);
  transition: transform 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
}

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

.btn:hover { transform: translateY(-2px) scale(1.03); background: rgba(255, 255, 255, 0.25); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22); }
.btn:hover::before { left: 140%; }

.ca-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  border-radius: 12px;
  padding: 0.5rem 0.6rem 0.5rem 0.8rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.ca-block:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  background: linear-gradient(130deg, rgba(255, 204, 97, 0.35), rgba(139, 211, 255, 0.35), rgba(202, 156, 255, 0.35));
}

#copy-ca-btn {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 10px;
  padding: 0.3rem 0.58rem;
  font-size: 0.7rem;
  text-transform: uppercase;
}

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

.buy-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.buy-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.hero-blend { height: 160px; margin-top: -160px; background: linear-gradient(to bottom, rgba(209, 196, 173, 0), #d1c4ad 88%); }

.vision-banner {
  overflow: hidden;
  border-top: 1px solid rgba(130, 110, 80, 0.22);
  border-bottom: 1px solid rgba(130, 110, 80, 0.22);
  background: linear-gradient(90deg, rgba(255, 204, 97, 0.22), rgba(139, 211, 255, 0.2), rgba(202, 156, 255, 0.22));
  position: relative;
  z-index: 2;
}

.vision-track {
  display: flex;
  width: max-content;
  padding: 0.5rem 0;
  animation: vision-scroll 18s linear infinite;
}

.vision-track-group {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
}

.vision-track span {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.45rem;
}

.vision-track i {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(30, 30, 30, 0.45);
}

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

.section {
  width: min(1150px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.4rem 0;
  position: relative;
  z-index: 2;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.section + .section { border-top: 1px solid rgba(110, 104, 95, 0.22); }
.about::before,
.how-to-buy::before,
.mission::before,
.chart::before {
  content: "";
  position: absolute;
  inset: 0.6rem -0.5rem;
  z-index: -1;
  border-radius: 24px;
  filter: blur(0.2px);
}
.about::before {
  background: linear-gradient(120deg, rgba(122, 99, 64, 0.34), rgba(73, 96, 112, 0.28));
}
.how-to-buy::before,
.mission::before,
.chart::before {
  background: linear-gradient(120deg, rgba(122, 99, 64, 0.34), rgba(73, 96, 112, 0.28));
}

h2 {
  margin: 0 0 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  background: linear-gradient(90deg, #1f1b16 0%, #bd7c2d 32%, #2d6a94 66%, #9051de 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section p { color: var(--muted); max-width: 820px; line-height: 1.7; }

.about p,
.how-to-buy p,
.mission p,
.chart p {
  color: #2f2b26;
  font-size: 1.02rem;
}

.vibe-grid { margin-top: 1rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.vibe-grid > * {
  margin: 0;
  position: relative;
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(150deg, rgba(42, 45, 56, 0.75), rgba(112, 118, 130, 0.45));
  box-shadow: 0 16px 32px rgba(28, 30, 35, 0.24);
}
.vibe-grid > *::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.vibe-grid img { display: block; width: 100%; border-radius: 16px; }

.steps { margin-top: 1rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.9rem; }
.step-card {
  position: relative;
  overflow: hidden;
  padding: 0.9rem 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(247, 240, 229, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.68);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 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, 255, 255, 0.5) 50%, transparent 85%);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}
.step-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 14px 28px rgba(46, 38, 28, 0.2);
  background: rgba(249, 243, 233, 0.86);
}
.step-card:hover::before {
  left: 140%;
}
.step-card h3 { margin: 0.55rem 0 0.3rem; font-size: 1.02rem; }
.step-card p { margin: 0; font-size: 0.95rem; }

.step-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5c4630;
}

.roadmap-ui { margin-top: 1rem; }
.roadmap-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.roadmap-pill {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 10px;
  padding: 0.5rem 0.88rem;
  background: rgba(247, 240, 229, 0.74);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.roadmap-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -145%;
  width: 120%;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.55) 50%, transparent 85%);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}
.roadmap-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 22px rgba(62, 51, 39, 0.2);
  background: rgba(249, 243, 234, 0.9);
}
.roadmap-pill:hover::before {
  left: 140%;
}
.roadmap-pill.is-active {
  background: linear-gradient(130deg, rgba(255, 198, 71, 0.58), rgba(114, 203, 255, 0.52), rgba(202, 156, 255, 0.56));
  border-color: rgba(255, 255, 255, 0.7);
}

.roadmap-pill[data-roadmap="1"] {
  background: rgba(232, 214, 186, 0.86);
}

.roadmap-pill[data-roadmap="2"] {
  background: rgba(220, 205, 181, 0.86);
}

.roadmap-pill[data-roadmap="3"] {
  background: rgba(208, 196, 175, 0.86);
}

.roadmap-pill[data-roadmap="4"] {
  background: rgba(197, 186, 168, 0.86);
}

.roadmap-panel {
  margin-top: 0.9rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(247, 240, 229, 0.74);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.roadmap-panel.is-transitioning {
  transform: translateY(6px);
  opacity: 0.65;
}
.roadmap-phase-tag {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  color: #8f5e22;
}
.roadmap-icon {
  display: inline-flex;
  margin-left: 0.4rem;
  vertical-align: middle;
  color: #7a6548;
}

.roadmap-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.roadmap-panel h3 { margin: 0.2rem 0 0.4rem; font-size: 1.5rem; }
.roadmap-panel p { margin: 0 0 0.5rem; }
.roadmap-panel ul { margin: 0; padding-left: 1.2rem; }

.roadmap-panel li {
  color: #2f2b26;
  margin-bottom: 0.2rem;
}

.chart-note { margin-top: 0.45rem; }
.chart-card {
  margin-top: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(247, 240, 229, 0.74);
  padding: 0.8rem;
}
#dexscreener-widget iframe { width: 100%; min-height: 500px; border: 1px solid rgba(121, 113, 101, 0.2); border-radius: 16px; background: #fff; }
.widget-placeholder { min-height: 260px; border: 1px dashed rgba(90, 83, 74, 0.4); border-radius: 16px; display: grid; place-items: center; text-align: center; background: rgba(241, 232, 217, 0.62); padding: 1.2rem; }
.widget-placeholder a { color: #2e6a8a; }

.footer { text-align: center; color: #5c5852; padding: 2.2rem 1rem; }
.footer-logos { display: flex; justify-content: center; gap: 1rem; margin-bottom: 0.65rem; }
.x-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.45rem;
  text-decoration: none;
  color: #141313;
  border-radius: 12px;
  background: rgba(247, 240, 229, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.x-logo:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(250, 244, 235, 0.95);
  box-shadow: 0 10px 22px rgba(53, 46, 38, 0.2);
}
.pump-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  background: rgba(247, 240, 229, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 0.3rem 0.6rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.pump-logo img {
  height: 24px;
  width: auto;
  display: block;
}
.pump-logo:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(250, 244, 235, 0.95);
  box-shadow: 0 10px 22px rgba(53, 46, 38, 0.2);
}

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .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: 12px;
    background: rgba(15, 15, 15, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
  }
  .nav-links.is-open { display: flex; }
  .hero-actions { flex-wrap: wrap; }
  .section { width: min(1150px, calc(100% - 1.2rem)); padding: 2.8rem 0; }
  .vibe-grid, .steps { grid-template-columns: 1fr; }
}
