/* ==========================================
   BullX — The Bullish Guardian of ProveX
   ========================================== */

/* ---- Custom Properties ---- */
:root {
  --bg-primary: #020202;
  --bg-secondary: #0a0a0f;
  --bg-tertiary: #111122;
  --bg-card: rgba(12, 12, 22, 0.88);
  --bg-card-hover: rgba(18, 18, 32, 0.95);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --accent-green: #00ff9d;
  --accent-green-dim: rgba(0, 255, 157, 0.12);
  --accent-red: #ff2d2d;
  --accent-red-dim: rgba(255, 45, 45, 0.12);
  --accent-orange: #ff6b35;
  --accent-orange-dim: rgba(255, 107, 53, 0.12);
  --accent-purple: #7b2ff7;
  --accent-purple-dim: rgba(123, 47, 247, 0.12);
  --accent-gold: #ffd700;
  --accent-gold-dim: rgba(255, 215, 0, 0.12);
  --accent-blue: #4A53F9;
  --accent-blue-dim: rgba(74, 83, 249, 0.12);

  --text-primary: #ffffff;
  --text-secondary: #9a9ab0;
  --text-muted: #555566;

  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1200px;
  --nav-height: 72px;
}

/* ---- 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: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

body.loaded #loader {
  opacity: 0;
  pointer-events: none;
}

::selection {
  background: var(--accent-green);
  color: var(--bg-primary);
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

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

strong {
  color: var(--text-primary);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Loading Screen ---- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #050505 0%, #010101 100%);
  transition: opacity 0.6s ease;
}

.loader-content {
  text-align: center;
}

.loader-ring {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  position: relative;
  border: 3px solid transparent;
  border-top-color: var(--accent-red);
  border-radius: 50%;
  animation: loader-spin 1s linear infinite;
}

.loader-ring-inner {
  position: absolute;
  inset: 6px;
  border: 3px solid transparent;
  border-top-color: var(--accent-orange);
  border-radius: 50%;
  animation: loader-spin 1.4s linear infinite reverse;
}

.loader-text {
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.loader-dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

#navbar.scrolled {
  background: rgba(2, 2, 2, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--text-primary);
}

.logo-icon {
  width: 36px;
  height: 32px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

.btn-md {
  padding: 12px 28px;
  font-size: 0.9375rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: var(--text-primary);
  box-shadow: 0 4px 24px rgba(255, 45, 45, 0.25);
}

.btn-primary:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 45, 45, 0.35);
}

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

.btn-outline:hover {
  color: var(--text-primary);
  border-color: var(--accent-orange);
  background: rgba(255, 107, 53, 0.08);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--accent-green), #00cc7d);
  color: var(--bg-primary);
  box-shadow: 0 4px 24px rgba(0, 255, 157, 0.2);
}

.btn-green:hover {
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 255, 157, 0.3);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Section Utilities ---- */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-green);
  border: 1px solid var(--accent-green-dim);
  border-radius: var(--radius-full);
  background: var(--accent-green-dim);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.text-gradient-fire {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.text-gradient-green {
  background: linear-gradient(135deg, var(--accent-green), #00cc7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Hero ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.hero-chart-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.12;
  filter: saturate(0.6) hue-rotate(-10deg);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255, 45, 45, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 30% 60%, rgba(123, 47, 247, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(2,2,2,0.3) 0%, rgba(2,2,2,0.7) 50%, var(--bg-primary) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0;
  animation: ember-rise linear infinite;
}

@keyframes ember-rise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(0.3);
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 24px;
  min-height: calc(100vh - var(--nav-height));
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-green);
  border: 1px solid var(--accent-green-dim);
  border-radius: var(--radius-full);
  background: var(--accent-green-dim);
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(0, 255, 157, 0); }
}

.hero-title {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.title-bull {
  color: var(--text-primary);
}

.title-x {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-subtitle .provex-link {
  color: var(--accent-green);
  font-weight: 700;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.hero-subtitle .provex-link:hover {
  color: #33ffb1;
  text-shadow: 0 0 12px rgba(0, 255, 157, 0.4);
}

.hero-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero-stat-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.15), rgba(123, 47, 247, 0.1), transparent 70%);
  filter: blur(60px);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-image img {
  max-height: 520px;
  width: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}

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

/* ---- About ---- */
#about {
  padding: 120px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content .section-title {
  text-align: left;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-orange);
  font-size: 1rem;
}

.highlight strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.highlight span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.about-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.about-image-frame img {
  width: 100%;
  transition: transform var(--transition-slow);
}

.about-image-frame:hover img {
  transform: scale(1.03);
}

/* ---- Features ---- */
#features {
  padding: 120px 0;
  position: relative;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(123, 47, 247, 0.04) 0%, transparent 100%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(255, 45, 45, 0.04) 0%, transparent 100%);
}

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

.feature-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
  overflow: hidden;
}

.feature-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.feature-card:hover .feature-glow {
  opacity: 1;
}

.feature-card[data-color="purple"] .feature-icon { color: var(--accent-purple); background: var(--accent-purple-dim); }
.feature-card[data-color="purple"] .feature-glow { background: radial-gradient(circle at 30% 30%, var(--accent-purple-dim), transparent 60%); }
.feature-card[data-color="purple"]:hover { border-color: rgba(123, 47, 247, 0.2); }

.feature-card[data-color="red"] .feature-icon { color: var(--accent-red); background: var(--accent-red-dim); }
.feature-card[data-color="red"] .feature-glow { background: radial-gradient(circle at 30% 30%, var(--accent-red-dim), transparent 60%); }
.feature-card[data-color="red"]:hover { border-color: rgba(255, 45, 45, 0.2); }

.feature-card[data-color="gold"] .feature-icon { color: var(--accent-gold); background: var(--accent-gold-dim); }
.feature-card[data-color="gold"] .feature-glow { background: radial-gradient(circle at 30% 30%, var(--accent-gold-dim), transparent 60%); }
.feature-card[data-color="gold"]:hover { border-color: rgba(255, 215, 0, 0.2); }

.feature-card[data-color="green"] .feature-icon { color: var(--accent-green); background: var(--accent-green-dim); }
.feature-card[data-color="green"] .feature-glow { background: radial-gradient(circle at 30% 30%, var(--accent-green-dim), transparent 60%); }
.feature-card[data-color="green"]:hover { border-color: rgba(0, 255, 157, 0.2); }

.feature-card[data-color="blue"] .feature-icon { color: var(--accent-blue); background: var(--accent-blue-dim); }
.feature-card[data-color="blue"] .feature-glow { background: radial-gradient(circle at 30% 30%, var(--accent-blue-dim), transparent 60%); }
.feature-card[data-color="blue"]:hover { border-color: rgba(74, 83, 249, 0.2); }

.feature-card[data-color="orange"] .feature-icon { color: var(--accent-orange); background: var(--accent-orange-dim); }
.feature-card[data-color="orange"] .feature-glow { background: radial-gradient(circle at 30% 30%, var(--accent-orange-dim), transparent 60%); }
.feature-card[data-color="orange"]:hover { border-color: rgba(255, 107, 53, 0.2); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---- How It Works ---- */
#how-it-works {
  padding: 120px 0;
  position: relative;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.25rem;
  color: var(--accent-green);
  transition: all var(--transition-base);
}

.step-card:hover .step-icon {
  border-color: var(--accent-green);
  box-shadow: 0 0 30px var(--accent-green-dim);
}

.step-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  color: var(--text-muted);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---- ProveX Banner ---- */
#provex-info {
  padding: 80px 0;
}

.provex-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.provex-banner-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.provex-banner-image img {
  width: 100%;
  transition: transform var(--transition-slow);
}

.provex-banner-image:hover img {
  transform: scale(1.02);
}

.provex-banner-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.3;
}

.provex-banner-text p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.provex-features-list {
  list-style: none;
  margin-bottom: 28px;
}

.provex-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.provex-features-list li i {
  color: var(--accent-green);
  font-size: 0.875rem;
}

/* ---- Token Section ---- */
#token {
  padding: 120px 0;
  position: relative;
  background:
    radial-gradient(ellipse 40% 60% at 70% 40%, rgba(255, 45, 45, 0.04) 0%, transparent 100%);
}

.token-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.token-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.token-detail {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.token-detail:last-of-type {
  border-bottom: none;
}

.token-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.token-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chain-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-green-dim);
  color: var(--accent-green);
  font-size: 0.75rem;
  font-weight: 800;
}

.contract-address {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
}

.contract-address code {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.8125rem;
  color: var(--accent-green);
  word-break: break-all;
  flex: 1;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.copy-btn:hover {
  color: var(--accent-green);
}

.copy-feedback {
  display: none;
  font-size: 0.75rem;
  color: var(--accent-green);
  margin-top: 4px;
}

.copy-feedback.show {
  display: block;
  animation: fade-in 0.2s ease;
}

.token-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.token-chart {
  min-height: 400px;
}

.chart-frame {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ---- Community ---- */
#community {
  padding: 120px 0;
  position: relative;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.community-image img {
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-slow);
}

.community-image img:hover {
  transform: scale(1.02);
}

.community-content .section-title {
  text-align: left;
}

.community-lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.social-btn:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
  border-color: var(--border-hover);
}

.social-btn i {
  font-size: 1.25rem;
}

.social-btn[data-platform="twitter"]:hover { border-color: rgba(255, 255, 255, 0.2); }
.social-btn[data-platform="telegram"]:hover { border-color: rgba(0, 136, 204, 0.4); }
.social-btn[data-platform="telegram"] i { color: #0088cc; }
.social-btn[data-platform="dexscreener"]:hover { border-color: rgba(0, 255, 157, 0.3); }
.social-btn[data-platform="dexscreener"] i { color: var(--accent-green); }
.social-btn[data-platform="explorer"]:hover { border-color: rgba(123, 47, 247, 0.3); }
.social-btn[data-platform="explorer"] i { color: var(--accent-purple); }

/* ---- Footer ---- */
#footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-powered {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-powered a {
  color: var(--accent-green);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-links-col a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  margin-top: 8px;
  font-size: 0.75rem !important;
  opacity: 0.6;
}

/* ---- Animations ---- */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 360px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    flex-wrap: wrap;
    gap: 8px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }

  .provex-banner {
    grid-template-columns: 1fr;
    padding: 32px;
  }

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

  .community-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .community-content .section-title {
    text-align: center;
  }

  .community-lead {
    text-align: center;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(2, 2, 2, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
  }

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

  .nav-links a::after {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-image img {
    max-height: 280px;
  }

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

  .step-card {
    flex: 1 1 100%;
  }

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

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 24px 16px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .provex-banner {
    padding: 24px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
}

/* ---- Prefers Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
