:root {
  color-scheme: dark;
  --bg: #090909;
  --panel: #141414;
  --panel-hover: #1b1b1b;
  --line: #2a2a2a;
  --text: #f4f4f4;
  --muted: #a9a9a9;
  --orange: #ff5500;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,85,0,.16), transparent 34rem),
    linear-gradient(180deg, #111 0%, var(--bg) 48%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%),
    linear-gradient(-45deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #fff 75%),
    linear-gradient(-45deg, transparent 75%, #fff 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent 32%);
}

.shell {
  width: min(100% - 32px, 620px);
  margin: 0 auto;
  padding: 48px 0 34px;
}

.hero { text-align: center; margin-bottom: 30px; }

.brand-logo {
  display: block;
  width: min(88%, 390px);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.intro {
  max-width: 500px;
  margin: 16px auto 0;
  color: #c6c6c6;
  line-height: 1.55;
  font-size: .98rem;
}

.links { display: grid; gap: 13px; }

.link-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(20,20,20,.92);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(0,0,0,.16);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: #555;
  background: var(--panel-hover);
  outline: none;
}

.link-card.primary {
  border-color: rgba(255,85,0,.62);
  box-shadow: inset 3px 0 0 var(--orange), 0 12px 34px rgba(0,0,0,.18);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #202020;
  font-size: 1.2rem;
}

.copy { min-width: 0; }
.copy strong, .copy small { display: block; }
.copy strong { font-size: 1rem; letter-spacing: -.01em; }
.copy small { margin-top: 4px; color: var(--muted); font-size: .79rem; line-height: 1.3; }
.arrow { color: var(--orange); font-size: 1.35rem; font-weight: 800; }

.socials {
  margin: 0 0 22px;
  padding: 18px 18px 17px;
  border: 1px solid rgba(255,85,0,.28);
  border-radius: 15px;
  background: rgba(18,18,18,.8);
  box-shadow: 0 12px 34px rgba(0,0,0,.14);
}

.socials-label {
  margin: 0 0 13px;
  text-align: center;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid #333;
  border-radius: 13px;
  background: #171717;
  color: #f7f7f7;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 8px 24px rgba(0,0,0,.2);
  transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.social-icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,85,0,.9);
  background: #21170f;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,85,0,.2), 0 10px 26px rgba(0,0,0,.28);
  outline: none;
}

.social-icon.discord svg { width: 29px; height: 29px; }

footer {
  text-align: center;
  padding: 30px 10px 0;
  color: #ddd;
  font-size: .74rem;
  letter-spacing: .06em;
}

footer p { margin: 6px 0; font-weight: 800; }
footer .muted { color: #777; font-weight: 600; letter-spacing: 0; }
footer a { color: var(--orange); text-decoration: none; font-weight: 800; }

@media (max-width: 420px) {
  .shell { width: min(100% - 22px, 620px); padding-top: 30px; }
  .link-card { grid-template-columns: 38px 1fr auto; gap: 11px; padding: 14px; }
  .icon { width: 38px; height: 38px; }
  .copy strong { font-size: .94rem; }
  .copy small { font-size: .74rem; }
  .socials { padding: 16px 13px 15px; }
  .social-row { gap: 9px; }
  .social-icon { width: 48px; height: 48px; border-radius: 12px; }
  .social-icon svg { width: 25px; height: 25px; }
}
