:root {
  --ink: #132529;
  --ink-soft: #30484d;
  --muted: #66777b;
  --line: #dfe8ea;
  --paper: #ffffff;
  --mist: #f3f8f9;
  --teal: #008ca8;
  --teal-dark: #006f84;
  --aqua: #74d0df;
  --amber: #f4b43e;
  --coral: #df654b;
  --shadow: 0 22px 70px rgba(19, 37, 41, 0.14);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(7, 24, 28, 0.52);
  backdrop-filter: blur(3px);
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(19, 37, 41, 0.12);
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  min-height: 36px;
  padding: 8px 22px;
  color: #ffffff;
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: var(--aqua);
  text-decoration: none;
  white-space: nowrap;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 48px, 1280px);
  min-height: 82px;
  margin: 0 auto;
}

.brand {
  display: grid;
  place-items: center;
  width: 86px;
  height: 64px;
  border-radius: var(--radius);
  text-decoration: none;
}

.brand img {
  width: 82px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-header.is-scrolled .brand img,
.site-header.menu-active .brand img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.site-header.is-scrolled .brand,
.site-header.menu-active .brand {
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(19, 37, 41, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-nav {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-mega-item {
  position: static;
}

.nav-link,
.link-call,
.text-link {
  text-decoration: none;
  font-weight: 800;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: inherit;
  font-size: 0.93rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link:focus-visible,
.site-header.is-scrolled .nav-link.is-active,
.site-header.menu-active .nav-link:hover,
.site-header.menu-active .nav-link:focus-visible,
.site-header.menu-active .nav-link.is-active {
  background: var(--mist);
}

.nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.78;
  transition: transform 180ms ease;
}

.nav-mega-item:hover .nav-chevron,
.nav-mega-item:focus-within .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.desktop-mega {
  position: absolute;
  top: calc(100% - 22px);
  left: 50%;
  z-index: 110;
  width: min(calc(100vw - 48px), 1120px);
  padding-top: 22px;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-mega-item:hover .desktop-mega,
.nav-mega-item:focus-within .desktop-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  max-height: min(74vh, 720px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 80px rgba(19, 37, 41, 0.2);
  overflow: auto;
}

.mega-intro {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 140, 168, 0.18), rgba(244, 180, 62, 0.08)),
    var(--ink);
}

.mega-intro .kicker {
  margin: 0;
}

.mega-title {
  margin: 0;
  font-size: clamp(1.85rem, 2.5vw, 2.8rem);
  font-weight: 950;
  line-height: 0.98;
}

.mega-intro p:not(.kicker):not(.mega-title) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.mega-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.mega-quick-actions a,
.mobile-nav-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mega-quick-actions a:hover,
.mega-quick-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.16);
}

.mega-count {
  align-self: end;
  width: max-content;
  margin-top: 8px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--aqua);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.mega-group {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.mega-group-heading {
  display: grid;
  gap: 3px;
}

.mega-group-heading strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mega-group-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.mega-group-links {
  display: grid;
  gap: 8px;
}

.mega-service-link,
.mobile-service-link {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(223, 232, 234, 0.9);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mega-service-link:hover,
.mega-service-link:focus-visible,
.mega-service-link.is-current,
.mobile-service-link:hover,
.mobile-service-link:focus-visible,
.mobile-service-link.is-current {
  transform: translateY(-2px);
  border-color: rgba(0, 140, 168, 0.34);
  background: #ecfbfd;
  box-shadow: 0 14px 30px rgba(19, 37, 41, 0.09);
}

.menu-service-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.menu-service-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.menu-service-title,
.menu-service-summary {
  display: block;
}

.menu-service-title {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.18;
}

.menu-service-summary {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.nav-actions,
.hero-actions,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.link-call {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 140, 168, 0.28);
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 16px 32px rgba(0, 140, 168, 0.26);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.section-light .button-secondary,
.section-split .button-secondary,
.final-cta .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 790px;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: var(--ink) url("assets/hero-poster.jpg?v=20260728-local-hero") center / cover no-repeat;
  overflow: hidden;
  transform: scale(1.02);
}

.hero-video,
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 28, 0.91) 0%, rgba(7, 24, 28, 0.73) 44%, rgba(7, 24, 28, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 24, 28, 0.68) 0%, rgba(7, 24, 28, 0.05) 46%);
}

.hero-inner {
  position: relative;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 210px 0 56px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.need-band h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.6rem, 7.8vw, 7.8rem);
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 32px;
}

.section {
  padding: 94px 0;
  scroll-margin-top: 140px;
}

.section-inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.section-light {
  background: var(--mist);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 570px;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media {
  background: var(--ink) url("assets/hero-poster.jpg?v=20260728-local-hero") center / cover no-repeat;
  overflow: hidden;
  transform: scale(1.02);
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 28, 0.94) 0%, rgba(7, 24, 28, 0.7) 56%, rgba(7, 24, 28, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 24, 28, 0.78) 0%, rgba(7, 24, 28, 0.1) 58%);
}

.page-hero-inner {
  position: relative;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 190px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb span:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--aqua);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.7rem);
  line-height: 0.98;
}

.page-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

.page-section {
  padding: 86px 0;
  background: #ffffff;
}

.page-section.alt {
  background: var(--mist);
}

.page-section.dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 140, 168, 0.2), rgba(244, 180, 62, 0.08)),
    var(--ink);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 56px;
  align-items: start;
}

.page-copy h2,
.index-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  line-height: 1;
}

.page-copy p,
.index-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.page-copy p:first-of-type,
.index-copy p:first-of-type {
  margin-top: 20px;
}

.content-panel,
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(19, 37, 41, 0.07);
}

.content-panel.dark-panel {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.content-panel h3,
.contact-panel h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 850;
}

.feature-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(223, 101, 75, 0.12);
}

.card-grid,
.profile-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card.full-link,
.profile-card,
.related-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(19, 37, 41, 0.06);
}

.service-card.full-link {
  display: flex;
}

.service-card.full-link:hover,
.profile-card:hover,
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(19, 37, 41, 0.12);
}

.service-card.full-link,
.profile-card,
.related-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.profile-card {
  display: grid;
  gap: 16px;
}

.profile-card img,
.page-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.profile-card img {
  aspect-ratio: 1 / 1;
}

.page-image {
  margin: 0;
}

.page-image img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.profile-card h3,
.related-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.profile-card p,
.related-card p {
  margin: 0;
  color: var(--muted);
}

.team-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--mist) 0%, #ffffff 100%);
}

.team-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(19, 37, 41, 0.07);
}

.team-intro h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.9rem);
  line-height: 0.98;
}

.team-intro-copy {
  display: grid;
  gap: 20px;
}

.team-intro-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.team-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-pills span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--mist);
  font-size: 0.82rem;
  font-weight: 900;
}

.team-section .profile-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-section .profile-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.team-section .profile-card img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  transition: transform 220ms ease;
}

.team-section .profile-card > div {
  padding: 20px;
}

.team-section .profile-card:hover img {
  transform: scale(1.035);
}

.related-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  text-decoration: none;
}

.related-card span {
  color: var(--teal-dark);
  font-weight: 900;
}

.service-call-panel {
  display: grid;
  gap: 18px;
}

.service-call-panel figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.service-call-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-rich-section {
  background:
    linear-gradient(180deg, #f4fafb 0%, #ffffff 100%);
}

.service-rich-inner {
  display: grid;
  gap: 34px;
}

.service-rich-heading {
  margin: 0;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  grid-auto-rows: minmax(190px, 18vw);
  gap: 14px;
}

.service-photo-card {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 37, 41, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(19, 37, 41, 0.08);
}

.service-photo-card.is-large {
  grid-row: span 2;
}

.service-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-photo-card:hover img {
  transform: scale(1.035);
}

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

.service-info-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(19, 37, 41, 0.06);
}

.service-info-card h3 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.service-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.service-info-card p + p {
  margin-top: 14px;
}

.service-info-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-info-card li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 11px;
  color: var(--ink-soft);
  font-weight: 850;
  line-height: 1.42;
}

.service-info-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.54em;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 140, 168, 0.1);
}

.service-hub-section {
  background:
    linear-gradient(180deg, #f4fafb 0%, #ffffff 100%);
}

.service-hub-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.service-hub-intro {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
  max-width: 430px;
}

.service-hub-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 0.98;
}

.service-hub-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 700;
}

.service-hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.service-hub-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-hub-links a:hover,
.service-hub-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 140, 168, 0.32);
  box-shadow: 0 14px 34px rgba(19, 37, 41, 0.1);
}

.service-hub-links a.is-current {
  border-color: rgba(0, 140, 168, 0.36);
  color: var(--ink);
  background: #ecfbfd;
}

.service-hub-directory {
  display: grid;
  gap: 28px;
}

.service-hub-group {
  display: grid;
  gap: 12px;
}

.service-hub-group-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}

.service-hub-group-heading::-webkit-details-marker {
  display: none;
}

.service-hub-group-heading::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-left: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--teal-dark);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.service-hub-group[open] .service-hub-group-heading::after {
  transform: translateY(2px) rotate(225deg);
}

.service-hub-group-heading h3 {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-hub-group-heading span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.service-hub-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(19, 37, 41, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-hub-card:hover,
.service-hub-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 140, 168, 0.3);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(19, 37, 41, 0.1);
}

.service-hub-card.is-current {
  border-color: rgba(0, 140, 168, 0.36);
  background: #ecfbfd;
}

.service-hub-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.service-hub-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.service-hub-title {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.16;
}

.service-hub-current {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #ffffff;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-band {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 140, 168, 0.96), rgba(19, 37, 41, 0.94)),
    var(--teal);
}

.cta-band .section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.faq-page-list {
  display: grid;
  gap: 14px;
}

.faq-experience {
  background:
    linear-gradient(180deg, var(--mist) 0%, #ffffff 52%, #fffaf0 100%);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 122px;
}

.faq-sidebar-inner {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(19, 37, 41, 0.08);
}

.faq-sidebar h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 3.3rem);
  line-height: 1;
}

.faq-sidebar-inner > p:not(.kicker) {
  color: var(--muted);
}

.faq-search {
  display: block;
  margin: 24px 0 18px;
}

.faq-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  background: var(--mist);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.faq-search input:focus {
  border-color: rgba(0, 140, 168, 0.45);
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(116, 208, 223, 0.2);
}

.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-topic-nav button,
.faq-results-bar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: #ffffff;
}

.faq-topic-nav button {
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.faq-topic-nav button {
  padding: 10px 12px;
}

.faq-topic-nav button:hover,
.faq-topic-nav button:focus-visible,
.faq-topic-nav button.is-active {
  color: #ffffff;
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(0, 140, 168, 0.22);
}

.faq-callout {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(116, 208, 223, 0.18);
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 140, 168, 0.24), rgba(244, 180, 62, 0.06)),
    var(--ink);
  box-shadow: 0 18px 42px rgba(19, 37, 41, 0.14);
}

.faq-callout img {
  width: 54px;
  height: 54px;
  padding: 13px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  filter: invert(1);
}

.faq-callout h3,
.faq-callout p {
  margin: 0;
}

.faq-callout h3 {
  line-height: 1.22;
}

.faq-callout p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.faq-callout .text-link {
  display: inline-block;
  margin-top: 14px;
  color: #8de8f4;
}

.faq-main {
  display: grid;
  gap: 14px;
}

.faq-results-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
}

.faq-results-bar p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 900;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(19, 37, 41, 0.06);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 140, 168, 0.26);
  box-shadow: 0 18px 46px rgba(19, 37, 41, 0.09);
}

.faq-item[open] {
  border-color: rgba(0, 140, 168, 0.34);
}

.faq-item summary {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 24px 64px 24px 24px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  font-weight: 950;
  line-height: 1.14;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--teal);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary span {
  width: fit-content;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e8f7fa;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-item div {
  padding: 0 24px 24px;
}

.faq-item p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.faq-empty {
  padding: 28px;
  border: 1px dashed rgba(0, 140, 168, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.faq-empty h3 {
  margin: 0 0 8px;
}

.faq-empty p {
  color: var(--muted);
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 850;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: #ffffff;
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.hiring-panel {
  align-self: start;
}

.hiring-panel > .kicker {
  margin-bottom: 10px;
}

.hiring-panel h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.radio-field {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  margin: 0;
}

.radio-field legend {
  padding: 0;
  color: var(--ink-soft);
  font-weight: 850;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.radio-group input {
  width: auto;
  min-height: 0;
  margin: 0;
  accent-color: var(--teal);
}

.file-field input {
  padding: 10px;
}

.file-field span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-alert {
  padding: 12px 14px;
  border: 1px solid rgba(223, 101, 75, 0.36);
  border-radius: var(--radius);
  color: #7a2f20;
  background: #fff1ec;
  font-weight: 850;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 46px;
  align-items: start;
  margin-bottom: 42px;
}

.section-heading > .kicker {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.section-heading h2,
.need-band h2,
.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.7vw, 5rem);
  font-weight: 900;
}

.section-heading p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-heading {
  align-items: end;
  margin-bottom: 36px;
}

.service-heading .kicker {
  margin-bottom: 14px;
}

.heading-copy {
  display: grid;
  gap: 24px;
  padding-bottom: 8px;
}

.heading-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.heading-points span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.heading-points span:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 140, 168, 0.42);
  background: #e9f7f9;
  color: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(0, 140, 168, 0.12);
}

.need-band {
  padding: 40px 0;
  background: var(--ink);
  color: #ffffff;
}

.need-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 42px;
  align-items: center;
}

.need-band h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.need-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.need-actions a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.need-actions a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(116, 208, 223, 0.16), rgba(244, 180, 62, 0.08));
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 180ms ease;
}

.need-actions img {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  filter: invert(1);
  opacity: 0.9;
  transition: transform 180ms ease;
}

.need-actions a:hover,
.need-actions a:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(116, 208, 223, 0.58);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.need-actions a:hover::after,
.need-actions a:focus-visible::after {
  opacity: 1;
}

.need-actions a:hover img,
.need-actions a:focus-visible img {
  transform: translateY(-2px) scale(1.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 324px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(19, 37, 41, 0.07);
}

.service-card img {
  width: 62px;
  height: 62px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  object-fit: contain;
}

.service-card h3 {
  margin: 26px 0 10px;
  font-size: 1.25rem;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.service-card.full-link span {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.system-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(116, 208, 223, 0.18), rgba(244, 180, 62, 0.08)),
    #ffffff;
}

.system-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--line);
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.system-copy h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  line-height: 0.98;
}

.system-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(223, 101, 75, 0.13);
}

.text-link {
  color: var(--teal-dark);
}

.system-board {
  padding: 24px;
  border: 1px solid rgba(0, 140, 168, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.system-board-top {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 140, 168, 0.38), rgba(19, 37, 41, 0)),
    var(--ink);
}

.system-board-icon,
.system-card img,
.system-note img {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--mist);
}

.system-board-icon {
  width: 76px;
  height: 76px;
}

.system-board-icon img {
  width: 38px;
  height: 38px;
}

.system-board-top p {
  margin: 0;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-board-top h3 {
  max-width: 430px;
  margin: 6px 0 0;
  font-size: clamp(1.6rem, 2.5vw, 2.45rem);
  line-height: 1.02;
}

.system-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.system-card {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.system-card img {
  width: 48px;
  height: 48px;
  padding: 10px;
  object-fit: contain;
  transition: transform 180ms ease, background 180ms ease;
}

.system-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 140, 168, 0.32);
  box-shadow: 0 18px 48px rgba(19, 37, 41, 0.1);
}

.system-card:hover img {
  background: #e6f7fa;
  transform: scale(1.08);
}

.system-card h3 {
  margin: 22px 0 8px;
  font-size: 1.08rem;
  line-height: 1.12;
}

.system-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.system-note {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: #e9f7f9;
}

.system-note img {
  width: 46px;
  height: 46px;
  padding: 10px;
}

.system-note p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 900;
}

.legacy-section {
  background: #fffaf0;
}

.legacy-section[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.legacy-section[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legacy-section [data-reveal-child] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.legacy-section.is-visible [data-reveal-child] {
  opacity: 1;
  transform: translateY(0);
}

.legacy-section.is-visible [data-reveal-child]:nth-child(2) {
  transition-delay: 120ms;
}

.reveal-section[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal-section[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section [data-reveal-child] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal-section.is-visible [data-reveal-child] {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible [data-reveal-child] + [data-reveal-child] {
  transition-delay: 110ms;
}

.reveal-section.is-visible [data-reveal-child] + [data-reveal-child] + [data-reveal-child] {
  transition-delay: 190ms;
}

.legacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.legacy-photo {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.legacy-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 37, 41, 0) 50%, rgba(19, 37, 41, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 140, 168, 0.14), rgba(244, 180, 62, 0.06));
  pointer-events: none;
}

.legacy-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.legacy-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  max-width: 360px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.32);
}

.legacy-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.7vw, 5rem);
  line-height: 0.98;
}

.legacy-copy > p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legacy-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.legacy-stats div {
  min-height: 144px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(19, 37, 41, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.legacy-stats div:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 140, 168, 0.26);
  box-shadow: 0 18px 48px rgba(19, 37, 41, 0.1);
}

.legacy-stats strong {
  display: block;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.legacy-stats span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
}

.section-dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 140, 168, 0.24), rgba(244, 180, 62, 0.12)),
    var(--ink);
}

.heading-on-dark p:not(.kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.proof-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(116, 208, 223, 0.34);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.proof-grid span {
  color: var(--amber);
  font-weight: 900;
}

.proof-grid h3 {
  margin: 42px 0 12px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.12fr);
  gap: 62px;
  align-items: start;
}

.review-score {
  position: sticky;
  top: 132px;
  align-self: start;
}

.review-score h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  line-height: 0.98;
}

.review-score p:not(.kicker) {
  color: var(--muted);
}

.review-marquee {
  --review-fade: 82px;
  position: relative;
  max-height: 560px;
  overflow: hidden auto;
  padding: 18px 0;
  cursor: grab;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 var(--review-fade), #000 calc(100% - var(--review-fade)), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 var(--review-fade), #000 calc(100% - var(--review-fade)), transparent 100%);
}

.review-marquee::-webkit-scrollbar {
  display: none;
}

.review-marquee.is-dragging {
  cursor: grabbing;
}

.review-marquee-track {
  display: grid;
  gap: 18px;
  animation: review-scroll-up var(--review-scroll-duration, 48s) linear infinite;
  will-change: transform;
  user-select: none;
}

.review-marquee:hover .review-marquee-track,
.review-marquee.is-dragging .review-marquee-track {
  animation-play-state: paused;
}

.review-card {
  margin: 0;
  padding: 28px;
  border-left: 6px solid var(--amber);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(19, 37, 41, 0.07);
}

.review-card-header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 30px;
  gap: 14px;
  align-items: center;
}

.review-avatar {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--mist);
}

.review-avatar-fallback {
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: var(--teal-dark);
  font-weight: 900;
}

.review-author {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  line-height: 1.1;
}

.review-meta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
}

.review-source {
  width: 28px;
  height: 28px;
  opacity: 0.72;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin: 18px 0 14px;
}

.review-stars img {
  width: 18px;
  height: 18px;
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.45vw, 1.36rem);
  line-height: 1.42;
}

@keyframes review-scroll-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-video,
  .page-hero-video {
    display: none;
  }

  .legacy-section[data-reveal],
  .legacy-section [data-reveal-child],
  .reveal-section[data-reveal],
  .reveal-section [data-reveal-child] {
    opacity: 1;
    transform: none;
  }

  .review-marquee {
    max-height: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .review-marquee-track {
    animation: none;
  }
}

.areas {
  background: #ffffff;
}

.areas-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 50px;
  align-items: center;
}

.areas h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 1;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-cloud span,
.area-cloud a {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink-soft);
  font-weight: 900;
  text-decoration: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-grid .section-heading {
  display: block;
  margin: 0;
}

.faq-grid .section-heading > .kicker {
  margin-bottom: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(19, 37, 41, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.final-cta {
  padding: 74px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 140, 168, 0.95), rgba(19, 37, 41, 0.94)),
    var(--teal);
}

.final-cta .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #0c191c;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}

.footer-brand img {
  width: 88px;
  height: 70px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: block;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
    order: 3;
    position: relative;
    z-index: 130;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-toggle span:not(.sr-only) {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .brand {
    order: 1;
  }

  .nav-actions {
    justify-self: end;
    order: 2;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 120;
    display: block;
    width: min(430px, 100%);
    height: 100vh;
    padding: 122px 18px 24px;
    border-left: 1px solid var(--line);
    background:
      linear-gradient(180deg, #f5fbfc 0%, #ffffff 52%, #fffaf0 100%);
    color: var(--ink);
    box-shadow: -26px 0 80px rgba(7, 24, 28, 0.28);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    transform: translateX(104%);
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .menu-open .nav-links {
    visibility: visible;
    transform: translateX(0);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: grid;
    gap: 16px;
  }

  .mobile-nav-heading {
    display: grid;
    gap: 2px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-heading span {
    color: var(--teal);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-nav-heading strong {
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 950;
    line-height: 1.1;
  }

  .mobile-nav-actions {
    position: sticky;
    top: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 10px 0;
    background: linear-gradient(180deg, #f5fbfc 0%, rgba(245, 251, 252, 0.9) 100%);
  }

  .mobile-nav-actions .button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .mobile-nav-primary {
    display: grid;
    gap: 6px;
  }

  .mobile-nav-link {
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    font-size: 0.94rem;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:focus-visible,
  .mobile-nav-link.is-active {
    background: #ecfbfd;
    border-color: rgba(0, 140, 168, 0.32);
  }

  .mobile-nav-group {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(19, 37, 41, 0.08);
    overflow: hidden;
  }

  .mobile-nav-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 0 14px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav-group summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-group summary::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: var(--teal-dark);
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
  }

  .mobile-nav-group[open] summary::after {
    transform: translateY(2px) rotate(225deg);
  }

  .mobile-nav-group summary span {
    color: var(--ink);
    font-weight: 950;
  }

  .mobile-nav-group summary small {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 900;
  }

  .mobile-nav-group-body {
    display: grid;
    gap: 12px;
    padding: 0 10px 12px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav-all {
    justify-self: start;
    margin-top: 10px;
    border-color: rgba(0, 140, 168, 0.22);
    color: var(--teal-dark);
    background: #ecfbfd;
  }

  .mobile-nav-service-set {
    display: grid;
    gap: 7px;
  }

  .mobile-nav-service-set p {
    margin: 6px 2px 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-service-link {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 9px;
    box-shadow: none;
  }

  .mobile-service-link .menu-service-summary {
    display: none;
  }

  .mobile-service-link .menu-service-title {
    font-size: 0.9rem;
  }

  .mobile-nav-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 2px;
  }

  .mobile-nav-secondary a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #ffffff;
    font-size: 0.82rem;
    font-weight: 950;
    text-decoration: none;
  }

  .service-grid,
  .need-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .need-grid,
  .system-grid,
  .legacy-grid,
  .review-layout,
  .areas-grid,
  .faq-grid,
  .page-grid,
  .service-hub-shell,
  .service-info-grid,
  .cta-band .section-inner,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(190px, 26vw);
  }

  .service-photo-card.is-large {
    grid-row: auto;
  }

  .service-hub-intro {
    position: static;
    max-width: 760px;
  }

  .service-hub-directory {
    gap: 14px;
  }

  .card-grid,
  .profile-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-section {
    background: #fffaf0;
  }

  .legacy-grid {
    gap: 36px;
  }

  .legacy-copy {
    max-width: 760px;
  }

  .review-layout {
    gap: 36px;
  }

  .review-score {
    position: static;
    max-width: 760px;
  }

  .review-marquee {
    max-height: 500px;
  }

  .system-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-intro,
  .team-section .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .nav-shell {
    width: min(100% - 28px, var(--max));
    min-height: 76px;
    gap: 12px;
  }

  .nav-actions {
    display: none;
  }

  .brand {
    width: 72px;
    height: 54px;
  }

  .brand img {
    width: 70px;
    height: 54px;
  }

  .nav-links {
    width: min(390px, 100%);
    padding: 94px 14px 20px;
  }

  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 24, 28, 0.92) 0%, rgba(7, 24, 28, 0.72) 100%),
      linear-gradient(0deg, rgba(7, 24, 28, 0.7), rgba(7, 24, 28, 0.06));
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    padding: 128px 0 36px;
  }

  .page-hero-inner {
    width: min(100% - 28px, var(--max));
    padding: 130px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .proof-grid,
  .system-card-grid,
  .need-actions {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .page-section {
    padding: 68px 0;
  }

  .need-band {
    padding: 34px 0;
  }

  .need-actions a {
    min-height: 68px;
  }

  .service-card {
    min-height: 280px;
  }

  .service-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(220px, 62vw);
    gap: 10px;
  }

  .service-info-card {
    padding: 22px;
  }

  .service-info-card h3 {
    font-size: clamp(1.32rem, 7vw, 1.75rem);
  }

  .service-info-card p {
    font-size: 0.98rem;
  }

  .system-grid {
    gap: 34px;
  }

  .system-board {
    padding: 18px;
  }

  .system-board-top {
    grid-template-columns: 58px 1fr;
    padding: 18px;
  }

  .system-board-icon {
    width: 58px;
    height: 58px;
  }

  .system-board-icon img {
    width: 30px;
    height: 30px;
  }

  .legacy-photo,
  .legacy-photo img {
    min-height: auto;
  }

  .legacy-photo {
    aspect-ratio: 4 / 3;
  }

  .legacy-photo img {
    height: 100%;
  }

  .legacy-stats {
    grid-template-columns: 1fr;
  }

  .legacy-stats div {
    min-height: auto;
  }

  .review-marquee {
    --review-fade: 58px;
    max-height: 455px;
  }

  .review-card {
    padding: 22px;
  }

  .review-card-header {
    grid-template-columns: 52px minmax(0, 1fr) 26px;
    gap: 12px;
  }

  .review-avatar {
    width: 52px;
    height: 52px;
  }

  .review-card blockquote p {
    font-size: 1.04rem;
  }

  .card-grid,
  .card-grid.two,
  .profile-grid,
  .related-grid,
  .service-hub-grid,
  .form-grid,
  .team-intro,
  .team-section .profile-grid {
    grid-template-columns: 1fr;
  }

  .team-intro {
    gap: 22px;
    padding: 24px;
  }

  .service-hub-section {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .service-hub-intro {
    gap: 12px;
  }

  .service-hub-intro h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1;
  }

  .service-hub-intro p {
    font-size: 0.98rem;
  }

  .service-hub-links {
    gap: 8px;
  }

  .service-hub-links a {
    padding: 9px 10px;
    font-size: 0.84rem;
  }

  .service-hub-group {
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(19, 37, 41, 0.06);
    overflow: hidden;
  }

  .service-hub-group-heading {
    align-items: center;
    padding: 16px;
    border-bottom: 0;
  }

  .service-hub-group[open] .service-hub-group-heading {
    border-bottom: 1px solid var(--line);
  }

  .service-hub-group-heading h3 {
    font-size: 0.88rem;
  }

  .service-hub-group-heading span {
    font-size: 0.76rem;
  }

  .service-hub-grid {
    gap: 0;
    padding: 8px;
  }

  .service-hub-card {
    min-height: 58px;
    padding: 9px 10px;
    border-color: transparent;
    box-shadow: none;
  }

  .service-hub-card + .service-hub-card {
    border-top-color: var(--line);
  }

  .service-hub-icon {
    width: 36px;
    height: 36px;
  }

  .service-hub-icon img {
    width: 20px;
    height: 20px;
  }

  .service-hub-title {
    font-size: 0.95rem;
  }

  .service-hub-current {
    padding: 5px 7px;
    font-size: 0.64rem;
  }

  .faq-sidebar-inner {
    padding: 22px;
  }

  .faq-results-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-item summary {
    padding: 22px 58px 22px 20px;
  }

  .faq-item div {
    padding: 0 20px 22px;
  }

  .content-panel,
  .contact-panel {
    padding: 22px;
  }

  .inline-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero h1,
  .section-heading h2,
  .need-band h2,
  .final-cta h2,
  .page-hero h1,
  .page-copy h2,
  .index-copy h2,
  .cta-band h2,
  .system-copy h2,
  .legacy-copy h2,
  .review-score h2,
  .areas h2 {
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    padding-top: 116px;
  }
}
