:root {
  color-scheme: light;
  --ink: #0f1a1a;
  --muted: #5c6760;
  --line: #d8e2dc;
  --page: #f7faf8;
  --panel: #ffffff;
  --green: #1D6D68;
  --leaf: #2A9D8F;
  --accent: #2A9D8F;
  --brand-green: #7FC174;
  --brand-teal: #2A9D8F;
  --brand-mid: #1D6D68;
  --brand-deep: #0E4A46;
  --gradient-brand: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-mid) 32%, var(--brand-teal) 62%, var(--brand-green) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(42, 157, 143, 0.12), rgba(127, 193, 116, 0.12));
  --shadow: 0 20px 55px rgba(15, 26, 26, 0.12);
  --max: 1160px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "univia-pro", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-accent: "Instrument Serif", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  margin: 0;
}

.eyebrow,
.metric strong,
.process-step::before,
label {
  font-family: var(--font-display);
}

h1 em,
h2 em,
h3 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  padding-right: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.grid .card.reveal:nth-child(1),
.process .process-step.reveal:nth-child(1),
.metric-row .metric.reveal:nth-child(1),
.check-list li.reveal:nth-child(1),
.service-listing > div .service-row.reveal:nth-child(1) {
  transition-delay: 0ms;
}

.grid .card.reveal:nth-child(2),
.process .process-step.reveal:nth-child(2),
.metric-row .metric.reveal:nth-child(2),
.check-list li.reveal:nth-child(2),
.service-listing > div .service-row.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.grid .card.reveal:nth-child(3),
.process .process-step.reveal:nth-child(3),
.metric-row .metric.reveal:nth-child(3),
.check-list li.reveal:nth-child(3),
.service-listing > div .service-row.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.grid .card.reveal:nth-child(4),
.process .process-step.reveal:nth-child(4),
.metric-row .metric.reveal:nth-child(4),
.check-list li.reveal:nth-child(4),
.service-listing > div .service-row.reveal:nth-child(4) {
  transition-delay: 270ms;
}

.grid .card.reveal:nth-child(5),
.process .process-step.reveal:nth-child(5),
.check-list li.reveal:nth-child(5),
.service-listing > div .service-row.reveal:nth-child(5) {
  transition-delay: 360ms;
}

.service-listing > div .service-row.reveal:nth-child(6) {
  transition-delay: 450ms;
}

.service-listing > div .service-row.reveal:nth-child(7) {
  transition-delay: 540ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in-view {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-icon {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  justify-content: center;
  margin-bottom: 14px;
}

.section-icon svg {
  fill: none;
  height: 30px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 30px;
}

.link-arrow {
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}

.link-arrow::after {
  content: "→";
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  transition: transform 0.25s ease;
}

.link-arrow:hover {
  color: var(--accent);
}

.link-arrow:hover::after {
  transform: translateX(5px);
}

.link-arrow.on-dark {
  color: #ffffff;
}

.link-arrow.on-dark:hover {
  color: #A6E6DA;
}

.service-listing {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.service-listing-head p {
  font-size: 17px;
}

.service-row {
  align-items: center;
  border-top: 1px solid var(--line);
  color: inherit;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px 16px;
  position: relative;
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    padding 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-row::before {
  background: linear-gradient(
    90deg,
    rgba(42, 157, 143, 0.12) 0%,
    rgba(127, 193, 116, 0.06) 55%,
    transparent 100%
  );
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-24px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-row::after {
  background: var(--gradient-brand);
  border-radius: 4px;
  content: "";
  height: 62%;
  left: 0;
  position: absolute;
  top: 19%;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  width: 3px;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row:hover {
  color: var(--ink);
  padding-left: 28px;
  padding-right: 28px;
}

.service-row:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.service-row:hover::after {
  transform: scaleY(1);
}

.service-row:hover,
.service-row:hover + .service-row {
  border-top-color: rgba(42, 157, 143, 0.4);
}

.service-row:last-child:hover {
  border-bottom-color: rgba(42, 157, 143, 0.4);
}

.service-row-copy {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.service-row h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.service-row:hover h3 {
  color: var(--brand-mid);
}

.service-row p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.service-row-arrow {
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  height: 42px;
  justify-content: center;
  position: relative;
  transition:
    background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.45s cubic-bezier(0.34, 1.4, 0.52, 1),
    box-shadow 0.35s ease;
  width: 42px;
  z-index: 1;
}

.service-row:hover .service-row-arrow {
  background: var(--gradient-brand);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(42, 157, 143, 0.35);
  color: #ffffff;
  transform: translateX(4px) scale(1.08);
}

.service-listing-head.reveal {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-listing-head.reveal.in-view {
  opacity: 1;
  transform: none;
}

.service-listing .service-row.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.96);
  transition:
    opacity 0.65s cubic-bezier(0.34, 1.4, 0.52, 1),
    transform 0.65s cubic-bezier(0.34, 1.4, 0.52, 1);
}

.service-listing .service-row.reveal.in-view {
  opacity: 1;
  transform: none;
}

.service-listing > div .service-row.reveal:nth-child(1) { transition-delay: 180ms; }
.service-listing > div .service-row.reveal:nth-child(2) { transition-delay: 260ms; }
.service-listing > div .service-row.reveal:nth-child(3) { transition-delay: 340ms; }
.service-listing > div .service-row.reveal:nth-child(4) { transition-delay: 420ms; }
.service-listing > div .service-row.reveal:nth-child(5) { transition-delay: 500ms; }
.service-listing > div .service-row.reveal:nth-child(6) { transition-delay: 580ms; }
.service-listing > div .service-row.reveal:nth-child(7) { transition-delay: 660ms; }

.orbit-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(42, 157, 143, 0.24), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(127, 193, 116, 0.12), transparent 60%),
    linear-gradient(180deg, #0a1f24 0%, #0E4A46 55%, #0a1f24 100%);
  color: #ffffff;
  overflow: hidden;
  padding: 96px 24px;
  position: relative;
}

.orbit-section-bg {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.orbit-bloom {
  border-radius: 50%;
  filter: blur(70px);
  position: absolute;
}

.orbit-bloom-a {
  background: radial-gradient(circle, rgba(166, 230, 218, 0.35), transparent 70%);
  height: 520px;
  left: 20%;
  top: -120px;
  width: 520px;
}

.orbit-bloom-b {
  background: radial-gradient(circle, rgba(127, 193, 116, 0.28), transparent 70%);
  bottom: -80px;
  height: 460px;
  right: 10%;
  width: 460px;
}

.orbit-grain {
  background-image:
    linear-gradient(rgba(166, 230, 218, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 230, 218, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  inset: 0;
  mask-image: radial-gradient(ellipse at center, black 0%, black 50%, transparent 85%);
  opacity: 0.6;
  position: absolute;
}

.orbit-head {
  color: #ffffff;
  margin: 0 auto 48px;
  max-width: 720px;
  position: relative;
  text-align: center;
}

.orbit-head .eyebrow {
  color: #A6E6DA;
}

.orbit-head h2 {
  color: #ffffff;
}

.orbit-head p {
  color: rgba(255, 255, 255, 0.72);
}

.orbit-head .section-icon {
  color: #A6E6DA;
}

.orbit {
  --orbit-radius: 310px;
  --orbit-node-size: 130px;
  aspect-ratio: 1;
  margin: 0 auto;
  max-width: 820px;
  position: relative;
}

.orbit::before {
  animation: orbit-spin 9s linear infinite;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(166, 230, 218, 0.12) 14deg,
    rgba(166, 230, 218, 0.9) 28deg,
    rgba(127, 193, 116, 1) 36deg,
    rgba(166, 230, 218, 0.9) 44deg,
    rgba(166, 230, 218, 0.12) 58deg,
    transparent 80deg,
    transparent 360deg
  );
  border-radius: 50%;
  content: "";
  filter: blur(0.4px);
  height: calc(var(--orbit-radius) * 2 + 20px);
  left: 50%;
  mask: radial-gradient(
    circle,
    transparent calc(50% - 12px),
    #000 calc(50% - 10px),
    #000 50%,
    transparent 50%
  );
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--orbit-radius) * 2 + 20px);
  z-index: 1;
}

.orbit::after {
  display: none;
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-center {
  align-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(166, 230, 218, 0.4), transparent 55%),
    var(--gradient-brand);
  border-radius: 50%;
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.18),
    0 30px 80px rgba(14, 74, 70, 0.6),
    0 0 64px rgba(42, 157, 143, 0.4);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 220px;
  justify-content: center;
  left: 50%;
  padding: 24px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  z-index: 4;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.orbit-center-default,
.orbit-center-active {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  inset: 28px;
  justify-content: center;
  position: absolute;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 2;
}

.orbit-center-active {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.orbit:has(.orbit-node:hover) .orbit-center-default,
.orbit.orbit-active .orbit-center-default {
  opacity: 0;
  transform: scale(0.92);
}

.orbit:has(.orbit-node:hover) .orbit-center-active,
.orbit.orbit-active .orbit-center-active {
  opacity: 1;
  transform: scale(1);
}

.orbit-center-num {
  color: #A6E6DA;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.orbit-center-title {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 6px;
}

.orbit-center-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  line-height: 1.45;
  margin: 0;
  max-width: 100%;
}

.orbit-center-pulse {
  animation: orbit-pulse-out 3.6s cubic-bezier(0.3, 0.7, 0.55, 1) infinite;
  border: 2px solid rgba(166, 230, 218, 0.5);
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.orbit-center-pulse-delay {
  animation-delay: 1.8s;
}

@keyframes orbit-pulse-out {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.orbit:has(.orbit-node:hover) .orbit-center,
.orbit.orbit-active .orbit-center {
  height: 290px;
  transform: translate(-50%, -50%) scale(1);
  width: 290px;
}

.orbit-center {
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes orbit-center-pulse {
  0%, 100% {
    box-shadow:
      0 24px 60px rgba(14, 74, 70, 0.3),
      0 0 0 0 rgba(166, 230, 218, 0);
  }
  50% {
    box-shadow:
      0 24px 60px rgba(14, 74, 70, 0.3),
      0 0 0 18px rgba(166, 230, 218, 0);
  }
}

@keyframes orbit-ring-pulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.orbit:has(.orbit-card:hover) .orbit-center {
  animation-play-state: paused;
  transform: translate(-50%, -50%) scale(1.04);
}

.orbit-center-icon {
  color: #ffffff;
  height: 28px;
  opacity: 0.85;
  position: relative;
  width: 28px;
}

.orbit-center-icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 100%;
}

.orbit-center-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  position: relative;
  text-transform: uppercase;
  transition: font-size 0.25s ease, letter-spacing 0.25s ease;
}

.orbit-center-label.orbit-label-shift {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.orbit-center-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  position: relative;
}

.orbit-item {
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: rotate(calc(var(--angle) * 1deg));
  width: 0;
  z-index: 3;
}

.orbit-node {
  opacity: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(166, 230, 218, 0.28), transparent 55%),
    linear-gradient(160deg, rgba(18, 58, 60, 0.88), rgba(10, 30, 34, 0.8));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(166, 230, 218, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 16px rgba(166, 230, 218, 0.12),
    0 14px 40px rgba(10, 30, 34, 0.55);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  height: var(--orbit-node-size);
  left: calc(var(--orbit-node-size) / -2);
  padding: 0;
  position: absolute;
  text-align: center;
  top: calc((var(--orbit-radius) + var(--orbit-node-size) / 2) * -1);
  transform: rotate(calc(var(--angle) * -1deg));
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
  width: var(--orbit-node-size);
}

.orbit-node::before {
  background: conic-gradient(
    from 0deg,
    rgba(166, 230, 218, 0.8),
    rgba(127, 193, 116, 0.9),
    rgba(42, 157, 143, 0.8),
    rgba(166, 230, 218, 0.8)
  );
  border-radius: 50%;
  content: "";
  inset: -2px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.orbit-node::after {
  background:
    radial-gradient(circle at 30% 25%, rgba(166, 230, 218, 0.3), transparent 55%),
    linear-gradient(160deg, rgba(18, 58, 60, 0.95), rgba(10, 30, 34, 0.9));
  border-radius: 50%;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.orbit-node-icon {
  color: #A6E6DA;
  display: inline-flex;
  height: 30px;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.3s ease;
  width: 30px;
}

.orbit-node-icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 100%;
}

.orbit-node-label {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.orbit-node:hover,
.orbit-node:focus-visible {
  border-color: transparent;
  outline: none;
  transform: rotate(calc(var(--angle) * -1deg)) scale(1.12);
}

.orbit-node:hover::before,
.orbit-node:focus-visible::before {
  opacity: 1;
}

.orbit-node:hover .orbit-node-icon,
.orbit-node:focus-visible .orbit-node-icon {
  color: #ffffff;
  transform: scale(1.12);
}

.orbit-node:hover .orbit-node-label,
.orbit-node:focus-visible .orbit-node-label {
  color: #ffffff;
}

.orbit.in-view .orbit-node {
  animation: orbit-node-drop 0.95s cubic-bezier(0.34, 1.4, 0.52, 1) forwards;
}

.orbit.in-view .orbit-item:nth-child(3) .orbit-node { animation-delay: 0.05s; }
.orbit.in-view .orbit-item:nth-child(4) .orbit-node { animation-delay: 0.22s; }
.orbit.in-view .orbit-item:nth-child(5) .orbit-node { animation-delay: 0.40s; }
.orbit.in-view .orbit-item:nth-child(6) .orbit-node { animation-delay: 0.58s; }
.orbit.in-view .orbit-item:nth-child(7) .orbit-node { animation-delay: 0.76s; }
.orbit.in-view .orbit-item:nth-child(8) .orbit-node { animation-delay: 0.94s; }

@keyframes orbit-node-drop {
  0% {
    opacity: 0;
    transform: rotate(calc(var(--angle) * -1deg)) translateY(-140px) scale(0.8);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(calc(var(--angle) * -1deg)) translateY(0) scale(1);
  }
}

.orbit-detail {
  display: none;
}

.careers-pillars {
  background: linear-gradient(180deg, var(--page) 0%, #f0f6f2 100%);
}

.careers-pillars-head {
  margin: 0 auto 56px;
  max-width: 720px;
  text-align: center;
}

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

.pillar-card {
  align-items: flex-start;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(42, 157, 143, 0.28), rgba(127, 193, 116, 0.28)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 26, 26, 0.06);
  display: flex;
  gap: 22px;
  padding: 28px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  box-shadow: 0 18px 42px rgba(15, 26, 26, 0.12);
  transform: translateY(-4px);
}

.pillar-num {
  color: transparent;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pillar-body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.pillar-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

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

.benefit {
  padding: 8px 0;
}

.benefit-icon {
  align-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(127, 193, 116, 0.35), transparent 60%),
    linear-gradient(135deg, rgba(42, 157, 143, 0.14), rgba(127, 193, 116, 0.14));
  border-radius: 14px;
  color: var(--brand-teal);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 14px;
  width: 48px;
}

.benefit-icon svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 22px;
}

.benefit h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.benefit p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.roles-section {
  background: linear-gradient(180deg, var(--page) 0%, #eaf2ed 100%);
}

.roles-head {
  max-width: 720px;
}

.role-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.role-filter {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.role-filter span {
  background: rgba(42, 157, 143, 0.12);
  border-radius: 999px;
  color: var(--brand-mid);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
}

.role-filter:hover {
  border-color: rgba(42, 157, 143, 0.4);
  color: var(--ink);
}

.role-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.role-filter.is-active span {
  background: rgba(166, 230, 218, 0.22);
  color: #A6E6DA;
}

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

.role-card {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(42, 157, 143, 0.18), rgba(127, 193, 116, 0.18)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--ink);
  display: block;
  padding: 28px 30px;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.role-card::before {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.05), rgba(127, 193, 116, 0.05));
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.role-card:hover {
  box-shadow: 0 20px 44px rgba(15, 26, 26, 0.12);
  transform: translateY(-3px);
}

.role-card:hover::before {
  opacity: 1;
}

.role-card:hover .role-apply span {
  transform: translateX(5px);
}

.role-card.is-hidden {
  display: none;
}

.role-card-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.role-tag {
  background: var(--gradient-brand);
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  text-transform: uppercase;
}

.role-location {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.role-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.role-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 780px;
}

.role-card-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.role-chip {
  background: rgba(42, 157, 143, 0.08);
  border: 1px solid rgba(42, 157, 143, 0.18);
  border-radius: 999px;
  color: var(--brand-mid);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
}

.role-apply {
  align-items: center;
  color: var(--brand-mid);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.04em;
  margin-left: auto;
  text-transform: uppercase;
}

.role-apply span {
  transition: transform 0.25s ease;
}

.roles-empty {
  color: var(--muted);
  font-size: 15px;
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 900px) {
  .pillar-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-card h3 {
    font-size: 20px;
  }

  .role-apply {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .pillar-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    flex-direction: column;
    gap: 10px;
  }

  .role-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}

.orbit-detail-legacy {
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(18, 58, 60, 0.55), rgba(10, 30, 34, 0.65));
  border: 1px solid rgba(166, 230, 218, 0.2);
  border-radius: 18px;
  margin: 48px auto 0;
  max-width: 620px;
  padding: 26px 30px;
  position: relative;
  text-align: center;
}

.orbit-detail::before {
  background: linear-gradient(90deg, transparent, rgba(166, 230, 218, 0.5), transparent);
  content: "";
  height: 1px;
  left: 20%;
  position: absolute;
  right: 20%;
  top: 0;
}

.orbit-detail-meta {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  margin-bottom: 12px;
}

.orbit-detail-num {
  color: #A6E6DA;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.orbit-detail-bar {
  background: linear-gradient(90deg, #A6E6DA, transparent);
  border-radius: 2px;
  display: inline-block;
  height: 2px;
  width: 36px;
}

.orbit-detail h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.22;
  margin-bottom: 8px;
  transition: opacity 0.2s ease;
}

.orbit-detail p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  transition: opacity 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .orbit::before,
  .orbit-center,
  .orbit-center::after,
  .orbit-card,
  .orbit-lines line.active,
  .orbit-dots circle {
    animation: none;
  }
}

.orbit-lines {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.orbit-lines path {
  fill: none;
  stroke: url(#orbitLine);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 3 7;
  stroke-dashoffset: 0;
  transition: stroke-width 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}

.orbit-lines path.active {
  animation: line-flow 1.1s linear infinite;
  filter: drop-shadow(0 0 8px rgba(166, 230, 218, 0.95));
  opacity: 1;
  stroke: #A6E6DA;
  stroke-width: 2.4;
}

@keyframes line-flow {
  to {
    stroke-dashoffset: -40;
  }
}

.orbit-dots circle {
  fill: #2A9D8F;
  opacity: 0.55;
  transition: fill 0.3s ease, r 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  animation: orbit-dot-breath 3s ease-in-out infinite;
  transform-origin: center;
}

.orbit-dots circle:nth-child(1) { animation-delay: 0s; }
.orbit-dots circle:nth-child(2) { animation-delay: 0.5s; }
.orbit-dots circle:nth-child(3) { animation-delay: 1s; }
.orbit-dots circle:nth-child(4) { animation-delay: 1.5s; }
.orbit-dots circle:nth-child(5) { animation-delay: 2s; }
.orbit-dots circle:nth-child(6) { animation-delay: 2.5s; }

.orbit-dots circle.active {
  animation: none;
  fill: #A6E6DA;
  filter: drop-shadow(0 0 10px rgba(166, 230, 218, 1));
  opacity: 1;
  r: 8;
}

.orbit-connections path {
  animation: connection-flow 4s linear infinite;
  fill: none;
  opacity: 0.45;
  stroke: rgba(166, 230, 218, 0.45);
  stroke-dasharray: 3 9;
  stroke-linecap: round;
  stroke-width: 1;
  transition: stroke 0.3s ease, stroke-width 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.orbit-connections path.active {
  filter: drop-shadow(0 0 6px rgba(166, 230, 218, 0.85));
  opacity: 1;
  stroke: #A6E6DA;
  stroke-width: 2;
}

@keyframes connection-flow {
  to {
    stroke-dashoffset: -48;
  }
}

.orbit-connection-pulse circle {
  fill: #A6E6DA;
  filter: drop-shadow(0 0 8px rgba(166, 230, 218, 0.8));
  opacity: 0.85;
  transition: opacity 0.3s ease, r 0.3s ease;
}

.orbit-connection-pulse circle.dim {
  opacity: 0.2;
}

.orbit:has(.orbit-node:hover) .orbit-connection-pulse circle:not(.active-pulse) {
  opacity: 0.15;
}

@keyframes orbit-dot-breath {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.orbit-card-num {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-green));
  border-radius: 999px;
  color: #ffffff;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  padding: 3px 8px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .orbit {
    aspect-ratio: auto;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    margin: 40px auto;
    max-width: 620px;
    padding: 0;
  }

  .orbit::before,
  .orbit::after {
    display: none;
  }

  .orbit-center {
    gap: 10px;
    height: auto;
    left: auto;
    margin-bottom: 8px;
    padding: 24px 28px;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    border-radius: 16px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .orbit-item {
    height: auto;
    left: auto;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
  }

  .orbit-card {
    left: auto;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
  }
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  z-index: 20;
}

body.scrolled-past-hero .site-header {
  background: rgba(10, 36, 40, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom-color: rgba(166, 230, 218, 0.18);
  box-shadow: 0 1px 0 rgba(166, 230, 218, 0.08);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  min-height: 76px;
  padding: 0 24px;
}

.brand img {
  filter: brightness(0) invert(1);
  height: auto;
  width: 176px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  margin-left: auto;
  min-width: 0;
}

.nav-links a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 8px 12px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  gap: 4px;
}

.nav-trigger::after {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  display: inline-block;
  height: 6px;
  margin-top: -3px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  width: 6px;
}

.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.submenu {
  background: rgba(10, 36, 40, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  border: 1px solid rgba(166, 230, 218, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(10, 36, 40, 0.42);
  display: grid;
  gap: 2px;
  left: 50%;
  min-width: 220px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  transform: translate(-50%, -6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 30;
}

.submenu::before {
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: -14px;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu,
.submenu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
}

.submenu a:hover,
.submenu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.contact-cta {
  align-items: center;
  background: #ffffff;
  border-radius: 6px;
  color: var(--brand-deep);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  gap: 6px;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.contact-cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

.contact-cta:hover,
.contact-cta[aria-current="page"] {
  background: #A6E6DA;
  color: var(--brand-deep);
}

.contact-cta:hover::after {
  transform: translateX(4px);
}

.contact-cta:hover::after {
  transform: translateX(5px);
}


.header-cta-stack {
  align-items: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 4px;
  margin-left: 10px;
}

.customer-login {
  align-items: center;
  background: transparent;
  border: none;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.customer-login:hover,
.customer-login[aria-current="page"] {
  color: #A6E6DA;
}


.nav-toggle {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  font: inherit;
  font-weight: 800;
  min-height: 42px;
  padding: 0 14px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: -0.005em;
  min-height: 46px;
  padding: 0 20px;
}

.button.primary {
  background: var(--gradient-brand);
  background-size: 140% 140%;
  background-position: 0% 50%;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(14, 74, 70, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: background-position 0.45s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 16px 42px rgba(14, 74, 70, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.button.secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.hero {
  background:
    linear-gradient(100deg, rgba(10, 20, 22, 0.78) 0%, rgba(10, 20, 22, 0.42) 52%, rgba(10, 20, 22, 0.08) 92%),
    var(--hero-image, linear-gradient(135deg, var(--brand-deep), var(--brand-green)));
  background-position: center;
  background-size: cover;
  color: #ffffff;
  min-height: 68vh;
  overflow: hidden;
  padding: 160px 24px 100px;
  position: relative;
}

.hero::before {
  background-image:
    repeating-radial-gradient(
      circle at 88% 22%,
      transparent 0,
      transparent 44px,
      rgba(255, 255, 255, 0.085) 44px,
      rgba(255, 255, 255, 0.085) 45px
    );
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at 88% 22%, black 0%, black 45%, transparent 85%);
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero.page-hero {
  min-height: 44vh;
  padding: 140px 24px 80px;
}

.hero-content {
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-head .eyebrow,
.split-copy .eyebrow,
.service-listing-head .eyebrow {
  margin-bottom: 28px;
}

.hero .eyebrow {
  color: #A6E6DA;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 1060px;
}

.hero h1 br {
  display: none;
}

@media (min-width: 900px) {
  .hero h1 br {
    display: inline;
  }
}

.hero p {
  color: rgba(238, 248, 243, 0.92);
  font-size: 18px;
  font-weight: 400;
  max-width: 900px;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: 76px 24px;
}

.section.alt {
  background: #ffffff;
}

.section.compact {
  padding-bottom: 40px;
}

.shell {
  margin: 0 auto;
  max-width: var(--max);
}

.section-head {
  margin-bottom: 32px;
  max-width: 780px;
}

.section-head h2,
.split-copy h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.section-head p,
.split-copy p {
  font-size: 18px;
}

.card h3,
.process-step h3 {
  letter-spacing: -0.01em;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(24, 33, 31, 0.07);
  min-height: 100%;
  padding: 24px;
}

.card.accent {
  border-top: 4px solid transparent;
  background-image: linear-gradient(var(--panel), var(--panel)), var(--gradient-brand);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.card p:last-child,
.split-copy p:last-child {
  margin-bottom: 0;
}

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

.metric {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  padding: 18px;
}

.metric strong {
  color: #ffffff;
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 8px;
}

.metric span {
  color: rgba(238, 248, 243, 0.88);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.split {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}

.feature-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

.check-list li {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--gradient-brand) border-box;
  border: 1px solid transparent;
  border-left-width: 4px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
  padding: 14px 16px;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-step {
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  min-height: 190px;
  padding: 22px;
  position: relative;
}

.process-step::before {
  color: #A6E6DA;
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 42px;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: #d7e4de;
  font-size: 14px;
  line-height: 1.5;
}

.callout {
  background:
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(42, 157, 143, 0.22) 0%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(ellipse 50% 40% at 15% 90%, rgba(127, 193, 116, 0.08) 0%, rgba(0, 0, 0, 0) 65%),
    #000000;
  color: #ffffff;
  overflow: hidden;
  padding: 84px 24px;
  position: relative;
}

.callout::before {
  background:
    radial-gradient(ellipse 50% 70% at 85% 15%, rgba(166, 230, 218, 0.06), transparent 60%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.callout .shell {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.callout h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin-bottom: 12px;
  max-width: 720px;
}

.callout p {
  color: rgba(233, 247, 241, 0.94);
  font-size: 18px;
  margin-bottom: 0;
  max-width: 760px;
}

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 72px 24px 0;
}

.site-footer p,
.site-footer a {
  color: #d7e4de;
  text-decoration: none;
}

.site-footer h2,
.site-footer h3 {
  color: #ffffff;
}

.footer-top {
  display: grid;
  gap: 56px;
  grid-template-columns: 1.4fr 3fr;
  padding-bottom: 56px;
}

.footer-brand {
  display: grid;
  gap: 18px;
  align-content: start;
}
.footer-logo img {
  display: block;
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
}
.footer-cta {
  align-items: center;
  border: 1px solid rgba(166, 230, 218, 0.35);
  border-radius: 999px;
  color: #ffffff !important;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  text-transform: uppercase;
  transition: background 240ms ease, border-color 240ms ease, transform 200ms ease;
  width: max-content;
}
.footer-cta:hover {
  background: rgba(166, 230, 218, 0.1);
  border-color: rgba(166, 230, 218, 0.7);
}
.footer-cta:active { transform: scale(0.98); }

.footer-columns {
  display: grid;
  gap: 32px 24px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.footer-col h3 {
  color: rgba(166, 230, 218, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.footer-col ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col a {
  color: #d7e4de;
  font-size: 14px;
  line-height: 1.4;
  transition: color 200ms ease;
}
.footer-col a:hover { color: #ffffff; }
.footer-link-all {
  color: #A6E6DA !important;
  font-weight: 600;
}
.footer-muted {
  color: rgba(215, 228, 222, 0.55);
  font-size: 14px;
  line-height: 1.4;
}

.footer-col-contact .footer-address {
  color: #d7e4de;
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
  margin: 0 0 14px;
}
.footer-col-contact .footer-address strong {
  color: #ffffff;
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.footer-email {
  color: #A6E6DA !important;
  font-size: 14px;
  font-weight: 500;
  word-break: break-all;
}
.footer-email:hover { color: #ffffff !important; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0;
  padding: 22px 0;
}
.footer-bottom-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}
.footer-bottom-row p {
  color: rgba(215, 228, 222, 0.7);
  font-size: 13px;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(215, 228, 222, 0.7);
  font-size: 13px;
  transition: color 200ms ease;
}
.footer-bottom-links a:hover { color: #ffffff; }

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.contact-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 111, 106, 0.14);
  outline: none;
}

.inline-note {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 0;
}

.login-panel {
  align-self: stretch;
  display: grid;
  gap: 14px;
}

.login-panel .button {
  width: fit-content;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    align-content: start;
    background: #ffffff;
    border-top: 1px solid var(--line);
    display: none;
    gap: 4px;
    inset: 76px 0 0;
    padding: 18px 24px;
    position: fixed;
    z-index: 30;
  }

  .nav-links {
    margin-left: 0;
  }

  body.nav-open .nav-links {
    display: grid;
  }

  .nav-links a {
    font-size: 18px;
    padding: 14px 12px;
  }

  .customer-login {
    margin-left: auto;
  }

  .grid.three,
  .grid.two,
  .metric-row,
  .split,
  .split.reverse,
  .process,
  .contact-grid,
  .footer-grid,
  .service-listing {
    grid-template-columns: 1fr;
  }

  .split.reverse img {
    order: 2;
  }

  .split.reverse .split-copy {
    order: 1;
  }

  .callout .shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .nav-shell {
    padding: 0 16px;
  }

  .brand img {
    width: 164px;
  }

  .hero {
    min-height: 72vh;
    padding: 62px 18px 58px;
  }

  .hero.page-hero {
    min-height: 56vh;
  }

  .hero p {
    font-size: 18px;
  }

  .section,
  .callout,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .card,
  .contact-panel {
    padding: 20px;
  }

  .button {
    width: 100%;
  }

  .login-panel .button {
    width: 100%;
  }
}
