:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --soft:#f8fafc;
  --accent:#2563eb;
  --accent2:#1d4ed8;
  --shadow: 0 10px 25px rgba(15, 23, 42, .08);
  --radius: 16px;
  --max: 1080px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.header{
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0; gap: 16px;
}

.brand{ display:flex; flex-direction:column; gap:2px; text-decoration:none; }
.brand__name{ font-weight: 800; letter-spacing: .2px; }
.brand__role{ font-size: 13px; color: var(--muted); }

.nav{ display:flex; align-items:center; gap: 10px; flex-wrap: wrap; }
.nav a{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration:none;
}
.nav a:hover{ background: var(--soft); color: var(--text); }
.nav__cta{
  background: var(--accent);
  color: white !important;
}
.nav__cta:hover{ background: var(--accent2); }

.hero{
  padding: 46px 0 18px;
  background:
    radial-gradient(900px 400px at 20% 10%, rgba(37,99,235,.12), transparent 60%),
    radial-gradient(700px 360px at 85% 5%, rgba(37,99,235,.08), transparent 60%);
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items: start;
}

.kicker{
  margin:0 0 10px;
  color: var(--accent2);
  font-weight: 700;
  font-size: 14px;
}

h1{
  margin:0 0 12px;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.accent{ color: var(--accent2); }

.lead{
  margin:0 0 16px;
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

.actions{
  display:flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--accent);
  color: white;
  font-weight: 750;
  text-decoration:none;
}
.btn:hover{ background: var(--accent2); }
.btn--ghost{
  background: white;
  color: var(--text);
}
.btn--ghost:hover{ background: var(--soft); }

.tags{ display:flex; flex-wrap: wrap; gap: 8px; }
.tag{
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
}

.section{ padding: 34px 0; }
.section--soft{
  background: var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section__head{
  display:flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 14px; flex-wrap: wrap;
}
.section__head p{ margin:0; color: var(--muted); }

h2{ margin:0; font-s
