* {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b9b9b9;
  --red: #ff2020;
  --dark-red: #150000;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 0, 0, 0.25), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(255, 0, 0, 0.15), transparent 28%),
    linear-gradient(180deg, #140000 0%, #050505 55%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent);
  z-index: -1;
}

a {
  color: inherit;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 76px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.5px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.nav nav {
  display: flex;
  gap: 24px;
}

.nav nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.nav nav a:hover {
  color: #fff;
}

.nav-buy,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid var(--line);
}

.nav-buy,
.primary {
  background: var(--red);
  box-shadow: 0 0 30px rgba(255, 32, 32, 0.35);
}

.ghost {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 70px 8vw;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 950;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(78px, 13vw, 156px);
  line-height: 0.82;
  letter-spacing: -7px;
  color: var(--red);
  text-shadow: 0 0 35px rgba(255, 32, 32, 0.5);
}

.hero h2 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: -2px;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 24px;
}

.ca-box {
  max-width: 700px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
}

.ca-box div {
  flex: 1;
  min-width: 0;
}

.ca-box span {
  display: block;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 6px;
}

.ca-box code {
  display: block;
  color: #ddd;
  word-break: break-all;
  font-size: 14px;
}

.ca-box button {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 950;
  cursor: pointer;
}

.hero-right {
  display: grid;
  place-items: center;
}

.logo-wrap {
  position: relative;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: var(--red);
  filter: blur(90px);
  opacity: 0.38;
  z-index: -1;
}

.logo-wrap img {
  width: min(475px, 88vw);
  border-radius: 50%;
  border: 5px solid var(--red);
  box-shadow: 0 0 65px rgba(255, 32, 32, 0.55);
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 95px 8vw;
}

.section h2 {
  margin: 0 0 34px;
  font-size: clamp(40px, 7vw, 78px);
  letter-spacing: -3px;
}

.alt {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.cards,
.token-grid,
.timeline,
.steps {
  display: grid;
  gap: 18px;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.token-grid div,
.timeline div,
.steps div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
}

.card h3,
.timeline h3 {
  margin-top: 0;
  font-size: 23px;
}

.card p,
.timeline p,
.steps p {
  color: var(--muted);
  line-height: 1.6;
}

.token-grid {
  max-width: 1200px;
  margin: auto;
  grid-template-columns: repeat(3, 1fr);
}

.token-grid small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 950;
}

.token-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 30px;
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.timeline span,
.steps b {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--red);
  font-weight: 950;
}

.buy-section {
  text-align: center;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
  margin-bottom: 30px;
}

.big {
  padding: 18px 34px;
  font-size: 18px;
}

footer {
  padding: 56px 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}

footer img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 900px) {
  .nav nav {
    display: none;
  }

  .nav {
    padding: 0 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 45px;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }

  .ca-box {
    flex-direction: column;
  }

  .cards,
  .token-grid,
  .timeline,
  .steps {
    grid-template-columns: 1fr;
  }

  h1 {
    letter-spacing: -4px;
  }
}
