:root {
  color-scheme: dark;
  --space: #0f151c;
  --panel: #fffaf0;
  --yellow: #ffd84d;
  --pink: #ed5b9b;
  --blue: #37a8ff;
  --ink: #111820;
  --muted: #cfc7bc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--space);
  color: var(--panel);
  font-family: Arial, Helvetica, sans-serif;
}

.shell {
  width: min(720px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  align-content: center;
  gap: 22px;
}

.hero,
.card {
  border: 3px solid var(--yellow);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
  color: var(--ink);
}

.hero {
  background: var(--pink);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 12vw, 72px);
  line-height: 0.95;
}

p,
li {
  font-size: 18px;
  line-height: 1.45;
}

.note {
  color: #6f625b;
}

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

a,
.button {
  min-height: 48px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}
