:root {
  --bg: #060606;
  --ink: #fff8e9;
  --muted: #b7ad9e;
  --line: rgba(255, 248, 233, 0.14);
  --red: #ff3b1f;
  --gold: #ffb22e;
  --green: #16ff74;
  --panel: rgba(255, 248, 233, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 59, 31, 0.18), transparent 31rem),
    radial-gradient(circle at 83% 4%, rgba(22, 255, 116, 0.13), transparent 28rem),
    linear-gradient(135deg, #090605 0%, #050505 44%, #0d120b 100%);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 178, 46, 0.42);
  border-radius: 8px;
  background: rgba(255, 178, 46, 0.1);
}

.brand-icon img {
  width: 32px;
  height: 32px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav a {
  padding: 0 14px;
  border: 1px solid transparent;
  color: var(--muted);
}

nav a:hover {
  color: var(--ink);
  border-color: var(--line);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 7vw, 96px) clamp(18px, 5vw, 76px);
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 12vw, 148px);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(255, 59, 31, 0.42);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.98;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  text-transform: uppercase;
}

.hero-text {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
}

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

.button {
  padding: 0 20px;
  border: 1px solid var(--line);
}

.button.primary {
  color: #050505;
  border-color: var(--green);
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 248, 233, 0.06);
}

.hero-card {
  margin: 0;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid rgba(255, 178, 46, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 59, 31, 0.16), rgba(22, 255, 116, 0.1)),
    rgba(255, 248, 233, 0.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-card::after {
  content: "$rBULL";
  position: absolute;
  left: 20px;
  top: 18px;
  color: rgba(255, 248, 233, 0.18);
  font-size: clamp(58px, 9vw, 112px);
  font-weight: 900;
}

.hero-card img {
  position: relative;
  z-index: 1;
  width: min(82%, 420px);
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.48));
}

.hero-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(22, 255, 116, 0.36);
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.7);
}

.hero-card span,
.token-card span,
.bio-lines span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 18px clamp(18px, 5vw, 76px);
  border-block: 1px solid var(--line);
  background: rgba(255, 59, 31, 0.08);
}

.ticker span {
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid rgba(255, 178, 46, 0.28);
  border-radius: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bio-panel,
.token-panel,
.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 76px);
}

.bio-card,
.token-card,
.cards article,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.bio-card {
  padding: clamp(22px, 4vw, 42px);
}

.bio-card p,
.token-copy p,
.steps p,
.cards p,
.proof p {
  color: var(--muted);
  line-height: 1.62;
}

.bio-lines {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.bio-lines strong {
  color: var(--green);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 76px) clamp(54px, 7vw, 94px);
}

.cards article,
.steps article {
  padding: 24px;
}

.cards article span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--green);
  font-weight: 900;
}

.token-panel {
  border-block: 1px solid var(--line);
  background: rgba(22, 255, 116, 0.04);
}

.token-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.token-card div {
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.token-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(20px, 3vw, 34px);
  text-transform: uppercase;
}

.feed {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 76px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.steps strong {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.proof {
  align-items: center;
  padding-top: 0;
}

.proof img {
  width: min(100%, 360px);
  justify-self: center;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.5));
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 860px) {
  .topbar,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .bio-panel,
  .token-panel,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 330px;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 56px;
  }

  .token-card {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
