
:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #5b6472;
  --line: #e5e7eb;
  --soft: #f7f8fa;
  --accent: #111827;
  --radius: 18px;
  --shadow: 0 14px 36px rgba(17, 24, 39, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,231,235,.8);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { text-decoration: none; display: flex; gap: 10px; align-items: baseline; }
.brand-mark { font-weight: 800; letter-spacing: -.04em; font-size: 22px; }
.brand-text { color: var(--muted); font-size: 16px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 550; }
.nav-links a:hover { color: var(--text); }

.hero {
  padding: 120px 0 110px;
  max-width: 980px;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}
.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.primary { background: var(--accent); color: #fff; }
.secondary { border: 1px solid var(--line); background: #fff; }

.section { padding: 90px 0; }
.alt { background: var(--soft); }
.two-col, .contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.body-copy { color: var(--muted); font-size: 18px; }
.body-copy p:first-child { margin-top: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 260px;
  box-shadow: var(--shadow);
  background: #fff;
}
.card-kicker { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.card h3 { font-size: 30px; margin: 16px 0 12px; letter-spacing: -.03em; }
.card p { color: var(--muted); font-size: 17px; }
.status {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.contact-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
}
.contact-label {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
  margin-bottom: 4px;
}
.top-gap { margin-top: 22px; }
.contact-card a { font-size: 18px; font-weight: 650; text-decoration: none; }

footer { border-top: 1px solid var(--line); padding: 26px 0; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-links a { text-decoration: none; }

@media (max-width: 760px) {
  .nav-links { gap: 16px; font-size: 14px; }
  .hero { padding: 82px 0 72px; }
  .section { padding: 66px 0; }
  .two-col, .contact, .cards { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; }
}
