/* =========================================================
   ROBINHOG // NEON GREEN / BLACK MEMECOIN THEME
========================================================= */
:root {
  --green: #c6ff00;
  --green-2: #9bd600;
  --green-glow: rgba(198, 255, 0, 0.55);
  --bg: #050705;
  --bg-2: #0c110a;
  --panel: #0f150c;
  --panel-2: #141b0f;
  --line: rgba(198, 255, 0, 0.18);
  --text: #eaf6e0;
  --muted: #9db08c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* subtle green grid glow backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(198, 255, 0, 0.12), transparent 45%),
    radial-gradient(circle at 90% 90%, rgba(155, 214, 0, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3 { font-family: 'Bebas Neue', 'Inter', sans-serif; letter-spacing: 1px; }

.neon {
  color: var(--green);
  text-shadow: 0 0 8px var(--green-glow), 0 0 22px rgba(198, 255, 0, 0.35);
}

a { color: inherit; text-decoration: none; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 2px solid var(--green);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--green);
  color: #0a0f04;
  box-shadow: 0 0 18px var(--green-glow);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 28px var(--green-glow); }
.btn-ghost {
  background: transparent;
  color: var(--green);
}
.btn-ghost:hover { background: rgba(198, 255, 0, 0.1); transform: translateY(-2px); }

/* ================= NAV ================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 5vw;
  background: rgba(5, 7, 5, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--green);
}
.brand-logo {
  width: 40px; height: 40px; border-radius: 50%;
  box-shadow: 0 0 12px var(--green-glow);
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a { color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { padding: 10px 22px; font-size: 13px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--green);
  font-size: 28px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: 70px 5vw 40px;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  max-width: 90vw;
  background: radial-gradient(circle, rgba(198,255,0,0.18), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.eyebrow {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 13px;
  margin: 0 0 10px;
}
.hero-title {
  font-size: clamp(60px, 11vw, 130px);
  line-height: 0.9;
  margin: 0 0 20px;
  color: #fff;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 30px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.ca-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  max-width: 520px;
}
.ca-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  font-weight: 800;
}
.ca-box code {
  flex: 1;
  font-size: 13px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy {
  background: var(--green);
  color: #0a0f04;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-weight: 800;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}
.ca-copy:hover { box-shadow: 0 0 14px var(--green-glow); }

.hero-art { display: flex; justify-content: center; }
.mascot {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  border: 1px solid var(--line);
  filter: drop-shadow(0 0 40px rgba(198, 255, 0, 0.4));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ================= MARQUEE ================= */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--green);
  color: #0a0f04;
  padding: 12px 0;
  border-top: 2px solid #0a0f04;
  border-bottom: 2px solid #0a0f04;
}
.marquee-track {
  display: inline-flex;
  animation: scroll 26s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= SECTIONS ================= */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 5vw;
  max-width: 1200px;
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 50px; }
.section-title { font-size: clamp(44px, 7vw, 78px); margin: 0; color: #fff; }
.section-sub { color: var(--muted); font-size: 17px; margin: 10px 0 0; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-art img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(198, 255, 0, 0.25);
}
.about-copy p { font-size: 17px; margin: 0 0 18px; }
.about-copy strong { color: var(--green); }
.about-copy em { color: var(--text); font-style: italic; }
.lore-quote {
  margin: 26px 0;
  padding: 16px 22px;
  border-left: 4px solid var(--green);
  background: rgba(198, 255, 0, 0.06);
  border-radius: 0 12px 12px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.15;
}
.lore-close {
  font-weight: 800;
  color: var(--green) !important;
  font-size: 19px !important;
}
.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.badge {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

/* TOKENOMICS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.stat {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 18px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(198,255,0,0.15); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 14px var(--green-glow);
}
.stat-label { color: var(--muted); font-size: 14px; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* HOW TO BUY */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.step:hover { transform: translateY(-6px); border-color: var(--green); }
.step-num {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green);
  color: #0a0f04;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 0 16px var(--green-glow);
}
.step h3 { font-size: 26px; margin: 0 0 8px; color: #fff; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* ROADMAP */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.phase {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
}
.phase-tag {
  display: inline-block;
  background: rgba(198, 255, 0, 0.12);
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.phase h3 { font-size: 30px; margin: 0 0 12px; color: #fff; }
.phase ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 15px; }
.phase li { margin-bottom: 8px; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.shot {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  aspect-ratio: 16 / 10;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--green);
  background: linear-gradient(180deg, transparent, rgba(4, 6, 3, 0.92));
}

/* COMMUNITY */
.community { text-align: center; }
.community-card {
  background: radial-gradient(circle at 50% 0%, rgba(198,255,0,0.14), transparent 60%), var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 60px 30px;
  max-width: 760px;
  margin: 0 auto;
}
.community-logo {
  width: 130px; height: 130px;
  border-radius: 50%;
  box-shadow: 0 0 34px var(--green-glow);
  margin-bottom: 10px;
}
.social-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* FOOTER */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 50px 5vw;
}
.footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.footer-logo { width: 66px; height: 66px; border-radius: 50%; margin-bottom: 18px; box-shadow: 0 0 18px var(--green-glow); }
.disclaimer { color: var(--muted); font-size: 13px; line-height: 1.8; margin: 0 0 20px; }
.copyright { color: var(--green); font-weight: 700; font-size: 14px; margin: 0; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .cta-row, .ca-box { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { max-width: 360px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    position: fixed;
    top: 68px; right: 0;
    flex-direction: column;
    background: rgba(5,7,5,0.97);
    padding: 24px 30px;
    border: 1px solid var(--line);
    border-radius: 0 0 0 16px;
    gap: 18px;
    transform: translateX(120%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-cta { display: none; }
  .hamburger { display: block; margin-left: auto; }
}
@media (max-width: 520px) {
  .stats-grid, .steps, .timeline, .gallery-grid { grid-template-columns: 1fr; }
  .split span { font-size: 10px; }
  .marquee-track { font-size: 18px; }
}
