/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --green:      #39FF14;
  --green-dim:  #2ecc10;
  --black:      #080808;
  --black-2:    #101010;
  --black-3:    #1a1a1a;
  --white:      #f5f5f0;
  --white-2:    #b0aca6;
  --white-3:    #5a5650;
  --border:     rgba(245,245,240,0.08);

  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;

  --nav-h: 60px;

  --pad-x: clamp(20px, 5vw, 64px);
  --pad-section: clamp(64px, 10vw, 128px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
em { color: var(--green); font-style: normal; }

.skip-link {
  position: absolute; top: -100%; left: 20px;
  background: var(--green); color: var(--black);
  padding: 8px 16px; border-radius: 4px; font-weight: 700;
  z-index: 999; font-size: 14px;
}
.skip-link:focus { top: 20px; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-3);
  margin-bottom: 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  min-height: 48px;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.btn--primary {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
  font-weight: 700;
}
.btn--primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  color: var(--white-2);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--white-2);
  color: var(--white);
}

.btn--nav {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  min-height: 40px;
}
.btn--nav:hover { background: #fff; border-color: #fff; transform: none; }

.btn--large {
  padding: 18px 40px;
  font-size: 15px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .3s ease;
}
.nav--hidden { transform: translateY(-100%); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav__arrow {
  width: 18px; height: 18px;
  color: var(--green);
}

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

.nav__link {
  font-size: 13px;
  color: var(--white-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .18s ease;
}
.nav__link:hover { color: var(--green); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  max-width: 100vw;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 6vh, 72px) var(--pad-x);
}

.hero__tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-3);
  margin-bottom: clamp(24px, 4vh, 48px);
}

.hero__headline {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(36px, 10.5vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  word-break: break-word;
}

.hero__line { display: block; overflow: hidden; }
.hero__line--green { color: var(--green); }

.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: clamp(40px, 6vh, 64px);
}

@media (min-width: 640px) {
  .hero__bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.hero__sub {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--white-2);
  line-height: 1.4;
  font-style: italic;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Background arrow */
.hero__arrow-bg {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 38vw, 480px);
  height: clamp(200px, 38vw, 480px);
  color: var(--green);
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}
.hero__arrow-bg svg { width: 100%; height: 100%; }

@media (max-width: 480px) {
  .hero__arrow-bg { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--green);
  padding: 12px 0;
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: var(--pad-section) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
}

.stat {
  background: var(--black);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s ease;
}
.stat:hover { background: var(--black-2); }

.stat--green {
  background: var(--green);
}
.stat--green:hover { background: #4dff28; }
.stat--green .stat__num,
.stat--green .stat__unit,
.stat--green .stat__label { color: var(--black); }

.stat__top {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.stat__num {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat__unit {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--green);
  line-height: 1;
}
.stat__label {
  font-size: 14px;
  color: var(--white-2);
  line-height: 1.55;
}

/* ============================================================
   WHY
   ============================================================ */
.why {
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--border);
}

.why__intro {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.why__headline {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
}

.why__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .why__cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--black);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s ease;
  position: relative;
}
.card:hover { background: var(--black-2); }

.card--green {
  background: var(--black-2);
  border-left: 3px solid var(--green);
}
@media (min-width: 768px) {
  .card--green { border-left: none; border-top: 3px solid var(--green); }
}

.card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
}

.card__arrow {
  font-size: 28px;
  color: var(--green);
  line-height: 1;
  opacity: 0.5;
  margin-bottom: 4px;
}

.card__title {
  font-family: var(--font-d);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.card__body {
  font-size: 14px;
  color: var(--white-2);
  line-height: 1.65;
}

/* ============================================================
   TOKENOMICS
   ============================================================ */
.tokenomics {
  padding: var(--pad-section) 0;
  border-top: 1px solid var(--border);
}

.tokenomics__header {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.tokenomics__headline {
  font-family: var(--font-d);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.tlist {
  max-width: 640px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.trow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: background .15s ease;
}
.trow:last-child { border-bottom: none; }
.trow:hover { background: var(--black-2); }

.trow__k {
  font-size: 13px;
  color: var(--white-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.trow__v {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-align: right;
}
.trow__v--green { color: var(--green); }
.trow__v--muted {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--white-2);
  font-weight: 400;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  padding: var(--pad-section) 0 clamp(80px, 12vw, 160px);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
}

.cta-final__arrow {
  width: clamp(60px, 10vw, 100px);
  height: clamp(60px, 10vw, 100px);
  color: var(--green);
  margin-bottom: 8px;
}
.cta-final__arrow svg { width: 100%; height: 100%; }

.cta-final__headline {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(56px, 14vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  word-break: break-word;
}
.cta-final__headline span { color: var(--green); }

.cta-final__sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--white-2);
  font-style: italic;
  font-weight: 300;
}

.cta-final__links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--white-3);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-final__links a {
  color: var(--white-2);
  transition: color .18s ease;
}
.cta-final__links a:hover { color: var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.footer p {
  font-size: 12px;
  color: var(--white-3);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}
.footer__copy { margin-top: 8px !important; color: var(--white-3); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
}
