:root {
  --green: #3fa34d;
  --green-dark: #2f7d3b;
  --teal: #12b4ce;
  --teal-dark: #0d92a8;
  --navy: #16232e;
  --ink: #1c2b39;
  --ink-soft: #4b5b68;
  --paper: #f7f9fa;
  --line: #e4e9ec;
  --white: #ffffff;
  --radius: 14px;
  --maxw: 1140px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Manrope', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.6em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

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

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

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

.brand img { height: 38px; display: block; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--teal-dark); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--teal-dark); color: var(--white) !important; }

.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(63,163,77,0.35), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(18,180,206,0.35), transparent 50%),
    linear-gradient(160deg, #0e1720 0%, #16232e 55%, #123039 100%);
  color: var(--white);
  padding: 140px 0 100px;
  overflow: hidden;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8fd6c8;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #cdd8de;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(120deg, var(--green), var(--teal));
  color: var(--white);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #b8c4cb;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 18px;
  border-radius: 999px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(18,180,206,0.25);
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--paper); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.kicker-light { color: #7fd9c9; }

.section h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-dark h2 { color: var(--white); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-copy p { color: var(--ink-soft); font-size: 1.02rem; }

.about-cards {
  display: grid;
  gap: 16px;
}

.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 600;
}

.stat-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0;
}

/* Strategy */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.strategy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 18px;
}
.icon-green { background: var(--green); }
.icon-teal { background: var(--teal); }

.strategy-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.strategy-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* Team */
.team-intro {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-top: -6px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: left;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.team-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.bio { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* Contact */
.contact-inner { text-align: left; max-width: 640px; }
.contact-sub { color: #b8c4cb; font-size: 1.05rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b9aa3;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}
a.contact-value:hover { color: var(--teal); }

/* Footer */
.site-footer {
  background: #0e1720;
  color: #7c8993;
  padding: 40px 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo { height: 26px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-inner p { margin: 0; }
.confidential { margin-left: auto; }

/* Responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .main-nav.nav-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 24px 28px;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.15s ease, opacity 0.15s ease;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 110px 0 70px; }
  .section { padding: 64px 0; }
  .confidential { margin-left: 0; }
}
