@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;600;700;800&display=swap');

:root {
  --lime: #ccff00;
  --lime-soft: #e2ff66;
  --lime-muted: #a8cc00;
  --chroma: #00b140;
  --chroma-soft: #2dcc6a;

  --green: var(--lime);
  --green-soft: var(--lime-soft);
  --green-dark: #141808;
  --green-glow: rgba(204, 255, 0, 0.38);
  --green-chroma: var(--chroma);

  --black: #000000;
  --panel: #0c0c0a;
  --panel-2: #131311;
  --white: #efefe8;
  --muted: #909088;
  --line: rgba(255, 255, 255, 0.09);
  --header-h: 88px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  background: #000000;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.shell {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* ── Background effects ── */
.bg-smoke {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}

.smoke-fog {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 18% 62%, rgba(204, 255, 0, 0.16), transparent 68%),
    radial-gradient(ellipse 50% 40% at 78% 28%, rgba(0, 177, 64, 0.12), transparent 65%),
    radial-gradient(ellipse 60% 50% at 52% 88%, rgba(204, 255, 0, 0.1), transparent 70%),
    radial-gradient(ellipse 40% 35% at 65% 55%, rgba(204, 255, 0, 0.08), transparent 62%);
  filter: blur(40px);
  animation: fog-shift 24s ease-in-out infinite alternate;
}

.smoke-plume {
  position: absolute;
  border-radius: 58% 42% 64% 36% / 48% 56% 44% 52%;
  filter: blur(72px);
  opacity: 0.55;
  will-change: transform, opacity;
}

.smoke-plume-1 {
  width: 55vw;
  height: 42vw;
  max-width: 680px;
  max-height: 520px;
  top: -12%;
  left: -8%;
  background: radial-gradient(ellipse at 40% 45%, rgba(204, 255, 0, 0.55) 0%, rgba(204, 255, 0, 0.18) 38%, transparent 72%);
  animation: smoke-drift-1 22s ease-in-out infinite alternate;
}

.smoke-plume-2 {
  width: 48vw;
  height: 38vw;
  max-width: 600px;
  max-height: 480px;
  top: 8%;
  right: -12%;
  background: radial-gradient(ellipse at 55% 50%, rgba(0, 177, 64, 0.42) 0%, rgba(204, 255, 0, 0.14) 42%, transparent 74%);
  animation: smoke-drift-2 28s ease-in-out infinite alternate;
}

.smoke-plume-3 {
  width: 62vw;
  height: 36vw;
  max-width: 760px;
  max-height: 440px;
  top: 34%;
  left: 18%;
  background: radial-gradient(ellipse at 50% 55%, rgba(204, 255, 0, 0.38) 0%, rgba(204, 255, 0, 0.1) 45%, transparent 75%);
  animation: smoke-drift-3 26s ease-in-out infinite alternate;
}

.smoke-plume-4 {
  width: 44vw;
  height: 44vw;
  max-width: 540px;
  max-height: 540px;
  bottom: -8%;
  right: 8%;
  background: radial-gradient(ellipse at 45% 40%, rgba(204, 255, 0, 0.32) 0%, rgba(0, 177, 64, 0.12) 40%, transparent 72%);
  animation: smoke-drift-4 30s ease-in-out infinite alternate;
}

.smoke-plume-5 {
  width: 38vw;
  height: 50vw;
  max-width: 480px;
  max-height: 620px;
  bottom: 12%;
  left: -10%;
  background: radial-gradient(ellipse at 60% 35%, rgba(0, 177, 64, 0.28) 0%, rgba(204, 255, 0, 0.08) 48%, transparent 78%);
  animation: smoke-drift-5 20s ease-in-out infinite alternate;
}

.smoke-plume-6 {
  width: 36vw;
  height: 28vw;
  max-width: 460px;
  max-height: 360px;
  top: 52%;
  right: 22%;
  background: radial-gradient(ellipse at 50% 50%, rgba(204, 255, 0, 0.26) 0%, transparent 68%);
  animation: smoke-drift-6 18s ease-in-out infinite alternate;
}

.smoke-plume-7 {
  width: 70vw;
  height: 28vw;
  max-width: 900px;
  max-height: 320px;
  bottom: -6%;
  left: 22%;
  background: radial-gradient(ellipse at 50% 40%, rgba(204, 255, 0, 0.2) 0%, rgba(0, 177, 64, 0.06) 50%, transparent 80%);
  filter: blur(90px);
  opacity: 0.45;
  animation: smoke-drift-7 32s ease-in-out infinite alternate;
}

@keyframes fog-shift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-2%, 3%) scale(1.04); }
}

@keyframes smoke-drift-1 {
  from { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.5; }
  to { transform: translate(6%, 8%) rotate(8deg) scale(1.12); opacity: 0.62; }
}

@keyframes smoke-drift-2 {
  from { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.42; }
  to { transform: translate(-8%, 5%) rotate(-10deg) scale(1.08); opacity: 0.55; }
}

@keyframes smoke-drift-3 {
  from { transform: translate(0, 0) rotate(-4deg) scale(1); opacity: 0.48; }
  to { transform: translate(5%, -6%) rotate(6deg) scale(1.15); opacity: 0.58; }
}

@keyframes smoke-drift-4 {
  from { transform: translate(0, 0) rotate(5deg) scale(1); opacity: 0.4; }
  to { transform: translate(-6%, -4%) rotate(-5deg) scale(1.1); opacity: 0.52; }
}

@keyframes smoke-drift-5 {
  from { transform: translate(0, 0) rotate(-3deg) scale(1); opacity: 0.38; }
  to { transform: translate(7%, -5%) rotate(7deg) scale(1.14); opacity: 0.5; }
}

@keyframes smoke-drift-6 {
  from { transform: translate(0, 0) scale(1); opacity: 0.32; }
  to { transform: translate(-5%, 6%) scale(1.18); opacity: 0.44; }
}

@keyframes smoke-drift-7 {
  from { transform: translate(0, 0) scale(1); opacity: 0.35; }
  to { transform: translate(4%, -3%) scale(1.06); opacity: 0.48; }
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(204, 255, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 15%, transparent 78%);
}

.bg-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 22%, rgba(0, 0, 0, 0.55) 72%, rgba(0, 0, 0, 0.92) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .smoke-fog,
  .smoke-plume {
    animation: none;
  }
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 20px;
}

.header-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 14px 10px 12px;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-avatar {
  width: 40px;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--green);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.brand-text small {
  margin-top: 1px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

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

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

/* ── Buttons ── */
.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #0a0a00;
  border: 2px solid var(--green);
  border-radius: 999px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--green-glow);
}

.button-compact {
  min-height: 40px;
  padding: 0 18px;
  font-size: 11px;
  flex-shrink: 0;
}

.button-outline {
  background: transparent;
  color: var(--green);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: var(--line);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-stage {
  position: relative;
  width: min(320px, 72vw);
  margin: 28px 0 36px;
}

.hero-ring {
  position: absolute;
  inset: -14px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(204, 255, 0, 0.35);
}

.ring-outer {
  inset: 0;
  animation: spin 24s linear infinite;
  border-style: dashed;
}

.ring-inner {
  inset: 14%;
  border-color: rgba(0, 177, 64, 0.35);
  animation: spin 16s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid var(--green);
  box-shadow: 0 0 60px var(--green-glow), 0 0 120px rgba(204, 255, 0, 0.1);
}

.hero-title {
  margin: 0;
  max-width: 900px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 6.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.title-line {
  display: block;
}

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

.lead {
  margin: 28px 0 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
  color: #d4d4cc;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 4px;
}

.hero-stats strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
}

.hero-stats .live {
  color: var(--green);
}

/* ── Marquee ── */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(204, 255, 0, 0.07);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--green);
  white-space: nowrap;
}

.marquee-track span {
  padding-right: 48px;
}

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

/* ── Sections ── */
.section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.centered {
  text-align: center;
}

.section-head h2,
.story-heading,
.closing-inner h2 {
  margin: 10px 0 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-head h2 span,
.story-heading span,
.closing-inner h2 span {
  color: var(--green);
}

.section-desc {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.section-head.centered .section-desc {
  margin-inline: auto;
}

/* ── Story ── */
.story-section {
  background: linear-gradient(180deg, transparent, rgba(204, 255, 0, 0.04) 50%, transparent);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.story-heading {
  margin: 12px 0 0;
}

.story-content {
  padding-top: 8px;
}

.story-quote {
  margin: 0 0 28px;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--green);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  color: var(--green);
}

.story-content p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.75;
  color: #d4d4cc;
  font-weight: 600;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.aside-card {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
}

.aside-tag {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.aside-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 14px;
}

.aside-card p {
  margin: 0;
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

/* ── Timeline ── */
.how-section {
  background: rgba(255, 255, 255, 0.015);
  border-block: 1px solid var(--line);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 72px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--green), transparent);
  opacity: 0.4;
}

.timeline-marker {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: rgba(204, 255, 0, 0.1);
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--green);
}

.timeline-body h3 {
  margin: 8px 0 8px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

/* ── Bento token grid ── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bento-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.2s, background 0.2s;
}

.bento-card span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 10px;
}

.bento-card strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.bento-ticker {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.14), rgba(0, 177, 64, 0.06));
  border-color: rgba(204, 255, 0, 0.35);
}

.bento-ticker strong {
  font-size: clamp(40px, 6vw, 68px);
  color: var(--green);
}

.bento-link {
  color: inherit;
  cursor: pointer;
}

.bento-link:hover {
  border-color: var(--green);
  background: rgba(204, 255, 0, 0.07);
}

.bento-link strong {
  color: var(--green);
}

.bento-contract {
  grid-column: span 2;
}

.contract-link {
  color: inherit;
  text-decoration: none;
}

.contract-link strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.contract-link:hover strong {
  color: var(--green);
}

.muted {
  opacity: 0.45;
}

/* ── Roadmap phases ── */
.phase-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.phase-card {
  padding: 28px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.phase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 255, 0, 0.4);
}

.phase-num {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(204, 255, 0, 0.12);
  color: var(--green);
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
}

.phase-card h3 {
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.25;
}

/* ── Closing + banner ── */
.closing-section {
  position: relative;
  z-index: 2;
  padding: 100px 0 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(204, 255, 0, 0.05), transparent 40%);
}

.closing-inner {
  text-align: center;
  max-width: 640px;
}

.closing-inner p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.banner-wrap {
  margin-top: 64px;
  padding-bottom: 48px;
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 2;
  padding: 40px 0 56px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
}

.footer-brand span {
  margin-top: 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.footer-disclaimer {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-pill.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid var(--line);
    border-radius: 16px;
    gap: 14px;
  }

  .header-pill {
    position: relative;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-aside {
    max-width: 280px;
  }

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

  .bento-ticker {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 140px;
  }

  .bento-contract {
    grid-column: span 2;
  }

  .phase-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    top: 10px;
    padding: 0 12px;
  }

  .header-pill {
    gap: 10px;
  }

  .brand-text strong {
    font-size: 11px;
  }

  .button-compact {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-h) + 24px);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 72px 0;
  }

  .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .timeline-marker {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .timeline-item:not(:last-child)::after {
    left: 27px;
    top: 56px;
  }

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

  .bento-ticker {
    grid-column: span 1;
  }

  .bento-contract {
    grid-column: span 1;
  }

  .phase-row {
    grid-template-columns: 1fr;
  }

  .closing-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
