/* ============================================
   MVPW Token – Premium Landing Page
   CSS – Modern, Clean, Enterprise-Grade
   ============================================ */

/* ─── RESET ────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050505;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── FONTS ────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ─── CONTAINER ────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 60px; } }

/* ─── UTILITY ──────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-gradient {
  background: linear-gradient(135deg, #F1C009 0%, #d4a708 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media (min-width: 768px) { .section-title { font-size: 44px; } }
@media (min-width: 1024px) { .section-title { font-size: 52px; } }
.section-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.7;
}
@media (max-width: 768px) { .section-subtitle { font-size: 16px; } }

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, #F1C009 0%, #d4a708 100%);
  color: #050505;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(241,192,9,0.3);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }

/* ─── NAVBAR ───────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.navbar-logo img { height: 32px; width: auto; }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(135deg, #F1C009, #d4a708);
  transition: width 0.3s ease;
}
.navbar-links a:hover { color: #fff; }
.navbar-links a:hover::after { width: 100%; }
.navbar-cta { margin-left: 8px; }
.navbar-cta.navbar-cta { color: #000000; }
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.navbar-toggle svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }
  .navbar-mobile-open .navbar-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: flex-start;
  }
  .navbar .navbar-cta { display: none; }
  .navbar-mobile-open .navbar-cta {
    display: inline-flex;
    margin-left: 0;
    margin-top: 8px;
  }
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, #050505 140%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 0 80px;
}

.hero-logo {
  width: min(320px, 80%);
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

@media (min-width: 768px) {
  .hero-logo { width: min(480px, 85%); margin-bottom: 32px; }
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 12px;
}
@media (min-width: 768px) { .hero-title { font-size: 68px; margin-bottom: 16px; } }
@media (min-width: 1024px) { .hero-title { font-size: 80px; margin-bottom: 16px; } }
@media (max-width: 480px) { .hero-title { font-size: 40px; } }

.hero-tagline {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .hero-tagline { font-size: 26px; } }
@media (max-width: 480px) { .hero-tagline { font-size: 18px; } }

.hero-description {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
@media (min-width: 768px) { .hero-description { font-size: 18px; margin-bottom: 44px; } }

/* ─── Contract Address ─────────────────────── */
.hero-ca {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 32px;
  font-size: 13px;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  user-select: all;
}
@media (min-width: 768px) { .hero-ca { padding: 12px 20px; font-size: 14px; margin-bottom: 36px; } }
.hero-ca-label {
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  user-select: none;
  flex-shrink: 0;
}
.hero-ca-address {
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0.02em;
}
.hero-ca-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
.hero-ca-copy:hover { color: #F1C009; background: rgba(241,192,9,0.1); }
.hero-ca-copy.copied { color: #22c55e; }
.hero-ca-feedback {
  font-size: 11px;
  color: #22c55e;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.hero-ca-feedback.show { opacity: 1; }

/* ─── Social Icons ─────────────────────────── */
.hero-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .hero-socials { margin-bottom: 36px; } }
.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.hero-social-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.hero-social-link svg { width: 20px; height: 20px; }

/* ─── Action Buttons ───────────────────────── */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-dexscreener {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}
.hero-dexscreener:hover { color: #F1C009; }

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-center { padding: 60px 0 60px; }
  .hero-logo { width: min(300px, 85%); margin-bottom: 16px; }
  .hero-tagline { font-size: 17px; margin-bottom: 14px; }
  .hero-description { font-size: 15px; margin-bottom: 28px; max-width: 100%; }
  .hero-ca {
    width: 100%;
    padding: 10px 12px;
    font-size: 12px;
    margin-bottom: 24px;
    gap: 6px;
    overflow: hidden;
  }
  .hero-ca-address {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  .hero-ca-copy { flex-shrink: 0; }
  .hero-socials { gap: 12px; margin-bottom: 24px; }
  .hero-social-link { width: 40px; height: 40px; }
  .hero-social-link svg { width: 18px; height: 18px; }
  .hero-dexscreener { font-size: 12px; margin-top: 10px; }
}

/* ─── SCROLL INDICATOR ─────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
}
@media (max-width: 768px) { .scroll-indicator { display: none; } }

/* ─── STATS ────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.stat-card {
  background: #0B0B0B;
  padding: 36px 24px;
  text-align: center;
}
.stat-card:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.06); }
.stat-number {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
@media (min-width: 768px) { .stat-number { font-size: 42px; } }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(1), .stat-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 480px) {
  .stat-number { font-size: 28px; }
  .stat-card { padding: 24px 16px; }
}

/* ─── ABOUT ────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-logo-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-logo-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(241,192,9,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-text h2 { margin-bottom: 20px; }
.about-text > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-highlights {
  display: grid;
  gap: 16px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-highlight-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(241,192,9,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-highlight-icon svg { width: 10px; height: 10px; fill: #F1C009; }
.about-highlight-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-logo-wrapper { width: 320px; height: 320px; }
  .about-logo-glow { width: 200px; height: 200px; }
}

/* ─── FEATURES ─────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.feature-card {
  background: #0B0B0B;
  padding: 40px 32px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); background: #0E0E0E; }
.feature-card:nth-child(3n+1), .feature-card:nth-child(3n+2), .feature-card:nth-child(3n) { border-bottom: 1px solid rgba(255,255,255,0.06); }
.feature-card:nth-child(n+4) { border-bottom: none; }
.feature-card:not(:nth-child(3n)) { border-right: 1px solid rgba(255,255,255,0.06); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(241,192,9,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}
.feature-card:hover .feature-icon { background: rgba(241,192,9,0.14); }
.feature-icon svg { width: 20px; height: 20px; stroke: #F1C009; stroke-width: 1.5; fill: none; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .feature-card:nth-child(even) { border-right: none; }
  .feature-card:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 550px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; }
  .feature-card:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
  .feature-card { padding: 28px 24px; }
}

/* ─── ROADMAP ──────────────────────────────── */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.roadmap-card {
  background: #0B0B0B;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease;
}
.roadmap-card:hover { transform: translateY(-4px); }
.roadmap-phase {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F1C009;
  margin-bottom: 12px;
}
.roadmap-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.roadmap-items { display: grid; gap: 12px; }
.roadmap-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.roadmap-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.roadmap-dot.active { background: #F1C009; box-shadow: 0 0 8px rgba(241,192,9,0.3); }
.roadmap-line {
  position: absolute;
  top: 52px;
  left: -12px;
  right: -12px;
  height: 1px;
  background: rgba(255,255,255,0.06);
  z-index: -1;
}

@media (max-width: 900px) {
  .roadmap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .roadmap-line { display: none; }
}
@media (max-width: 550px) {
  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-card { padding: 28px 24px; }
}

/* ─── TOKEN INFO ───────────────────────────── */
.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.token-card {
  background: #0B0B0B;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.token-card:hover { transform: translateY(-2px); background: #0E0E0E; }
.token-card:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.06); }
.token-value {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.token-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.token-card:first-child .token-value { color: #F1C009; }

@media (max-width: 768px) {
  .token-grid { grid-template-columns: repeat(2, 1fr); }
  .token-card:nth-child(2) { border-right: none; }
  .token-card:nth-child(1), .token-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 480px) {
  .token-card { padding: 24px 16px; }
  .token-value { font-size: 17px; }
}

/* ─── COMMUNITY ────────────────────────────── */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.community-card {
  background: #0B0B0B;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.community-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241,192,9,0.15);
  background: #0E0E0E;
}
.community-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(241,192,9,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s ease;
}
.community-card:hover .community-icon { background: rgba(241,192,9,0.12); }
.community-icon svg { width: 24px; height: 24px; }
.community-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.community-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .community-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .community-grid { grid-template-columns: 1fr; }
  .community-card { padding: 24px 20px; }
}

/* ─── CTA ──────────────────────────────────── */
/* ─── FOOTER ───────────────────────────────── */
.footer {
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 360px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.footer-social-link:hover {
  background: rgba(255,255,255,0.12);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin-top: 8px;
}

/* ─── REVEAL ANIMATIONS ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE HELPERS ───────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 28px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
}
