/* Brassband Advisory Intelligence - basic multi-page site */
:root{
  --bg:#0b0f19;
  --panel:#0f1629;
  --text:#e8eefc;
  --muted:#a9b4d0;
  --line:rgba(255,255,255,.10);
  --accent:#7aa2ff;
  --accent2:#64f0c8;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --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 600px at 20% -10%, rgba(122,162,255,.25), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(100,240,200,.14), transparent 55%),
    var(--bg);
  line-height:1.5;
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}

header{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(11,15,25,.70);
  border-bottom:1px solid var(--line);
}
nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.logo{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 30px rgba(122,162,255,.25);
}
.brand b{letter-spacing:.2px}
.brand .sub{font-size:12px;color:var(--muted)}

.links{
  display:flex; gap:8px; flex-wrap:wrap;
  font-size:14px; color:var(--muted);
}
.links a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
}
.links a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.links a.active{
  color:var(--text);
  background:rgba(255,255,255,.07);
  border:1px solid var(--line);
}

.cta{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(122,162,255,.35);
  background:rgba(122,162,255,.12);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  white-space:nowrap;
  box-shadow: 0 10px 35px rgba(0,0,0,.22);
}
.cta:hover{background:rgba(122,162,255,.18)}

main{padding:42px 0 70px}

.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.eyebrow{
  display:inline-flex; gap:10px; align-items:center;
  color:var(--muted);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  width:fit-content;
}

h1{
  font-size:44px;
  line-height:1.06;
  margin:14px 0 12px;
  letter-spacing:-.6px;
}
@media (max-width: 520px){ h1{font-size:36px} }

.lead{
  font-size:18px;
  color:var(--muted);
  max-width:70ch;
  margin:0 0 18px;
}

.section-title{
  display:flex; align-items:end; justify-content:space-between; gap:14px;
  margin:28px 0 16px;
}
.section-title h2{
  margin:0;
  font-size:22px;
  letter-spacing:-.3px;
}
.section-title p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  max-width:70ch;
}

.grid{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 920px){ .grid{grid-template-columns:1fr} }

.two-col{
  display:grid; gap:14px;
  grid-template-columns: 1fr 1fr;
  align-items:start;
}
@media (max-width: 920px){ .two-col{grid-template-columns:1fr} }

.pill-row{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.pill{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
}

.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}
.button:hover{background:rgba(255,255,255,.08)}
.button.primary{
  border-color:rgba(100,240,200,.40);
  background:rgba(100,240,200,.10);
}
.button.primary:hover{background:rgba(100,240,200,.14)}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.small{color:var(--muted); font-size:13px}
.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  padding:3px 8px; border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-size:12px;
}

form{display:grid; gap:10px}
label{font-size:13px; color:var(--muted)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.20);
  color:var(--text);
  outline:none;
  font-size:14px;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{border-color:rgba(122,162,255,.55)}

footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}
.footer-row{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  flex-wrap:wrap;
}
