:root {
  --orange: #ff5a1f;
  --orange-dark: #e9440c;
  --teal: #0e9fb5;
  --teal-dark: #087f95;
  --teal-light: #dff4fa;
  --navy: #071a57;
  --navy-soft: rgba(15, 35, 107, 0.76);
  --text: #071a57;
  --border: #dbe5ef;
  --panel: #ffffff;
  --bg-soft: #f5fbfe;
  --shadow: 0 24px 60px rgba(7, 26, 87, 0.16);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  font-weight: 700;
  text-rendering: geometricPrecision;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 68px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(219, 229, 239, 0.75);
  transition: box-shadow 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 104px;
  padding: 0;
}

.brand-image img {
  display: block;
  width: 196px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 52px;
  font-size: 15px;
  font-weight: 850;
  color: var(--navy);
  margin-left: auto;
}

.site-nav span { color: var(--navy); font-size: 13px; margin-left: 5px; }
.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 9px;
  font-weight: 900;
  font-size: 16px;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange {
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 14px 26px rgba(255, 90, 31, 0.2);
}
.btn-outline {
  border: 1.5px solid #cfe4ee;
  color: var(--navy);
  background: #fff;
}
.btn-teal {
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 155, 183, 0.22);
}

.eyebrow, .kicker {
  margin: 0 0 25px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section { padding: 54px 0; }
.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 30px;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid rgba(20, 155, 183, 0.12);
  background: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0 32px;
}
.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}
.footer-contact span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.reveal { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 17px;
    right: 17px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px;
    min-width: 220px;
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1240px); }
  .brand-image img { width: 154px; }
  .section-heading h2 { font-size: 31px; }
}

.footer-brand.brand-image img { width: 112px; height: auto; }
@media (max-width: 820px) { .footer-brand.brand-image img { width: 104px; } }
