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

:root {
  --green: #00c805;
  --green-bright: #39ff14;
  --green-dim: #00a004;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --white: #f5f5f5;
  --gray: #888;
  --gray-light: #ccc;
  --font: 'Space Grotesk', system-ui, sans-serif;
  --font-display: 'Bebas Neue', 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 200, 5, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-logo img {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-x {
  padding: 0.5rem 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 30px rgba(0, 200, 5, 0.3);
}

.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-logo {
  margin: 0 auto 1.5rem;
  border-radius: 24px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0, 200, 5, 0.4));
}

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

.hero-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(0, 200, 5, 0.1);
  border: 1px solid rgba(0, 200, 5, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.hero-title .accent {
  color: var(--green);
}

.hero-tagline {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-tagline em {
  color: var(--green);
  font-style: normal;
}

.hero-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* CA Box */
.ca-box {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.ca-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.ca-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ca-row code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--green-bright);
  word-break: break-all;
  text-align: left;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.btn-copy:hover {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}

.btn-copy.copied {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ticker */
.ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticker-track span:nth-child(odd) {
  color: var(--green);
}

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

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 200, 5, 0.15);
  border-top: 1px solid rgba(0, 200, 5, 0.15);
  border-bottom: 1px solid rgba(0, 200, 5, 0.15);
}

.stat-card {
  background: var(--dark);
  padding: 1.5rem;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.stat-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.accent-text {
  color: var(--green);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1rem;
}

/* Chart */
.chart-section {
  background: var(--dark);
}

.chart-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-3);
  background: #0d0d0d;
  aspect-ratio: 16 / 9;
  min-height: 400px;
}

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

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.chart-link:hover {
  opacity: 0.8;
}

/* Roadmap */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.roadmap-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  position: relative;
}

.roadmap-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 4.5rem;
  bottom: 0;
  width: 2px;
  background: var(--dark-3);
}

.roadmap-item.done .roadmap-marker {
  background: var(--green);
  color: var(--black);
}

.roadmap-item.active .roadmap-marker {
  background: var(--green-bright);
  color: var(--black);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.5); }
  50% { box-shadow: 0 0 35px rgba(57, 255, 20, 0.8); }
}

.roadmap-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 1;
}

.roadmap-body .phase {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
}

.roadmap-body h3 {
  font-size: 1.3rem;
  margin: 0.25rem 0 0.5rem;
}

.roadmap-body p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Tokenomics */
.tokenomics-section {
  background: var(--dark);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.donut {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    var(--green) 0% calc(var(--p1) * 1%),
    #39ff14 calc(var(--p1) * 1%) calc((var(--p1) + var(--p2)) * 1%),
    #00a004 calc((var(--p1) + var(--p2)) * 1%) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.donut-hole {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donut-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.donut-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--green);
}

.legend {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legend li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-light);
}

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

.dot-1 { background: var(--green); }
.dot-2 { background: #39ff14; }
.dot-3 { background: var(--green-dim); }

.tokenomics-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.detail-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.detail-card:hover {
  border-color: rgba(0, 200, 5, 0.3);
}

.detail-card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.big-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.detail-sub {
  font-size: 0.85rem;
  color: var(--gray);
}

/* CTA */
.cta-section {
  padding: 5rem 0;
  text-align: center;
}

.cta-logo {
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  opacity: 0.9;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--dark-3);
}

.footer-banner {
  width: 100%;
  background: var(--black);
  overflow: hidden;
}

.footer-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 280px;
  object-position: center;
}

.footer-bottom {
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand img {
  border-radius: 6px;
}

.footer-social {
  margin-bottom: 1rem;
}

.footer-social a {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.8;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.copyright {
  font-size: 0.75rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 0.75rem 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-x {
    display: none;
  }

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

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

  .tokenomics-details {
    grid-template-columns: 1fr;
  }

  .roadmap-item {
    gap: 1rem;
  }

  .roadmap-marker {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .roadmap-item:not(:last-child)::after {
    left: 19px;
  }
}
