/* Next Health AI — Partner-first Specialty Access Site
   Shared styles for all pages
*/
:root{
  --bg:#0b1020;
  --panel:#0f1730;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.58);
  --brand:#7c3aed; /* violet */
  --brand2:#22c55e; /* green */
  --brand3:#38bdf8; /* sky */
  --danger:#fb7185;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:24px;
  --max:1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% 5%, rgba(124,58,237,.35), transparent 55%),
    radial-gradient(1100px 650px at 85% 10%, rgba(56,189,248,.25), transparent 55%),
    radial-gradient(900px 600px at 50% 85%, rgba(34,197,94,.18), transparent 60%),
    linear-gradient(180deg, #070a14, #0b1020 35%, #050712);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ width:min(var(--max), 92vw); margin:0 auto; }

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7,10,20,.78), rgba(7,10,20,.40));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.2px;
}
.logo{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(56,189,248,.85));
  box-shadow: 0 10px 22px rgba(124,58,237,.25);
}
.brand small{ display:block; font-weight:700; color:var(--muted2); margin-top:2px; letter-spacing:.15px; }

.navlinks{
  display:flex; flex-wrap:wrap; gap:10px;
  align-items:center;
}
.navlinks a{
  font-size:13px; font-weight:800;
  padding:8px 10px; border-radius:999px;
  border:1px solid transparent;
  color:var(--muted);
}
.navlinks a:hover{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  text-decoration:none;
}

.badge{
  font-size:12px; font-weight:900;
  padding:7px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  white-space:nowrap;
}

.hero{
  padding:56px 0 22px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 940px){
  .heroGrid{ grid-template-columns:1fr; }
}

.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:900;
  padding:7px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:rgba(255,255,255,.86);
  letter-spacing:.2px;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.02;
  letter-spacing:-.6px;
}
.subhead{
  margin:0;
  font-size: 16.5px;
  line-height:1.55;
  color:var(--muted);
  max-width: 60ch;
}
.ctarow{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:18px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  font-weight:900;
  font-size:13px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.btn:hover{
  background: rgba(255,255,255,.09);
  text-decoration:none;
}
.btn.primary{
  border-color: rgba(124,58,237,.35);
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(56,189,248,.65));
}
.btn.primary:hover{
  filter: brightness(1.04);
}
.btn.alt{
  border-color: rgba(34,197,94,.30);
  background: linear-gradient(135deg, rgba(34,197,94,.85), rgba(56,189,248,.35));
}
.btn.ghost{
  background: transparent;
}

.heroCard{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCardInner{
  padding:18px 18px 16px;
}
.heroCard h3{
  margin:4px 0 6px;
  font-size:15px;
  letter-spacing:.1px;
}
.heroCard p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.miniGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:12px;
}
@media (max-width: 520px){
  .miniGrid{ grid-template-columns:1fr; }
}
.mini{
  padding:12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.mini b{ display:block; font-size:18px; letter-spacing:-.2px; }
.mini span{ color:var(--muted2); font-size:12px; font-weight:800; }

.section{
  padding:28px 0;
}
.sectionTitle{
  display:flex; align-items:baseline; justify-content:space-between; gap:10px;
  margin-bottom:12px;
}
.sectionTitle h2{
  margin:0;
  font-size:22px;
  letter-spacing:-.3px;
}
.sectionTitle .hint{
  color:var(--muted2); font-weight:800; font-size:12px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 940px){
  .grid3{ grid-template-columns:1fr; }
}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  padding:16px;
}
.card h3{ margin:0 0 6px; font-size:15px; }
.card p{ margin:0; color:var(--muted); font-size:13px; line-height:1.55; }
.pills{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:900;
  padding:7px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 940px){
  .split{ grid-template-columns:1fr; }
}
.list{
  margin:10px 0 0;
  padding-left:18px;
}
.list li{
  margin: 8px 0;
  color: var(--muted);
  line-height:1.5;
}

.quote{
  border-left:3px solid rgba(56,189,248,.6);
  padding:12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size:13px;
  line-height:1.6;
}

.footer{
  padding:28px 0 40px;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:26px;
  color: var(--muted2);
  font-size:12px;
}
.footerRow{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:center;
}
.smallnote{ color:rgba(255,255,255,.55); font-size:11px; line-height:1.45; margin-top:10px; }
.form{
  display:grid;
  gap:10px;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font-size: 13px;
  outline:none;
}
textarea{ min-height: 120px; resize: vertical; }
label{ font-size:12px; font-weight:900; color:rgba(255,255,255,.8); }
.formRow{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
@media (max-width: 740px){
  .formRow{ grid-template-columns:1fr; }
}
hr.sep{
  border:0; border-top:1px solid rgba(255,255,255,.08);
  margin:16px 0;
}
