:root{
  /* Equity-style blue (adjust if you have an exact brand hex) */
  --equity-blue: #0B4EA2;
  --equity-blue-dark: #083A7A;

  --bg: #0B1220;
  --card: #0F1A2E;
  --text: #E8EEF8;
  --muted: #A7B5CC;
  --border: rgba(255,255,255,0.10);

  --max: 980px;
  --radius: 14px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 0%, rgba(11,78,162,0.25), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(11,78,162,0.18), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 56px;
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  backdrop-filter: blur(6px);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.badge{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--equity-blue), var(--equity-blue-dark));
  box-shadow: 0 10px 30px rgba(11,78,162,0.25);
}

.nav a{
  margin-left: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav a:hover{ color: var(--text); }

.hero{
  margin-top: 26px;
  padding: 26px 18px;
}
h1{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
}
.lede{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 70ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.card{
  grid-column: span 12;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}
@media (min-width: 860px){
  .card{ grid-column: span 6; }
}

.card h2{
  margin: 0 0 8px;
  font-size: 18px;
}
.card p{
  margin: 0 0 12px;
  color: var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(191,215,255,0.25);
  background: rgba(11,78,162,0.18);
  color: var(--text);
  font-weight: 700;
}
.btn:hover{
  background: rgba(11,78,162,0.28);
  text-decoration: none;
}

.footer{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.small{
  font-size: 13px;
  color: var(--muted);
}
