/* ===== PepeGold — style.css ===== */

/* --- Tokens --- */
:root {
  --gold: #FFD700;
  --gold-2: #FDB813;
  --gold-3: #e8a000;
  --gold-dark: #9a6f00;
  --bg: #080808;
  --bg-1: #0d0d0d;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --bg-card: #141414;
  --pepe-green: #4a7c59;
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --border: rgba(255, 215, 0, 0.18);
  --border-hover: rgba(255, 215, 0, 0.5);
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-heading: 'Syne', 'Space Grotesk', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-2);
}

ul {
  list-style: none;
}

/* --- Particles Canvas --- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* --- Utility --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.gold-text {
  color: var(--gold);
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  font-size: 16px;
  padding: 15px 36px;
}

.btn-full {
  width: 100%;
}

/* --- Fade-in animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- HEADER / NAV --- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#site-header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: padding var(--transition);
}

#site-header.scrolled .nav-inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links li a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  color: #0a0a0a !important;
  border-radius: 6px;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
}

.hero-img-1 {
  background-image: url('../images/hero-image_002.jpg');
  opacity: 0.25;
}

.hero-img-2 {
  background-image: url('../images/hero-image_009_final.jpg');
  opacity: 0.18;
  mix-blend-mode: luminosity;
}

.hero-img-3 {
  background-image: url('../images/hero-image_013_cropped.jpg');
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.75) 50%,
    rgba(8,8,8,0.82) 100%
  );
}

.hero-gold-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,215,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(74,124,89,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.1); }
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-h1 .gold-text {
  display: block;
  background: linear-gradient(135deg, #FFD700 0%, #FDB813 40%, #e8a000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
}

.stat:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: scroll-fade 2s ease-in-out infinite;
}

@keyframes scroll-fade {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.5); }
}

/* --- WHY SECTION --- */
.why-section {
  background: var(--bg-1);
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 215, 0, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  margin-bottom: 20px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

/* --- TOKENOMICS --- */
.tokenomics-section {
  background: var(--bg);
}

.tokenomics-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}

.tokenomics-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.pie-chart {
  filter: drop-shadow(0 0 24px rgba(255, 215, 0, 0.2));
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.tokenomics-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.token-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.token-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ts-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.ts-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.ts-ticker {
  font-size: 12px;
  color: var(--text-muted);
}

.vesting-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.vesting-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
}

.vesting-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}

.vesting-row:last-child {
  border-bottom: none;
}

.vesting-row:hover {
  background: rgba(255, 215, 0, 0.03);
}

.vesting-group {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  min-width: 100px;
}

.vesting-detail {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- HOW SECTION --- */
.how-section {
  background: var(--bg-1);
}

.how-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 56px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.step:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(255,215,0,0.06);
}

.step-arrow {
  display: flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  opacity: 0.4;
  margin-top: 0;
  padding-top: 20px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 215, 0, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.how-cta {
  text-align: center;
}

/* --- PRESALE --- */
.presale-section {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,215,0,0.04) 0%, transparent 70%);
}

.presale-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(255, 215, 0, 0.08), 0 32px 80px rgba(0,0,0,0.5);
}

.presale-header {
  padding: 40px 40px 0;
  text-align: center;
}

.presale-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.presale-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.presale-progress {
  padding: 0 40px 24px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 100px;
  transition: width 1s ease;
}

.progress-pct {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.presale-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 40px 24px;
}

.tier-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  color: var(--text-muted);
}

.tier-btn:hover, .tier-btn.active {
  border-color: var(--gold);
  background: rgba(255,215,0,0.06);
  color: var(--text);
}

.tier-emoji {
  font-size: 24px;
  line-height: 1;
}

.tier-name {
  font-size: 13px;
  font-weight: 600;
}

.tier-amount {
  font-size: 11px;
  color: var(--text-dim);
}

.presale-form {
  padding: 0 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.input-wrap {
  position: relative;
}

.input-wrap input {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 56px 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition);
  -moz-appearance: textfield;
}

.input-wrap input::-webkit-inner-spin-button,
.input-wrap input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.input-wrap input:focus {
  border-color: var(--gold);
}

.input-badge {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255,215,0,0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.you-get {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.you-get .gold-text {
  font-weight: 700;
  font-size: 15px;
}

.presale-note {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}

/* --- COMMUNITY --- */
.community-section {
  background: var(--bg-1);
}

.community-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 60px;
  max-width: 600px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}

.social-card:hover {
  border-color: var(--border-hover);
  color: var(--text);
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(255,215,0,0.06);
}

.social-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.social-count {
  font-size: 13px;
  color: var(--text-dim);
}

.social-arrow {
  margin-left: auto;
  font-size: 18px;
  opacity: 0.4;
  transition: opacity var(--transition), transform var(--transition);
}

.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}

.quote-card:hover {
  border-color: rgba(255,215,0,0.3);
}

.quote-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.quote-text::before {
  content: '"';
  color: var(--gold);
  font-size: 1.2em;
}

.quote-text::after {
  content: '"';
  color: var(--gold);
  font-size: 1.2em;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
}

.quote-avatar {
  font-size: 20px;
  line-height: 1;
}

/* --- FAQ --- */
.faq-section {
  background: var(--bg);
}

.faq-container {
  max-width: 720px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(255,215,0,0.35);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-1);
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-gold-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-2) 70%, transparent 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 16px 0 12px;
  line-height: 1.6;
}

.footer-micro {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-explorer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.explorer-link {
  font-size: 13px;
  color: var(--text-dim);
  transition: color var(--transition);
}

.explorer-link:hover {
  color: var(--gold);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .tokenomics-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tokenomics-chart {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    border-top: 1px solid var(--border);
    margin-top: 16px;
    padding-top: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    padding: 12px 8px;
    font-size: 16px;
  }

  .nav-cta {
    text-align: center;
  }

  /* Hero */
  .hero-h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat {
    padding: 0 16px;
  }

  .stat-divider {
    display: none;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    align-self: center;
    padding: 0;
  }

  /* Tokenomics */
  .token-stat-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Presale */
  .presale-header,
  .presale-progress,
  .presale-tiers,
  .presale-form {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Community */
  .quotes-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-links-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .presale-tiers {
    grid-template-columns: 1fr;
  }

  .token-stat-row {
    grid-template-columns: 1fr;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,215,0,0.3);
}

/* --- Selection --- */
::selection {
  background: rgba(255,215,0,0.25);
  color: var(--text);
}
