:root{
  --bg:#ffffff;
  --text:#0b0b0b;
  --muted:#5b5b5b;
  --line:#e9e9e9;
  --max:1040px;
  --radius:14px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity: 0.6; }

.container{ max-width:var(--max); margin:0 auto; padding: 28px 20px; }

.header{
  position:sticky; top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(8px);
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 20px;
}
.brand{
  font-weight:800;
  letter-spacing:.2px;
}
.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ color:var(--muted); font-weight:600; }
.nav a.active{ color:var(--text); }
.nav a.cta{ color:var(--text); }

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  padding: 34px 0 8px;
  align-items:stretch;
}
.hero-copy h1{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  margin: 10px 0 14px;
  font-weight:900;
}
.kicker{ color:var(--muted); margin:0; font-weight:700; }
.lead{ color:var(--muted); margin:0; font-size: 18px; max-width: 60ch; }
.actions{ margin-top:18px; display:flex; gap:12px; flex-wrap:wrap; }

.hero-media{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fafafa;
}
.hero-media img{ width:100%; height:100%; object-fit:cover; display:block; }

.section{ padding: 28px 0; border-top: 1px solid var(--line); }
.section h2{ margin:0 0 12px; font-size: 22px; font-weight:900; }

.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap:14px; }
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background:#fff;
}
.card h3{ margin:0 0 8px; font-weight:900; }
.card p{ margin:0; color:var(--muted); }
.card-wide h2{ margin:0 0 8px; font-weight:900; }
.stack{ display:grid; gap:14px; }
.top-gap{ margin-top:14px; }

.logos{
  display:flex; flex-wrap:wrap; gap:10px;
}
.logo{
  border:1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color:var(--muted);
  font-weight:700;
  background:#fff;
}

.page-head{ padding: 34px 0 10px; }
.page-head h1{ margin:0 0 10px; font-size: 40px; line-height:1.1; font-weight:900; }
.page-head .lead{ margin:0; }

.button{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 999px;
  padding: 10px 14px;
  border:1px solid var(--text);
  background: var(--text);
  color:#fff;
  font-weight:800;
}
.button:hover{ text-decoration:none; opacity:.92; }
.button-ghost{
  background:transparent;
  color:var(--text);
}

.form{
  max-width: 560px;
  display:grid;
  gap:12px;
}
label{ display:grid; gap:6px; font-weight:800; }
input, textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}
.fineprint{ color:var(--muted); font-size: 13px; margin:0; }

.person img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.person figcaption{ margin-top:10px; color:var(--muted); }
.person strong{ color:var(--text); }

.footer{
  border-top:1px solid var(--line);
  padding: 18px 0;
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  color:var(--muted);
  font-weight:700;
}
.footer-links{ display:flex; gap:14px; }

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .header{ position:static; }
}
