:root{
  --bg:#ffffff;
  --text:#18181b;
  --muted:#52525b;
  --border:#e4e4e7;
  --panel:#fafafa;
  --shadow: 0 1px 2px rgba(0,0,0,.06);
  --radius: 18px;
  --radius-lg: 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:var(--bg);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline; text-underline-offset:4px}
.container{max-width:var(--max); margin:0 auto; padding:0 24px}
.border-b{border-bottom:1px solid var(--border)}
.border-t{border-top:1px solid var(--border)}
header{position:sticky; top:0; background:rgba(255,255,255,.92); backdrop-filter:saturate(180%) blur(10px); z-index:10}
.navbar{display:flex; align-items:center; justify-content:space-between; height:64px}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:40px; height:40px; border-radius:14px;
  background:linear-gradient(135deg, #f4f4f5, #ffffff);
  border:1px solid var(--border);
}
.brand .name{font-weight:700; font-size:14px; line-height:1.1}
.brand .tag{font-size:12px; color:var(--muted)}
nav{display:flex; gap:22px; align-items:center}
nav a{font-size:14px; color:var(--muted)}
nav a.active{color:var(--text); font-weight:700}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  font-weight:700;
  font-size:14px;
  text-decoration:none !important;
}
.btn.primary{background:var(--text); color:#fff; border-color:var(--text)}
.btn.secondary{background:#fff; color:var(--text)}
.btn:hover{opacity:.92}
.hero{padding:64px 0 40px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
}
.h1{font-size:44px; line-height:1.08; letter-spacing:-.02em; margin:14px 0 0; font-weight:800}
.lead{margin-top:14px; color:var(--muted); font-size:16px; max-width:56ch}
.actions{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap}
.grid{display:grid; gap:14px}
@media (min-width:900px){
  .hero-grid{grid-template-columns: 1.05fr .95fr; align-items:center}
  .grid-2{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(3,1fr)}
  .grid-4{grid-template-columns:repeat(4,1fr)}
  .desktop-only{display:flex !important}
  .mobile-only{display:none !important}
}
@media (max-width:899px){
  nav{display:none}
  .desktop-only{display:none !important}
  .mobile-only{display:flex !important}
}
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
  padding:18px;
}
.card.panel{background:var(--panel)}
.card h3{margin:0; font-size:16px}
.card p{margin:8px 0 0; color:var(--muted); font-size:14px}
.kpi{padding:14px}
.kpi .k{font-size:12px; color:var(--muted); font-weight:700}
.kpi .v{margin-top:4px; font-weight:800}
.section{padding:56px 0}
.section h2{margin:0; font-size:28px; letter-spacing:-.01em}
.section .sub{margin-top:10px; color:var(--muted); max-width:72ch}
.link-card{display:block}
.link-card:hover{text-decoration:none}
.link-card .more{margin-top:12px; font-size:14px; font-weight:800}
.cta{
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  background:#fff;
  box-shadow:var(--shadow);
  padding:28px;
}
footer{margin-top:64px}
.footer-grid{display:grid; gap:28px; padding:44px 0}
@media(min-width:900px){.footer-grid{grid-template-columns: 1.3fr 1fr 1fr}}
.small{font-size:13px; color:var(--muted)}
ul{margin:10px 0 0; padding-left:18px}
li{margin:6px 0; color:var(--muted)}
form .row{display:grid; gap:12px}
@media(min-width:700px){form .row.two{grid-template-columns:1fr 1fr}}
label{display:grid; gap:6px; font-size:13px; color:var(--muted); font-weight:700}
input, select, textarea{
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px 12px;
  font:inherit;
  background:#fff;
  color:var(--text);
}
textarea{min-height:140px; resize:vertical}
.note{font-size:12px; color:var(--muted)}
.breadcrumb{font-size:13px; color:var(--muted)}
hr.sep{border:0; border-top:1px solid var(--border); margin:18px 0}
