:root {
  --gold: #d9a62e;
  --gold-soft: #f0ca67;
  --paper: #f2eee5;
  --red: #d20b17;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 10%, rgba(217,166,46,.2), transparent 34%),
    #050505;
  font-family: Arial, Helvetica, sans-serif;
}
.simple-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.simple-card {
  width: min(780px, 100%);
  padding: clamp(40px, 7vw, 76px);
  background: #090909;
  border: 1px solid rgba(217,166,46,.46);
  border-top: 9px solid var(--gold);
  box-shadow: 0 30px 90px rgba(0,0,0,.62);
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 96px);
  line-height: .92;
  text-transform: uppercase;
}
p {
  color: #bbb7b0;
  font-size: 17px;
  line-height: 1.75;
}
.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 14px 25px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #a60009);
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
