/* $NEUROM meme coin — bold, dark, teal/cyan */
:root {
  --bg: #070b10;
  --bg-elev: #0d141c;
  --bg-card: #111a24;
  --border: rgba(45, 212, 191, 0.18);
  --border-strong: rgba(45, 212, 191, 0.45);
  --text: #e8f4f1;
  --muted: #8aa3a0;
  --teal: #2dd4bf;
  --cyan: #22d3ee;
  --teal-dim: rgba(45, 212, 191, 0.12);
  --glow: rgba(34, 211, 238, 0.35);
  --danger: #f87171;
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --header-h: 64px;
  --max: 960px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--teal); }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 70%);
}
.bg-glow {
  position: fixed;
  z-index: -1;
  top: -20%;
  left: 50%;
  width: 80vw;
  height: 50vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--glow), transparent 65%);
  pointer-events: none;
  opacity: 0.55;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 1rem;
  background: rgba(7, 11, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--teal); }
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 0 2px var(--teal), 0 0 16px var(--glow);
}
.nav {
  display: none;
  gap: 1.25rem;
  margin-left: auto;
  margin-right: 0.75rem;
}
.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.nav a:hover { color: var(--teal); }
.header-cta { display: none; }
.nav-toggle {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .site-header { padding: 0 1.5rem; }
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
.btn-lg { padding: 0.9rem 1.4rem; font-size: 1rem; }
.btn-primary, .btn-pump {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: #041016 !important;
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.35);
}
.btn-primary:hover, .btn-pump:hover {
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.5);
  color: #041016 !important;
}
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text) !important;
}
.btn-ghost:hover {
  background: var(--teal-dim);
  border-color: var(--teal);
  color: var(--teal) !important;
}
.btn-copy {
  flex-shrink: 0;
  background: var(--teal-dim);
  border: 1px solid var(--border-strong);
  color: var(--teal);
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}
.btn-copy:hover { background: rgba(45, 212, 191, 0.22); }
.btn-copy.is-copied {
  border-color: var(--teal);
  color: #041016;
  background: var(--teal);
}

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 28px;
  box-shadow:
    0 0 0 3px var(--teal),
    0 0 40px var(--glow),
    0 12px 40px rgba(0, 0, 0, 0.45);
  animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  line-height: 1.05;
}
.hero-title .ticker {
  display: block;
  font-size: clamp(2.6rem, 10vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #fff 20%, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .name {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-tagline {
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  color: var(--text);
  font-weight: 500;
}

.ca-box {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.05), inset 0 1px 0 rgba(255,255,255,0.03);
}
.ca-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.ca-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.ca-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--teal);
  background: transparent;
  padding: 0.25rem 0;
}

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

.banner-strip {
  max-width: 1100px;
  margin: 0.5rem auto 0;
  padding: 0 1rem;
}
.banner-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.12);
  object-fit: cover;
  max-height: 220px;
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(17, 26, 36, 0.65), transparent);
}
.section-head {
  text-align: center;
  margin-bottom: 2rem;
}
.section-head h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.section-head p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--muted);
}
.section-cta {
  text-align: center;
  margin-top: 1.75rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.step:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.1);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: #041016;
}
.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--display);
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Tokenomics */
.tok-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .tok-grid { grid-template-columns: repeat(4, 1fr); }
}
.tok-card {
  padding: 1.15rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.tok-card .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.tok-card .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal);
}
.disclaimer {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Chart */
.chart-frame {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  min-height: 280px;
}
.chart-placeholder {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  color: var(--muted);
  text-align: center;
}
.chart-pulse {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 2px solid var(--teal);
  box-shadow: 0 0 24px var(--glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
.chart-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  background: #000;
}

/* Social */
.social-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .social-grid { grid-template-columns: repeat(3, 1fr); }
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text) !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.social-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 28px rgba(45, 212, 191, 0.15);
  transform: translateY(-2px);
  color: var(--text) !important;
}
.social-card--soon {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}
.social-icon {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  color: var(--teal);
}
.social-label { font-weight: 800; font-family: var(--display); }
.social-sub { font-size: 0.85rem; color: var(--muted); }

/* Footer */
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--teal);
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 0.75rem;
}
.footer-meta {
  font-size: 0.75rem;
  color: rgba(138, 163, 160, 0.7);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo, .chart-pulse { animation: none; }
  html { scroll-behavior: auto; }
}
