/* ============================================================
   CryptoLambo — Memecoin-Parodie ("Wann Lambo? Lambo soon.")
   Plain CSS, keine Frameworks.
   ============================================================ */

:root {
  --bg:        #07080f;
  --bg-2:      #0d1020;
  --panel:     #121634;
  --lime:      #c6ff00;
  --lime-soft: #e2ff66;
  --purple:    #7b2ff7;
  --purple-2:  #b46bff;
  --gold:      #ffd23f;
  --up:        #00ff9d;
  --down:      #ff4d6d;
  --ink:       #eaf0ff;
  --muted:     #9aa3c8;
  --space-grad: radial-gradient(circle at 50% -10%, #1a1145 0%, #0c0e22 45%, #07080f 100%);
  --display: "Orbitron", "Arial Black", sans-serif;
  --body:    "Rajdhani", "Segoe UI", sans-serif;
  --mono:    "Share Tech Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 1.18rem;
  color: var(--ink);
  background: var(--space-grad) fixed;
  background-color: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

/* starfield overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(198,255,0,0.5), transparent),
    radial-gradient(1px 1px at 10% 70%, rgba(180,107,255,0.5), transparent);
  background-size: 100% 100%;
  opacity: 0.7;
}

.glow {
  font-family: var(--display);
  text-shadow: 0 0 14px rgba(180,107,255,0.7), 0 0 30px rgba(123,47,247,0.4);
}
.glow--lime { color: var(--lime); text-shadow: 0 0 16px rgba(198,255,0,0.8), 0 0 40px rgba(198,255,0,0.35); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  padding: 0.75em 1.6em;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--sm { padding: 0.5em 1.1em; font-size: 0.78rem; }
.btn--lg { padding: 0.9em 2em; font-size: 1.05rem; }
.btn--xl { padding: 1.1em 2.6em; font-size: 1.4rem; border-radius: 16px; }

.btn--lime {
  background: linear-gradient(135deg, var(--lime), #9ad400);
  color: #0a0d00;
  box-shadow: 0 0 22px rgba(198,255,0,0.45);
  font-weight: 800;
}
.btn--lime:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(198,255,0,0.7);
}
.btn--ghost {
  background: rgba(123,47,247,0.08);
  color: var(--purple-2);
  border-color: var(--purple);
}
.btn--ghost:hover {
  background: rgba(123,47,247,0.22);
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(123,47,247,0.5);
}

/* ---------- Spinning coin ---------- */
.coin {
  position: relative;
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--lime-soft), #b8d400 55%, #7fa200 100%);
  box-shadow: 0 0 18px rgba(198,255,0,0.6), inset 0 -4px 10px rgba(0,0,0,0.35), inset 0 4px 8px rgba(255,255,255,0.4);
  animation: flip 3.5s linear infinite;
}
.coin__face {
  font-family: var(--display);
  font-weight: 900;
  color: #2c3a00;
  font-size: 1.6rem;
}
.coin--lg { width: 108px; height: 108px; }
.coin--lg .coin__face { font-size: 2.8rem; }
@keyframes flip { 0%,100% { transform: rotateY(0deg); } 50% { transform: rotateY(180deg); } }
@media (prefers-reduced-motion: reduce) { .coin { animation: none; } }

/* ---------- Neon frame ---------- */
.neon-frame {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  border: 2px solid transparent;
  box-shadow:
    inset 0 0 0 2px rgba(198,255,0,0.5),
    inset 0 0 22px rgba(123,47,247,0.45);
  animation: framepulse 2.4s ease-in-out infinite;
}
@keyframes framepulse {
  50% { box-shadow: inset 0 0 0 2px rgba(180,107,255,0.6), inset 0 0 30px rgba(198,255,0,0.4); }
}
@media (prefers-reduced-motion: reduce) { .neon-frame { animation: none; } }

/* ---------- Header ---------- */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem clamp(1.5rem, 5vw, 4rem);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand__coin { width: 42px; height: 42px; }
.brand__coin .coin__face { font-size: 1.1rem; }
.brand__text {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.brand__text em { color: var(--lime); font-style: normal; }
.nav { display: flex; gap: 0.6rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: clamp(2rem, 7vw, 5rem) 1.5rem 3rem;
}
.hero__inner { max-width: 860px; margin: 0 auto; }
.hero__kicker {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--purple-2);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.hero__sub { font-size: 1.3rem; color: #cdd5f5; max-width: 660px; margin: 0 auto 1.8rem; }

.ticker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--mono);
  background: rgba(8,10,24,0.7);
  border: 1px solid rgba(198,255,0,0.35);
  border-radius: 12px;
  padding: 0.7em 1.3em;
  margin-bottom: 1.8rem;
  box-shadow: 0 0 20px rgba(123,47,247,0.25);
}
.ticker__sym { color: var(--lime); font-size: 1.1rem; }
.ticker__price { color: var(--ink); font-size: 1.25rem; }
.ticker__delta { font-size: 1rem; padding: 0.1em 0.5em; border-radius: 6px; }
.ticker__delta--up { color: var(--up); background: rgba(0,255,157,0.12); }
.ticker__delta--down { color: var(--down); background: rgba(255,77,109,0.12); }

.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero__stats { font-family: var(--mono); font-size: 1rem; color: var(--muted); letter-spacing: 0.02em; }
.hero__stats strong { color: var(--lime); }

/* ---------- Section heads ---------- */
.section-head { text-align: center; margin: 0 auto 2.5rem; padding: 0 1.5rem; }
.section-head__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.section-head__sub { font-family: var(--mono); font-size: 1.05rem; color: var(--purple-2); }

section { position: relative; z-index: 5; padding-block: clamp(2.5rem, 6vw, 4.5rem); }

/* ---------- When Lambo widget ---------- */
.lambo-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, rgba(123,47,247,0.12), rgba(13,16,32,0.7));
  border: 1px solid rgba(180,107,255,0.4);
  border-radius: 20px;
  padding: 2.4rem 1.6rem;
  box-shadow: 0 0 40px rgba(123,47,247,0.2);
}
.lambo-answer {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  margin: 1.4rem 0 1.8rem;
  min-height: 1.4em;
}
.moon-meter { max-width: 420px; margin: 0 auto; }
.moon-meter__label { display: block; font-family: var(--mono); font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }
.moon-meter__bar {
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  border: 1px solid rgba(198,255,0,0.3);
}
.moon-meter__fill {
  height: 100%;
  width: 99.9%;
  background: linear-gradient(90deg, var(--purple), var(--lime));
  box-shadow: 0 0 14px rgba(198,255,0,0.6);
  transition: width 0.4s ease;
}
.moon-meter__pct { display: block; font-family: var(--mono); font-size: 0.95rem; color: var(--lime); margin-top: 0.5rem; }

/* ---------- Garage grid ---------- */
.grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.card {
  background: linear-gradient(170deg, rgba(18,22,52,0.9), rgba(8,10,20,0.92));
  border: 1px solid rgba(180,107,255,0.35);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(123,47,247,0.4); }
.card__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  font-size: 3.6rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(198,255,0,0.15), transparent 60%),
    radial-gradient(circle at 50% 120%, rgba(123,47,247,0.3), transparent 55%);
  overflow: hidden;
}
.card__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--up);
  color: #002417;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25em 0.7em;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4em;
  z-index: 3;
}
.card__badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #002417;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }
.card__lock {
  position: absolute;
  inset: 0;
  background: rgba(7,8,15,0.6);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  transition: opacity 0.25s ease;
}
.card__lock span { display: block; }
.card__lock .lock-icon { font-size: 1.8rem; margin-bottom: 0.3rem; }
.card__lock .lock-text { font-family: var(--mono); font-size: 0.9rem; color: var(--lime); padding: 0 1rem; }
.card:hover .card__lock { opacity: 0.12; }
.card__body { padding: 1rem 1.1rem 1.2rem; }
.card__name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--lime); margin-bottom: 0.15rem; }
.card__handle { font-family: var(--mono); font-size: 0.9rem; color: var(--purple-2); margin-bottom: 0.5rem; }
.card__bio { font-size: 1.05rem; color: #d3dbf7; min-height: 3em; }
.card__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(180,107,255,0.25);
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.card__meta .up { color: var(--up); }

/* ---------- Tokenomics ---------- */
.tk {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.tk__chart {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: conic-gradient(
    var(--lime) 0 40%,
    var(--purple) 40% 70%,
    var(--gold) 70% 90%,
    var(--down) 90% 100%
  );
  box-shadow: 0 0 40px rgba(123,47,247,0.35);
  position: relative;
}
.tk__chart::after {
  content: "100% 🚀";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 1.1rem;
  color: var(--lime);
}
.tk__legend { list-style: none; font-size: 1.2rem; }
.tk__legend li { display: flex; align-items: center; gap: 0.7rem; padding: 0.5em 0; }
.dot { width: 16px; height: 16px; border-radius: 4px; flex: none; }
.dot--1 { background: var(--lime); }
.dot--2 { background: var(--purple); }
.dot--3 { background: var(--gold); }
.dot--4 { background: var(--down); }

/* ---------- Roadmap ---------- */
.phases {
  list-style: none;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  counter-reset: phase;
}
.phase {
  background: linear-gradient(180deg, rgba(18,22,52,0.85), rgba(8,10,20,0.9));
  border: 1px solid rgba(198,255,0,0.25);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
}
.phase__tag { font-family: var(--mono); font-size: 0.85rem; color: var(--purple-2); }
.phase h3 { font-family: var(--display); font-size: 1.3rem; color: var(--lime); margin: 0.4rem 0 0.6rem; }
.phase p { color: #cdd5f5; font-size: 1.05rem; }

/* ---------- Quotes ---------- */
.quotes__grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.quotes blockquote {
  background: rgba(123,47,247,0.08);
  border-left: 3px solid var(--lime);
  border-radius: 10px;
  padding: 1.3rem 1.4rem;
  font-size: 1.2rem;
  color: #e3e9ff;
}
.quotes cite { display: block; margin-top: 0.7rem; font-family: var(--mono); font-size: 0.9rem; font-style: normal; color: var(--purple-2); }

/* ---------- Rocket (finale) ---------- */
.finale { text-align: center; }
.rocket {
  position: relative;
  width: 70px;
  height: 150px;
  margin: 0 auto 1.4rem;
  animation: hover 2.5s ease-in-out infinite;
}
.rocket__body {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 44px; height: 110px;
  background: linear-gradient(90deg, #c9d2ff, #fff 40%, #97a3d8);
  border-radius: 50% 50% 30% 30% / 60% 60% 20% 20%;
  box-shadow: inset -6px 0 8px rgba(0,0,0,0.2);
}
.rocket__window {
  position: absolute;
  left: 50%; top: 32px;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--lime-soft), var(--purple));
  box-shadow: 0 0 10px rgba(198,255,0,0.7);
  z-index: 2;
}
.rocket__fin { position: absolute; bottom: 30px; width: 22px; height: 40px; background: linear-gradient(var(--down), #b3203f); z-index: 0; }
.rocket__fin--l { left: 6px; border-radius: 60% 0 0 90%; transform: skewY(20deg); }
.rocket__fin--r { right: 6px; border-radius: 0 60% 90% 0; transform: skewY(-20deg); }
.rocket__flame {
  position: absolute;
  left: 50%; bottom: -28px;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  background: linear-gradient(var(--gold), var(--down));
  border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
  filter: blur(1px);
  animation: flame 0.25s ease-in-out infinite alternate;
}
@keyframes flame { to { height: 60px; opacity: 0.7; } }
@keyframes hover { 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) {
  .rocket, .rocket__flame { animation: none; }
}
.finale__title { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 1.4rem; }
.finale__note { margin-top: 0.8rem; font-family: var(--mono); font-size: 0.9rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 3rem 1.5rem 3.5rem;
  border-top: 1px solid rgba(180,107,255,0.25);
  margin-top: 2rem;
}
.footer__brand { font-family: var(--display); font-size: 2rem; color: var(--lime); margin-bottom: 1rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; margin-bottom: 1.6rem; }
.footer__links a { color: var(--purple-2); text-decoration: none; font-family: var(--mono); font-size: 0.95rem; }
.footer__links a:hover { color: var(--lime); text-decoration: underline; }
.footer__disclaimer { max-width: 720px; margin: 0 auto 1rem; font-size: 0.95rem; color: var(--muted); line-height: 1.5; }
.footer__copy { font-family: var(--mono); font-size: 0.85rem; color: #5e668c; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(160%);
  background: linear-gradient(135deg, var(--lime), #9ad400);
  color: #0a0d00;
  font-family: var(--body);
  font-weight: 600;
  padding: 0.9em 1.6em;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(198,255,0,0.5);
  z-index: 60;
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1.3);
  max-width: 90vw;
  text-align: center;
}
.toast--show { transform: translateX(-50%) translateY(0); }

/* ---------- Gate ---------- */
.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(26,17,69,0.97), rgba(7,8,15,0.99));
  padding: 1.5rem;
  transition: opacity 0.4s ease;
}
.gate--hidden { opacity: 0; pointer-events: none; }
.gate__card {
  max-width: 480px;
  text-align: center;
  background: linear-gradient(180deg, rgba(123,47,247,0.18), rgba(13,16,32,0.85));
  border: 1px solid var(--purple);
  border-radius: 20px;
  padding: 2.6rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 50px rgba(123,47,247,0.3);
}
.gate__card .coin { margin: 0 auto 1.2rem; }
.gate__card h2 { font-size: 2.2rem; color: var(--lime); margin-bottom: 0.7rem; }
.gate__card p { font-size: 1.1rem; color: #cdd5f5; margin-bottom: 1.4rem; }
.gate__buttons { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.2rem; }
.gate__fineprint { font-family: var(--mono); font-size: 0.82rem; color: var(--muted); margin-bottom: 0 !important; }

@media (max-width: 560px) {
  body { font-size: 1.08rem; }
  .neon-frame { box-shadow: inset 0 0 0 2px rgba(198,255,0,0.5), inset 0 0 14px rgba(123,47,247,0.4); }
}
