:root {
  color-scheme: dark;
  --bg: #160101;
  --card: rgba(44, 5, 6, 0.72);
  --line: rgba(255, 214, 0, 0.22);
  --ink: #fff7df;
  --muted: rgba(255, 247, 223, 0.72);
  --red: #ff1d1d;
  --deep-red: #820909;
  --yellow: #ffe600;
  --black: #050000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 230, 0, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 16%, rgba(255, 29, 29, 0.2), transparent 24rem),
    linear-gradient(135deg, #240101 0%, var(--bg) 52%, #050000 100%);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  opacity: 0.22;
  background-image:
    linear-gradient(90deg, rgba(255, 64, 16, 0.55) 2px, transparent 2px),
    linear-gradient(rgba(255, 64, 16, 0.48) 2px, transparent 2px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

body::after {
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.48) 0 7rem, transparent 7.1rem),
    radial-gradient(circle at 68% 68%, rgba(0, 0, 0, 0.5) 0 5rem, transparent 5.1rem);
  opacity: 0.32;
}

a {
  color: inherit;
}

.container {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

.nav,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav {
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.32);
}

.links,
.actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.links {
  color: var(--muted);
  font-size: 0.94rem;
}

.links a {
  text-decoration: none;
}

.links a:hover {
  color: var(--ink);
}

.hero,
.page {
  padding: clamp(44px, 10vw, 92px) 0;
}

.hero {
  text-align: center;
}

.icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 24px;
  border-radius: 26px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.58),
    0 0 0 2px rgba(255, 247, 223, 0.18),
    0 0 38px rgba(255, 29, 29, 0.44),
    0 0 48px rgba(255, 230, 0, 0.18);
}

h1 {
  margin: 0;
  color: #fff7df;
  font-size: clamp(2.45rem, 7vw, 4.9rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(255, 230, 0, 0.32),
    0 0 36px rgba(255, 29, 29, 0.4);
}

.page h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
}

.lede {
  max-width: 610px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.page > .lede {
  max-width: none;
  margin: 10px 0 0;
  font-size: 0.95rem;
}

.actions,
.pill-row {
  justify-content: center;
  margin-top: 28px;
}

.button,
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(44, 5, 6, 0.58);
  backdrop-filter: blur(14px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.pill {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.card {
  margin-top: 26px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 0 34px rgba(255, 230, 0, 0.04);
  backdrop-filter: blur(18px);
}

h2 {
  margin: 28px 0 8px;
  color: var(--yellow);
  font-size: 1.25rem;
  text-shadow: 0 0 14px rgba(255, 230, 0, 0.28);
}

h2:first-child {
  margin-top: 0;
}

p,
li {
  color: var(--muted);
}

ul {
  padding-left: 1.2rem;
}

.card a {
  color: var(--ink);
  font-weight: 800;
}

.footer {
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 560px) {
  .nav,
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
