/* ===== Variables ===== */
:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --green: #ccff00;
  --green-glow: rgba(204, 255, 0, 0.35);
  --green-dim: rgba(204, 255, 0, 0.12);
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #a1a1a1;
  --border: rgba(255, 255, 255, 0.1);
  --border-dotted: rgba(255, 255, 255, 0.2);
  --radius: 16px;
  --radius-pill: 999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 72px;
  --ticker-h: 36px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== Ticker ===== */
.ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--ticker-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker span {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  line-height: var(--ticker-h);
  white-space: nowrap;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 2.5rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-icon {
  color: var(--gray);
  transition: color 0.2s;
  display: flex;
}
.social-icon:hover { color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--green);
  color: #000;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 24px var(--green-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 36px var(--green-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; }
.btn-copy {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: 100vh;
  padding: calc(var(--ticker-h) + var(--nav-h) + 3rem) 2.5rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.title-white { color: var(--white); }
.title-green {
  color: var(--green);
  text-shadow: 0 0 60px var(--green-glow);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}
.pill-outline {
  border: 1px solid rgba(204, 255, 0, 0.4);
  color: var(--green);
}
.hero-tagline {
  font-size: 0.8rem;
  color: var(--gray);
  margin-left: 0.25rem;
}
.hero-desc {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-desc strong { color: var(--white); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ca-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.6rem 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-dotted);
  border-radius: var(--radius-pill);
  max-width: 520px;
}
.ca-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  flex-shrink: 0;
}
.ca-address {
  font-size: 0.78rem;
  color: var(--gray-light);
  font-family: 'SF Mono', 'Fira Code', monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}
.ca-address.ca-pending {
  font-family: var(--font);
  font-style: italic;
  color: var(--gray);
}
.btn-copy:disabled,
.btn-outline:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-circle {
  width: clamp(280px, 40vw, 420px);
  height: clamp(280px, 40vw, 420px);
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px var(--green-glow), 0 0 160px rgba(204, 255, 0, 0.15);
  overflow: hidden;
}
.hero-logo {
  width: 65%;
  height: 65%;
  object-fit: contain;
}

/* ===== Sections ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}
.section-glow {
  position: relative;
}
.section-glow::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at top right, rgba(204, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}
.section-body {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  max-width: 520px;
  line-height: 1.75;
}
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ===== Quote Card ===== */
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  text-align: center;
}
.quote-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green);
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 40px var(--green-glow);
}
.quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-text {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: normal;
}
.quote-cite {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  font-style: normal;
}

/* ===== Tokenomics ===== */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.token-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.token-value {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 0.35rem;
}
.token-label {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== Roadmap ===== */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.roadmap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.phase-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--green);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.roadmap-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.roadmap-list li {
  font-size: 0.85rem;
  color: var(--gray);
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.roadmap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: transparent;
}

/* ===== Disclaimer ===== */
.disclaimer-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  overflow: hidden;
}
.disclaimer-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
}
.disclaimer-box p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--green);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--bg-card-hover); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
  padding: 4rem 2.5rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
}
.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--green);
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 50px var(--green-glow);
  position: relative;
}
.cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
}
.cta-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  position: relative;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== Mobile Nav Open ===== */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: calc(var(--ticker-h) + var(--nav-h));
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.97);
  padding: 1.5rem 2.5rem 2rem;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-circle { width: 220px; height: 220px; }
  .hero-desc, .ca-bar { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .section-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tokenomics-grid,
  .steps-grid,
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero, .section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .tokenomics-grid,
  .steps-grid,
  .roadmap-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .ca-bar { flex-wrap: wrap; border-radius: var(--radius); }
  .ca-address { width: 100%; text-align: center; padding: 0.25rem 0; }
}
