:root{
  --bg:#f4f6fb;
  --surface:#ffffff;
  --text:#0b1220;
  --muted:#5b6470;
  --border:#e4e8ef;
  --soft:#f7f9fd;
  --primary:#0f2a45;
  --accent:#2563eb;
  --accent2:#1d4ed8;
  --radius:18px;
  --shadow:0 18px 40px rgba(0,0,0,.08);
  --max:1100px;
  --focus: 0 0 0 4px rgba(37,99,235,.18);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{ color:var(--accent); text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.skip{
  position:absolute; left:-999px; top:10px;
  background:#fff; border:1px solid var(--border);
  padding:10px 12px; border-radius:12px;
  box-shadow:var(--shadow); z-index:9999;
  color:var(--primary); font-weight:900;
}
.skip:focus{ left:12px; outline:none; box-shadow:var(--focus), var(--shadow); }

header{
  background:#fff;
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:18px 0; flex-wrap:wrap;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 260px;
}
.logo{
  width:42px; height:42px; border-radius:12px;
  border:1px solid var(--border);
  background:var(--soft);
  display:flex; align-items:center; justify-content:center;
  font-weight:1000; color:var(--primary);
  letter-spacing:-.5px;
}
.brand .title{ display:flex; flex-direction:column; gap:2px; line-height:1.15; }
.brand .title strong{ font-size:16px; color:var(--primary); letter-spacing:-.2px; }
.brand .title span{ font-size:12px; color:var(--muted); font-weight:800; text-transform:uppercase; letter-spacing:.08em; }

nav{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  font-weight:900; font-size:14px; justify-content:center;
}
nav a{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  color: var(--muted);
}
nav a:hover{
  background:var(--soft);
  border-color:var(--border);
  text-decoration:none;
  color:#1b2a44;
}

.actions{
  display:flex; gap:10px; flex-wrap:wrap;
  align-items:center; justify-content:flex-end;
  min-width: 260px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:12px 14px;
  border-radius:12px; border:1px solid var(--border);
  background:#fff; color:#1b2a44;
  font-weight:950; font-size:14px;
  box-shadow: 0 10px 22px rgba(11,18,32,.06);
  transition:.15s ease;
  text-decoration:none;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); text-decoration:none; }
.btn:focus{ outline:none; box-shadow: var(--focus), var(--shadow); }
.btn.primary{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
  box-shadow: 0 18px 40px rgba(37,99,235,.18);
}
.btn.primary:hover{ background:var(--accent2); border-color:var(--accent2); }

.hero{
  padding:44px 0 18px;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background:#eef5ff; border:1px solid var(--border);
  color:var(--primary); font-weight:1000;
  font-size:12px; text-transform:uppercase; letter-spacing:.12em;
}
.kdot{
  width:10px;height:10px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(37,99,235,.12);
}
h1{
  margin:14px 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height:1.12;
  letter-spacing:-.6px;
  color:var(--primary);
}
p{ margin:0 0 14px; color:var(--muted); font-size:16px; }
.meta-row{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:14px; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: 0 10px 22px rgba(11,18,32,.06);
  color:#223045;
  font-weight:950;
  font-size:12px;
  white-space:nowrap;
}

.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  margin: 10px 0 40px;
  align-items:start;
}
.card{
  background:var(--surface);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  padding:24px;
}
.card h2{
  margin:0 0 10px;
  font-size:18px;
  color:var(--primary);
  letter-spacing:-.2px;
}
.card p{ font-size:14.5px; }

.list{ margin-top:14px; display:grid; gap:12px; }
.item{
  display:flex; gap:12px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  align-items:flex-start;
  transition:.15s ease;
}
.item:hover{ transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0,0,0,.06); }
.marker{
  width:12px; height:12px; border-radius:50%;
  background:var(--accent);
  margin-top:6px; flex:0 0 auto;
}
.item strong{
  display:block;
  color:#111;
  font-size:14px;
  letter-spacing:-.1px;
  margin-bottom:4px;
  line-height:1.25;
}
.item .desc{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-bottom:8px;
}
.meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:8px;
}
.miniTag{
  font-size:11px;
  font-weight:950;
  padding:6px 8px;
  border-radius:999px;
  border:1px solid var(--border);
  background: var(--soft);
  color:#223045;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.divider{ height:1px; background:var(--border); margin:18px 0; }

.prose h2{ margin:18px 0 10px; }
.prose h3{ margin:16px 0 8px; color:var(--primary); }
.prose p{ font-size:15px; }
.prose ul{ margin:0 0 14px 18px; color:var(--muted); font-size:15px; }
.quote{
  border-left:4px solid rgba(37,99,235,.35);
  background: var(--soft);
  border-radius:14px;
  padding:14px;
  margin:14px 0;
  color:#223045;
  font-weight:800;
}
.resource{
  border:1px solid var(--border);
  background: var(--soft);
  border-radius:16px;
  padding:14px;
  margin:14px 0;
}
.resource strong{ display:block; color:#223045; }
.resource a{
  display:inline-flex;
  margin-top:8px;
  font-weight:950;
  text-decoration:underline;
  word-break:break-word;
}

footer{
  background:#0f172a;
  color:rgba(255,255,255,.82);
  padding:56px 0 42px;
  font-size:13px;
  border-top:1px solid rgba(255,255,255,.06);
}
.foot-grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:22px;
  align-items:start;
}
.foot-box{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:22px;
}
.foot-box strong{
  color:#fff;
  display:block;
  margin-bottom:10px;
  font-size:14px;
  letter-spacing:-.1px;
}
.foot-links a{
  display:inline-block;
  margin:6px 6px 0 0;
  padding:8px 12px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:10px;
  color:#fff;
  font-weight:900;
  text-decoration:none;
}
.foot-links a:hover{ background: rgba(255,255,255,.12); }

@media (max-width: 920px){
  .grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr; }
  nav{ justify-content:flex-start; }
  .actions{ min-width:auto; }
}
