/* Simple, conservative, modern styling  */
:root{
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --text: #0f172a;       /* slate-900-ish */
  --muted: #475569;      /* slate-600-ish */
  --border: #e2e8f0;     /* slate-200-ish */
  --btn: #0f172a;
  --btn-hover: #1e293b;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 8px 24px rgba(15, 23, 42, .06);
  --max: 1120px;
  --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration: none !important;
}

.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--btn);
  color: #fff;
  display:grid;
  place-items:center;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 14px;
}

.brand-text{
  display:flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name{ font-weight: 700; font-size: 14px; }
.brand-role{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.nav{
  display:flex;
  gap: 18px;
}
.nav a{
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.nav a:hover{ color: var(--text); text-decoration: none; }

.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.icon-link{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display:grid;
  place-items:center;
  background: #fff;
}
.icon-link:hover{ background: #f3f4f6; text-decoration:none; }
.icon-link svg{ width: 18px; height: 18px; fill: #334155; }

/* Mobile menu button */
.menu-btn{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px;
  cursor: pointer;
}
.menu-btn span{
  display:block;
  height: 2px;
  background: #334155;
  margin: 5px 0;
  border-radius: 4px;
}
.menu-btn:hover{ background: #f3f4f6; }

.mobile-nav{
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav-inner{
  padding: 14px 18px 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav a{
  font-weight: 600;
  color: var(--muted);
  text-decoration:none;
}
.mobile-nav a:hover{ color: var(--text); }
.mobile-nav-actions{
  display:flex;
  gap: 10px;
  margin-top: 6px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration:none !important;
  white-space: nowrap;
}

.btn-primary{
  background: var(--btn);
  color: #fff;
}
.btn-primary:hover{ background: var(--btn-hover); }

.btn-secondary{
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover{ background: #f3f4f6; }

/* Hero */
.hero{
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
  border-bottom: 1px solid var(--border);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  padding: 48px 0;
  align-items: center;
}

.eyebrow{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

h1{
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.lead{
  margin: 14px 0 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
}

.cta-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.stat{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 12px;
  box-shadow: 0 1px 0 rgba(15,23,42,.02);
}
.stat-label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.stat-value{
  margin-top: 4px;
  font-size: 16px;
  font-weight: 800;
}

.hero-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.hero-photo{
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: 50% 10%;
  display:block;
  background: #e2e8f0;
}

.hero-card-text{
  padding: 14px 16px 16px;
}
.hero-name{ font-weight: 800; }
.hero-title{ color: var(--muted); margin-top: 2px; font-weight: 600; font-size: 14px; }

/* Sections */
.section{
  padding: 54px 0;
}

.section-alt{
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head h2{
  margin: 6px 0 0;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.section-head{ margin-bottom: 18px; }

.body{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(15,23,42,.02);
}

.callout{
  border-radius: 24px;
  padding: 18px;
  background: var(--btn);
  color: #fff;
  box-shadow: var(--shadow);
}
.callout h3{ margin: 0 0 10px; font-size: 18px; }
.callout p{ margin: 0; color: rgba(255,255,255,.88); }
.callout .cta-row{ margin-top: 14px; }
.callout .btn-secondary{ border-color: rgba(255,255,255,.25); color: #fff; background: transparent; }
.callout .btn-secondary:hover{ background: rgba(255,255,255,.08); }

.checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.checklist li{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px 12px 12px 38px;
  position: relative;
  font-weight: 700;
  color: #1f2937;
}
.checklist li::before{
  content: "✓";
  position: absolute;
  left: 14px;
  top: 10px;
  font-weight: 900;
  color: #334155;
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 8px 0; }

.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.chip{
  border: 1px solid var(--border);
  background: #f8fafc;
  color: #334155;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.grid h3{
  margin: 0 0 10px;
  font-size: 16px;
}
.grid .bullets{ margin: 0; }

.contact .cta-row{ margin-top: 14px; }

/* Footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 26px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.footer-links{
  display:flex;
  gap: 14px;
}

/* Responsive */
@media (max-width: 920px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-photo{ height: 340px; }
  h1{ font-size: 40px; }
  .two-col{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .header-actions .btn-secondary{ display:none; }
  .stats{ grid-template-columns: 1fr; }
  h1{ font-size: 34px; }
}
