:root {
  --ink: #0a3663;
  --ink-soft: #2d4965;
  --muted: #637f99;
  --line: rgba(10, 54, 99, 0.16);
  --paper: #f7fbff;
  --surface: #ffffff;
  --surface-tint: #eaf7ff;
  --teal: #38a5db;
  --teal-dark: #0a3663;
  --blue: #0b77b8;
  --coral: #478934;
  --amber: #92daf8;
  --shadow: 0 18px 42px rgba(10, 54, 99, 0.14);
  --radius: 8px;
  --header: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--teal);
}

svg {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.quick-bar {
  background: var(--ink);
  color: white;
  font-size: 0.9rem;
}

.quick-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.quick-contact,
.quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.quick-links {
  margin-left: auto;
  display: flex;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(10, 54, 99, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: min(460px, 46vw);
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand > img {
  width: 176px;
  max-height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.powered-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 6px 0 6px 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.powered-lockup span {
  white-space: nowrap;
}

.powered-lockup img {
  width: 132px;
  max-width: 132px;
  max-height: 33px;
  object-fit: contain;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.main-nav > a,
.nav-group > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 13px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 700;
  white-space: nowrap;
}

.main-nav > a:hover,
.nav-group > a:hover,
.main-nav .is-active {
  background: var(--surface-tint);
  color: var(--teal-dark);
}

.nav-group {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  width: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 160ms ease;
}

.service-menu {
  width: 450px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.mega-menu a:hover {
  background: var(--paper);
  color: var(--teal-dark);
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.icon-button,
.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.icon-button:hover,
.slider-arrow:hover {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}

.menu-toggle {
  display: none;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  white-space: nowrap;
}

.nav-cta--upload {
  color: white;
  background: var(--coral);
  border-color: var(--coral);
}

.nav-cta--portal {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}

.nav-cta:hover {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.site-search {
  border-top: 1px solid var(--line);
  background: white;
}

.site-search__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
}

.site-search label,
.search-page-panel label {
  font-weight: 800;
}

.site-search input,
.search-page-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
}

.site-search__results,
.search-page-results {
  grid-column: 2;
  display: grid;
  gap: 8px;
}

.search-hit {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  background: white;
}

.search-hit strong {
  display: block;
}

.search-hit span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-slider {
  position: relative;
  min-height: clamp(500px, calc(100svh - 190px), 640px);
  color: white;
  overflow: hidden;
  background: var(--ink);
}

.hero-slider__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
}

.hero-slide img,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__shade,
.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 13, 24, 0.84) 0%, rgba(6, 13, 24, 0.68) 36%, rgba(6, 13, 24, 0.1) 76%),
    linear-gradient(0deg, rgba(6, 13, 24, 0.2), rgba(6, 13, 24, 0));
}

.hero-slide__content,
.page-hero__content {
  position: relative;
  z-index: 1;
}

.hero-slide__content {
  min-height: clamp(500px, calc(100svh - 190px), 640px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1180px;
}

.hero-slide__content h2,
.page-hero__content h1,
.intro-grid h1 {
  max-width: 780px;
  margin: 8px 0 18px;
  font-size: 4.2rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-slide__content p:not(.eyebrow),
.page-hero__content p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-controls {
  position: relative;
  z-index: 2;
  min-height: clamp(500px, calc(100svh - 190px), 640px);
  pointer-events: none;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 14px;
  padding-bottom: 34px;
}

.hero-controls > * {
  pointer-events: auto;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--amber);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
}

.button--primary {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}

.button--primary:hover {
  color: white;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button--secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button--secondary:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quick-action-band {
  background: var(--ink);
}

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

.quick-action-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 94px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
}

.quick-action-card:nth-child(2) {
  background: rgba(15, 118, 110, 0.24);
}

.quick-action-card:nth-child(3) {
  background: rgba(228, 87, 46, 0.18);
}

.quick-action-card--upload {
  background: rgba(228, 87, 46, 0.28);
}

.quick-action-card--portal {
  background: rgba(15, 118, 110, 0.34);
}

.quick-action-card:hover {
  color: white;
  background: var(--teal);
}

.intro-band,
.section {
  padding: 84px 0;
}

.intro-grid,
.split-layout,
.detail-grid,
.contact-grid,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.stat-row span {
  display: block;
  padding: 16px;
  border-left: 4px solid var(--teal);
  background: var(--paper);
  color: var(--ink-soft);
}

.stat-row strong {
  display: block;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

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

.area-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(10, 54, 99, 0.06);
}

.area-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

.area-grid p,
.keyword-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section--soft {
  background: var(--paper);
}

.service-video-section {
  background: linear-gradient(135deg, rgba(10, 54, 99, 0.98), rgba(7, 79, 119, 0.96));
  color: white;
}

.service-video {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 44px;
  align-items: center;
}

.service-video__copy {
  max-width: 560px;
}

.service-video__copy .eyebrow {
  color: var(--amber);
}

.service-video__copy h2 {
  margin: 8px 0 16px;
  color: white;
  font-size: 2.45rem;
  line-height: 1.08;
}

.service-video__copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.68;
}

.service-video__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #071c31;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.service-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 30px;
}

.section-heading h2,
.rich-copy h2,
.detail-panel h2,
.contact-card h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-weight: 850;
}

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

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

.service-card,
.product-card,
.process-step,
.detail-panel,
.feature-panel,
.contact-card,
.form-panel,
.search-page-panel,
.tool-card,
.tool-dropzone,
.tool-panel,
.tool-results {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 24px rgba(10, 54, 99, 0.06);
}

.service-card,
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card img,
.product-card__image img {
  width: 100%;
  height: 174px;
  object-fit: cover;
}

.service-card > div,
.product-card > div {
  padding: 20px;
}

.service-card h3,
.product-card h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.service-card p,
.product-card p,
.process-step p,
.detail-panel,
.feature-panel,
.contact-card {
  color: var(--muted);
}

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

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

.tool-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.tool-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tool-card__top svg {
  width: 30px;
  height: 30px;
  color: var(--teal);
}

.tool-card__top span,
.tool-status {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-tint);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

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

.tool-dropzone {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 32px;
  margin: 28px 0;
  border-style: dashed;
  background: var(--paper);
  text-align: center;
}

.tool-dropzone svg {
  width: 42px;
  height: 42px;
  color: var(--teal);
}

.tool-dropzone span {
  max-width: 420px;
  color: var(--muted);
}

.tool-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
}

.tool-panel,
.tool-results {
  padding: 28px;
}

.tool-panel__heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.tool-panel__heading h2,
.tool-results h2 {
  margin: 6px 0 10px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.tool-panel__heading p:not(.eyebrow),
.tool-results p,
.tool-results li {
  color: var(--muted);
}

.tool-upload {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 20px;
  border: 1px dashed var(--teal);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.tool-upload svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

.tool-upload strong,
.tool-upload small {
  display: block;
}

.tool-upload small {
  margin-top: 4px;
  color: var(--muted);
}

.tool-upload input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.tool-fields--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-fields label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.tool-fields input,
.tool-fields select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.tool-results {
  display: grid;
  gap: 16px;
}

.tool-results dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  margin: 0;
}

.tool-results dt {
  color: var(--muted);
}

.tool-results dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  text-align: right;
}

.tool-result-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tool-result-list li {
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--paper);
}

.tool-result-list strong {
  display: block;
  color: var(--ink);
}

.tool-result-list .is-good {
  border-left: 4px solid var(--teal);
}

.tool-result-list .is-warn {
  border-left: 4px solid var(--amber);
}

.tool-result-list .is-alert {
  border-left: 4px solid var(--coral);
}

.imposition-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 6px;
  font-size: 0.92rem;
}

.imposition-table th,
.imposition-table td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.imposition-table th {
  background: var(--surface-tint);
  color: var(--teal-dark);
}

.product-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-strip a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink-soft);
  font-weight: 800;
}

.product-strip a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

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

.process-step {
  padding: 24px;
}

.process-step span {
  display: block;
  color: var(--coral);
  font-weight: 950;
  font-size: 0.92rem;
  margin-bottom: 34px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.partner-band {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.partner-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.partner-row img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  color: white;
  overflow: hidden;
  background: var(--ink);
}

.page-hero img,
.page-hero__shade {
  position: absolute;
  inset: 0;
}

.page-hero__content {
  padding: 80px 0;
}

.page-hero__content h1 {
  font-size: 3.35rem;
}

.rich-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.rich-copy h2 + p,
.rich-copy p + h2 {
  margin-top: 24px;
}

.detail-panel,
.feature-panel,
.contact-card,
.form-panel,
.search-page-panel {
  padding: 28px;
}

.detail-panel h2,
.contact-card h2 {
  font-size: 1.2rem;
  margin-top: 0;
}

.check-list {
  padding: 0;
  margin: 14px 0 28px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--surface-tint);
}

.narrow {
  max-width: 760px;
}

.contact-grid {
  grid-template-columns: 0.72fr 1fr;
}

.form-panel {
  display: grid;
  gap: 16px;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-panel h2 {
  margin: 0 0 6px;
  font-size: 1.6rem;
}

.form-panel h3 {
  margin: 10px 0 0;
}

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

.field {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: white;
  color: var(--ink);
  font-weight: 500;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.site-search input:focus,
.search-page-panel input:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--teal);
}

.field--file input {
  border-style: dashed;
  background: var(--paper);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-note[data-state="pending"] {
  color: var(--teal-dark);
  font-weight: 800;
}

.form-note[data-state="success"] {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(71, 137, 52, 0.12);
  color: #2f6f24;
  font-weight: 800;
}

.form-note[data-state="error"] {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(199, 80, 75, 0.1);
  color: #8f2622;
  font-weight: 800;
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.sitemap-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sitemap-grid section {
  border-top: 4px solid var(--teal);
  padding-top: 18px;
}

.sitemap-grid h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.sitemap-grid ul,
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 62px 0 24px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 28px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 38px;
}

.footer-logo {
  width: min(260px, 46vw);
  max-height: none;
  flex: 0 0 auto;
}

.footer-powered-lockup {
  width: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.footer-powered-lockup span {
  white-space: nowrap;
}

.footer-powered-lockup img {
  width: 190px;
  max-width: 190px;
  max-height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  color: var(--amber);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 1160px) {
  :root {
    --header: 76px;
  }

  .quick-bar {
    display: none;
  }

  .brand {
    width: min(285px, calc(100vw - 96px));
    gap: clamp(6px, 1.8vw, 10px);
  }

  .brand > img {
    width: clamp(118px, 36vw, 145px);
  }

  .powered-lockup {
    display: flex;
    gap: 6px;
    padding-left: 10px;
    font-size: 0.54rem;
  }

  .powered-lockup img {
    width: clamp(68px, 22vw, 92px);
    max-width: 92px;
    max-height: 24px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 24px;
    max-height: calc(100svh - var(--header));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    scrollbar-color: rgba(15, 118, 110, 0.65) transparent;
    scrollbar-width: thin;
  }

  .main-nav.is-open {
    display: grid;
    gap: 8px;
    background:
      linear-gradient(white 30%, rgba(255, 255, 255, 0)) top / 100% 30px no-repeat,
      linear-gradient(rgba(255, 255, 255, 0), white 70%) bottom / 100% 34px no-repeat,
      radial-gradient(farthest-side at 50% 0, rgba(10, 54, 99, 0.18), transparent) top / 100% 12px no-repeat,
      radial-gradient(farthest-side at 50% 100%, rgba(10, 54, 99, 0.18), transparent) bottom / 100% 12px no-repeat,
      white;
    background-attachment: local, local, scroll, scroll;
  }

  .main-nav::-webkit-scrollbar {
    width: 8px;
  }

  .main-nav::-webkit-scrollbar-thumb {
    background: rgba(15, 118, 110, 0.55);
    border-radius: 999px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .main-nav > a,
  .nav-group > a,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 6px 0;
    order: -1;
  }

  .nav-group {
    display: grid;
  }

  .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 4px 0 10px;
  }

.hero-slide__content h2,
  .intro-grid h1 {
    font-size: 3.25rem;
  }

  .page-hero__content h1 {
    font-size: 2.65rem;
  }

  .card-grid,
  .card-grid--services,
  .product-card-grid,
  .area-grid,
  .process-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .split-layout,
  .detail-grid,
  .service-video,
  .contact-grid,
  .tool-workspace,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .service-video__copy {
    max-width: 720px;
  }

  .tool-results dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 430px) {
  .powered-lockup {
    padding-left: 8px;
  }

  .powered-lockup span {
    display: none;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .footer-brand-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-logo {
    width: min(250px, 100%);
  }

  .footer-powered-lockup img {
    width: 164px;
    max-width: 164px;
  }

  .hero-slider,
  .hero-slide__content,
  .hero-controls {
    min-height: clamp(450px, calc(100svh - 150px), 560px);
  }

  .hero-slide__shade,
  .page-hero__shade {
    background:
      linear-gradient(90deg, rgba(6, 13, 24, 0.88), rgba(6, 13, 24, 0.56)),
      linear-gradient(0deg, rgba(6, 13, 24, 0.42), rgba(6, 13, 24, 0));
  }

.hero-slide__content h2,
  .intro-grid h1 {
    font-size: 2.55rem;
  }

  .hero-slide__content p:not(.eyebrow),
  .page-hero__content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-controls {
    justify-content: flex-start;
    padding-bottom: 22px;
  }

  .quick-action-grid,
  .card-grid,
  .card-grid--services,
  .product-card-grid,
  .area-grid,
  .process-grid,
  .tool-grid,
  .tool-fields,
  .tool-fields--three,
  .partner-row,
  .footer-grid,
  .sitemap-grid,
  .form-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .quick-action-card {
    min-height: 70px;
  }

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

  .intro-band,
  .section {
    padding: 58px 0;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .page-hero {
    min-height: 390px;
  }

  .page-hero__content h1 {
    font-size: 2.15rem;
  }

  .site-search__inner {
    grid-template-columns: 1fr;
  }

  .site-search__results {
    grid-column: 1;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
