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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A2E44;
  background: #ffffff;
}

img, svg { display: block; max-width: 100%; }

a { color: #4A90C4; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-weight: 500; line-height: 1.3; }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.mono { font-family: 'Courier New', Courier, monospace; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0D1B2A;
  padding: 0 2rem;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(74, 144, 196, 0.2);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
}

.navbar-logo-name {
  font-family: 'Courier New', Courier, monospace;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
}

.navbar-logo-sub {
  display: none;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-links a:hover { color: #ffffff; }

.navbar-links a.active {
  color: #4A90C4;
  border-bottom: 1.5px solid #4A90C4;
  padding-bottom: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.footer {
  background: #0D1B2A;
  border-top: 0.5px solid rgba(74, 144, 196, 0.2);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-email {
  font-size: 0.8rem;
  color: #4A90C4;
}

.btn-primary {
  display: inline-block;
  background: #4A90C4;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: #3a7ab0; text-decoration: none; color: #ffffff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #ffffff; text-decoration: none; }

.hero {
  background: #1A2E44;
  padding: 5rem 2rem;
}

.hero-inner {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #4A90C4;
  border-left: 2px solid #4A90C4;
  padding: 4px 10px;
  background: rgba(74, 144, 196, 0.08);
  margin-bottom: 1.25rem;
}

.hero h1 { color: #ffffff; margin-bottom: 1rem; font-family: 'Courier New', Courier, monospace; }
.hero p { color: rgba(255, 255, 255, 0.6); max-width: 560px; margin-bottom: 2rem; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.section { padding: 4rem 2rem; }
.section--dark { background: #0D1B2A; }
.section--mid { background: #1A2E44; }
.section--light { background: #F4F6F8; }
.section--white { background: #ffffff; }

.section-eyebrow {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #4A90C4;
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }
.section-title--light { color: #ffffff; }
.section-title--dark { color: #1A2E44; }

.container { max-width: 1100px; margin: 0 auto; }

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

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  border: 0.5px solid #e2e8f0;
  border-top: 3px solid #4A90C4;
}

.card--secondary { border-top-color: #8BAFC8; }

.card h3 { color: #1A2E44; margin-bottom: 0.5rem; }
.card p { color: #64748B; font-size: 0.9rem; }

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: #4A90C4;
}

.stats-strip {
  background: #0D1B2A;
  padding: 2.5rem 2rem;
  border-top: 0.5px solid rgba(74, 144, 196, 0.2);
  border-bottom: 0.5px solid rgba(74, 144, 196, 0.2);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat { padding: 0 1rem; }

.stat + .stat {
  border-left: 0.5px solid rgba(74, 144, 196, 0.2);
}

.stat-value {
  font-family: 'Courier New', Courier, monospace;
  font-size: 2rem;
  font-weight: 500;
  color: #4A90C4;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1A2E44;
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 0.5px solid #cbd5e1;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #1A2E44;
  background: #ffffff;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4A90C4;
  box-shadow: 0 0 0 3px rgba(74, 144, 196, 0.15);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-optional {
  font-size: 0.75rem;
  color: #8BAFC8;
  font-weight: 400;
}

.values-list { list-style: none; padding: 0; }

.values-list li {
  padding: 1rem 0;
  border-bottom: 0.5px solid #e2e8f0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.values-list li:last-child { border-bottom: none; }

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4A90C4;
  margin-top: 8px;
  flex-shrink: 0;
}

.value-title {
  font-weight: 500;
  color: #1A2E44;
  display: block;
  margin-bottom: 0.2rem;
}

.value-desc {
  font-size: 0.875rem;
  color: #64748B;
  margin: 0;
}

.contact-info { padding-top: 0.5rem; }

.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item-label {
  font-size: 0.75rem;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 0.1em;
  color: #4A90C4;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: 0.95rem;
  color: #1A2E44;
}

.contact-note {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .navbar { padding: 0 1rem; }

  .navbar-links {
    display: none;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: #0D1B2A;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 0.5px solid rgba(74,144,196,0.2);
  }

  .navbar-links.open { display: flex; }

  .hamburger { display: flex; }

  .hero { padding: 3rem 1rem; }
  .section { padding: 2.5rem 1rem; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat + .stat { border-left: none; border-top: 0.5px solid rgba(74,144,196,0.2); padding-top: 1.5rem; }

  .footer { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}
