:root{
  --bg0:#000;
  --ink:#f2f2f2;
  --muted:#b8b8b8;
  --soft:#9aa0a6;
  --line:rgba(255,255,255,.14);
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);

  --gold:#c9a44d;
  --red:#e53935;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 560px at 50% 8%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 600px at 35% 18%, rgba(201,164,77,.14), transparent 64%),
    radial-gradient(900px 600px at 65% 18%, rgba(229,57,53,.12), transparent 64%),
    linear-gradient(180deg, #000 0%, #04060a 45%, #000 100%);
}

.wrap{max-width:1120px;margin:0 auto;padding:26px 18px 60px}
a{color:inherit}
.small{font-size:12px;color:var(--soft)}
.muted{color:var(--muted)}
.hr{height:1px;background:var(--line);margin:16px 0}

.gold{color:var(--gold)}
.red{color:var(--red)}

.brandTop{
  letter-spacing:5px;
  font-weight:1000;
  color:#e6e6e6;
  text-transform:uppercase;
  font-size:14px;
  text-align:center;
}

.hero{text-align:center;padding:34px 0 10px}
.heroTitle{
  margin:14px 0 0;
  font-size:44px;
  letter-spacing:.4px;
  font-weight:1000;
}
.heroSub{
  margin:14px auto 0;
  max-width:920px;
  color:var(--muted);
  line-height:1.55;
}
.micro{margin-top:12px;color:var(--soft)}

.email{
  text-decoration:none;
  border-bottom:1px solid rgba(201,164,77,.45);
  padding-bottom:1px;
  color:var(--gold);
}
.email:hover{border-bottom-color:rgba(201,164,77,.75)}

.link{
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
  padding-bottom:1px;
}
.link:hover{border-bottom-color:rgba(255,255,255,.35)}

.ctaRow{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:14px;
}

.card{
  background:linear-gradient(180deg, var(--panel) 0%, var(--panel2) 100%);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:0 10px 34px rgba(0,0,0,.32);
  backdrop-filter: blur(6px);
  margin-top:18px;
}
.card h2{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:1px;
  font-weight:1000;
  text-transform:uppercase;
}

.underline{
  height:3px;width:66px;border-radius:99px;
  margin:8px 0 12px;
  background:var(--gold);
}
.underline.red{background:var(--red)}
.underline.gold{background:var(--gold)}

.p{line-height:1.60;color:#dfdfdf;margin:0 0 10px}
.kicker{font-weight:950;letter-spacing:.3px;color:#fff;margin:10px 0 8px}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media (max-width:900px){
  .wrap{padding:22px 14px 54px}
  .heroTitle{font-size:32px}
  .grid{grid-template-columns:1fr}
}

.bul{margin:10px 0 0 0;padding-left:18px;line-height:1.60;color:#e6e6e6}
.bul li{margin:4px 0}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(0,0,0,.35);
  text-decoration:none;
  font-weight:1000;
  letter-spacing:.3px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.btn:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.32)}
.btn.primary{
  background:rgba(201,164,77,.16);
  border-color:rgba(201,164,77,.48);
}
.btn.primary:hover{border-color:rgba(201,164,77,.70)}

.crossSell{
  border-color:rgba(201,164,77,.22);
}

.footer{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--soft);
  font-size:12px;
}