:root {
  --bg: #080808;
  --panel: #111111;
  --text: #f7f7f4;
  --muted: #b5b5ad;
  --red: #9f111b;
  --gold: #c8a15a;
  --line: #2a2a2a;
  --focus: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(159, 17, 27, 0.12), transparent 34rem),
    var(--bg);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
a {
  font: inherit;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 640px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.brand {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.location {
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.rule {
  width: 72px;
  height: 3px;
  margin: 28px 0;
  background: var(--red);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.copy {
  max-width: 44rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.button-primary {
  color: white;
  background: var(--red);
}

.button-primary:hover {
  background: #b51520;
}

.button-secondary {
  color: var(--text);
  border-color: #3b3b3b;
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--gold);
}

.status {
  margin: 24px 0 0;
  color: #777;
  font-size: 0.8rem;
}

.noscript {
  position: fixed;
  inset: auto 0 0;
  padding: 12px 16px;
  color: white;
  background: var(--red);
  text-align: center;
}

@media (max-width: 520px) {
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
