:root{
  --bg:#0b1020;
  --panel:#101a33;
  --text:#e8eefc;
  --muted:#a9b6d6;
  --border:rgba(232,238,252,.12);
  --accent:#d6b25e;
  --accent2:#66d9c0;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(214,178,94,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(102,217,192,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), #070a14 65%, #05060c);
  color:var(--text);
  line-height:1.55;
}
a{color:var(--accent2); text-decoration:none}
a:hover{color:#8af0db; text-decoration:underline}
.container{max-width:1120px; margin:0 auto; padding:0 18px}
header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(7,10,20,.62);
  border-bottom:1px solid var(--border);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:16px 0; gap:12px}
.brand{display:flex; align-items:center; gap:12px; min-width:200px}
.mark{width:40px; height:40px; border-radius:14px;
  background: linear-gradient(145deg, rgba(214,178,94,.95), rgba(102,217,192,.65));
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.brand h1{font-size:16px; letter-spacing:.4px; margin:0; font-weight:650}
.brand p{margin:0; font-size:12px; color:var(--muted)}
nav{display:flex; flex-wrap:wrap; gap:14px; justify-content:flex-end}
nav a{font-size:13px; color:var(--text); opacity:.85; padding:8px 10px; border-radius:12px}
nav a:hover{opacity:1; background: rgba(232,238,252,.06); text-decoration:none}
.hero{padding:54px 0 28px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:26px; align-items:stretch}
.hero-card{
  border:1px solid var(--border);
  background: rgba(16,26,51,.52);
  box-shadow: var(--shadow);
  border-radius:22px;
  padding:26px;
}
.kicker{display:inline-flex; align-items:center; gap:10px; font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted)}
.dot{width:8px; height:8px; border-radius:99px; background: var(--accent); box-shadow: 0 0 0 5px rgba(214,178,94,.12)}
.hero h2{margin:14px 0 10px; font-size:42px; line-height:1.08; letter-spacing:-.02em}
.hero p{margin:0 0 18px; color:var(--muted); font-size:16px}
.cta{display:flex; flex-wrap:wrap; gap:12px; margin-top:8px}
.btn{display:inline-flex; align-items:center; justify-content:center; padding:12px 14px; border-radius:16px;
  border:1px solid var(--border); background: rgba(232,238,252,.06); color:var(--text); font-weight:600; font-size:14px}
.btn:hover{background: rgba(232,238,252,.10); text-decoration:none}
.btn.primary{border-color: rgba(214,178,94,.4); background: linear-gradient(160deg, rgba(214,178,94,.95), rgba(214,178,94,.55)); color:#1a1405}
.panel{border:1px solid var(--border); background: rgba(15,24,48,.58); box-shadow: var(--shadow); border-radius:22px; padding:22px}
.panel h3{margin:0 0 10px; font-size:15px}
.small{font-size:12px; color:var(--muted)}
.headshots{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:12px}
.hs{border-radius:18px; border:1px solid var(--border); overflow:hidden; background: rgba(232,238,252,.04);
  aspect-ratio: 4 / 5; display:flex; align-items:center; justify-content:center; color: rgba(232,238,252,.55); font-size:12px}
.hs img{width:100%; height:100%; object-fit:cover; display:block}
section.block{padding:22px 0 6px}
.grid3{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
.card{border:1px solid var(--border); background: rgba(16,26,51,.35); border-radius:22px; padding:18px}
.card h4{margin:0 0 8px; font-size:15px}
.card p{margin:0; color:var(--muted); font-size:14px}
audio{width:100%; margin-top:10px}
.page{padding:42px 0 18px}
.page h2{margin:0 0 10px; font-size:30px}
.page p{color:var(--muted); max-width:78ch}
.list{margin-top:16px; border:1px solid var(--border); border-radius:22px; padding:18px; background: rgba(16,26,51,.35)}
.list li{margin:8px 0; color:var(--muted)}
form{margin-top:16px; border:1px solid var(--border); border-radius:22px; padding:18px; background: rgba(16,26,51,.35); max-width:720px}
label{display:block; font-size:13px; color:var(--muted); margin:10px 0 6px}
input, textarea{width:100%; border-radius:16px; border:1px solid rgba(232,238,252,.14); background: rgba(7,10,20,.55);
  color:var(--text); padding:12px 12px; outline:none}
input:focus, textarea:focus{border-color: rgba(102,217,192,.55); box-shadow: 0 0 0 4px rgba(102,217,192,.12)}
button{margin-top:12px; border-radius:16px; padding:12px 14px; border:1px solid rgba(214,178,94,.42);
  background: linear-gradient(160deg, rgba(214,178,94,.95), rgba(214,178,94,.55)); color:#1a1405; font-weight:700; cursor:pointer}
footer{margin-top:36px; border-top:1px solid var(--border); background: rgba(7,10,20,.55)}
.foot{padding:18px 0; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:8px; color:var(--muted); font-size:12px}
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .headshots{grid-template-columns: repeat(2, 1fr)}
  .grid3{grid-template-columns: 1fr}
  .hero h2{font-size:36px}
}