:root {
  --navy-950: #071c3e;
  --navy-900: #0b2858;
  --navy-800: #123a78;
  --blue-600: #1d63cb;
  --blue-500: #357ddd;
  --green-600: #4d9a35;
  --green-500: #69b844;
  --lime: #d9ee63;
  --cream: #f7f4ee;
  --sand: #e9dfd2;
  --white: #ffffff;
  --sky: #eaf3ff;
  --ink: #17283e;
  --muted: #5d6c7f;
  --line: rgba(15, 44, 86, 0.14);
  --shadow: 0 28px 80px rgba(7, 28, 62, 0.14);
  --shadow-soft: 0 16px 45px rgba(7, 28, 62, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --page: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Aptos, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.chat-open { overflow: hidden; }

a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1, h2, h3, p { overflow-wrap: break-word; }

h1, h2, h3 {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 { font-size: clamp(3rem, 6vw, 5.35rem); }
h2 { font-size: clamp(2.35rem, 4.9vw, 4.25rem); }
h3 { font-size: 1.35rem; }

.page-shell { width: var(--page); margin-right: auto; margin-left: auto; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 9px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-topline {
  min-height: 37px;
  padding: 6px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-950);
  font-size: 0.78rem;
}

.site-topline p { margin: 0; font-weight: 650; letter-spacing: 0.02em; }

.topline-actions { display: flex; align-items: center; gap: 11px; }

.social-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.social-link:hover { background: rgba(255,255,255,.14); transform: translateY(-1px); }
.social-link svg { width: 14px; height: 14px; fill: currentColor; stroke: none; }
.social-link svg.icon-stroke { fill: none; stroke: currentColor; stroke-width: 2; }

.language-toggle {
  min-height: 29px;
  padding: 3px 10px;
  color: var(--navy-950);
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  min-height: 78px;
  padding: 13px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(7,28,62,.08); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand img { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: "Trebuchet MS", sans-serif; font-size: 1.22rem; letter-spacing: -0.035em; }
.brand-copy small { margin-top: 4px; color: var(--green-600); font-size: 0.62rem; font-weight: 780; letter-spacing: 0.09em; text-transform: uppercase; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(20px, 3vw, 36px); }
.main-nav a { position: relative; color: #40526a; font-size: 0.92rem; font-weight: 720; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--green-500); transform: scaleX(0); transition: transform 160ms ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--navy-900); }

.menu-toggle {
  width: 45px;
  height: 45px;
  margin-left: auto;
  display: none;
  place-items: center;
  color: var(--navy-900);
  background: var(--sky);
  border: 0;
  border-radius: 13px;
  cursor: pointer;
}

.button {
  min-height: 52px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 790;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible, .language-toggle:focus-visible, .social-link:focus-visible, .menu-toggle:focus-visible, .chat-launcher:focus-visible, .chat-close:focus-visible, .chat-quick-button:focus-visible, .chat-form input:focus-visible, .chat-send:focus-visible, .chat-guide-context button:focus-visible, .support-card button:focus-visible, .card-link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue-500) 48%, white);
  outline-offset: 3px;
}

.button-small { min-height: 43px; padding: 10px 16px; font-size: 0.87rem; }
.button-primary { color: var(--white); background: var(--blue-600); box-shadow: 0 12px 32px rgba(29,99,203,.24); }
.button-primary:hover { background: #1557ba; box-shadow: 0 16px 38px rgba(29,99,203,.3); }
.button-secondary { color: var(--white); background: var(--green-600); }
.button-secondary:hover { background: #3f842c; }
.button-link { min-height: 44px; padding: 9px 2px; color: var(--navy-900); background: transparent; border-radius: 0; text-decoration: underline; text-decoration-color: var(--green-500); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.button-white { color: var(--navy-900); background: var(--white); }
.button-lime { color: var(--navy-950); background: var(--lime); }
.button-lime:hover { background: #e6f47f; }
.button-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.52); }

.eyebrow, .kicker {
  margin: 0 0 17px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--blue-600); }
.eyebrow::before { content: ""; width: 27px; height: 3px; background: var(--green-500); border-radius: 999px; }
.kicker.light { color: var(--lime); }

.hero {
  min-height: min(750px, calc(100vh - 115px));
  padding: clamp(56px, 7vw, 94px) 0 clamp(70px, 8vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.hero h1, .inner-hero h1 { color: var(--navy-900); }
.hero-lede { max-width: 680px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1.06rem, 1.5vw, 1.22rem); line-height: 1.72; }
.transparent-note { max-width: 650px; margin: 22px 0 0; padding-left: 14px; color: #40546e; border-left: 3px solid var(--green-500); font-size: 0.87rem; font-weight: 620; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }

.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; z-index: -1; top: -28px; right: -26px; width: 44%; height: 54%; background-image: radial-gradient(circle, rgba(29,99,203,.32) 1.6px, transparent 1.6px); background-size: 13px 13px; }
.hero-media::after { content: ""; position: absolute; z-index: -1; right: -24px; bottom: 18px; width: 160px; height: 160px; background: var(--lime); border-radius: 50%; }

.video-slot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.video-slot-hero { min-height: 485px; border-radius: 48% 48% 28px 28px / 25% 25% 28px 28px; }
.video-slot > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.video-slot[data-video-slot="home"] > img { object-position: 68% center; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,28,62,.08) 25%, rgba(7,28,62,.8) 100%); }
.video-placeholder-content { position: absolute; right: 30px; bottom: 30px; left: 30px; display: grid; justify-items: start; }
.play-mark { width: 58px; height: 58px; margin-bottom: 19px; display: grid; place-items: center; color: var(--navy-900); background: var(--lime); border-radius: 50%; box-shadow: 0 10px 35px rgba(0,0,0,.22); }
.play-mark svg { width: 25px; height: 25px; fill: currentColor; stroke: none; transform: translateX(2px); }
.video-kicker { margin: 0 0 3px; color: var(--lime); font-size: .72rem; font-weight: 860; letter-spacing: .13em; text-transform: uppercase; }
.video-placeholder-content strong { font-family: "Trebuchet MS", sans-serif; font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.15; }
.video-placeholder-content small { margin-top: 7px; color: rgba(255,255,255,.8); font-size: .82rem; }
.video-slot iframe, .video-slot video { width: 100%; height: 100%; display: block; border: 0; }
.video-slot video { object-fit: contain; background: #000; }

.media-note { position: relative; width: min(90%, 430px); margin: -24px auto 0; padding: 16px 19px; display: flex; align-items: center; gap: 13px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow-soft); }
.media-note p { margin: 0; font-size: .83rem; line-height: 1.4; }
.status-dot { width: 12px; height: 12px; flex: 0 0 auto; background: var(--green-500); border: 3px solid #dff3d4; border-radius: 50%; box-shadow: 0 0 0 4px rgba(105,184,68,.12); }

.values-ribbon {
  padding: 23px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  color: var(--white);
  background: var(--navy-900);
}

.values-ribbon span { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: .88rem; }
.values-ribbon i { color: var(--lime); font-family: Georgia, serif; font-size: .92rem; font-style: normal; }

.path-section { padding: clamp(90px, 11vw, 150px) 0; }
.section-heading { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.section-heading.align-left { margin-left: 0; text-align: left; }
.section-heading > p:last-child { max-width: 650px; margin: 21px auto 0; color: var(--muted); font-size: 1.08rem; }
.section-heading.align-left > p:last-child { margin-left: 0; }

.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.path-card { position: relative; min-height: 510px; padding: clamp(30px, 4vw, 50px); display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.path-card-blue { color: var(--white); background: linear-gradient(140deg, var(--navy-900), var(--blue-600)); }
.path-card-green { color: var(--ink); background: linear-gradient(145deg, #ecf6e7, #d7edcc); }
.path-card::after { content: ""; position: absolute; right: -66px; bottom: -86px; width: 230px; height: 230px; border: 48px solid currentColor; border-radius: 50%; opacity: .06; }
.path-number { margin-bottom: 42px; font-family: Georgia, serif; font-size: 2.2rem; opacity: .72; }
.path-icon { width: 58px; height: 58px; margin-bottom: 31px; display: grid; place-items: center; color: var(--navy-900); background: var(--lime); border-radius: 18px; }
.path-icon svg { width: 28px; height: 28px; }
.card-label { margin: 0 0 11px; font-size: .73rem; font-weight: 850; letter-spacing: .12em; }
.path-card h3 { max-width: 530px; font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
.path-card > p:not(.card-label) { max-width: 540px; margin: 20px 0 0; opacity: .84; }
.card-link { z-index: 1; align-self: flex-start; margin-top: auto; padding-top: 32px; font-weight: 820; text-underline-offset: 6px; }
button.card-link { padding-right: 0; padding-bottom: 0; padding-left: 0; color: inherit; background: none; border: 0; text-decoration: underline; cursor: pointer; }
.path-card-blue .card-link { color: var(--lime); }
.path-card-green .card-link { color: var(--navy-900); }
.promise-card-accent .card-link { color: var(--lime); }

.meaning-section { padding: clamp(78px, 9vw, 120px) 0; color: var(--white); background: var(--navy-950); }
.meaning-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(45px, 8vw, 100px); align-items: end; }
.meaning-copy h2 { max-width: 650px; }
.meaning-details > p { margin: 0; color: #c5d2e3; font-size: 1.08rem; }
.meaning-pills { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 9px; }
.meaning-pills span { padding: 7px 13px; color: var(--lime); border: 1px solid rgba(217,238,99,.38); border-radius: 999px; font-size: .78rem; font-weight: 780; }

.community-section { padding: clamp(88px, 11vw, 145px) 0; }
.community-card { padding: clamp(35px, 6vw, 70px); display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: clamp(30px, 5vw, 60px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.community-mark { width: 142px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; gap: 0; background: var(--sky); border-radius: 50%; }
.community-mark span { width: 46px; height: 64px; margin: 0 -8px; background: var(--blue-600); border: 5px solid var(--white); border-radius: 50% 50% 42% 42%; }
.community-mark span:nth-child(2) { height: 80px; z-index: 1; background: var(--green-500); }
.community-card h2 { max-width: 650px; font-size: clamp(2.15rem, 4vw, 3.5rem); }
.community-card p:not(.kicker) { max-width: 720px; margin: 20px 0 0; color: var(--muted); }

.next-step { margin-bottom: 34px; padding: clamp(46px, 7vw, 76px); display: flex; align-items: center; justify-content: space-between; gap: 48px; color: var(--white); background: linear-gradient(125deg, var(--blue-600), var(--navy-900)); border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.next-step::after { content: ""; position: absolute; right: -120px; bottom: -150px; width: 360px; height: 360px; border: 70px solid rgba(255,255,255,.08); border-radius: 50%; }
.next-step > * { position: relative; z-index: 1; }
.next-step h2 { max-width: 690px; font-size: clamp(2.25rem, 4.4vw, 3.85rem); }
.next-step p:not(.kicker) { max-width: 610px; margin: 18px 0 0; color: rgba(255,255,255,.8); }
.next-actions { min-width: 285px; display: grid; gap: 11px; }

.inner-hero { padding: clamp(64px, 8vw, 110px) 0; display: grid; grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr); align-items: center; gap: clamp(45px, 7vw, 90px); }
.inner-hero h1 { font-size: clamp(3rem, 5.7vw, 5rem); }
.inner-hero-image { position: relative; min-height: 510px; }
.inner-hero-image::before { content: ""; position: absolute; z-index: -1; top: -22px; right: -22px; width: 55%; height: 52%; background: var(--sky); border-radius: 30px; }
.inner-hero-image img { width: 100%; height: 510px; display: block; object-fit: cover; object-position: center; border-radius: 180px 28px 28px 28px; box-shadow: var(--shadow); }
.leadership-hero .inner-hero-image img { object-position: 62% center; }
.image-quote { position: absolute; right: -18px; bottom: 24px; width: min(83%, 390px); padding: 20px 23px; color: var(--white); background: var(--navy-900); border-left: 5px solid var(--lime); border-radius: 14px; box-shadow: var(--shadow-soft); font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.5; }

.video-feature, .leadership-video { padding: clamp(70px, 9vw, 120px) 0; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.video-feature-copy > p:not(.kicker), .leadership-video-copy > p:not(.kicker) { margin: 20px 0 0; color: var(--muted); }
.video-feature h2, .leadership-video h2 { font-size: clamp(2.35rem, 4vw, 3.7rem); }
.plain-checks { margin: 28px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.plain-checks li { position: relative; padding-left: 30px; }
.plain-checks li::before { content: "✓"; position: absolute; top: 2px; left: 0; width: 21px; height: 21px; display: grid; place-items: center; color: var(--white); background: var(--green-500); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.leadership-video { grid-template-columns: 1.18fr .82fr; }
.leadership-video-copy .button { margin-top: 28px; }

.promise-section, .growth-section { padding: clamp(88px, 11vw, 145px) 0; background: var(--white); }
.promise-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.promise-card { min-height: 260px; padding: 28px; grid-column: span 2; display: flex; flex-direction: column; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.promise-card:nth-child(4) { grid-column: 2 / span 2; }
.promise-card span { margin-bottom: auto; color: var(--blue-600); font-family: Georgia, serif; font-size: 2rem; }
.promise-card h3 { margin-top: 35px; }
.promise-card p { margin: 12px 0 0; color: var(--muted); }
.promise-card .card-link { align-self: flex-start; margin-top: auto; padding: 22px 0 0; color: var(--blue-600); background: transparent; border: 0; font-size: .88rem; text-decoration: underline; cursor: pointer; }
.promise-card-accent { color: var(--white); background: var(--navy-900); }
.promise-card-accent span { color: var(--lime); }
.promise-card-accent p { color: #c7d4e4; }
.promise-card-accent .card-link { color: var(--lime); }

.categories-section { padding: clamp(90px, 11vw, 145px) 0; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { min-height: 260px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 12px 34px rgba(7,28,62,.05); }
.category-icon { width: 54px; height: 54px; margin-bottom: 42px; display: grid; place-items: center; color: var(--navy-900); background: var(--sky); border-radius: 17px; }
.category-icon svg { width: 27px; height: 27px; }
.category-card p { margin: 13px 0 0; color: var(--muted); }

.support-section { padding: clamp(82px, 10vw, 130px) 0; background: var(--white); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-card { min-height: 280px; padding: 30px; display: flex; flex-direction: column; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.support-number { width: 43px; height: 43px; margin-bottom: 35px; display: grid; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 13px; font-family: Georgia, serif; }
.support-card:nth-child(2) .support-number { background: var(--green-600); }
.support-card:nth-child(3) .support-number { color: var(--navy-950); background: var(--lime); }
.support-card p { margin: 12px 0 25px; color: var(--muted); }
.support-card button { align-self: flex-start; margin-top: auto; padding: 0; color: var(--navy-900); background: transparent; border: 0; font-weight: 820; text-decoration: underline; text-decoration-color: var(--green-500); text-decoration-thickness: 2px; text-underline-offset: 6px; cursor: pointer; }

.values-statement { padding: 35px 0; color: var(--white); background: var(--green-600); }
.values-statement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.values-statement p { margin: 0; text-align: center; font-family: Georgia, serif; font-size: 1.05rem; }

.leadership-pillars { color: var(--white); background: var(--navy-900); }
.leadership-pillars-grid { padding-top: 29px; padding-bottom: 29px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.leadership-pillars article { display: flex; align-items: center; gap: 15px; }
.leadership-pillars article > svg { width: 42px; height: 42px; flex: 0 0 auto; padding: 9px; color: var(--navy-950); background: var(--lime); border-radius: 13px; }
.leadership-pillars h3 { font-size: 1.02rem; letter-spacing: -.02em; }
.leadership-pillars p { margin: 4px 0 0; color: #bfcee0; font-size: .82rem; line-height: 1.45; }

.growth-path { position: relative; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; list-style: none; }
.growth-path::before { content: ""; position: absolute; top: 39px; right: 10%; left: 10%; height: 2px; background: var(--sand); }
.growth-path li { position: relative; z-index: 1; padding: 0 8px; text-align: center; }
.growth-path li > span { width: 78px; height: 78px; margin: 0 auto 28px; display: grid; place-items: center; color: var(--white); background: var(--blue-600); border: 8px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--line); font-family: Georgia, serif; font-size: 1.25rem; }
.growth-path li:nth-child(even) > span { background: var(--green-600); }
.growth-path p { margin: 12px 0 0; color: var(--muted); font-size: .92rem; }

.protect-section { padding: clamp(90px, 11vw, 150px) 0; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(45px, 8vw, 105px); }
.protect-quote { min-height: 410px; padding: 48px; display: flex; flex-direction: column; justify-content: center; color: var(--white); background: linear-gradient(145deg, var(--green-600), #276c32); border-radius: 180px 28px 28px 28px; }
.quote-mark { color: var(--lime); font-family: Georgia, serif; font-size: 6rem; line-height: .7; }
.protect-quote blockquote { margin: 28px 0 0; font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.3; }
.protect-copy h2 { font-size: clamp(2.25rem, 4.2vw, 3.75rem); }
.protect-copy > p:not(.kicker) { margin: 21px 0 0; color: var(--muted); }

.site-footer { margin-top: 70px; padding: 62px max(24px, calc((100vw - 1180px) / 2)) 30px; color: #c5d2e2; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1.2fr .65fr .65fr; gap: 55px; }
.footer-brand .brand { color: var(--white); }
.footer-brand > p { max-width: 430px; margin: 20px 0 0; color: #aebdd0; }
.footer-heading { margin: 0 0 17px; color: var(--white); font-size: .77rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links button { padding: 0; color: #b9c7d8; background: none; border: 0; text-align: left; text-decoration: none; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--lime); }
.footer-socials { display: flex; gap: 10px; }
.footer-disclosure { margin-top: 42px; padding: 25px 0; display: grid; grid-template-columns: 170px 1fr; gap: 30px; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-disclosure strong { color: var(--white); }
.footer-disclosure p { margin: 0; font-size: .78rem; line-height: 1.75; }
.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; gap: 20px; font-size: .78rem; }

.chat-launcher {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  min-width: 196px;
  min-height: 58px;
  padding: 10px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(7,28,62,.28);
  cursor: pointer;
}

.chat-launcher .status-dot { border-color: #d9f0d1; box-shadow: 0 0 0 4px rgba(105,184,68,.2); }
.chat-launcher-copy { display: grid; text-align: left; line-height: 1.2; }
.chat-launcher-copy strong { font-size: .9rem; }
.chat-launcher-copy small { margin-top: 3px; color: #c3d3e7; font-size: .68rem; }
.chat-launcher > svg { margin-left: auto; }

.chat-panel {
  position: fixed;
  z-index: 130;
  right: 22px;
  bottom: 94px;
  width: min(390px, calc(100vw - 30px));
  height: min(590px, calc(100vh - 125px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(7,28,62,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.97);
  transform-origin: bottom right;
  transition: opacity 170ms ease, transform 170ms ease;
}

.chat-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.chat-header { padding: 17px 18px; display: flex; align-items: center; gap: 11px; color: var(--white); background: linear-gradient(130deg, var(--navy-900), var(--blue-600)); }
.chat-avatar { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy-900); background: var(--lime); border-radius: 14px; font-family: "Trebuchet MS", sans-serif; font-size: .82rem; font-weight: 900; }
.chat-heading { display: grid; line-height: 1.2; }
.chat-heading strong { font-size: .96rem; }
.chat-heading small { margin-top: 4px; color: #d8e4f4; font-size: .69rem; }
.chat-close { width: 38px; height: 38px; margin-left: auto; display: grid; place-items: center; color: var(--white); background: rgba(255,255,255,.12); border: 0; border-radius: 12px; font-size: 1.45rem; cursor: pointer; }

.chat-body { padding: 18px; overflow-y: auto; background: #f4f7fb; }
.chat-guide-context { margin: -4px 0 14px; padding: 10px 11px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--navy-900); background: #e7f0ff; border: 1px solid rgba(29,99,203,.18); border-radius: 11px; font-size: .72rem; }
.chat-guide-context[hidden] { display: none; }
.chat-guide-context button { padding: 0; color: var(--blue-600); background: none; border: 0; font-size: .69rem; font-weight: 780; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.chat-messages { display: grid; gap: 10px; }
.chat-message { max-width: 88%; padding: 11px 13px; border-radius: 15px; font-size: .86rem; line-height: 1.5; animation: message-in 160ms ease both; }
.chat-message.bot { justify-self: start; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.chat-message.user { justify-self: end; color: var(--white); background: var(--blue-600); border-bottom-right-radius: 4px; }
.chat-message p { margin: 0; }
.chat-message a { margin-top: 9px; display: inline-block; color: var(--blue-600); font-weight: 800; text-underline-offset: 3px; }
.chat-quick-replies { margin-top: 14px; display: grid; gap: 7px; }
.chat-quick-button { min-height: 38px; padding: 8px 11px; color: var(--navy-900); background: var(--white); border: 1px solid rgba(29,99,203,.24); border-radius: 11px; font-size: .78rem; font-weight: 740; text-align: left; cursor: pointer; }
.chat-quick-button:hover { color: var(--white); background: var(--blue-600); }

.chat-form { padding: 12px; display: grid; grid-template-columns: 1fr 43px; gap: 8px; background: var(--white); border-top: 1px solid var(--line); }
.chat-form input { width: 100%; min-width: 0; min-height: 43px; padding: 9px 12px; color: var(--ink); background: #f5f7fa; border: 1px solid var(--line); border-radius: 12px; font-size: .84rem; }
.chat-send { width: 43px; height: 43px; display: grid; place-items: center; color: var(--white); background: var(--green-600); border: 0; border-radius: 12px; cursor: pointer; }

.toast { position: fixed; z-index: 160; left: 50%; bottom: 30px; max-width: calc(100vw - 32px); padding: 11px 16px; color: var(--white); background: var(--navy-950); border-radius: 999px; box-shadow: var(--shadow-soft); font-size: .82rem; opacity: 0; pointer-events: none; transform: translate(-50%, 12px); transition: opacity 160ms ease, transform 160ms ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal-delay { transition-delay: 100ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes message-in { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1020px) {
  :root { --page: min(100% - 38px, 780px); }
  .site-header { flex-wrap: wrap; }
  .menu-toggle { display: grid; }
  .main-nav { width: 100%; margin: 0; padding: 12px 0 5px; display: none; align-items: flex-start; flex-direction: column; gap: 17px; border-top: 1px solid var(--line); }
  .main-nav.is-open { display: flex; }
  .site-header > .button { display: none; }
  .hero, .inner-hero { min-height: auto; grid-template-columns: 1fr; gap: 62px; }
  .hero-copy, .inner-hero-copy { max-width: 720px; }
  .video-slot-hero { min-height: 570px; }
  .values-ribbon { grid-template-columns: 1fr 1fr; }
  .community-card { grid-template-columns: 130px 1fr; }
  .community-card .button { grid-column: 2; justify-self: start; }
  .community-mark { width: 120px; }
  .video-feature, .leadership-video { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .leadership-video .video-slot { order: 2; }
  .leadership-video-copy { order: 1; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-card, .promise-card:nth-child(4) { grid-column: auto; }
  .promise-card:last-child { grid-column: 1 / -1; min-height: 230px; }
  .protect-section { grid-template-columns: 1fr; }
  .protect-quote { min-height: 340px; }
  .next-step { align-items: flex-start; flex-direction: column; }
  .next-actions { width: 100%; max-width: 430px; }
}

@media (max-width: 720px) {
  :root { --page: calc(100% - 28px); --radius-xl: 27px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.2rem, 10.5vw, 3.4rem); }
  .site-topline { min-height: 34px; padding: 5px 14px; }
  .site-topline p { max-width: 200px; font-size: .68rem; line-height: 1.25; }
  .site-topline .social-link { display: none; }
  .site-header { min-height: 70px; padding: 10px 14px; }
  .brand img { width: 41px; height: 41px; }
  .brand-copy strong { font-size: 1.08rem; }
  .brand-copy small { font-size: .55rem; }
  .hero, .inner-hero { padding: 49px 0 78px; gap: 50px; }
  .hero-lede { margin-top: 21px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 9px; }
  .hero-actions .button { width: 100%; }
  .video-slot-hero { min-height: 445px; border-radius: 42% 42% 24px 24px / 20% 20% 24px 24px; }
  .video-placeholder-content { right: 21px; bottom: 23px; left: 21px; }
  .play-mark { width: 52px; height: 52px; }
  .media-note { width: calc(100% - 24px); }
  .values-ribbon { padding: 21px 18px; grid-template-columns: 1fr; gap: 13px; }
  .values-ribbon span { justify-content: flex-start; }
  .section-heading { margin-bottom: 36px; text-align: left; }
  .section-heading > p:last-child { margin-left: 0; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 470px; padding: 30px 25px; }
  .meaning-grid { grid-template-columns: 1fr; }
  .community-card { padding: 31px 24px; grid-template-columns: 1fr; }
  .community-card .button { width: 100%; grid-column: 1; }
  .community-mark { width: 110px; }
  .next-step { width: calc(100% - 20px); padding: 43px 23px; }
  .next-actions { min-width: 0; }
  .inner-hero-image { min-height: 440px; }
  .inner-hero-image img { height: 440px; border-radius: 120px 22px 22px 22px; }
  .image-quote { right: -4px; bottom: 17px; width: 88%; }
  .video-feature, .leadership-video { padding: 72px 0; }
  .promise-grid, .category-grid { grid-template-columns: 1fr; }
  .promise-card:last-child { grid-column: auto; }
  .values-statement-grid { grid-template-columns: 1fr 1fr; }
  .values-statement p { text-align: left; }
  .leadership-pillars-grid { grid-template-columns: 1fr; }
  .growth-path { grid-template-columns: 1fr; gap: 20px; }
  .growth-path::before { top: 15px; bottom: 15px; left: 35px; width: 2px; height: auto; }
  .growth-path li { padding: 0; display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 16px; text-align: left; }
  .growth-path li > span { width: 70px; height: 70px; margin: 0; }
  .growth-path p { margin-top: 6px; }
  .protect-quote { min-height: 325px; padding: 38px 30px; border-radius: 130px 22px 22px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-disclosure { grid-template-columns: 1fr; gap: 9px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .chat-launcher { right: 12px; bottom: 12px; min-width: 0; padding: 10px 14px; }
  .chat-launcher-copy small { display: none; }
  .chat-panel { right: 10px; bottom: 81px; width: calc(100vw - 20px); height: min(620px, calc(100vh - 96px)); }
  .toast { bottom: 85px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
