:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --red: #e8121f;
  --red-dim: #7a0d14;
  --white: #f5f5f5;
  --muted: #9a9a9a;
  --border: #2a2a2a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(232, 18, 31, 0.10), transparent 55%);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 1.5rem;
}

.hero-inner {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mark {
  width: 110px;
  height: 110px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 24px rgba(232, 18, 31, 0.25));
}

.wordmark {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.wordmark span {
  color: var(--red);
}

.tagline {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 32rem;
  margin: 0.9rem 0 2.5rem;
}

.links {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: var(--red-dim);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.link-label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.link-label::after {
  content: "";
}

.link-sub {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer {
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 520px) {
  .links {
    grid-template-columns: 1fr;
  }
}
