:root {
  color-scheme: dark;
  --bg: #050307;
  --panel: #130812;
  --panel-2: #1b0f19;
  --text: #fff7fb;
  --muted: #c7b8c2;
  --hot: #f04461;
  --violet: #9a6bff;
  --line: rgba(255,255,255,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px;
}
.brand, nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
}
.brand img { border-radius: 12px; }
nav { gap: 18px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .96rem;
}
nav a:hover { color: var(--text); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 44px;
  max-width: 1120px;
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding: 48px 20px 72px;
}
.eyebrow {
  margin: 0 0 12px;
  color: #ffb4c1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
h1, h2, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 12vw, 7.6rem);
  line-height: .88;
  letter-spacing: 0;
}
h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.05;
}
.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 16px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
}
.primary {
  border-color: transparent;
  background: var(--hot);
  color: white;
}
.secondary { background: rgba(255,255,255,.06); }
.checksum {
  max-width: 760px;
  color: #a697a2;
  font-size: .82rem;
  overflow-wrap: anywhere;
}
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.hero-mark {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 20%, rgba(240,68,97,.20), transparent 42%), var(--panel);
}
.hero-mark img {
  width: min(72vw, 256px);
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.55));
}
.strip, .grid, .details, .policy {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px;
}
.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 12px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
article, .details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}
article { padding: 22px; }
article p, .details p, .policy p, li { color: var(--muted); }
.details {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  padding: 28px;
  margin-bottom: 44px;
}
li { margin: 8px 0; }
.policy {
  max-width: 820px;
  padding-top: 56px;
}
.policy h1 { font-size: clamp(2.6rem, 8vw, 5rem); }
.policy h2 { margin-top: 32px; }
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer p { margin: 0; }
@media (max-width: 760px) {
  .site-header, footer { align-items: flex-start; flex-direction: column; }
  .hero, .grid, .details { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 28px; }
  .hero-mark { min-height: 240px; }
  nav { flex-wrap: wrap; }
  .button { width: 100%; }
}
