*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --navy: #0d2b55;
  --navy-deep: #071729;
  --teal: #00857a;
  --teal-light: #00b5a5;
  --teal-wash: #e6f4f2;
  --gold: #c4900a;
  --gold-light: #fff3d6;
  --off-white: #f7f8fa;
  --mid: #6b7280;
  --dark: #111827;
  --panel: #ffffff;
  --panel-soft: #f7f8fa;
  --border: rgba(13, 43, 85, 0.12);
  --border-teal: rgba(0, 133, 122, 0.25);
  --shadow: 0 24px 70px rgba(7, 23, 41, 0.14);
  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --heading-font: "Kalice", "Kalix", Georgia, "Times New Roman", serif;
  --body-font: "DM Sans", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
}

.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;
}

.one-page-site main {
  display: flex;
  flex-direction: column;
}

.one-page-site .one-page-header { order: 1; }
.one-page-site .image-hero-first { order: 2; }
.one-page-site .who-section { order: 3; }
.one-page-site .services-section { order: 4; }
.one-page-site .alt-hero-footer { order: 5; }

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 64px;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.home-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.5rem 0.8rem;
  color: var(--navy);
  background: var(--teal-wash);
  border: 1px solid var(--border-teal);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.home-return i {
  color: var(--teal);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: cover;
  background: #fff;
  border: 0;
  border-radius: var(--radius-xs);
  filter: brightness(1.08) contrast(1.08) saturate(1.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.96),
    0 10px 24px rgba(7, 23, 41, 0.06);
}

.brand-name {
  display: block;
  line-height: 1;
}

.brand-name span {
  color: var(--teal);
}

.brand-lockup {
  display: grid;
  gap: 0.16rem;
}

.brand-slogan {
  display: block;
  color: rgba(13, 43, 85, 0.62);
  font-family: var(--body-font);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.48rem 0.78rem;
  color: rgba(13, 43, 85, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(230, 244, 242, 0.42)),
    rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(0, 133, 122, 0.18);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 24px rgba(7, 23, 41, 0.04);
  backdrop-filter: blur(14px) saturate(1.25);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), transparent 48%, rgba(0, 181, 165, 0.1));
  opacity: 0.78;
  pointer-events: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--navy);
  border-color: rgba(0, 181, 165, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 0 0 1px rgba(0, 181, 165, 0.13),
    0 12px 28px rgba(0, 133, 122, 0.14),
    0 0 22px rgba(0, 181, 165, 0.16);
  transform: translateY(-1px);
}

.nav-links a.is-active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(230, 244, 242, 0.76)),
    rgba(255, 255, 255, 0.74);
}

.header-cta,
.primary-btn,
.secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-xs);
  border: 0;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

.header-cta,
.primary-btn {
  color: #fff;
  background:
    radial-gradient(circle at 24% 0%, rgba(120, 228, 147, 0.34), transparent 30%),
    linear-gradient(135deg, #071729 0%, #0d2b55 56%, #00857a 100%);
  border: 1px solid rgba(120, 228, 147, 0.38);
  box-shadow:
    0 14px 32px rgba(7, 23, 41, 0.18),
    0 0 24px rgba(0, 181, 165, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.header-cta::before,
.primary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 28%, rgba(255, 255, 255, 0.3) 42%, transparent 56% 100%);
  transform: translateX(-130%);
  transition: transform 0.48s ease;
  pointer-events: none;
}

.primary-btn:hover,
.header-cta:hover {
  border-color: rgba(120, 228, 147, 0.72);
  box-shadow:
    0 18px 38px rgba(7, 23, 41, 0.22),
    0 0 34px rgba(0, 181, 165, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.primary-btn:hover::before,
.header-cta:hover::before {
  transform: translateX(130%);
}

.secondary-btn {
  color: var(--navy);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 32px, 0) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(.2, .8, .2, 1),
    filter 0.72s cubic-bezier(.2, .8, .2, 1),
    transform 0.72s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .service-card.reveal-on-scroll {
  transform: translateY(calc(var(--service-lift) + 26px)) scale(var(--service-scale));
}

.motion-ready .service-card.reveal-on-scroll.is-visible {
  transform: translateY(var(--service-lift)) scale(var(--service-scale));
}

.motion-ready .alt-hero-mark.reveal-on-scroll {
  transform: translate(-50%, calc(-50% + 26px)) scale(0.985);
}

.motion-ready .alt-hero-mark.reveal-on-scroll.is-visible {
  transform: translate(-50%, -50%) scale(1);
}

.scroll-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(230, 244, 242, 0.54)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 181, 165, 0.46);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 16px 38px rgba(7, 23, 41, 0.16),
    0 0 30px rgba(0, 181, 165, 0.16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  backdrop-filter: blur(16px) saturate(1.25);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: rgba(0, 181, 165, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 42px rgba(7, 23, 41, 0.18),
    0 0 34px rgba(0, 181, 165, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.scroll-top i {
  color: var(--teal);
  font-size: 1.2rem;
}

.hero {
  position: relative;
  height: calc(100vh - 64px);
  min-height: 720px;
  overflow: clip;
  isolation: isolate;
  background: #fff;
}

.hero-pin {
  position: relative;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.hero-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 47%, rgba(0, 181, 165, 0.08), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  opacity: var(--hero-light, 0);
  pointer-events: none;
}

.hero-grid-bg,
.hero-vortex,
.hero-visuals,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-grid-bg {
  opacity: calc(0.26 + var(--hero-progress, 0) * 0.28);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 46%, #000 0%, transparent 72%);
  mix-blend-mode: difference;
}

.hero-vortex {
  z-index: 0;
  opacity: calc(0.1 + var(--hero-light, 0) * 0.2);
  filter: blur(18px) saturate(1.25);
  transform: scale(1.18) rotate(var(--vortex-rot, 0deg));
  background:
    radial-gradient(circle at 50% 50%, transparent 0 12%, rgba(0, 181, 165, 0.16) 13%, transparent 30%),
    conic-gradient(
      from var(--vortex-rot, 0deg) at 50% 50%,
      transparent 0deg,
      rgba(0, 181, 165, 0.18) 54deg,
      transparent 96deg,
      rgba(196, 144, 10, 0.12) 156deg,
      transparent 220deg,
      rgba(13, 43, 85, 0.14) 286deg,
      transparent 360deg
    );
  mask-image: radial-gradient(circle at 50% 50%, #000 0 34%, transparent 66%);
  pointer-events: none;
}

.hero-visuals {
  --hero-progress: 0;
  z-index: 0;
  transform: translateY(var(--hero-y, 0px)) scale(var(--hero-scale, 1));
  transition: transform 0.08s linear;
}

.hero-tile {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(34px, 4.2vw, 68px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: calc(7px + var(--hero-progress, 0) * 5px);
  background-image: linear-gradient(rgba(255, 255, 255, 0.02), rgba(13, 43, 85, 0.05)), url("assets/service-visuals-sheet.png");
  background-size: 500% 200%;
  background-position: var(--tile-x) var(--tile-y);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  opacity: var(--tile-opacity, 0.44);
  transform:
    translate(-50%, -50%)
    translate(var(--tx, var(--start-x)), var(--ty, var(--start-y)))
    rotate(var(--rot, var(--start-r)))
    scale(var(--tile-scale, var(--start-s)));
  transition: opacity 0.08s linear;
}

.hero-tile.ghost {
  filter: saturate(0.88) contrast(0.95);
}

.hero-pin::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(255, 255, 255, var(--hero-light, 0)), transparent);
  pointer-events: none;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 49%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, calc(0.34 - var(--hero-progress, 0) * 0.28)) 54%, rgba(0, 0, 0, calc(0.86 - var(--hero-progress, 0) * 0.86)) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
  transform: translateY(var(--hero-content-y, 0px));
  opacity: var(--hero-content-opacity, 1);
}

.eyebrow,
.section-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--teal-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  margin: 0;
  max-width: none;
  margin-inline: auto;
  color: var(--hero-text-color, #d7d7d7);
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero h1 span,
.hero h2 span {
  display: inline-block;
  color: var(--hero-script-color, #ffffff);
  font-family: var(--heading-font);
  font-style: normal;
  font-size: 1em;
  font-weight: 500;
  line-height: 0;
  transform: none;
  margin: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 1.35rem auto 2rem;
  padding: 1rem 1.15rem;
  color: var(--hero-copy-color, rgba(255, 255, 255, 0.56));
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  opacity: var(--hero-copy-opacity, 0);
  transform: translateY(var(--hero-copy-y, 10px));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, calc(0.14 + var(--hero-light, 0) * 0.34));
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, calc(0.1 + var(--hero-light, 0) * 0.48)), rgba(255, 255, 255, calc(0.02 + var(--hero-light, 0) * 0.22))),
    radial-gradient(circle at 18% 0%, rgba(0, 181, 165, calc(0.18 + var(--hero-light, 0) * 0.16)), transparent 42%),
    radial-gradient(circle at 86% 120%, rgba(196, 144, 10, calc(0.1 + var(--hero-light, 0) * 0.14)), transparent 44%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -18px 44px rgba(255, 255, 255, calc(0.02 + var(--hero-light, 0) * 0.16)),
    0 20px 60px rgba(7, 23, 41, calc(0.08 + var(--hero-light, 0) * 0.08));
  backdrop-filter: blur(18px) saturate(1.45);
}

.hero .hero-copy {
  color: #78e493;
}

.hero-mission {
  max-width: 720px;
  margin: 0 auto;
}

.hero-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 700px;
  margin: -0.95rem auto 0;
  opacity: var(--hero-copy-opacity, 0);
  transform: translateY(calc(var(--hero-copy-y, 10px) + 4px));
}

.hero-mission-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.58rem 0.72rem;
  color: var(--hero-text-color, #f6f6f4);
  background:
    linear-gradient(135deg, rgba(7, 23, 41, 0.34), rgba(0, 133, 122, 0.14)),
    rgba(255, 255, 255, calc(0.08 + var(--hero-light, 0) * 0.2));
  border: 1px solid rgba(120, 228, 147, calc(0.16 + var(--hero-light, 0) * 0.22));
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 14px 36px rgba(7, 23, 41, 0.1);
  backdrop-filter: blur(14px) saturate(1.3);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.hero-copy::before {
  inset: 1px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.62), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.42), transparent 22%);
  mix-blend-mode: screen;
  opacity: calc(0.32 + var(--hero-light, 0) * 0.24);
}

.hero-copy::after {
  inset: -42% -18%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.42) 48%, transparent 56%);
  transform: translateX(calc(-38% + var(--hero-copy-opacity, 0) * 74%)) rotate(6deg);
  opacity: var(--hero-copy-opacity, 0);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  opacity: var(--hero-actions-opacity, 0);
  transform: translateY(var(--hero-actions-y, 10px));
}

.alt-hero {
  position: relative;
  padding: 5rem 1.5rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 181, 165, 0.1), transparent 26rem),
    linear-gradient(180deg, #f5f6f7 0%, #ffffff 100%);
}

.landing-page {
  min-height: 100vh;
  background: #050505;
  transition: background 0.45s ease;
}

.landing-page.alt-light {
  background: #f7f7f4;
}

.alt-hero-home {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--alt-bg, #070808);
  transition: background 0.45s ease;
}

.alt-hero-home .alt-hero-shell {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.alt-hero-home .alt-hero-frame {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  border: 0;
  box-shadow: none;
}

.image-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}

.image-hero > img,
.image-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-hero > img {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 34%;
  transform: scale(1.01);
  transform-origin: center;
  will-change: transform;
  transition: transform 0.18s linear;
}

.motion-ready .image-hero > img {
  transform: scale(calc(1.03 + var(--hero-scroll, 0) * 0.05)) translate3d(0, calc(var(--hero-scroll, 0) * 22px), 0);
}

.image-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.82) 0%, rgba(5, 8, 10, 0.42) 44%, rgba(5, 8, 10, 0.08) 72%),
    linear-gradient(0deg, rgba(5, 8, 10, 0.74) 0%, transparent 55%);
}

.image-hero-content {
  width: min(880px, calc(100% - 3rem));
  margin-left: max(1.5rem, calc((100vw - 1120px) / 2));
  padding: 5rem 0 2rem;
  color: #fff;
}

.image-hero-content > p {
  margin: 0 0 0.65rem;
  color: #78e493;
  font-family: var(--body-font);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.image-hero-content h1,
.image-hero-content h2 {
  margin: 0;
  max-width: 840px;
  font-family: var(--heading-font);
  font-size: clamp(2.55rem, 5.2vw, 5.35rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.image-hero-content:has(> h1:only-child) {
  width: min(760px, calc(100% - 3rem));
}

.image-hero-content > span {
  display: block;
  max-width: 700px;
  margin: 1.15rem 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.image-hero-content > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  color: #071729;
  background: #fff;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.image-hero-content > a:hover {
  background: #78e493;
  transform: translateY(-2px);
}

.image-hero-first {
  min-height: clamp(560px, 72vh, 760px);
}

.image-hero-brand {
  position: absolute;
  left: clamp(1.25rem, 3vw, 2.25rem);
  top: clamp(1.25rem, 3vw, 2.25rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.image-hero-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.one-page-header {
  top: 0;
  z-index: 80;
}

.alt-hero-footer {
  padding: 5rem 1.5rem 1.5rem;
  background: #050505;
}

.alt-hero-footer .alt-hero-frame {
  min-height: 680px;
}

.alt-footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.alt-back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: var(--alt-text);
  border: 1px solid var(--alt-line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.alt-footer-meta {
  position: absolute;
  left: 2.25rem;
  right: 2.25rem;
  bottom: 1.25rem;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: var(--alt-muted);
  border-top: 1px solid var(--alt-line);
  font-size: 0.78rem;
}

.alt-footer-meta a {
  color: inherit;
}

.alt-hero-shell {
  position: relative;
  width: min(1120px, 100%);
  min-height: 580px;
  margin: 0 auto;
}

.alt-vortex-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  pointer-events: none;
}

.alt-hero-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--alt-border, rgba(7, 23, 41, 0.16));
  background: var(--alt-bg, #070808);
  box-shadow: 0 34px 90px rgba(7, 23, 41, 0.22);
  transition: background 0.45s ease, border-color 0.45s ease, color 0.45s ease;
}

.alt-hero-frame::before,
.alt-hero-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.alt-hero-frame::before {
  inset: 1.35rem;
  border: 1px solid var(--alt-line, rgba(255, 255, 255, 0.16));
}

.alt-hero-frame::after {
  inset: 0;
  background:
    linear-gradient(90deg, var(--alt-bg, #070808) 0%, transparent 46%),
    radial-gradient(circle at 64% 50%, transparent 0 15rem, rgba(0, 0, 0, 0.14) 32rem);
}

.alt-hero[data-mode="light"] {
  --alt-bg: #f7f7f4;
  --alt-text: #101417;
  --alt-muted: rgba(16, 20, 23, 0.62);
  --alt-line: rgba(7, 23, 41, 0.13);
  --alt-border: rgba(7, 23, 41, 0.16);
  --alt-button-bg: #101417;
  --alt-button-text: #fff;
}

.alt-hero[data-mode="dark"] {
  --alt-bg: #070808;
  --alt-text: #f4f2ec;
  --alt-muted: rgba(244, 242, 236, 0.66);
  --alt-line: rgba(255, 255, 255, 0.16);
  --alt-border: rgba(255, 255, 255, 0.14);
  --alt-button-bg: #f4f2ec;
  --alt-button-text: #070808;
}

.alt-hero-copy {
  position: absolute;
  left: clamp(2.5rem, 5.6vw, 4.2rem);
  bottom: clamp(2.5rem, 6vw, 4.4rem);
  z-index: 3;
  width: min(420px, calc(100% - 4rem));
  color: var(--alt-text);
}

.alt-kicker {
  margin: 0 0 1.2rem;
  color: var(--alt-muted);
  font-family: var(--heading-font);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.alt-hero-copy h1,
.alt-hero-copy h2 {
  margin: 0 0 0.9rem;
  color: var(--alt-text);
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.alt-hero-copy p:not(.alt-kicker) {
  max-width: 380px;
  margin: 0 0 1.7rem;
  color: var(--alt-muted);
  font-family: var(--heading-font);
  font-size: clamp(1.25rem, 2.4vw, 2.15rem);
  line-height: 1.05;
}

.alt-cta {
  appearance: none;
  border: 0;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.18rem;
  color: #071729;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, #78e493 0%, #00b5a5 48%, #ffffff 100%);
  border: 1px solid rgba(120, 228, 147, 0.64);
  border-radius: 999px;
  box-shadow:
    0 16px 36px rgba(0, 181, 165, 0.2),
    0 0 34px rgba(120, 228, 147, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-family: var(--body-font);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.alt-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 28%, rgba(255, 255, 255, 0.56) 42%, transparent 58% 100%);
  transform: translateX(-140%);
  transition: transform 0.52s ease;
  pointer-events: none;
}

.alt-cta:hover,
.alt-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 46px rgba(0, 181, 165, 0.28),
    0 0 42px rgba(120, 228, 147, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: translateY(-2px);
}

.alt-cta:hover::after,
.alt-cta:focus-visible::after {
  transform: translateX(140%);
}

.alt-hero-mark {
  position: absolute;
  left: 65%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(96px, 12vw, 150px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  isolation: isolate;
  contain: layout paint;
}

.alt-hero-mark img {
  width: 78%;
  height: 78%;
  object-fit: cover;
  border-radius: 20px;
  filter: contrast(1.04) saturate(1.05);
}

.alt-hero-mark video {
  position: absolute;
  inset: -9%;
  width: 118%;
  height: 118%;
  object-fit: cover;
  border-radius: 999px;
  transform: scale(1.08);
  opacity: 0;
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition: opacity 320ms linear;
}

.alt-hero-mark video.is-active {
  opacity: 1;
}

.alt-hero[data-mode="light"] .alt-hero-mark video {
  filter: contrast(1.08) saturate(1.08);
  mix-blend-mode: normal;
}

.alt-hero[data-mode="dark"] .alt-hero-mark {
  background: #070808;
}

.alt-hero[data-mode="dark"] .alt-hero-mark video {
  filter: invert(1) hue-rotate(180deg) contrast(1.22) brightness(1.08) saturate(1.12);
  mix-blend-mode: screen;
}

.alt-mode-toggle {
  position: absolute;
  right: 2.25rem;
  top: 2.25rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: 38px;
  padding: 0;
  color: var(--alt-text);
  background: color-mix(in srgb, var(--alt-bg), transparent 15%);
  border: 1px solid var(--alt-line);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.alt-mode-toggle:hover,
.alt-mode-toggle:focus-visible {
  border-color: rgba(120, 228, 147, 0.62);
  box-shadow: 0 0 24px rgba(0, 181, 165, 0.2);
  transform: translateY(-1px);
}

.alt-mode-toggle i {
  font-size: 1rem;
}

.model-strip {
  background: var(--teal-wash);
  border-block: 1px solid var(--border-teal);
  padding: 1.2rem 2rem;
}

.model-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.model-inner span {
  flex-shrink: 0;
  color: var(--teal);
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-teal);
  border-radius: 8px;
  list-style: none;
}

.model-inner li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  color: var(--navy);
  background: #fff;
  border-right: 1px solid var(--border-teal);
  font-size: 0.84rem;
  font-weight: 700;
}

.model-inner li:last-child {
  border-right: 0;
}

.model-inner i,
.primary-btn i,
.secondary-btn i {
  color: var(--teal-light);
  font-size: 1rem;
}

.section {
  padding: 4.5rem 2rem;
}

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

.section-title {
  max-width: 760px;
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.1vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
}

.section-desc {
  max-width: 720px;
  margin: 0;
  color: var(--mid);
  font-size: 1rem;
  font-weight: 300;
}

.services-stage {
  position: relative;
  width: min(100%, 1120px);
  margin: 3rem auto 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.services-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(0, 181, 165, 0.34), transparent 18rem);
  transition: opacity 0.2s ease;
}

.services-stage.pointer-active .services-orbit {
  opacity: 1;
}

.services-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 1.75rem;
  row-gap: 2.25rem;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.service-groups-grid {
  grid-template-columns: repeat(2, minmax(390px, 1fr));
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: min(1040px, 100%);
  margin-inline: auto;
  padding: 0;
}

.service-card {
  --proximity: 0;
  --service-scale: 1;
  --service-lift: 0px;
  --service-depth: 0;
  min-width: 0;
  padding: 0;
  color: var(--dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  transform: translateY(var(--service-lift)) scale(var(--service-scale));
  transform-origin: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: visible;
  transition:
    transform 0.12s ease-out;
  will-change: transform;
  z-index: 1;
}

.service-groups-grid .service-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.service-art {
  position: relative;
  aspect-ratio: 1 / 0.92;
  min-height: 126px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-image:
    linear-gradient(180deg, rgba(7, 23, 41, 0.02) 0%, rgba(7, 23, 41, 0.05) 42%, rgba(7, 23, 41, 0.26) 100%),
    url("assets/service-visuals-sheet.png");
  background-size: 100% 100%, 500% 200%;
  background-position: center, var(--service-bg-x) var(--service-bg-y);
  background-repeat: no-repeat;
  border: 1px solid rgba(13, 43, 85, 0.1);
  box-shadow:
    0 calc(10px + var(--proximity) * 20px) calc(22px + var(--proximity) * 34px) rgba(7, 23, 41, calc(0.08 + var(--proximity) * 0.12)),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.service-card.has-custom-service-image .service-art {
  background-image:
    linear-gradient(180deg, rgba(7, 23, 41, 0.02) 0%, rgba(7, 23, 41, 0.05) 42%, rgba(7, 23, 41, 0.28) 100%),
    var(--service-bg-image);
  background-size: 100% 100%, cover;
  background-position: center, center;
}

.service-groups-grid .service-art {
  aspect-ratio: 0.72 / 1;
  border: 0;
  min-height: 0;
  box-shadow: 0 18px 42px rgba(7, 23, 41, 0.1);
}

.service-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(180deg, transparent 42%, rgba(7, 23, 41, calc(0.08 + var(--proximity) * 0.1)) 100%);
  opacity: calc(0.54 + var(--proximity) * 0.12);
  pointer-events: none;
}

.service-art > *,
.service-caption {
  position: relative;
  z-index: 1;
}

.service-num {
  position: absolute;
  left: 0.75rem;
  top: 0.7rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--heading-font);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-icon {
  display: grid;
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  color: #fff;
  background: rgba(255, 255, 255, calc(0.14 + var(--proximity) * 0.1));
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xs);
  transform: scale(calc(1 + var(--proximity) * 0.14));
  transition: transform 0.12s ease-out, background 0.2s ease, color 0.2s ease;
}

.service-groups-grid .service-icon {
  right: 0.85rem;
  bottom: 0.85rem;
  width: 44px;
  height: 44px;
}

.service-groups-grid .service-icon i {
  font-size: 1.32rem;
}

.service-icon i {
  font-size: 1.12rem;
}

.service-name {
  min-height: 0;
  margin: 0;
  color: var(--dark);
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: none;
}

.service-groups-grid .service-name {
  max-width: 100%;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.05;
}

.service-card:not(.active) .service-name {
  color: var(--dark);
}

.service-full-name {
  margin-top: 0.2rem;
  color: var(--mid);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
}

.service-groups-grid .service-full-name {
  max-width: 100%;
  margin-top: 0.45rem;
  color: #4b5563;
  font-size: 0.82rem;
  line-height: 1.4;
}

.service-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.service-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0.24rem 0.52rem;
  color: var(--navy);
  background: rgba(230, 244, 242, 0.74);
  border: 1px solid rgba(0, 133, 122, 0.18);
  border-radius: var(--radius-xs);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-top: 0.45rem;
  padding: 0.1rem 0.55rem;
  color: var(--teal);
  background: var(--teal-wash);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

.service-tag.new {
  color: var(--gold);
  background: var(--gold-light);
}

.service-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  width: fit-content;
  min-height: 28px;
  margin-top: 0.55rem;
  padding: 0.25rem 0.65rem;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 244, 242, 0.62)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 133, 122, 0.24);
  border-radius: var(--radius-xs);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(7, 23, 41, 0.05);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.service-more i {
  color: var(--teal);
  font-size: 0.82rem;
}

.service-card.active .service-num {
  color: rgba(255, 255, 255, 0.82);
}

.service-card.active .service-name {
  color: var(--navy);
}

.service-card.active .service-icon {
  background: rgba(255, 255, 255, 0.22);
}

.service-card.active .service-tag {
  color: var(--teal);
  background: var(--teal-wash);
}

.service-card.active .service-tag.new {
  color: #ffbf3f;
  background: rgba(196, 144, 10, 0.24);
}

.service-card:hover .service-more,
.service-card:focus-visible .service-more,
.service-card.active .service-more {
  color: var(--teal);
  border-color: rgba(0, 181, 165, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 24px rgba(0, 133, 122, 0.14),
    0 0 20px rgba(0, 181, 165, 0.18);
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .service-icon {
    background: rgba(255, 255, 255, 0.14);
  }

  .service-card:not(.active) .service-name {
    color: var(--dark);
  }
}

.service-card.active,
.service-card:hover {
  z-index: 3;
}

.detail-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--navy);
}

.detail-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--teal-light);
  background: rgba(0, 181, 165, 0.18);
  border-radius: var(--radius-xs);
}

.detail-icon i {
  font-size: 1.7rem;
}

.detail-title {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.detail-sub {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
}

.detail-body {
  padding: 2rem;
  background: #fff;
}

.detail-desc {
  max-width: 900px;
  margin: 0 0 1.65rem;
  color: #374151;
}

.detail-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.detail-col-title {
  margin-bottom: 0.8rem;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-col-title.teal {
  color: var(--teal);
}

.detail-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #374151;
}

.detail-list li {
  margin-bottom: 0.5rem;
}

.detail-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.detail-service-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(230, 244, 242, 0.3)),
    #fff;
  border: 1px solid rgba(13, 43, 85, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(7, 23, 41, 0.06);
}

.detail-service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--teal);
  background: var(--teal-wash);
  border-radius: var(--radius-xs);
}

.detail-service-icon i {
  font-size: 1.25rem;
}

.detail-service-grid h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.02rem;
  line-height: 1.15;
}

.detail-service-grid p {
  margin: 0.32rem 0 0.65rem;
  color: var(--mid);
  font-size: 0.88rem;
  line-height: 1.45;
}

.detail-service-grid ul {
  margin: 0;
  padding-left: 1rem;
  color: #374151;
  font-size: 0.84rem;
  line-height: 1.45;
}

.detail-service-grid li {
  margin-bottom: 0.28rem;
}

.model-box,
.upsell-strip {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.model-box {
  color: var(--navy);
  background: var(--teal-wash);
}

.model-box i,
.upsell-strip i {
  margin-top: 0.25rem;
  font-size: 1.2rem;
}

.model-box-title,
.upsell-label {
  font-family: var(--heading-font);
  font-weight: 800;
}

.model-box-text,
.upsell-text {
  color: #374151;
  font-size: 0.95rem;
}

.upsell-strip {
  color: #7a5a05;
  background: var(--gold-light);
}

.upsell-text a {
  color: #7a5a05;
  font-weight: 800;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
}

.service-modal.open {
  pointer-events: auto;
  visibility: visible;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 41, 0);
  backdrop-filter: blur(0);
  transition: background 0.26s ease, backdrop-filter 0.26s ease;
}

.service-modal.open .service-modal-backdrop {
  background: rgba(7, 23, 41, 0.58);
  backdrop-filter: blur(10px);
}

.service-modal-card {
  position: relative;
  width: min(980px, calc(100vw - 2rem));
  max-height: min(82vh, 820px);
  overflow: hidden auto;
  color: var(--dark);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-md);
  box-shadow: 0 38px 110px rgba(7, 23, 41, 0.42);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.service-modal.open.ready .service-modal-card {
  opacity: 1;
  transform: scale(1);
}

.service-modal-close {
  position: sticky;
  top: 0.85rem;
  z-index: 4;
  float: right;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0.85rem 0.85rem -3rem 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.service-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.service-modal-content {
  clear: both;
}

.service-transition-clone {
  position: fixed;
  z-index: 120;
  pointer-events: none;
  transform-origin: top left;
  overflow: hidden;
  border-radius: var(--radius-xs);
}

body.service-modal-lock {
  overflow: hidden;
}

.who-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 181, 165, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.who-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 43, 85, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 43, 85, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  pointer-events: none;
}

.who-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.who-copy p:not(.section-eyebrow) {
  max-width: 660px;
  margin: 0 0 1rem;
  color: #374151;
  font-size: 1rem;
}

.who-panel {
  display: grid;
  gap: 0.9rem;
}

.who-panel article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.35rem 0.9rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(230, 244, 242, 0.36)),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 133, 122, 0.18);
  border-radius: var(--radius-sm);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 44px rgba(7, 23, 41, 0.07);
  backdrop-filter: blur(14px);
}

.who-panel i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--teal);
  background: var(--teal-wash);
  border-radius: var(--radius-xs);
  font-size: 1.35rem;
}

.who-panel strong {
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.02rem;
  line-height: 1.2;
}

.who-panel span {
  color: var(--mid);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1rem;
  pointer-events: none;
  visibility: hidden;
}

.contact-modal.open {
  pointer-events: auto;
  visibility: visible;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 41, 0);
  backdrop-filter: blur(0);
  transition: background 0.24s ease, backdrop-filter 0.24s ease;
}

.contact-modal.open .contact-modal-backdrop {
  background: rgba(7, 23, 41, 0.62);
  backdrop-filter: blur(12px);
}

.contact-modal-card {
  position: relative;
  width: min(720px, calc(100vw - 2rem));
  max-height: min(88vh, 820px);
  overflow: hidden auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 10% 0%, rgba(120, 228, 147, 0.16), transparent 18rem),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: 0 40px 120px rgba(7, 23, 41, 0.42);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.contact-modal.open .contact-modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--navy);
  background: rgba(230, 244, 242, 0.78);
  border: 1px solid rgba(0, 133, 122, 0.2);
  border-radius: 999px;
  cursor: pointer;
}

.contact-modal-head {
  padding-right: 2.5rem;
}

.contact-modal-head h2 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.contact-modal-head p:not(.section-eyebrow) {
  max-width: 560px;
  margin: 0.8rem 0 0;
  color: var(--mid);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.82rem;
  color: var(--dark);
  background: rgba(247, 248, 250, 0.88);
  border: 1px solid rgba(13, 43, 85, 0.13);
  border-radius: var(--radius-xs);
  font: inherit;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: rgba(0, 181, 165, 0.58);
  box-shadow: 0 0 0 4px rgba(0, 181, 165, 0.12);
}

.contact-form-wide,
.contact-submit {
  grid-column: 1 / -1;
}

body.contact-modal-lock {
  overflow: hidden;
}

.sectors-section {
  background: var(--off-white);
}

.sector-grid,
.ecosystem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.sector-grid article,
.ecosystem-cards article {
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.sector-grid i {
  color: var(--teal);
  font-size: 1.7rem;
}

.sector-grid h3 {
  margin: 0.7rem 0 0.45rem;
  color: var(--navy);
  font-family: var(--heading-font);
  line-height: 1.2;
}

.sector-grid p,
.ecosystem-cards p {
  margin: 0;
  color: var(--mid);
  font-size: 0.95rem;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.ecosystem-cards {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.ecosystem-cards strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-family: var(--heading-font);
}

.cta-section {
  padding: 4.5rem 2rem;
  color: #fff;
  background: var(--navy);
}

.cta-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.cta-inner h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.08;
}

.cta-inner p:not(.section-eyebrow) {
  max-width: 720px;
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.74);
}

.cta-inner .primary-btn {
  background: var(--teal);
}

.site-footer {
  padding: 1.75rem 2rem;
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy-deep);
  font-size: 0.9rem;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.05rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer p {
  margin: 0.2rem 0;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
  }

  .brand-slogan {
    max-width: 13rem;
    font-size: 0.52rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .nav-links {
    order: 3;
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.1rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0.45rem 0.68rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 0.8rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background:
      radial-gradient(ellipse at 50% 49%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, calc(0.34 - var(--hero-progress, 0) * 0.28)) 54%, rgba(0, 0, 0, calc(0.86 - var(--hero-progress, 0) * 0.86)) 100%);
  }

  .hero-content {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 4rem 0;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(1.42rem, 8vw, 2.6rem);
  }

  .hero-mission-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: min(100%, 360px);
  }

  .hero-tile {
    width: clamp(30px, 9vw, 54px);
  }

  .alt-hero {
    padding: 3.5rem 1rem;
  }

  .alt-hero-shell,
  .alt-hero-frame {
    min-height: 640px;
  }

  .alt-hero-copy {
    left: 1.75rem;
    bottom: 2rem;
    width: calc(100% - 3.5rem);
  }

  .alt-hero-copy h2 {
    font-size: clamp(2.35rem, 13vw, 4.8rem);
  }

  .alt-hero-copy p:not(.alt-kicker) {
    font-size: clamp(1.1rem, 6vw, 1.85rem);
  }

  .alt-hero-mark {
    left: 62%;
    top: 34%;
  }

  .alt-mode-toggle {
    right: 1.4rem;
    top: 1.4rem;
  }

  .image-hero {
    min-height: 620px;
  }

  .image-hero > img {
    object-position: 50% 34%;
  }

  .image-hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 8, 10, 0.9) 0%, rgba(5, 8, 10, 0.5) 58%, rgba(5, 8, 10, 0.08) 100%);
  }

  .image-hero-content {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 3.25rem 0 1.6rem;
  }

  .image-hero-content h1,
  .image-hero-content h2 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .alt-hero-footer {
    padding: 3.5rem 0 0;
  }

  .alt-hero-footer .alt-hero-frame {
    min-height: 720px;
    border-inline: 0;
  }

  .alt-footer-meta {
    left: 1.5rem;
    right: 1.5rem;
    flex-direction: column;
    gap: 0.3rem;
  }

  .model-inner,
  .detail-cols,
  .sector-grid,
  .ecosystem-layout,
  .who-layout {
    grid-template-columns: 1fr;
  }

  .model-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .model-inner ul {
    width: 100%;
  }

  .model-inner li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--border-teal);
  }

  .section,
  .cta-section {
    padding: 3.25rem 1rem;
  }

  .who-panel article {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .who-panel i {
    width: 40px;
    height: 40px;
  }

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

  .detail-header,
  .detail-body {
    padding: 1.25rem;
  }

  .service-modal {
    padding: 0.75rem;
    place-items: end center;
  }

  .service-modal-card {
    width: 100%;
    max-height: 88vh;
    border-radius: 12px 12px 0 0;
  }

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

  .service-groups-grid {
    grid-template-columns: 1fr;
    width: min(640px, 100%);
  }

  .service-groups-grid .service-art {
    aspect-ratio: 0.78 / 1;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

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

  .service-groups-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: min(340px, 100%);
  }

  .service-groups-grid .service-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-art {
    min-height: 132px;
    border-radius: 20px;
  }

  .service-groups-grid .service-art {
    aspect-ratio: 0.82 / 1;
    min-height: 0;
  }

  .service-groups-grid .service-name {
    font-size: clamp(1.45rem, 9vw, 2.05rem);
  }

  .service-pill-row span {
    font-size: 0.68rem;
  }

  .detail-service-grid {
    grid-template-columns: 1fr;
  }

  .service-name {
    font-size: 0.86rem;
  }

  .service-full-name {
    font-size: 0.72rem;
  }
}

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

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

  .service-card {
    transform: none !important;
  }

  .hero-vortex {
    display: none;
  }
}

/* Compact closing experience for the merged one-page site. */
.one-page-site .one-page-header {
  width: 100%;
}

.one-page-site .alt-hero-footer {
  padding: 0;
  background: #050505;
}

.one-page-site .alt-hero-footer .alt-hero-shell {
  width: 100%;
  min-height: 440px;
}

.one-page-site .alt-hero-footer .alt-hero-frame {
  min-height: 440px;
  border: 0;
  box-shadow: none;
}

.one-page-site .alt-hero-footer .alt-hero-copy {
  left: clamp(1.5rem, 5vw, 4rem);
  bottom: 4.5rem;
  width: min(620px, calc(100% - 3rem));
}

.one-page-site .alt-hero-footer .alt-hero-copy h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.one-page-site .alt-hero-footer .alt-hero-copy p:not(.alt-kicker) {
  max-width: 540px;
  margin-bottom: 1.15rem;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.45;
}

.one-page-site .alt-hero-footer .alt-hero-mark {
  left: 78%;
  width: clamp(76px, 8vw, 108px);
}

.one-page-site .alt-hero-footer .alt-footer-meta {
  bottom: 0.85rem;
}

@media (max-width: 820px) {
  .one-page-site .alt-hero-footer .alt-hero-shell,
  .one-page-site .alt-hero-footer .alt-hero-frame {
    min-height: 560px;
  }

  .one-page-site .alt-hero-footer .alt-hero-copy {
    left: 1.25rem;
    bottom: 6.8rem;
    width: calc(100% - 2.5rem);
  }

  .one-page-site .alt-hero-footer .alt-hero-mark {
    left: 74%;
    top: 27%;
    width: 80px;
  }

  .one-page-site .alt-footer-meta {
    left: 1.25rem;
    right: 1.25rem;
  }
}

.one-page-site .site-footer {
  position: relative;
  min-height: 540px;
  padding: 1.25rem;
  overflow: hidden;
  color: #f5f7f4;
  background:
    linear-gradient(145deg, #020504 0%, #030807 48%, #000 100%);
  font-size: 1rem;
  text-align: left;
  isolation: isolate;
}

.site-footer::before,
.site-footer::after,
.footer-smoke {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-footer::before {
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 46% 34%, rgba(184, 199, 194, 0.14), transparent 0 18rem),
    radial-gradient(ellipse at 24% 72%, rgba(184, 199, 194, 0.1), transparent 0 20rem),
    radial-gradient(ellipse at 76% 70%, rgba(76, 118, 104, 0.12), transparent 0 18rem);
  filter: blur(18px);
  opacity: 0.9;
  animation: footerAtmosphere 18s ease-in-out infinite alternate;
}

.site-footer::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%);
  background-size: 100% 120px, 140px 100%;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}

.footer-smoke {
  inset: -10% -6%;
  z-index: 1;
  background:
    conic-gradient(from 210deg at 50% 58%, transparent 0 16%, rgba(190, 205, 201, 0.16) 21%, transparent 30% 44%, rgba(190, 205, 201, 0.12) 52%, transparent 63% 100%);
  filter: blur(36px);
  opacity: 0.72;
  transform: rotate(-8deg) scale(1.15);
  animation: footerSmokeDrift 22s ease-in-out infinite alternate;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(1320px, 100%);
  min-height: 500px;
  margin: 0 auto;
  padding: 1.25rem 0 0;
}

.footer-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(245, 247, 244, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 3rem;
  align-items: start;
  margin-top: 1.1rem;
}

.footer-callout h2 {
  max-width: 560px;
  margin: 0;
  color: #f7f8f4;
  font-family: var(--heading-font);
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.footer-collab {
  padding-top: 3.6rem;
}

.footer-line-cta {
  appearance: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 320px);
  min-height: 54px;
  padding: 0.9rem 1.05rem 0.9rem 1.2rem;
  color: #06100d;
  background:
    linear-gradient(135deg, #f7f8f4 0%, #c8f5d2 54%, #78e493 100%);
  border: 1px solid rgba(120, 228, 147, 0.62);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(120, 228, 147, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.footer-line-cta i {
  font-size: 0.95rem;
  color: #06100d;
  transition: transform 0.22s ease;
}

.footer-line-cta:hover,
.footer-line-cta:focus-visible {
  border-color: rgba(245, 247, 244, 0.86);
  box-shadow:
    0 22px 54px rgba(120, 228, 147, 0.28),
    0 0 30px rgba(120, 228, 147, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
}

.footer-line-cta:hover i,
.footer-line-cta:focus-visible i {
  transform: translateX(6px);
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) minmax(170px, 1fr) minmax(250px, 1.35fr) minmax(140px, 0.9fr) minmax(140px, 0.8fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: start;
  margin-top: auto;
  padding-top: 2.7rem;
  color: rgba(245, 247, 244, 0.7);
}

.footer-directory > div {
  display: grid;
  gap: 0.44rem;
  align-content: start;
}

.footer-directory span {
  margin-bottom: 0.25rem;
  color: rgba(245, 247, 244, 0.36);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-directory a,
.footer-directory button,
.footer-directory p {
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
}

.footer-directory a,
.footer-directory button {
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-directory a:hover,
.footer-directory a:focus-visible,
.footer-directory button:hover,
.footer-directory button:focus-visible {
  color: #78e493;
  transform: translateX(3px);
}

.footer-contact-link {
  display: grid;
  gap: 0.12rem;
}

.footer-contact-link strong {
  color: rgba(245, 247, 244, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-contact-link span {
  margin: 0;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.footer-address-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.72rem;
  align-items: center;
  max-width: 300px;
  padding: 0.72rem 0.78rem;
  color: rgba(245, 247, 244, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.footer-address-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #78e493;
  background: rgba(120, 228, 147, 0.12);
  border: 1px solid rgba(120, 228, 147, 0.2);
  border-radius: 12px;
  font-size: 1rem;
}

.footer-address-link span {
  margin: 0;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.footer-address-link:hover,
.footer-address-link:focus-visible {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(120, 228, 147, 0.14), rgba(255, 255, 255, 0.06));
  border-color: rgba(120, 228, 147, 0.42);
  transform: translateY(-2px);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  color: rgba(245, 247, 244, 0.9);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.footer-social-btn i {
  font-size: 1.1rem;
}

.footer-social-btn:hover,
.footer-social-btn:focus-visible {
  color: #06100d;
  background: #78e493;
  border-color: rgba(120, 228, 147, 0.82);
  transform: translateY(-2px);
}

.footer-register {
  min-height: 88px;
  justify-content: space-between;
}

.footer-wordmark {
  width: 100%;
  margin-top: 1.35rem;
  overflow-wrap: anywhere;
  color: transparent;
  background:
    repeating-linear-gradient(180deg, rgba(245, 247, 244, 0.38) 0 1px, transparent 1px 11px);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(245, 247, 244, 0.06);
  font-family: var(--heading-font);
  font-size: 9rem;
  font-weight: 800;
  line-height: 0.72;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0.72;
}

@keyframes footerAtmosphere {
  from {
    transform: translate3d(-2rem, -1rem, 0) scale(1);
  }

  to {
    transform: translate3d(2rem, 1.5rem, 0) scale(1.08);
  }
}

@keyframes footerSmokeDrift {
  from {
    transform: rotate(-10deg) translate3d(-2%, 1%, 0) scale(1.12);
  }

  to {
    transform: rotate(-3deg) translate3d(3%, -2%, 0) scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer::before,
  .footer-smoke {
    animation: none;
  }
}

@media (max-width: 1020px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-callout h2 {
    font-size: 2.6rem;
  }

  .footer-collab {
    padding-top: 0;
  }

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

  .footer-wordmark {
    font-size: 6.4rem;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .one-page-site .site-footer {
    min-height: auto;
    padding: 1rem;
  }

  .footer-inner {
    min-height: 560px;
    padding-top: 1.1rem;
  }

  .footer-topline {
    flex-direction: column;
    gap: 0.35rem;
  }

  .footer-callout h2 {
    max-width: 340px;
    font-size: 2.15rem;
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-top: 2.2rem;
  }

  .footer-register {
    min-height: auto;
  }

  .footer-wordmark {
    margin-top: 1.8rem;
    font-size: 3.6rem;
    line-height: 0.82;
  }
}

@media (max-width: 420px) {
  .footer-callout h2 {
    font-size: 1.95rem;
  }

  .footer-wordmark {
    font-size: 3rem;
  }
}
