﻿:root {
  --navy-900: #021226;
  --navy-800: #051F40;
  --navy-600: #082B59;
  --blue: #0F468C;
  --gold: #BFA678;
  --gold-soft: #D4C09A;
  --white: #FFFFFF;
  --off-white: #F7F6F2;
  --gray: #DDDBD2;
  --body: 'DM Sans', Arial, sans-serif;
  --display: 'Barlow', Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: var(--body);
  color: var(--white);
  background:
    radial-gradient(ellipse 60% 45% at 70% 20%, rgba(191,166,120,.16), transparent 68%),
    radial-gradient(ellipse 50% 35% at 20% 85%, rgba(15,70,140,.34), transparent 70%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 22px;
}
.page {
  width: min(1040px, 100%);
}
.brand {
  display: flex;
  justify-content: center;
  margin-bottom: 54px;
}
.brand img {
  width: min(280px, 72vw);
  height: auto;
  display: block;
}
.hero {
  text-align: center;
  margin-bottom: 42px;
}
.kicker {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 {
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 72px);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 22px;
}
h1 span { color: var(--gold); display: block; }
.lead {
  max-width: 690px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.7;
}
.options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.option {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(191,166,120,.22);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 24px 80px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 75% 20%, rgba(191,166,120,.15), transparent 65%);
  opacity: .75;
}
.option:hover {
  transform: translateY(-4px);
  border-color: rgba(191,166,120,.48);
  box-shadow: 0 30px 92px rgba(0,0,0,.32), 0 0 36px rgba(191,166,120,.13);
}
.option > * { position: relative; z-index: 1; }
.option-label {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.option h2 {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.option p {
  color: rgba(255,255,255,.66);
  line-height: 1.65;
  font-size: 15px;
  max-width: 390px;
}
.option-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 700;
}
.note {
  margin-top: 34px;
  text-align: center;
  color: rgba(255,255,255,.48);
  font-size: 13px;
}
@media (max-width: 760px) {
  body { align-items: flex-start; }
  .brand { margin-bottom: 36px; }
  .options { grid-template-columns: 1fr; margin-top: 34px; }
  .option { min-height: auto; padding: 26px; }
}
