:root {
  --red: #b00020;
  --red-bright: #e31837;
  --black: #080808;
  --dark: #121212;
  --text: #f8f8f8;
  --muted: #cfcfcf;
  --card: rgba(18, 18, 18, 0.94);
  --line: rgba(255,255,255,0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(227,24,55,.25), transparent 35%),
    linear-gradient(135deg, #050505 0%, #171717 45%, #050505 100%);
  min-height: 100vh;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
}

.card {
  width: 100%;
  max-width: 860px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

.top-accent {
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--red-bright), #ffffff, var(--red));
}

.brand {
  text-align: center;
  padding: 38px 34px 18px;
}

.logo {
  width: min(360px, 88%);
  height: auto;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 62px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.intro {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.primary-review {
  margin: 18px auto 26px;
  max-width: 620px;
  text-align: center;
  padding: 0 24px;
}

.small-title {
  margin: 0 0 12px;
  font-weight: 700;
  color: #fff;
}

.main-button {
  display: block;
  width: 100%;
  text-decoration: none;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(227,24,55,.32);
  transition: transform .18s ease, box-shadow .18s ease;
}

.main-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(227,24,55,.42);
}

.microcopy {
  color: var(--muted);
  margin: 13px 0 0;
  font-size: 15px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 34px 28px;
}

.link-card {
  display: block;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.link-card:hover {
  background: rgba(227,24,55,.13);
  border-color: rgba(227,24,55,.5);
  transform: translateY(-2px);
}

.link-card span {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 7px;
}

.link-card small {
  color: var(--muted);
  line-height: 1.45;
}

.thank-you-box {
  margin: 0 34px 30px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(227,24,55,.10));
  border: 1px solid var(--line);
  text-align: center;
}

.thank-you-box h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.thank-you-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 0 24px 32px;
}

footer p { margin: 6px 0; }
footer a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }
footer a:hover { color: var(--red-bright); }

@media (max-width: 680px) {
  .brand { padding: 30px 20px 14px; }
  .intro { font-size: 16px; }
  .links-grid { grid-template-columns: 1fr; padding: 0 20px 24px; }
  .thank-you-box { margin: 0 20px 24px; }
  .main-button { font-size: 18px; }
}
