:root {
  --bnb: #f0b90b;
  --bnb-deep: #c99a07;
  --hat: #ffd400;
  --asphalt: #080808;
  --concrete: #101010;
  --steel: #171717;
  --line: #2a2a24;
  --text: #f4f1e6;
  --muted: #9c9788;
  --orange: #ff7a00;
  --ok: #7dff6b;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Archivo", "Noto Sans SC", sans-serif;
  background: var(--asphalt);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--bnb);
}

.brand strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand em {
  font-style: normal;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--bnb);
  letter-spacing: 0.18em;
}

.links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.nav-cta {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
  background: var(--bnb);
  color: #111;
  padding: 10px 16px;
  font-size: 16px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--bnb);
}

.tape {
  overflow: hidden;
  background: repeating-linear-gradient(
    -55deg,
    #111 0 16px,
    var(--bnb) 16px 32px
  );
  border-bottom: 1px solid #000;
}

.tape-track {
  display: flex;
  gap: 36px;
  padding: 9px 0;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  letter-spacing: 0.22em;
  color: #111;
}

.tape-track span {
  background: var(--bnb);
  padding: 2px 10px;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 28px 40px;
  background-image: linear-gradient(rgba(240, 185, 11, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 185, 11, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--bnb);
  margin-bottom: 16px;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(72px, 10vw, 128px);
  line-height: 0.82;
  letter-spacing: 0.02em;
}

h1 .cn {
  display: block;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 0.38em;
  letter-spacing: 0.28em;
  color: var(--bnb);
  margin-top: 10px;
  font-weight: 900;
}

.lede {
  margin: 22px 0 28px;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.lede em {
  color: var(--hat);
  font-style: normal;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  border: 0;
  cursor: pointer;
}

.btn.primary {
  background: var(--bnb);
  color: #111;
}

.btn.primary:hover {
  background: var(--hat);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.ghost:hover {
  border-color: var(--bnb);
  color: var(--bnb);
}

.ca-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.ca-label {
  color: var(--bnb);
  letter-spacing: 0.16em;
}

#ca-display {
  color: var(--muted);
  word-break: break-all;
}

.hero-mascot {
  position: relative;
  height: 560px;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(240, 185, 11, 0.45);
}

.ring-slow {
  width: 500px;
  height: 500px;
  animation: spin 28s linear infinite;
}

.ring-fast {
  width: 430px;
  height: 430px;
  border-style: solid;
  border-color: rgba(240, 185, 11, 0.18);
  animation: spin 16s linear infinite reverse;
}

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

.portrait {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--bnb);
  box-shadow: 0 0 80px rgba(240, 185, 11, 0.28);
  animation: float 5.5s ease-in-out infinite;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.portrait figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.28em;
  font-size: 14px;
  color: #111;
  background: var(--bnb);
  padding: 6px 0;
}

@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}

.bolt {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--bnb);
  transform: rotate(45deg);
}

.b1 {
  top: 70px;
  left: 70px;
}
.b2 {
  top: 70px;
  right: 70px;
}
.b3 {
  bottom: 90px;
  left: 70px;
}
.b4 {
  bottom: 90px;
  right: 70px;
}

.badge-float {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  background: #111;
  border: 1px solid var(--bnb);
  color: var(--bnb);
  padding: 8px 12px;
  letter-spacing: 0.16em;
}

.badge-float.left {
  left: 24px;
  top: 46%;
}

.badge-float.right {
  right: 8px;
  top: 22%;
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.stats {
  max-width: var(--max);
  margin: 0 auto 20px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.stats article {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats span {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 8px;
}

.stats strong {
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.about,
.tokenomics,
.roadmap,
.buy,
.chart,
.join {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 28px 0;
}

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

.section-head h2,
.join h2 {
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.section-head p:last-child {
  margin-top: 12px;
  color: var(--muted);
  max-width: 560px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-copy strong {
  color: var(--text);
}

.checklist {
  list-style: none;
  margin-top: 8px;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.checklist li::before {
  content: "▣";
  position: absolute;
  left: 0;
  color: var(--bnb);
}

.board {
  background: var(--steel);
  border: 1px solid var(--line);
  border-top: 6px solid var(--bnb);
}

.board header {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.16em;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.board ul {
  list-style: none;
}

.board li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.board span {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live {
  color: var(--ok);
}

.mats,
.phases,
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mats article,
.phases li,
.steps li {
  background: var(--concrete);
  border: 1px solid var(--line);
  padding: 22px 20px 26px;
  list-style: none;
}

.num,
.phases span {
  font-family: "IBM Plex Mono", monospace;
  color: var(--bnb);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.mats h3,
.phases h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  margin: 12px 0 10px;
}

.mats p,
.phases p,
.steps p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

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

.steps strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.steps code,
#ca-display {
  font-family: "IBM Plex Mono", monospace;
}

.buy-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.chart-frame {
  width: 100%;
  height: 680px;
  border: 1px solid var(--line);
  background: #0b0b0b;
  overflow: hidden;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-banner {
  margin: 0;
  line-height: 0;
  background: #000;
}

.site-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.join {
  padding-bottom: 0;
}

.join-inner {
  margin-top: 20px;
  padding: 48px 36px;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent 0 18px,
      rgba(240, 185, 11, 0.07) 18px 20px
    ),
    var(--steel);
  border: 1px solid var(--line);
}

.join p {
  color: var(--muted);
  margin: 10px 0 22px;
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.socials a {
  border: 1px solid var(--bnb);
  color: var(--bnb);
  padding: 10px 16px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
  font-size: 18px;
}

.socials a:hover {
  background: var(--bnb);
  color: #111;
}

.foot {
  max-width: var(--max);
  margin: 72px auto 0;
  padding: 36px 28px 48px;
  border-top: 1px solid var(--line);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.foot-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--bnb);
}

.foot-brand strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 22px;
}

.foot-brand span {
  font-family: "Noto Sans SC", "Archivo", sans-serif;
  color: var(--bnb);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.disclaimer,
.copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 720px;
}

.copy {
  margin-top: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

@media (max-width: 960px) {
  .hero,
  .about-grid,
  .stats,
  .mats,
  .phases {
    grid-template-columns: 1fr 1fr;
  }

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

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .hero-mascot {
    height: 460px;
  }

  .portrait {
    width: 280px;
    height: 280px;
  }

  .ring-slow {
    width: 400px;
    height: 400px;
  }

  .ring-fast {
    width: 340px;
    height: 340px;
  }
}

@media (max-width: 760px) {
  .links,
  .nav-cta {
    display: none;
  }

  .links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0d0d0d;
    flex-direction: column;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
  }

  .burger {
    display: flex;
  }

  .hero,
  .about-grid,
  .mats,
  .phases,
  .steps,
  .stats {
    grid-template-columns: 1fr;
  }

  .stats article,
  .stats article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  h1 {
    font-size: 72px;
  }

  .hero-mascot {
    height: 420px;
    order: -1;
    overflow: hidden;
  }

  .chart-frame {
    height: 460px;
  }

  .ring-slow {
    width: 340px;
    height: 340px;
  }

  .ring-fast {
    width: 300px;
    height: 300px;
  }

  .b1,
  .b2 {
    top: 48px;
  }

  .b3,
  .b4 {
    bottom: 70px;
  }
}
