* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #e5eef6;
  background: linear-gradient(180deg, #020617 0%, #0f172a 50%, #020617 100%);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2, 6, 23, 0.9);
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 44px; height: 44px; border-radius: 16px;
  display: grid; place-items: center;
  font-size: 17px; font-weight: 800; color: #020617;
  background: linear-gradient(135deg, #22d3ee, #38bdf8, #34d399);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}
.brand-name { font-size: 21px; font-weight: 700; color: #ffffff; }
.brand-subtitle {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(165, 243, 252, 0.7);
}
.nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
.nav-links a { font-size: 14px; color: #cbd5e1; }
.nav-links a:hover { color: #ffffff; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-inner { position: relative; padding: 88px 0 110px; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(60px); }
.hero-glow-1 { width: 320px; height: 320px; left: -40px; top: -20px; background: rgba(34, 211, 238, 0.14); }
.hero-glow-2 { width: 380px; height: 380px; right: 0; top: 90px; background: rgba(56, 189, 248, 0.10); }
.hero-glow-3 { width: 260px; height: 260px; left: 35%; bottom: -40px; background: rgba(52, 211, 153, 0.10); }

.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(255,255,255,0.05);
  color: #cffafe;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
}
h1 {
  margin: 18px 0 0;
  max-width: 900px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.lead {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.7;
  color: #e2e8f0;
}
.sublead {
  margin: 14px 0 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
}
.stat-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}
.stat-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.25);
  backdrop-filter: blur(10px);
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(165, 243, 252, 0.7);
}
.stat-value {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.cta-row { margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 18px; font-size: 14px; font-weight: 600;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #020617;
  background: linear-gradient(90deg, #22d3ee, #38bdf8);
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.24);
}
.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}

.section { padding: 88px 0; }
.section-light { background: #ffffff; color: #334155; }
.section-muted { background: #f1f5f9; color: #334155; }

.two-col {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
  gap: 40px;
}
.section-heading.single { max-width: 760px; margin-bottom: 38px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0f766e;
}
.section-label-dark { color: #94a3b8; }
.section-heading h2,
.contact-section h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-light h2, .section-muted h2 { color: #020617; }
.section-body, .section-heading.single p, .contact-section p {
  font-size: 17px;
  line-height: 1.85;
}
.section-body p:first-child,
.section-heading.single p { margin-top: 18px; }

.leadership-card {
  margin-top: 28px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid #cffafe;
  background: linear-gradient(135deg, #ecfeff, #f0f9ff);
}
.leadership-card h3 {
  margin: 12px 0 0;
  font-size: 30px;
  color: #020617;
}
.role {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}
.leadership-card p { margin-top: 16px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.service-card h3 {
  margin: 0;
  font-size: 24px;
  color: #020617;
}
.service-card p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.contact-section {
  background: linear-gradient(135deg, #020617 0%, #0f172a 55%, #083344 100%);
  color: #e2e8f0;
  border-top: 1px solid rgba(34, 211, 238, 0.10);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: 36px;
  align-items: start;
}
.contact-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 20px 44px rgba(8, 51, 68, 0.28);
  backdrop-filter: blur(12px);
}
.contact-item + .contact-item { margin-top: 18px; }
.contact-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.contact-card a { color: #a5f3fc; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  background: #020617;
  color: #94a3b8;
}
.footer-inner {
  padding: 28px 0;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { gap: 16px; }
  .stat-grid, .card-grid, .contact-grid, .two-col {
    grid-template-columns: 1fr;
  }
  .hero-inner, .section { padding-top: 72px; padding-bottom: 72px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(1120px, calc(100% - 32px)); }
  .brand-subtitle { letter-spacing: 0.12em; }
  h1 { font-size: 40px; }
}
