:root {
  --bg: #0a1628;
  --bg-alt: #0f1c2e;
  --surface: #152238;
  --border: #1e2f4a;
  --text: #e8eef7;
  --text-muted: #8b9bb5;
  --accent: #3b9eff;
  --accent-soft: rgba(59, 158, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero .subhead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: #2b8aef;
  text-decoration: none;
  transform: translateY(-1px);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.25;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
}

.what-we-do {
  background: var(--bg-alt);
}

.what-we-do p {
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: #2a4060;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
    font-size: 0.85rem;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
#@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }#

  #.nav-links {
    display: none;
  }#

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 120px 0 70px;
  }
}

.approach {
  background: var(--bg-alt);
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 520px;
}

.contact-box p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.contact-email:hover {
  color: var(--accent);
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

footer a {
  color: var(--text-muted);
}
