:root{
  --gold:#C9A227;
  --gold-200:#f5c518;
  --bg:#0d0d0f;
  --bg2:#151518;
  --panel:#101012;
  --ink:#fff;
  --muted:#c7c7c7;
  --stroke:rgba(201,162,39,.18);
  --stroke2:rgba(255,255,255,.08);
  --glow:0 0 18px rgba(201,162,39,.55);
  --shadow:0 16px 40px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:radial-gradient(1200px 500px at 30% 0%, rgba(201,162,39,.10), transparent 55%), var(--bg);
  color:var(--ink);
}
a{color:inherit;text-decoration:none}

.container{
  max-width:1100px;
  margin:auto;
  padding:2.2rem;
}

.hero{
  text-align:center;
  margin: 2.2rem 0 1.6rem;
}
.title{
  margin:0 0 .35rem;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  letter-spacing:.2px;
}
.subtitle{
  margin:0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height:1.6;
}

.choice-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top: 1.6rem;
}

.choice-card{
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent), var(--bg2);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:18px;
  box-shadow:0 0 0 1px rgba(0,0,0,.25) inset;
  transition:.2s transform, .2s box-shadow, .2s border-color;
  display:flex;
  flex-direction:column;
  min-height: 330px;
}
.choice-card:hover{
  transform: translateY(-3px);
  border-color: rgba(201,162,39,.32);
  box-shadow: var(--shadow);
}

.choice-card.alt{
  border-color: rgba(255,255,255,.10);
}
.choice-card.alt:hover{
  border-color: rgba(201,162,39,.28);
}

.choice-top h2{
  margin: 10px 0 6px;
  color: var(--gold-200);
  letter-spacing:.2px;
}
.muted{color:var(--muted)}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(201,162,39,.28);
  background: rgba(201,162,39,.08);
  color: var(--gold-200);
  font-weight:900;
  font-size:.78rem;
  letter-spacing:.4px;
}
.pill.ghost{
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:#ddd;
}

.bullets{
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color:#ddd;
  line-height:1.7;
}
.bullets li{ margin: 6px 0; }

.actions{
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding-top: 14px;
}
.btn{
  padding:10px 16px;
  border:none;
  cursor:pointer;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  letter-spacing:.2px;
  transition:.18s ease;
}
.btn.ghost{
  border:1px solid rgba(201,162,39,.45);
  background:transparent;
  color:var(--gold-200);
}
.btn.ghost:hover{
  background:rgba(201,162,39,.10);
  box-shadow:var(--glow);
  transform:translateY(-1px);
}
.btn.solid{
  background:linear-gradient(180deg,var(--gold-200),var(--gold));
  color:#14110a;
}
.btn.solid:hover{
  filter:brightness(1.05);
  box-shadow:var(--glow);
  transform:translateY(-1px);
}

.note{
  margin-top: 18px;
}
.note-card{
  background: rgba(15,15,15,.55);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:14px 16px;
}
.note-card h3{
  margin:0 0 6px;
  color:#fff;
}
.note-card p{ margin:0; line-height:1.6; }

.footer{
  padding:1rem;
  text-align:center;
  background:#000;
  color:#777;
  border-top:1px solid rgba(201,162,39,.18);
  margin-top: 2rem;
}

@media (max-width: 820px){
  .choice-grid{ grid-template-columns: 1fr; }
  .container{ padding: 1.4rem; }
}
