:root {
  --bg: #05070a;
  --ink: #eafff5;
  --muted: #93aaa1;
  --line: rgba(234, 255, 245, 0.15);
  --green: #00ff88;
  --red: #ff3158;
  --cyan: #52e7ff;
  --panel: rgba(234, 255, 245, 0.055);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 255, 136, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(82, 231, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 14% 14%, rgba(0, 255, 136, 0.18), transparent 30rem),
    radial-gradient(circle at 85% 8%, rgba(255, 49, 88, 0.18), transparent 28rem),
    #05070a;
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(234, 255, 245, 0.035), rgba(234, 255, 245, 0.035) 1px, transparent 1px, transparent 6px);
}

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(5, 7, 10, 0.86);
  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(0, 255, 136, 0.42);
  border-radius: 8px;
  background: rgba(0, 255, 136, 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, 11vw, 142px);
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(0, 255, 136, 0.35);
}

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: #04120b;
  border-color: var(--green);
  background: var(--green);
}

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

.hero-card {
  margin: 0;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.14), rgba(255, 49, 88, 0.12)), rgba(234, 255, 245, 0.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.hero-card::after {
  content: "$TRADOR";
  position: absolute;
  left: 20px;
  top: 18px;
  color: rgba(234, 255, 245, 0.14);
  font-size: clamp(48px, 7vw, 98px);
  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(255, 49, 88, 0.4);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.74);
}

.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(0, 255, 136, 0.055);
}

.ticker span {
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid rgba(255, 49, 88, 0.32);
  border-radius: 8px;
  color: var(--green);
  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(--red);
  font-weight: 900;
}

.token-panel {
  border-block: 1px solid var(--line);
  background: rgba(255, 49, 88, 0.035);
}

.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;
}

.playbook {
  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(--green);
  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: 50px; }
  .token-card { grid-template-columns: 1fr; }
  .button { width: 100%; }
}
