:root {
  --bg: #020813;
  --bg-2: #001f3d;
  --card: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(255, 255, 255, 0.14);
  --text: #fffaf0;
  --muted: #cbd5e1;
  --line: rgba(255, 255, 255, 0.16);
  --navy: #001f3d;
  --red: #d92316;
  --cream: #f8f0dd;
  --gold: #ffb23a;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 35, 22, 0.27), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 178, 58, 0.18), transparent 30%),
    radial-gradient(circle at 50% 105%, rgba(0, 54, 105, 0.65), transparent 40%),
    linear-gradient(145deg, var(--bg), var(--bg-2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.page-shell {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 30px 18px;
  display: grid;
  place-items: center;
}

.hero-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -90px -130px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(217, 35, 22, 0.2);
  filter: blur(24px);
}

.brand-logo {
  display: block;
  width: min(230px, 58vw);
  height: auto;
  margin: -6px auto 12px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .34));
}

.eyebrow,
h1,
.intro,
.disclosure {
  text-align: center;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 8.5vw, 4.6rem);
  line-height: .9;
  letter-spacing: -0.08em;
}

.intro {
  max-width: 520px;
  margin: 18px auto 26px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.links-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  text-decoration: none;
  background: var(--card);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 178, 58, .72);
  background: var(--card-hover);
  outline: none;
}

.link-card.primary {
  border-color: rgba(217, 35, 22, .65);
  background: linear-gradient(135deg, rgba(217, 35, 22, .24), rgba(255, 255, 255, .08));
}

.link-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.link-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.25;
}

.arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #130200;
  background: var(--gold);
  font-size: 1.15rem;
  font-weight: 900;
}

.disclosure {
  position: relative;
  z-index: 1;
  margin: 22px auto 0;
  max-width: 560px;
  color: rgba(255, 250, 240, .72);
  font-size: .78rem;
  line-height: 1.45;
}

@media (max-width: 440px) {
  .page-shell {
    padding: 16px 12px;
  }

  .hero-card {
    border-radius: 26px;
  }

  .brand-logo {
    width: min(196px, 64vw);
  }

  .link-card {
    min-height: 70px;
    padding: 14px 15px;
  }
}
