@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/inter-700.ttf") format("truetype");
}

:root {
  --neon: #ccff00;
  --neon-hover: #b8e600;
  --black: #000;
  --panel: #111;
  --line: #222;
  --line-soft: #1f2937;
  --text: #fff;
  --muted: #9ca3af;
  --faint: #6b7280;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background: radial-gradient(circle at 50% -20%, #1a1a1a 0%, #000 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
a {
  font: inherit;
}

.top-strip {
  position: relative;
  z-index: 2;
  padding: 10px 16px;
  background: var(--neon);
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.top-strip a {
  color: inherit;
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #000;
  border-bottom: 1px solid #111827;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand .divider {
  width: 1px;
  height: 24px;
  background: #1f2937;
}

.brand span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.menu-button {
  display: grid;
  gap: 6px;
  width: 32px;
  padding: 6px 3px;
  border: 0;
  background: transparent;
  opacity: 0.82;
  cursor: pointer;
}

.menu-button:hover {
  opacity: 1;
}

.menu-button span {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
}

.page-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 80px;
}

.hero,
.token-card,
.requirements {
  width: 100%;
  max-width: 448px;
  animation: fadeIn 0.6s ease-out both;
}

.hero {
  max-width: 672px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: var(--neon);
}

.hero p {
  margin: 0 auto 32px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.join-button {
  display: inline-flex;
  min-width: 220px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 16px 48px;
  border: 0;
  border-radius: 999px;
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.join-button:hover {
  background: var(--neon-hover);
  transform: translateY(-1px);
}

.token-card {
  margin-bottom: 40px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  animation-delay: 0.1s;
}

.token-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.token-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.token-logo-wrap {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid #374151;
  border-radius: 999px;
  background: #000;
}

.token-logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.token-identity h2 {
  margin: 0 0 2px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.token-identity p {
  margin: 0;
  color: var(--faint);
  font-size: 14px;
}

.network-block {
  flex: 0 0 auto;
  text-align: right;
}

.network-block span {
  display: block;
  margin-bottom: 4px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.network-block strong {
  color: var(--neon);
  font-size: 14px;
  font-weight: 700;
}

.contract-box {
  position: relative;
  margin-bottom: 24px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #1f2937;
  border-radius: 16px;
  background: #000;
}

.contract-box span {
  display: block;
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 12px;
}

.contract-box code {
  display: block;
  color: #d1d5db;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: -8px 0 24px;
}

.market-grid div {
  min-width: 0;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 12px;
  background: #070707;
}

.market-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--faint);
  font-size: 11px;
}

.market-grid strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-grid strong.is-positive {
  color: var(--neon);
}

.market-grid strong.is-negative {
  color: #fb7185;
}

.activity-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid #1f2937;
  padding-top: 20px;
}

.label {
  display: block;
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 12px;
}

.counter-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-wrap strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: opacity 150ms ease;
}

.live-dot {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--neon);
}

.live-dot::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--neon);
  content: "";
  animation: ping 1.3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.requirements {
  animation-delay: 0.2s;
}

.requirements h3 {
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1f2937;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.steps {
  display: grid;
  gap: 24px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--neon);
  border-radius: 999px;
  background: #1a1a1a;
  color: var(--neon);
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.15);
  font-size: 14px;
  font-weight: 700;
}

.step h4 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.step p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.step mark {
  margin-left: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #1f2937;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ping {
  75%,
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@media (min-width: 768px) {
  .site-header {
    padding-inline: 48px;
  }

  .page-shell {
    padding-top: 48px;
  }

  .token-card {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .brand .divider,
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .join-button {
    width: 100%;
  }

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