/* ═══════════════════════════════════════════════
   memecoin.kitchen — Hub Landing Page
   ═══════════════════════════════════════════════ */

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

:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e0e0e0;
  --text-bright: #ffffff;
  --text-dim: #888;
  --accent: #ff6b2b;
  --accent2: #ffb347;
  --accent-glow: rgba(255, 107, 43, 0.25);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Particles ── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.12;
  animation: float-up linear infinite;
}

.particle:nth-child(1)  { left: 8%;  animation-duration: 20s; animation-delay: 0s; }
.particle:nth-child(2)  { left: 18%; animation-duration: 24s; animation-delay: 2s; }
.particle:nth-child(3)  { left: 28%; animation-duration: 17s; animation-delay: 4s; }
.particle:nth-child(4)  { left: 38%; animation-duration: 22s; animation-delay: 1s; }
.particle:nth-child(5)  { left: 48%; animation-duration: 19s; animation-delay: 3s; }
.particle:nth-child(6)  { left: 58%; animation-duration: 25s; animation-delay: 0.5s; }
.particle:nth-child(7)  { left: 68%; animation-duration: 18s; animation-delay: 2.5s; }
.particle:nth-child(8)  { left: 78%; animation-duration: 21s; animation-delay: 1.5s; }
.particle:nth-child(9)  { left: 88%; animation-duration: 16s; animation-delay: 3.5s; }
.particle:nth-child(10) { left: 95%; animation-duration: 23s; animation-delay: 0.5s; }
.particle:nth-child(11) { left: 5%;  animation-duration: 26s; animation-delay: 2s; }
.particle:nth-child(12) { left: 52%; animation-duration: 20s; animation-delay: 4s; }

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-bright);
}

.logo-emoji {
  font-size: 1.5rem;
}

.logo-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10rem 1.5rem 4rem;
  overflow: hidden;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--text-bright);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.title-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-desc {
  max-width: 600px;
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Ticker ── */
.ticker {
  overflow: hidden;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.6rem 0;
  white-space: nowrap;
  z-index: 1;
  position: relative;
}

.ticker-track {
  display: flex;
  animation: scroll-left 25s linear infinite;
}

.ticker-item {
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-bright);
}

/* ── Coins Grid ── */
.coins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.coin-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.coin-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255, 107, 43, 0.12);
}

.coin-card.coin-soon {
  cursor: default;
  opacity: 0.6;
}

.coin-card.coin-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
  background: var(--bg-card);
}

.coin-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coin-badge.live {
  background: #14F195;
  color: #000;
  animation: badge-pulse 2s ease-in-out infinite;
}

.coin-badge.soon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(20, 241, 149, 0); }
}

.coin-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin-bottom: 1.25rem;
  transition: border-color 0.3s;
}

.coin-card:hover .coin-logo {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.coin-logo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 3px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.coin-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}

.coin-chain {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.coin-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 300px;
}

.coin-cta {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  transition: color 0.2s;
}

.coin-cta.dim {
  color: var(--text-dim);
}

.coin-card:hover .coin-cta:not(.dim) {
  color: var(--accent2);
}

/* ── CTA Section ── */
.section-cta {
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 800px;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text-bright);
  margin-bottom: 1rem;
}

.cta-desc {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}

.btn-social {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-social:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: var(--text-dim);
  opacity: 0.6;
  font-size: 0.75rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    padding: 8rem 1rem 3rem;
  }

  .section {
    padding: 3rem 1rem;
  }

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

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
}
