:root {
  --bg: #030303;
  --lime: #ccff00;
  --lime-dim: rgba(204, 255, 0, 0.1);
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-main: rgba(255, 255, 255, 0.95);
  --text-muted: rgba(255, 255, 255, 0.6);
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Backgrounds */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(circle at center, transparent 30%, #030303 120%);
  pointer-events: none;
}

/* Page Wrapper */
.page-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 20px;
}

.brand-mark {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--lime);
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--white);
}

/* Hero Typography Overhaul */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-inner {
  max-width: 720px;
  padding: 0 24px;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge Style for Label */
.label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(204, 255, 0, 0.08);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards 0.5s;
}

.label-badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
}

/* Modern Tight Title */
.title {
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
  color: var(--white);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.7s;
  background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Two-tone Subtitle */
.subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.subtitle strong {
  display: block;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.4;
}

.actions {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.1s;
}

/* Buttons */
.btn-primary {
  position: relative;
  padding: 16px 36px;
  background: var(--white);
  color: #000;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  overflow: hidden;
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--lime) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  mix-blend-mode: color-dodge;
}

.btn-primary:hover .btn-glow {
  opacity: 0.5;
  transform: scale(1);
}

.btn-glass {
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 
   ==========================================================================
   SECTIONS TYPOGRAPHY & LAYOUT (v10 Premium)
   ==========================================================================
*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section, .features {
  padding: 160px 0;
  background: transparent;
  position: relative;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--white);
  background: linear-gradient(to bottom right, #fff 20%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
}

/* Features Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: rgba(12, 12, 12, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(18, 18, 18, 0.8);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(204, 255, 0, 0.08);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: transform 0.3s;
}

.card:hover .card-icon {
  transform: scale(1.1);
  background: rgba(204, 255, 0, 0.15);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Bullets List */
.bullets {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(12, 12, 12, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  z-index: 2;
}

.bullets ul {
  list-style: none;
  display: grid;
  gap: 24px;
}

.bullets li {
  position: relative;
  padding-left: 32px;
  color: var(--text-main);
  line-height: 1.5;
  font-size: 18px;
  font-weight: 500;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  border-radius: 2px;
}

/* Token Grid */
.token-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.copy-card {
  background: rgba(12, 12, 12, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  text-align: left;
}

.muted-title {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.mini-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.mini-list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  color: var(--text-main);
}

.mini-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  position: absolute;
  left: 0;
  top: 0.7em;
  transition: background 0.3s;
}

.copy-card:hover .mini-list li::before {
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

/* Governance */
.gov-highlight {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.gov-tagline {
  margin-top: 40px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #fff, var(--lime), #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

/* Final CTA */
.final-cta {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(20px);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.final-cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  color: var(--white);
}

.final-actions {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Ticker - Fixed & Polished */
.ticker-wrap {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  padding: 24px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  transition: color 0.3s;
  vertical-align: middle;
}

.ticker .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
  margin: 0 40px;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--lime);
}

.ticker-wrap:hover .ticker-item {
  color: var(--white);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer */
.footer {
  padding: 80px 0;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 14px;
  background: #030303; 
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .token-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header { padding: 20px; }
  .grid { grid-template-columns: 1fr; }
  .section, .features { padding: 80px 0; }
  .final-cta { padding: 40px 24px; }
  .gov-tagline { font-size: 32px; }
}
