:root {
  --bg: #fafaf7;
  --ink: #0e1116;
  --ink-soft: #3a3f47;
  --muted: #6b7280;
  --line: #e5e3dc;
  --accent: #1a4d3a;
  --accent-soft: #e8efe9;
  --gold: #b8945a;
  --dark: #0e1116;
  --radius: 4px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--ink); color: var(--bg);
  font-weight: 800; font-size: 13px; letter-spacing: 0.5px;
  border-radius: var(--radius);
}
.brand-name { font-weight: 700; font-size: 17px; letter-spacing: 0.3px; }
.brand-suffix { font-weight: 400; color: var(--muted); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
@media (max-width: 640px) { .nav-links { display: none; } }

/* Hero */
.hero { padding: 96px 0 88px; border-bottom: 1px solid var(--line); }
.hero-inner { max-width: 900px; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold); }
h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700; letter-spacing: -1.5px;
  line-height: 1.05; margin-bottom: 28px;
}
.lede { font-size: 19px; color: var(--ink-soft); max-width: 640px; margin-bottom: 36px; }
.lede.center { text-align: center; margin-left: auto; margin-right: auto; }
.lede.light { color: #c7ccd3; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.btn {
  display: inline-flex; align-items: center;
  padding: 14px 24px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn-ghost:hover { background: var(--accent-soft); border-color: var(--accent); }

.stats { display: flex; gap: 56px; flex-wrap: wrap; }
.stats > div { display: flex; flex-direction: column; }
.stats strong { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; }
.stats span { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: #f3f1ea; }
.section-dark { background: var(--dark); color: var(--bg); }
.section-dark h2, .section-dark .light { color: var(--bg); }

h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  letter-spacing: -0.8px; line-height: 1.15; max-width: 720px;
  margin-bottom: 24px;
}
h2.center { text-align: center; margin-left: auto; margin-right: auto; margin-bottom: 56px; }

.two-col { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 24px; } }
.prose p { color: var(--ink-soft); font-size: 17px; margin-bottom: 18px; }

/* Grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--bg); padding: 32px 28px;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: all 0.25s;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card-icon {
  font-size: 22px; color: var(--accent);
  margin-bottom: 16px;
}
.card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; }

/* Sectors */
.sectors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; border-top: 1px solid var(--line); }
@media (max-width: 700px) { .sectors { grid-template-columns: 1fr; } }
.sector {
  padding: 32px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--bg);
}
.sectors .sector:nth-child(even) { border-right: none; }
.sector span {
  display: inline-block;
  font-family: ui-monospace, monospace; font-size: 12px;
  color: var(--gold); letter-spacing: 1px;
  margin-bottom: 12px;
}
.sector h4 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.sector p { color: var(--ink-soft); font-size: 15px; }

/* Contact */
.contact-inner { text-align: center; }
.contact-card {
  margin: 56px auto 0; max-width: 820px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 640px) { .contact-card { grid-template-columns: 1fr; } }
.contact-card > div { padding: 28px 24px; text-align: left; }
.contact-card > div + div { border-left: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 640px) {
  .contact-card > div + div { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
}
.contact-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-value { color: var(--bg); font-size: 16px; text-decoration: none; font-weight: 500; }
a.contact-value:hover { color: var(--gold); }

/* Footer */
.footer { padding: 32px 0; background: var(--dark); color: #8a8f96; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.muted { color: #6b7280; }
