:root {
  --navy-950: #072a57;
  --navy-900: #0b3b78;
  --navy-800: #1b4f8e;
  --teal-500: #3ab5a3;
  --mint-500: #63c79f;
  --sun-500: #f2bc56;
  --text-900: #163965;
  --text-700: #55697f;
  --text-600: #6a7e96;
  --line-300: #dbe7ef;
  --bg-000: #ffffff;
  --bg-050: #f8fbfd;
  --bg-100: #f2f8fb;
  --bg-150: #eef8f6;
  --shadow-1: 0 20px 50px rgba(17, 55, 106, 0.08);
  --shadow-2: 0 12px 30px rgba(17, 55, 106, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text-700);
  background: linear-gradient(180deg, #fbfdff 0%, #f7fbfd 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--navy-900);
  color: white;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-tint {
  background: linear-gradient(180deg, #f3fbfa 0%, #edf8f6 100%);
  border-top: 1px solid rgba(58,181,163,0.12);
  border-bottom: 1px solid rgba(58,181,163,0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 59, 120, 0.07);
}


.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  flex: 0 0 auto;
}

.brand-textmark {
  padding: 2px 0;
}

.brand-name {
  font-family: Inter, Arial, sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0B3B78;
}

.brand-sub {
  margin-top: 2px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #6F8297;
}

.footer-brandmark {
  margin-bottom: 14px;
}

.footer-brandmark .brand-name {
  font-size: 1.9rem;
}

.footer-brandmark .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { display:none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  position: relative;
  color: var(--text-900);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--mint-500));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: white;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  box-shadow: 0 14px 28px rgba(11, 59, 120, 0.18);
}
.button-secondary {
  color: var(--navy-900);
  background: white;
  border-color: rgba(11,59,120,0.18);
  box-shadow: var(--shadow-2);
}
.button-accent {
  color: white;
  background: linear-gradient(180deg, #73d7a0, #55c78f);
  box-shadow: 0 14px 28px rgba(85, 199, 143, 0.25);
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-300);
  background: white;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
}
.mobile-nav {
  display: none;
  padding: 0 20px 20px;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(11, 59, 120, 0.08);
}
.mobile-nav.is-open { display: grid; gap: 14px; }
.mobile-nav a { color: var(--text-900); }
.mobile-button { width: 100%; }

.hero { padding-top: 48px; }
.hero-grid,
.overview-grid,
.contact-grid,
.split-grid,
.page-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}
.eyebrow,
.page-eyebrow {
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
}
.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--text-900);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}
.hero-text,
.page-hero-text,
.lead {
  margin: 24px 0 0;
  font-size: 1.18rem;
  line-height: 1.8;
  max-width: 620px;
}
.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.hero-media img,
.page-hero-media img,
.overview-media img,
.panel-illustration img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 48px rgba(18, 57, 101, 0.08));
}

.page-hero {
  padding-top: 42px;
}
.page-hero-shell {
  padding: 28px 0 8px;
}
.page-hero-media {
  background: linear-gradient(180deg, #f6fbfd 0%, #eef8f6 100%);
  border: 1px solid rgba(18,57,101,0.06);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-2);
}

.section-heading { margin-bottom: 36px; }
.section-heading h2 {
  margin: 0;
  color: var(--text-900);
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-heading h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-500), var(--mint-500));
}
.section-heading-center { text-align: center; }
.section-heading-center h2::after { margin-left: auto; margin-right: auto; }

.card-grid { display: grid; gap: 24px; }
.card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.surface-card,
.panel,
.stat-card,
.quote-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(18, 57, 101, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

.info-card,
.feature-card,
.value-card,
.audience-card,
.stat-card,
.quote-card,
.contact-form,
.panel { padding: 28px 24px 26px; }

.card-icon,
.feature-icon,
.value-icon,
.audience-icon {
  width: 78px; height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f6fbfd, #edf7f6);
  box-shadow: inset 0 0 0 1px rgba(18, 57, 101, 0.06);
}
.card-icon svg,
.feature-icon svg,
.value-icon svg,
.audience-icon svg { width: 72px; height: 72px; }

.info-card h3,
.feature-card h3,
.value-card h3,
.audience-card h3,
.panel h3,
.stat-card h3,
.quote-card h3,
.mini-title {
  margin: 0 0 10px;
  color: var(--text-900);
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.info-card p,
.feature-card p,
.value-card p,
.audience-card p,
.overview-copy p,
.contact-copy p,
.footer-brand p,
.panel p,
.panel li,
.stat-card p,
.quote-card p,
.muted {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.overview-copy p + p,
.panel p + p,
.contact-copy p + p,
.quote-card p + p { margin-top: 18px; }

.icon-list,
.check-list,
.link-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li,
.icon-list li {
  position: relative;
  padding-left: 30px;
}
.check-list li::before,
.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--teal-500), var(--mint-500));
  box-shadow: 0 0 0 5px rgba(58,181,163,.12);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.stat-card strong {
  display: block;
  color: var(--text-900);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.logo-pill {
  background: white;
  border: 1px solid rgba(18,57,101,.08);
  border-radius: 16px;
  min-height: 64px;
  display: grid;
  place-items: center;
  color: var(--text-600);
  font-weight: 600;
  box-shadow: var(--shadow-2);
}

.section-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 25%, rgba(44, 90, 143, 0.24) 0, rgba(44, 90, 143, 0.06) 110px, transparent 111px),
    linear-gradient(180deg, #0c3a75, #072a57);
}
.section-cta::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 150px;
  background: linear-gradient(180deg, rgba(141, 170, 204, 0.18), rgba(141, 170, 204, 0.02));
  clip-path: polygon(0 100%, 0 72%, 14% 72%, 14% 30%, 24% 30%, 24% 58%, 38% 58%, 38% 20%, 50% 20%, 50% 67%, 63% 67%, 63% 41%, 74% 41%, 74% 79%, 86% 79%, 86% 10%, 96% 10%, 96% 100%);
  opacity: .7;
}
.cta-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-kicker {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.7);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cta-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.contact-section { background: linear-gradient(180deg, var(--bg-050), white); }
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-list a {
  color: var(--text-900);
  font-weight: 600;
}
.contact-form { padding: 30px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.contact-form span {
  font-weight: 600;
  color: var(--text-900);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-300);
  background: white;
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text-900);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(58,181,163,0.6);
  box-shadow: 0 0 0 4px rgba(58,181,163,0.12);
}

.site-footer {
  padding: 34px 0 22px;
  border-top: 1px solid rgba(18, 57, 101, 0.08);
  background: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand p + p { margin-top: 16px; }
.footer-address { color: var(--text-600); }
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--text-900);
  font-size: 1rem;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.site-footer li a { color: var(--text-700); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 57, 101, 0.08);
}
.footer-bottom p {
  margin: 0;
  font-size: .95rem;
  color: var(--text-600);
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a { color: var(--text-600); }

@media (max-width: 1080px) {
  .main-nav,
  .nav-actions > .button { display: none; }
  .nav-toggle { display: block; }

  .hero-grid,
  .overview-grid,
  .contact-grid,
  .split-grid,
  .page-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .card-grid-4,
  .card-grid-3,
  .kpi-grid,
  .logo-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-shell { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { display:none; }
  .hero,
  .page-hero { padding-top: 24px; }
  .hero-grid,
  .page-grid { gap: 36px; }
  .hero-text,
  .page-hero-text,
  .lead { font-size: 1.08rem; line-height: 1.7; }
  .card-grid-4,
  .card-grid-3,
  .card-grid-2,
  .field-row,
  .kpi-grid,
  .logo-cloud { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .footer-bottom,
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .cta-copy h2 { max-width: none; }
}
