:root{
  --bg0:#000;
  --ink:#f0f0f0;
  --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;
  --blue:#3b82f6; /* brighter for black background */
}

*{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(850px 520px at 50% 10%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(900px 600px at 30% 18%, rgba(201,164,77,.14), transparent 60%),
    radial-gradient(900px 600px at 70% 22%, rgba(59,130,246,.14), transparent 60%),
    linear-gradient(180deg, #000 0%, #05070a 45%, #000 100%);
}

a{color:inherit}
.wrap{max-width:1100px;margin:0 auto;padding:26px 18px 60px}
.center{text-align:center}
.right{text-align:right}
.small{font-size:12px;color:var(--soft)}
.muted{color:var(--muted)}
.dot{margin:0 10px;color:#6b6b6b}

.hr{height:1px;background:var(--line);margin:18px 0 18px}

.hero{
  padding:34px 0 10px;
  text-align:center;
}
.hero .title{
  font-size:56px;
  letter-spacing:6px;
  font-weight:900;
  margin:0;
}
.hero .strap{
  margin:10px 0 0;
  color:var(--gold);
  letter-spacing:4px;
  font-weight:800;
}
.hero .name{
  margin:12px 0 0;
  letter-spacing:3px;
  font-weight:900;
  font-size:20px;
}
.hero .quote{
  margin:14px 0 0;
  font-style:italic;
  opacity:.9;
  font-size:18px;
}
.hero .contact{
  margin:14px 0 0;
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  color:var(--soft);
}
.hero .contact a{
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
  padding-bottom:1px;
}
.hero .contact a:hover{border-bottom-color:rgba(255,255,255,.35)}
.hero .contact .email{color:var(--gold)}
.hero .contact .phone{color:var(--red)}
.hero .contact .avail{color:#c7c7c7}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:18px;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:18px;
}

@media (max-width: 900px){
  .wrap{padding:22px 14px 54px}
  .hero .title{font-size:44px;letter-spacing:5px}
  .grid,.split{grid-template-columns:1fr}
}

.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);
}

.card h2{
  margin:0 0 10px;
  font-size:18px;
  letter-spacing:1px;
  font-weight:950;
  text-transform:uppercase;
}

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

.p{line-height:1.55;color:#dfdfdf;margin:0 0 10px}
.p strong{color:#fff}
.kicker{
  font-weight:900;
  letter-spacing:.4px;
  color:#fff;
  margin:10px 0 8px;
}
.tagline{
  color:#fff;
  font-weight:900;
  margin:10px 0 0;
}

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

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

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

.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:800;
  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,.14);
  border-color:rgba(201,164,77,.42);
}
.btn.primary:hover{border-color:rgba(201,164,77,.65)}
.btn.ghost{
  background:rgba(0,0,0,.18);
  border-color:rgba(255,255,255,.16);
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
  color:var(--soft);
  font-size:12px;
  white-space:nowrap;
}

.ctaCard{
  margin-top:18px;
  padding:18px 18px 14px;
  border-color: rgba(201,164,77,.28);
  box-shadow: 0 14px 44px rgba(0,0,0,.45);
}
.ctaTop{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.ctaTitle{
  margin:0;
  font-size:18px;
  letter-spacing:1px;
  font-weight:950;
  text-transform:uppercase;
}
.ctaSub{margin-top:6px}
.ctaActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.ctaLine{
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.12);
  color:var(--soft);
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.bottomCta{margin-top:18px}

.wonderwomen{
  font-weight:950;
}
.wonderwomen .w{color:var(--red)}
.wonderwomen .o{color:var(--gold)}
.wonderwomen .n{color:var(--blue)}

.proof{margin-top:10px}
.proofLine{
  padding:7px 0;
  border-top:1px solid rgba(255,255,255,.10);
}
.proofLine:first-child{border-top:none}
.proofLine2{color:#d6d6d6}
.harvard{
  font-weight:950;
  color:#fff;
}

.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;
}