:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef3f9;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe4ef;
  --primary: #174b8a;
  --primary-dark: #103b6d;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 860px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(246, 248, 251, 0.86);
  border-bottom: 1px solid rgba(219, 228, 239, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
}

.hero {
  padding: 5.25rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.eyebrow,
.section-kicker,
.stat-label,
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.76rem;
}

.hero h1 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 58ch;
}

.button-group {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mini-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.mini-links a,
.text-link {
  color: var(--primary);
  font-weight: 700;
}

.hero-card,
.stat-card,
.info-card,
.highlight-box,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.6rem;
  align-self: stretch;
}

.hero-card h2,
.info-card h3,
.stat-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.hero-card ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.card-note,
.contact-note,
.section-text,
.info-card p,
.stat-card p,
.highlight-box p {
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

.section.light {
  background: linear-gradient(180deg, rgba(238, 243, 249, 0.7), rgba(238, 243, 249, 0.45));
}

.intro p {
  font-size: 1.16rem;
  color: var(--muted);
}

.stats-grid,
.cards-grid {
  display: grid;
  gap: 1.2rem;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
}

.stat-card,
.info-card {
  padding: 1.5rem;
}

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

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.section-head h2,
.two-col h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-text {
  max-width: 48ch;
}

.highlight-box,
.contact-card {
  padding: 1.6rem;
}

.highlight-title {
  font-weight: 800;
  color: var(--text);
  margin-top: 0;
}

.action-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0.35rem 0 0.8rem;
  word-break: break-word;
  color: var(--primary);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2.2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .stats-grid,
  .cards-grid,
  .section-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head {
    align-items: start;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    padding: 0.9rem 0;
    flex-direction: column;
  }

  .nav-links {
    gap: 0.9rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .lead,
  .intro p {
    font-size: 1.04rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .btn {
    width: 100%;
  }

  .button-group {
    flex-direction: column;
  }

  .mini-links {
    gap: 0.8rem 1rem;
  }

  .contact-link {
    font-size: 1.05rem;
  }
}
