/* =============================================
   PUMPORA $PORA — Main Stylesheet
   Design: Hot pink / magenta / dark space
   Palette derived from official logo
============================================= */

:root {
  --bg-deep:        #050008;
  --bg-card:        #0d0010;
  --bg-card-hover:  #130016;
  --border:         rgba(255, 30, 140, 0.12);
  --border-bright:  rgba(255, 30, 140, 0.35);

  --pink-core:      #ff1a8c;
  --pink-bright:    #ff4daa;
  --pink-dim:       #7a0044;
  --pink-glow:      rgba(255, 26, 140, 0.3);
  --magenta:        #e6007a;
  --white-logo:     #ffffff;
  --purple-deep:    #1a0030;
  --purple-bright:  #b47fff;
  --gold-bright:    #ffd54f;

  --text-primary:   #fff0f8;
  --text-muted:     #a07090;
  --text-dim:       #3d2040;

  --font-display:   'Bebas Neue', sans-serif;
  --font-body:      'Space Grotesk', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  --radius:         12px;
  --radius-lg:      20px;
  --max-width:      1200px;
  --transition:     0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }
.gradient-text {
  background: linear-gradient(135deg, #ff1a8c, #ff6ec7, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-core), #ff6ec7);
  color: #fff;
  box-shadow: 0 0 24px var(--pink-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(255,26,140,.65);
}
.btn-outline {
  border-color: var(--pink-core);
  color: var(--pink-bright);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,26,140,.1);
  border-color: var(--pink-bright);
}
.btn-ghost { color: var(--pink-bright); background: transparent; padding-left: 0; padding-right: 0; border: none; }
.btn-ghost:hover { color: #fff; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: .6rem 0;
  background: rgba(5,0,8,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo-img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; }
.logo-text { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .05em; color: var(--text-primary); }
.logo-ticker {
  font-family: var(--font-mono); font-size: .7rem; color: var(--pink-bright);
  background: rgba(255,26,140,.1); padding: .2rem .5rem; border-radius: 4px;
  border: 1px solid var(--border-bright);
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: #fff; }
.nav-links a.btn-outline,
.nav-links a.btn-outline:hover { color: var(--pink-bright); }
.nav-cta { margin-left: .5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition); }
.nav-backdrop { display: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,26,140,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,26,140,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(255,26,140,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-logo-img {
  width: 160px; height: 160px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 30px rgba(255,26,140,.5));
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,26,140,.1); border: 1px solid var(--border-bright);
  border-radius: 50px; padding: .4rem 1rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--pink-bright); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: .95; letter-spacing: .02em; margin-bottom: 1.5rem;
}
.hero-sub {
  max-width: 600px; margin: 0 auto 2.5rem;
  color: var(--text-muted); font-size: 1.1rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--pink-bright); line-height: 1; }
.stat-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.stat-divider { width: 1px; height: 40px; background: var(--border-bright); }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: .75rem; color: var(--text-muted); letter-spacing: .15em;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===== TICKER TAPE ===== */
.ticker-tape {
  background: linear-gradient(90deg, var(--magenta), var(--pink-core), #ff6ec7, var(--pink-core), var(--magenta));
  padding: .65rem 0; overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: ticker 20s linear infinite; width: max-content;
}
.ticker-inner span { font-family: var(--font-display); font-size: 1rem; letter-spacing: .1em; color: #fff; flex-shrink: 0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-eyebrow {
  font-family: var(--font-mono); font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--pink-bright); margin-bottom: 1rem;
}
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; margin-bottom: 1.5rem; }
.section-title.center { text-align: center; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 2rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; }
.about-pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.pillar:hover { border-color: var(--border-bright); transform: translateX(4px); }
.pillar-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.pillar h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.pillar p { font-size: .9rem; color: var(--text-muted); }

/* ===== TOKENOMICS PREVIEW ===== */
.tokenomics-preview { background: linear-gradient(180deg, transparent, rgba(255,26,140,.03), transparent); }
.toko-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.toko-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  transition: all var(--transition);
}
.toko-card:hover, .toko-card.featured {
  border-color: var(--pink-core);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(255,26,140,.15);
}
.toko-card.featured { background: rgba(255,26,140,.06); }
.toko-pct { font-family: var(--font-display); font-size: 3.5rem; color: var(--pink-bright); line-height: 1; margin-bottom: .5rem; }
.toko-card.featured .toko-pct { color: #fff; }
.toko-label { font-weight: 700; margin-bottom: .5rem; font-size: 1rem; }
.toko-desc { font-size: .85rem; color: var(--text-muted); }

/* ===== CULTURE ===== */
.culture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.culture-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all var(--transition);
}
.culture-item:hover { border-color: var(--border-bright); background: var(--bg-card-hover); }
.culture-emoji { font-size: 2rem; display: block; margin-bottom: 1rem; }
.culture-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.culture-item p { color: var(--text-muted); font-size: .9rem; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; }
.cta-box {
  position: relative; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg); padding: 5rem 3rem; text-align: center;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,26,140,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-box p { color: var(--text-muted); max-width: 500px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px; text-align: center; position: relative;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,26,140,.1) 0%, transparent 70%);
}
.page-hero .hero-badge { margin-bottom: 1.25rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1; margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 4rem 0 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.footer-logo-img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.8rem; }
.footer-tagline { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: .75rem; }
.social-link {
  display: flex; align-items: center; gap: .4rem;
  color: var(--text-muted); text-decoration: none; font-size: .85rem;
  padding: .4rem .9rem; background: rgba(255,26,140,.08); border: 1px solid var(--border);
  border-radius: 50px; transition: all var(--transition);
}
.social-link:hover { color: var(--pink-bright); border-color: var(--border-bright); }
.footer-col h4 { font-weight: 700; margin-bottom: 1rem; font-size: .95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: .9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--pink-bright); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.disclaimer { font-size: .8rem; color: var(--text-muted); margin-bottom: .75rem; line-height: 1.6; }
.disclaimer strong { color: var(--text-primary); }
.copyright { font-size: .8rem; color: var(--text-muted); }

/* ===== WHITEPAPER ===== */
.wp-layout { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; align-items: start; }
.wp-toc { position: sticky; top: 100px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.wp-toc h4 { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.wp-toc ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.wp-toc ul a { color: var(--text-muted); text-decoration: none; font-size: .85rem; transition: color var(--transition); display: block; padding: .25rem 0; }
.wp-toc ul a:hover { color: var(--pink-bright); }
.wp-content h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--pink-bright); margin: 3rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.wp-content h2:first-child { margin-top: 0; border-top: none; }
.wp-content h3 { font-size: 1.2rem; margin: 2rem 0 .75rem; }
.wp-content p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.8; }
.wp-content ul { color: var(--text-muted); padding-left: 1.25rem; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.wp-content strong { color: var(--text-primary); }
.wp-box { background: rgba(255,26,140,.07); border: 1px solid var(--border-bright); border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.wp-box p { margin: 0; }

/* ===== TOKENOMICS FULL ===== */
.toko-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 2rem 0; }
.toko-full-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all var(--transition); }
.toko-full-card:hover { border-color: var(--border-bright); }
.toko-full-card .toko-pct { font-family: var(--font-display); font-size: 4rem; color: var(--pink-bright); line-height: 1; }
.toko-full-card h3 { font-size: 1.2rem; margin: .5rem 0 .4rem; }
.toko-full-card p { color: var(--text-muted); font-size: .9rem; }
.toko-chart-bar { margin: 2.5rem 0; }
.bar-row { display: flex; align-items: center; gap: 1rem; margin-bottom: .85rem; }
.bar-label { width: 160px; font-size: .85rem; color: var(--text-muted); flex-shrink: 0; }
.bar-track { flex: 1; height: 28px; background: rgba(255,26,140,.07); border-radius: 50px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, var(--magenta), var(--pink-bright));
  display: flex; align-items: center; justify-content: flex-end; padding-right: .75rem;
  font-size: .75rem; font-weight: 700; color: #fff;
  animation: barIn 1s ease forwards;
}
@keyframes barIn { from{width:0!important} }

/* ===== HOW TO BUY ===== */
.steps-grid { display: flex; flex-direction: column; gap: 1.5rem; margin: 3rem 0; }
.step-card {
  display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; align-items: start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; transition: border-color var(--transition);
}
.step-card:hover { border-color: var(--border-bright); }
.step-num { font-family: var(--font-display); font-size: 3.5rem; color: var(--pink-dim); line-height: 1; }
.step-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step-card p { color: var(--text-muted); font-size: .9rem; }
.step-tag { display: inline-block; background: rgba(255,26,140,.1); border: 1px solid var(--border-bright); border-radius: 50px; padding: .2rem .7rem; font-size: .75rem; font-family: var(--font-mono); color: var(--pink-bright); margin-top: .75rem; }

/* ===== ROADMAP ===== */
.roadmap-list { position: relative; margin: 3rem 0; }
.roadmap-list::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--pink-core), var(--pink-dim), transparent); }
.rm-item { display: grid; grid-template-columns: 50px 1fr; gap: 1.5rem; align-items: start; margin-bottom: 2.5rem; padding-left: .5rem; position: relative; }
.rm-dot { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--pink-dim); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; position: relative; z-index: 1; }
.rm-item.active .rm-dot { border-color: var(--pink-core); box-shadow: 0 0 20px var(--pink-glow); }
.rm-item.done .rm-dot { border-color: #fff; background: rgba(255,255,255,.05); }
.rm-phase { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--pink-bright); margin-bottom: .5rem; }
.rm-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.rm-item.active .rm-card { border-color: var(--pink-core); }
.rm-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.rm-card ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.rm-card ul li { font-size: .9rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.rm-card ul li::before { content: '→'; color: var(--pink-bright); flex-shrink: 0; }

/* ===== ABOUT PAGE ===== */
.about-full p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.8; font-size: 1.05rem; }
.about-full h3 { font-size: 1.3rem; margin: 2.5rem 0 1rem; }
.highlight-box { background: rgba(255,26,140,.06); border-left: 3px solid var(--pink-core); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 2rem 0; }
.highlight-box p { margin: 0; color: var(--text-primary); font-size: 1.05rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .toko-cards { grid-template-columns: repeat(2, 1fr); }
  .culture-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wp-layout { grid-template-columns: 1fr; }
  .wp-toc { position: static; }
  .toko-full-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--bg-card); padding: 5rem 2rem 2rem; border-left: 1px solid var(--border); gap: 1.25rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 998; display: none; }
  .nav-backdrop.open { display: block; }
  .toko-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .step-card { grid-template-columns: 1fr; }
  .step-num { font-size: 2.5rem; }
  .section { padding: 60px 0; }
  .hero { padding: 100px 0 60px; }
  .cta-box { padding: 3rem 1.5rem; }
  .hero-logo-img { width: 120px; height: 120px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
