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

:root {
  --bg-primary: #050505;
  --bg-secondary: #090909;
  --bg-card: rgba(17, 17, 17, 0.7);
  --bg-card-hover: rgba(25, 25, 25, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 213, 74, 0.3);
  
  --text-primary: #ffffff;
  --text-secondary: #9999a1;
  --text-muted: #5b5b66;
  
  --gold: #FFD54A;
  --orange: #FF9F43;
  --blue: #00F2FE;
  --purple: #7F00FF;
  --green: #00E676;
  --red: #FF5252;
  
  --gradient-gold: linear-gradient(135deg, #FFD54A 0%, #FF9F43 100%);
  --gradient-blue-purple: linear-gradient(135deg, #00F2FE 0%, #7F00FF 100%);
  --gradient-glow: radial-gradient(circle, rgba(255, 213, 74, 0.15) 0%, transparent 70%);
  
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 100px;
  
  --shadow-glass: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --shadow-glow: 0 0 30px rgba(255, 213, 74, 0.25);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Custom Cursor */
.custom-cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out, opacity 0.3s ease;
  box-shadow: 0 0 15px var(--gold);
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 213, 74, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

body:hover .custom-cursor { opacity: 1; }
a:hover ~ .cursor-follower, button:hover ~ .cursor-follower, .interactive:hover ~ .cursor-follower {
  transform: translate(-50%, -50%) scale(1.8);
  background: rgba(255, 213, 74, 0.1);
  border-color: var(--gold);
}

/* Noise & Grid Canvas Overlay */
#particleCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.bg-grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
  animation: blobFloat 18s ease-in-out infinite alternate;
}

.blob-gold {
  width: 550px;
  height: 550px;
  background: rgba(255, 213, 74, 0.25);
  top: -100px;
  left: -150px;
}

.blob-purple {
  width: 600px;
  height: 600px;
  background: rgba(127, 0, 255, 0.2);
  top: 400px;
  right: -200px;
  animation-delay: -6s;
}

.blob-blue {
  width: 500px;
  height: 500px;
  background: rgba(0, 242, 254, 0.18);
  bottom: 200px;
  left: -100px;
  animation-delay: -12s;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 80px) scale(1.15); }
  100% { transform: translate(-40px, 50px) scale(0.9); }
}

/* Layout Core */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 213, 74, 0.08);
  border: 1px solid rgba(255, 213, 74, 0.25);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-text-blue {
  background: var(--gradient-blue-purple);
  -webkit-background-clip: text;
  -webkit-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Glass Card Utility */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-fast), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover {
  border-color: rgba(255, 213, 74, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 213, 74, 0.12);
}

/* Magnetic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-smooth), border-color var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-gold);
  color: #050505;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(255, 213, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(255, 213, 74, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(255, 213, 74, 0.08);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 213, 74, 0.15);
}

.btn-block { width: 100%; }

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #050505;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.coin-ring-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--orange);
  animation: preloaderSpin 1.4s linear infinite;
}

.preloader-ring-outer {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 213, 74, 0.25);
  animation: preloaderSpinReverse 6s linear infinite;
}

.preloader-coin {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 213, 74, 0.8));
  animation: preloaderPulse 1.8s ease-in-out infinite alternate;
}

.preloader-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--gold);
}

@keyframes preloaderSpin { to { transform: rotate(360deg); } }
@keyframes preloaderSpinReverse { to { transform: rotate(-360deg); } }
@keyframes preloaderPulse { 
  0% { transform: scale(0.9); filter: drop-shadow(0 0 15px rgba(255, 213, 74, 0.5)); } 
  100% { transform: scale(1.1); filter: drop-shadow(0 0 35px rgba(255, 213, 74, 0.9)); } 
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-box {
  background: #111;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 213, 74, 0.2);
  animation: modalScaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px var(--gold));
}

.modal-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 28px;
}

@keyframes modalScaleUp {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: padding var(--transition-smooth), background var(--transition-smooth), border-color var(--transition-smooth);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #fff;
}

.logo-coin-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 213, 74, 0.5));
  transition: transform 0.5s ease;
}

.nav-logo:hover img {
  transform: rotate(360deg) scale(1.1);
}

.nav-logo span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu a:not(.nav-cta):hover {
  color: #fff;
}

.nav-menu a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-gold) !important;
  color: #050505 !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 20px rgba(255, 213, 74, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 30px rgba(255, 213, 74, 0.5) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

/* Live Price Card */
.price-card {
  padding: 32px;
  margin-bottom: 40px;
  max-width: 480px;
  position: relative;
  background: rgba(17, 17, 17, 0.75);
  border: 1px solid var(--border-color);
}

.price-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.price-value-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.price-value {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  font-feature-settings: "tnum";
}

.price-value.up { color: var(--green); text-shadow: 0 0 20px rgba(0, 230, 118, 0.3); }
.price-value.down { color: var(--red); text-shadow: 0 0 20px rgba(255, 82, 82, 0.3); }

.price-change {
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.price-change.up {
  background: rgba(0, 230, 118, 0.12);
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.price-change.down {
  background: rgba(255, 82, 82, 0.12);
  color: var(--red);
  border: 1px solid rgba(255, 82, 82, 0.25);
}

/* Sparkline Background Visual */
.sparkline-canvas {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  display: block;
}

.price-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.price-detail-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.price-detail-item strong {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

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

/* Hero 3D Coin Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hero-coin-container {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.hero-coin {
  width: 320px;
  height: 320px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 50px rgba(255, 213, 74, 0.35));
  animation: float3DCoin 8s ease-in-out infinite alternate;
  transform-style: preserve-3d;
}

.coin-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 213, 74, 0.25) 0%, rgba(127, 0, 255, 0.15) 50%, transparent 75%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite alternate;
  filter: blur(20px);
}

.coin-orbit-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 213, 74, 0.2);
  z-index: 2;
  transform: rotateX(75deg);
  animation: orbitSpin 20s linear infinite;
}

.coin-orbit-ring::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold);
}

@keyframes float3DCoin {
  0% { transform: translateY(0) rotateY(0deg) rotateX(0deg); }
  50% { transform: translateY(-25px) rotateY(15deg) rotateX(8deg); }
  100% { transform: translateY(0) rotateY(-15deg) rotateX(-8deg); }
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0.85; }
}

@keyframes orbitSpin {
  to { transform: rotateX(75deg) rotate(360deg); }
}

/* STATS BAR */
.stats-bar {
  position: relative;
  z-index: 5;
  margin-top: -40px;
}

.stats-bar-glass {
  padding: 32px 48px;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  backdrop-filter: blur(30px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 0 16px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 4px;
  color: #fff;
  font-feature-settings: "tnum";
}

.stat-value.up { color: var(--green); }
.stat-value.down { color: var(--red); }

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ABOUT SECTION */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-card {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-image-card img {
  max-width: 360px;
  filter: drop-shadow(0 20px 40px rgba(255, 213, 74, 0.3));
  transition: transform 0.6s ease;
}

.about-image-card:hover img {
  transform: scale(1.08) rotate(5deg);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.about-feature {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.about-feature:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  background: rgba(255, 213, 74, 0.05);
}

.about-feature i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* FEATURES SECTION */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 44px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 213, 74, 0.08);
  border: 1px solid rgba(255, 213, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(255, 213, 74, 0.15);
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gradient-gold);
  color: #050505;
  border-color: transparent;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* TOKENOMICS SECTION */
.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.token-chart-wrapper {
  padding: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circular-chart-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin-bottom: 40px;
}

.donut-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.donut-segment {
  fill: transparent;
  stroke-width: 22;
  transition: stroke-width 0.3s ease, stroke 0.3s ease;
  cursor: pointer;
}

.donut-segment:hover {
  stroke-width: 28;
  filter: drop-shadow(0 0 12px currentColor);
}

.donut-segment-community { stroke: #FFD54A; stroke-dasharray: 220 400; stroke-dashoffset: 0; }
.donut-segment-dev { stroke: #00F2FE; stroke-dasharray: 44 400; stroke-dashoffset: -225; }
.donut-segment-ops { stroke: #7F00FF; stroke-dasharray: 31 400; stroke-dashoffset: -274; }
.donut-segment-legal { stroke: #FF9F43; stroke-dasharray: 19 400; stroke-dashoffset: -308; }

.chart-center-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.chart-center-text .total-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.chart-center-text .total-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.chart-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-community { background: #FFD54A; box-shadow: 0 0 10px #FFD54A; }
.dot-dev { background: #00F2FE; box-shadow: 0 0 10px #00F2FE; }
.dot-ops { background: #7F00FF; box-shadow: 0 0 10px #7F00FF; }
.dot-legal { background: #FF9F43; box-shadow: 0 0 10px #FF9F43; }

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

.token-detail-card {
  padding: 32px 24px;
  text-align: center;
}

.token-detail-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.token-detail-card h3 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.token-detail-card p {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

/* CTA SECTION */
.cta-block {
  padding: 90px 60px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(255, 213, 74, 0.15) 0%, rgba(17, 17, 17, 0.85) 70%);
  border: 1px solid var(--border-glow);
}

.cta-content {
  max-width: 780px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.cta-features span {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-features i {
  color: var(--green);
  font-size: 1.2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ SECTION */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background 0.4s ease;
}

.faq-item.active .faq-icon-wrap {
  transform: rotate(180deg);
  background: var(--gold);
  color: #050505;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 32px 28px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item-card {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item-card i {
  font-size: 1.6rem;
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 213, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-card h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item-card a {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item-card a:hover {
  color: var(--gold);
}

.contact-social-row {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.contact-social-row a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.contact-social-row a:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  color: #050505;
  background: var(--gradient-gold);
  box-shadow: 0 8px 25px rgba(255, 213, 74, 0.4);
}

.contact-form-wrap {
  padding: 44px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 24px;
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 213, 74, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* FOOTER */
.footer {
  background: #030303;
  border-top: 1px solid var(--border-color);
  padding: 100px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 360px;
  margin: 20px 0 28px;
}

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

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 8px 0;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* SCROLL REVEAL ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="zoom"] {
  transform: scale(0.9);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 40px; }
  .price-card { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  
  .section-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .about-features { max-width: 600px; margin: 40px auto 0; }
  
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tokenomics-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 340px;
    background: rgba(9, 9, 9, 0.96);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  }
  
  .nav-menu.open { transform: translateX(0); }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item:not(:last-child)::after { display: none; }
  
  .features-grid { grid-template-columns: 1fr; }
  .token-details { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  
  .hero-coin-container { width: 280px; height: 280px; }
  .hero-coin { width: 240px; height: 240px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-block { padding: 60px 24px; }
}
