@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700&display=swap");

:root {
  --navy: #1e3251;
  --ink: #182232;
  --muted: #526070;
  --blue: #6885a7;
  --line: rgba(197, 198, 205, .28);
  --wash: #d1dce5;
}

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

html {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.page-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 21%, var(--wash) 100%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 7vw, 133px);
  min-height: 82px;
  padding: 20px 47px;
  border-bottom: 1px solid transparent;
  background: #fff;
}

.site-header.with-line { border-bottom-color: var(--blue); }
.brand {
  flex: 0 0 auto;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.6px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
  color: var(--blue);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a.active,
.nav a:hover { color: var(--navy); font-weight: 700; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(30,50,81,.22);
  border-radius: 9999px;
  background: #fff;
  padding: 0;
  color: var(--navy);
  font-size: 0;
  line-height: 0;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 9999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease, top .18s ease;
}

.menu-toggle::before { top: 15px; }
.menu-toggle span { top: 21px; }
.menu-toggle::after { top: 27px; }

.site-header.nav-open .menu-toggle::before {
  top: 21px;
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span { opacity: 0; }

.site-header.nav-open .menu-toggle::after {
  top: 21px;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 9999px;
  background: var(--navy);
  padding: 12px 32px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}

.btn-outline {
  border-color: currentColor;
  background: transparent;
  color: var(--navy);
}

.btn-outline-light {
  border-color: rgba(255,255,255,.3);
  background: transparent;
  color: #fff;
}

.section {
  padding: 80px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.28px;
}

.h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.48px;
}

.h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.eyebrow {
  color: rgba(24,34,50,.6);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.body {
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 32.4px;
  letter-spacing: .18px;
}

.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #eef3f7;
  box-shadow: 0 10px 40px -10px rgba(24,34,50,.06);
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,11,26,.45), rgba(3,11,26,.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 80px;
  color: #fff;
}

.hero h1 {
  margin: 24px 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 32px;
  line-height: 1;
}

.card {
  border: 1px solid rgba(197,198,205,.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 40px -10px rgba(24,34,50,.06);
}

.soft-card { border-radius: 16px; background: rgba(255,255,255,.88); }
.tag {
  display: inline-flex;
  border-radius: 9999px;
  background: rgba(255,255,255,.9);
  padding: 4px 16px;
  color: var(--ink);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.cta {
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.footer {
  background: var(--navy);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding: 120px 80px;
}

.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 41.6px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.footer h4 {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: #96a0b5;
  font-size: 16px;
  line-height: 24px;
}

.footer-links {
  display: grid;
  gap: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 32px 80px;
  color: rgba(150,160,181,.6);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.socials span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9999px;
  color: #96a0b5;
  font-size: 12px;
}

.input {
  width: 100%;
  border: 1px solid #c5c6cd;
  background: #fff;
  padding: 15px 13px;
  color: var(--ink);
  outline: none;
}

@media (max-width: 1024px) {
  .site-header { position: relative; justify-content: space-between; gap: 18px; min-height: 72px; padding: 16px 24px; }
  .brand { font-size: 24px; letter-spacing: -.8px; }
  .menu-toggle { display: inline-flex; }
  .site-header > .btn { display: none; }
  .nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 8px);
    z-index: 40;
    display: grid;
    gap: 0;
    border: 1px solid rgba(30,50,81,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 50px -24px rgba(24,34,50,.45);
    color: var(--navy);
    font-size: 14px;
    letter-spacing: 1.4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid rgba(30,50,81,.08);
    padding: 0 20px;
  }
  .nav a:last-child { border-bottom: 0; }
  .site-header.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .section { padding: 56px 24px; }
  .hero { min-height: 640px; }
  .hero-content { padding: 0 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 64px 24px; }
  .footer-bottom { flex-direction: column; padding: 28px 24px; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .brand { font-size: 20px; }
  .menu-toggle { width: 40px; height: 40px; }
  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle span { left: 11px; width: 17px; }
  .menu-toggle::before { top: 13px; }
  .menu-toggle span { top: 19px; }
  .menu-toggle::after { top: 25px; }
  .site-header.nav-open .menu-toggle::before,
  .site-header.nav-open .menu-toggle::after { top: 19px; }
  .nav { left: 18px; right: 18px; }
  .section-title { font-size: 40px; }
  .hero { min-height: 560px; }
  .hero h1 { font-size: 40px; }
  .footer-main { grid-template-columns: 1fr; }
}
