:root{
  --bg:#f6f7fb;
  --paper:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.12);
  --accent:#2563eb;
  --accent2:#0ea5e9;
  --shadow:0 14px 40px rgba(2,6,23,.08);
  --radius:18px;
  --max:1100px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--ink);
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(37,99,235,.10), transparent 80%),
    radial-gradient(900px 700px at 85% 10%, rgba(14,165,233,.10), transparent 55%),
    var(--bg);
}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max); margin:0 auto; padding:22px}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(246,247,251,.78);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:14px}
.brand{display:flex; align-items:center; gap:12px; color:var(--ink)}
.brand:hover{text-decoration:none}
.logo{
  width:44px; height:44px; border-radius:14px;
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  display:grid; place-items:center;
  box-shadow:var(--shadow);
}

.menu{display:flex; gap:10px; flex-wrap:wrap}
.menu a{
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.menu a:hover{color:var(--ink); border-color:var(--line); background:rgba(15,23,42,.04); text-decoration:none}
.menu a.active{color:var(--ink); border-color:var(--line); background:rgba(15,23,42,.04); text-decoration:none}

.cta{
  padding:10px 14px;
  border-radius:12px;
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  color:#fff;
  font-weight:700;
  box-shadow:var(--shadow);
}
.cta:hover{filter:brightness(.98); text-decoration:none}

.panel{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero{
  padding:22px 0;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
}
.heroText{padding:20px}
h1{margin:0 0 10px; font-size:clamp(26px,3vw,40px); line-height:1.15}
.lead{margin:0 0 16px; color:var(--muted)}
.kicker{color:var(--muted); font-weight:700; letter-spacing:.2px; text-transform:uppercase; font-size:.8rem}

.pillRow{display:flex; gap:8px; flex-wrap:wrap}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(15,23,42,.03);
  color:var(--muted);
  font-size:.92rem;
}

.media{
  min-height:260px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background-size:cover;
  background-position:center;
  position:relative;
}
.media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.20)
  );
  border-radius:var(--radius);
}
.media > .label{
  position:absolute; left:14px; bottom:14px; z-index:2;
  padding:9px 11px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  color:var(--muted);
  font-size:.9rem;
}

section{padding:16px 0}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
.card{padding:16px}
.card h3{margin:10px 0 6px}
.card p{margin:0; color:var(--muted)}
.split{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.list{margin:0; padding-left:18px; color:var(--muted)}
.note{
  border-left:4px solid rgba(37,99,235,.35);
  padding:10px 12px;
  background:rgba(37,99,235,.05);
  border-radius:12px;
  color:var(--muted);
}
details{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--paper);
  padding:12px 14px;
  box-shadow:var(--shadow);
}
details summary{cursor:pointer; font-weight:800}
.footer{
  margin-top:18px;
  padding:18px 0 26px;
  border-top:1px solid var(--line);
  color:rgba(15,23,42,.65);
  font-size:.92rem;
  display:flex; gap:10px; flex-wrap:wrap; justify-content:space-between; align-items:center;
}
small{color:rgba(15,23,42,.65)}
@media(max-width:900px){
  .hero,.grid3,.split{grid-template-columns:1fr}
  .menu{display:none}
}
