:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#4b5563;
  --border:#e5e7eb;
  --card:#f9fafb;
  --link:#0f172a;
  --accent:#1f2937;
  --shadow: 0 10px 25px rgba(0,0,0,.06);
}

*{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";
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

a{color:var(--link); text-underline-offset: 3px}
a:hover{opacity:.85}

.container{max-width:1100px; margin:0 auto; padding:0 18px}
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:18px; top:12px; width:auto; height:auto; padding:10px 12px;
  background:#fff; border:1px solid var(--border); border-radius:10px; z-index:50;
}

.header{
  position:sticky; top:0; background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--border);
  z-index:10;
}
.header__inner{display:flex; gap:18px; align-items:center; justify-content:space-between; padding:14px 0}
.brand__name{font-weight:700; letter-spacing:.2px; font-size:18px; text-decoration:none}
.brand__tagline{font-size:12.5px; color:var(--muted); margin-top:2px}

.nav{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.nav__link{
  font-size:13px;
  padding:7px 10px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid transparent;
}
.nav__link--active{
  border-color:var(--border);
  background:var(--card);
}

.main{padding:34px 0 50px}

.hero{
  padding:28px;
  border:1px solid var(--border);
  border-radius:22px;
  background:linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow:var(--shadow);
}
.hero__kicker{color:var(--muted); font-size:13px; margin:0}
.hero__title{font-size:34px; line-height:1.15; margin:10px 0 10px}
.hero__lead{font-size:16px; color:var(--muted); margin:0; max-width:70ch}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
}
.button--primary{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
  margin-top:18px;
}
.card{
  grid-column: span 6;
  padding:18px;
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--card);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted)}
.card ul{margin:10px 0 0 18px; color:var(--muted)}
.card--wide{grid-column: span 12}

.section{margin-top:24px}
.section h2{font-size:22px; margin:0 0 10px}
.section p{margin:0 0 10px; color:var(--muted)}
.kpi{
  display:flex; gap:10px; flex-wrap:wrap;
}
.pill{
  border:1px solid var(--border);
  background:#fff;
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.embed{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:#000;
}
.embed iframe{display:block; width:100%; height:360px; border:0}

.footer{border-top:1px solid var(--border); padding:24px 0}
.footer__inner{display:flex; gap:14px; justify-content:space-between; flex-wrap:wrap}
.footer__name{font-weight:700}
.footer__meta{color:var(--muted); font-size:13px; margin-top:2px}
.footer__small{color:var(--muted); font-size:12px}

@media (max-width: 820px){
  .hero__title{font-size:28px}
  .card{grid-column: span 12}
  .embed iframe{height:240px}
}
