:root {
  --ink: #08111f;
  --navy: #0c1b36;
  --navy-2: #102a56;
  --blue: #1648c8;
  --blue-dark: #0d35a3;
  --teal: #0f8b83;
  --orange: #f97316;
  --orange-dark: #dc5b0b;
  --slate: #5f6e82;
  --slate-dark: #334155;
  --line: #dce4ee;
  --soft: #f4f7fb;
  --surface: #ffffff;
  --shadow: 0 18px 42px rgba(8, 17, 31, 0.1);
  --container: 1220px;
  --header-height: 76px;
  --radius: 8px;
  --font-heading: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

body.has-view-routing [data-view] {
  display: none;
}

body.has-view-routing [data-view].is-active-view {
  display: block;
  animation: viewEnter 320ms ease-out;
}

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

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

button {
  border: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 42px;
}

h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.container,
.utility-inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 72px 0;
}

.utility-bar {
  display: none;
  background: var(--navy);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 600;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-contact,
.utility-inner > span,
.utility-contact a {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-contact a,
.utility-inner > span {
  gap: 6px;
}

.utility-bar svg {
  width: 13px;
  height: 13px;
  color: #5eead4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px max(16px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(220, 228, 238, 0.9);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(8, 17, 31, 0.1);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);
}

.brand-copy {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: var(--slate);
  font-size: 10px;
  line-height: 1.25;
}

.primary-nav {
  position: fixed;
  inset: var(--header-height) 16px auto;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.primary-nav.is-open {
  display: flex;
  animation: menuDrop 180ms ease-out;
}

.primary-nav a {
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--slate-dark);
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--blue);
  background: #eff4ff;
  outline: none;
}

.primary-nav a[aria-current="page"] {
  box-shadow: inset 3px 0 var(--orange);
}

.nav-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  cursor: pointer;
}

.nav-toggle {
  width: 42px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.nav-toggle svg,
.btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy) url("assets/images/hrm-hero.webp") center center / cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 32, 0.96) 0%, rgba(5, 15, 32, 0.84) 36%, rgba(5, 15, 32, 0.26) 70%, rgba(5, 15, 32, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 150px;
}

.hero-copy {
  max-width: 680px;
}

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

.eyebrow-light {
  color: #fdba74;
}

.hero h1 {
  max-width: 640px;
  color: #fff;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: #dbe6f4;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-accent {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: var(--orange-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #fff;
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--blue);
}

.btn-outline {
  color: var(--blue);
  border: 1px solid #9ab2ed;
  background: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--blue);
  background: #eff4ff;
}

.hero-signals {
  display: grid;
  gap: 10px;
}

.hero-signals span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e5edf8;
  font-size: 13px;
  font-weight: 700;
}

.hero-signals svg {
  width: 17px;
  height: 17px;
  color: #5eead4;
}

.hero-stats {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  background: rgba(9, 29, 62, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero-stats-grid div {
  min-width: 0;
  padding: 18px 8px;
  text-align: center;
}

.hero-stats-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
}

.hero-stats span {
  color: #b9c9de;
  font-size: 10px;
}

.section-heading {
  max-width: 740px;
}

.section-heading p:not(.eyebrow) {
  color: var(--slate);
}

.section-heading.centered {
  margin: 0 auto 36px;
  text-align: center;
}

.heading-row {
  max-width: none;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.heading-row > p {
  max-width: 520px;
}

.industry-showcase {
  background: #fff;
}

.photo-card-grid {
  display: grid;
  gap: 14px;
}

.photo-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card img,
.photo-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-card img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-card-shade {
  background: linear-gradient(180deg, rgba(5, 14, 31, 0.02) 35%, rgba(9, 25, 73, 0.92) 100%);
}

.photo-card-content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 70px;
  bottom: 20px;
}

.photo-card-content strong,
.photo-card-content small {
  display: block;
}

.photo-card-content strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 19px;
}

.photo-card-content small {
  margin-top: 4px;
  color: #cbd9ea;
  font-size: 12px;
}

.photo-card-action {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.photo-card-action svg {
  width: 18px;
  height: 18px;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.045);
}

.photo-card:focus-visible {
  outline: 3px solid #7dd3fc;
  outline-offset: 3px;
}

.trust-band {
  padding: 30px 0;
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.trust-layout {
  display: grid;
  gap: 18px;
  text-align: center;
}

.trust-layout > p {
  margin: 0;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-items {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.trust-items::-webkit-scrollbar {
  display: none;
}

.trust-items span {
  min-width: 130px;
  flex: 1 0 auto;
  padding: 13px 16px;
  border-left: 3px solid var(--teal);
  background: #fff;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 14px;
  box-shadow: 0 7px 18px rgba(8, 17, 31, 0.05);
}

.home-story {
  background: #fff;
}

.story-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.story-photo {
  position: relative;
  min-height: 410px;
}

.story-photo > img {
  width: calc(100% - 24px);
  height: 410px;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-badge {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: min(270px, 78%);
  padding: 20px;
  background: var(--blue);
  color: #fff;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.story-badge strong,
.story-badge span {
  display: block;
}

.story-badge strong {
  font-family: var(--font-heading);
  font-size: 18px;
}

.story-badge span {
  margin-top: 4px;
  color: #dbeafe;
  font-size: 12px;
}

.story-copy > p:not(.eyebrow) {
  margin-bottom: 14px;
}

.story-points {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}

.story-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-dark);
  font-size: 14px;
  font-weight: 700;
}

.story-points svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.route-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.route-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 32, 0.94), rgba(12, 36, 78, 0.7), rgba(12, 36, 78, 0.28));
}

.route-product,
.route-why,
.route-pricing {
  background-image: url("assets/images/hrm-hero.webp");
}

.route-solutions {
  background-image: url("assets/images/solutions-hr-tech.jpg");
}

.route-resources {
  background-image: url("assets/images/industry-it.webp");
}

.route-about {
  background-image: url("assets/images/industry-staffing.webp");
}

.route-hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.route-hero h1 {
  margin-bottom: 16px;
  color: #fff;
}

.route-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #dbe6f4;
  font-size: 17px;
}

.modules-section,
.pricing-section,
.resources-section,
.about-section {
  background: var(--soft);
}

.module-grid,
.differentiator-grid,
.process-grid,
.testimonial-grid,
.pricing-grid,
.resource-grid {
  display: grid;
  gap: 16px;
}

.module-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(8, 17, 31, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.module-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--orange);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 7px;
  background: #eaf0ff;
  color: var(--blue);
}

.icon-box svg {
  width: 21px;
  height: 21px;
}

.module-card h3 {
  font-size: 18px;
}

.module-card p,
.module-card li {
  color: var(--slate);
  font-size: 14px;
}

.module-card ul,
.price-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.module-card li,
.price-card li {
  position: relative;
  padding: 5px 0 5px 18px;
}

.module-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.module-card-wide {
  display: grid;
  gap: 16px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border: 0;
}

.module-card-wide .icon-box {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #5eead4;
}

.module-card-wide p {
  margin: 0;
  color: #cbd9ea;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fdba74;
  font-weight: 800;
}

.solution-detail-section {
  background: #fff;
}

.solution-list {
  display: grid;
  gap: 60px;
}

.solution-row {
  display: grid;
  gap: 28px;
  align-items: center;
}

.solution-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-row > div > span {
  display: inline-block;
  margin-bottom: 10px;
  color: #b8c4d3;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
}

.solution-row h2 {
  font-size: 30px;
}

.solution-row > div > p:not(.eyebrow) {
  color: var(--slate);
}

.inline-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.inline-benefits li {
  padding: 7px 10px;
  border-left: 3px solid var(--teal);
  background: var(--soft);
  color: var(--slate-dark);
  font-size: 12px;
  font-weight: 700;
}

.why-section {
  background: #fff;
}

.why-layout {
  display: grid;
  gap: 36px;
}

.differentiator-grid article,
.process-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.differentiator-grid article > svg,
.process-grid article > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--blue);
}

.differentiator-grid p,
.process-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

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

.process-grid {
  counter-reset: steps;
}

.process-grid article {
  position: relative;
  padding-top: 34px;
}

.process-grid article > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #d9e2ee;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
}

.proof-section {
  background: var(--navy);
  color: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.metrics-grid > div {
  padding: 24px 14px;
  text-align: center;
}

.metrics-grid > div:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.metrics-grid > div:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.metrics-grid strong,
.metrics-grid span {
  display: block;
}

.metrics-grid strong {
  color: #fdba74;
  font-family: var(--font-heading);
  font-size: 30px;
}

.metrics-grid span {
  color: #cbd9ea;
  font-size: 11px;
}

.testimonial-grid blockquote {
  margin-bottom: 0;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-grid blockquote > svg {
  width: 25px;
  height: 25px;
  margin-bottom: 16px;
  color: #5eead4;
}

.testimonial-grid blockquote p {
  color: #e5edf8;
  font-size: 14px;
}

.testimonial-grid footer strong,
.testimonial-grid footer span {
  display: block;
}

.testimonial-grid footer span {
  color: #9fb0c7;
  font-size: 12px;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(8, 17, 31, 0.05);
}

.price-card.featured {
  border: 2px solid var(--blue);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 18px;
  padding: 6px 10px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-label {
  margin-bottom: 15px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card h2 {
  font-size: 24px;
}

.price-card p,
.price-card li {
  color: var(--slate);
  font-size: 14px;
}

.price-card ul {
  flex: 1;
  margin: 14px 0 26px;
}

.resource-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(8, 17, 31, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  outline: none;
}

.resource-card > span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-card > svg {
  width: 30px;
  height: 30px;
  margin: 24px 0;
  color: var(--blue);
}

.resource-card h2 {
  font-size: 22px;
}

.resource-card p {
  color: var(--slate);
  font-size: 14px;
}

.resource-card > strong {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
}

.resource-card > strong svg {
  width: 16px;
  height: 16px;
}

.about-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.about-gallery {
  position: relative;
  min-height: 490px;
}

.about-main {
  width: calc(100% - 36px);
  height: 430px;
  object-fit: cover;
  object-position: 67% center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 7px solid var(--soft);
  border-radius: var(--radius);
}

.about-values {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.about-values div {
  padding: 14px 16px;
  background: #fff;
  border-left: 3px solid var(--teal);
}

.about-values strong,
.about-values span {
  display: block;
}

.about-values span {
  color: var(--slate);
  font-size: 12px;
}

.career-strip {
  display: grid;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.career-strip span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.career-strip h3 {
  margin: 4px 0 0;
  font-size: 18px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #050b15;
  color: #c5d1df;
}

.footer-backdrop {
  position: absolute;
  inset: 0;
  background: url("assets/images/global-network.webp") center / cover no-repeat;
  opacity: 0.72;
}

.footer-grid {
  position: relative;
  display: grid;
  gap: 34px;
  padding-top: 62px;
  padding-bottom: 52px;
}

.footer-brand .brand-mark {
  background: var(--teal);
}

.footer-brand strong {
  color: #fff;
}

.footer-brand small {
  color: #a9bbd3;
}

.footer-about > p {
  max-width: 360px;
  margin: 20px 0;
  color: #a9bbd3;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h2 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 16px;
  border-bottom: 2px solid var(--orange);
}

.footer-column a,
.footer-column span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #c5d1df;
  font-size: 13px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fdba74;
  outline: none;
}

.footer-column svg {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  color: var(--orange);
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #8191a6;
  font-size: 11px;
  text-align: center;
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(14px);
  transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms ease var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes viewEnter {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .photo-card-grid,
  .module-grid,
  .differentiator-grid,
  .process-grid,
  .testimonial-grid,
  .pricing-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 760px) {
  .utility-bar {
    display: block;
  }

  .site-header {
    top: 0;
  }

  .container,
  .utility-inner {
    width: min(100% - 48px, var(--container));
  }

  .section-pad {
    padding: 92px 0;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-bottom: 155px;
  }

  .hero-stats-grid div {
    padding: 22px 16px;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .hero-stats span {
    font-size: 12px;
  }

  .heading-row {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 50px;
  }

  .story-grid,
  .about-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 60px;
  }

  .trust-layout {
    grid-template-columns: auto 1fr;
    align-items: center;
    text-align: left;
  }

  .route-hero {
    min-height: 420px;
  }

  .route-hero h1 {
    font-size: 48px;
  }

  .module-card-wide {
    grid-column: span 2;
    grid-template-columns: auto 1fr auto;
  }

  .solution-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
  }

  .solution-row.reverse img {
    order: 2;
  }

  .solution-row.reverse > div {
    order: 1;
  }

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

  .metrics-grid > div,
  .metrics-grid > div:nth-child(odd),
  .metrics-grid > div:nth-child(-n + 2) {
    border: 0;
  }

  .metrics-grid > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .career-strip {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.6fr;
    gap: 60px;
  }
}

@media (min-width: 1000px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav a {
    padding: 9px 9px;
    font-size: 12px;
  }

  .primary-nav a[aria-current="page"] {
    box-shadow: inset 0 -2px var(--orange);
  }

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

  .photo-card {
    min-height: 390px;
  }

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

  .module-card-wide {
    grid-column: span 3;
  }

  .why-layout {
    gap: 36px;
  }

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

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

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

@media (min-width: 1160px) {
  .primary-nav a {
    padding: 9px 12px;
    font-size: 13px;
  }
}

@media (max-width: 759px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px 16px;
  }

  .primary-nav {
    inset: var(--header-height) 16px auto;
  }

  .hero {
    min-height: 670px;
    background-position: 66% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 15, 32, 0.78) 0%, rgba(5, 15, 32, 0.9) 52%, rgba(5, 15, 32, 0.98) 100%);
  }

  .hero-content {
    align-items: flex-end;
    padding-top: 70px;
    padding-bottom: 125px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-signals span {
    font-size: 12px;
  }

  .heading-row h2 {
    margin-bottom: 0;
  }

  .photo-card-grid {
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    overflow-x: auto;
    padding: 4px 16px 18px;
    margin-inline: -16px;
    scroll-snap-type: x mandatory;
  }

  .photo-card-grid::-webkit-scrollbar {
    display: none;
  }

  .photo-card {
    scroll-snap-align: start;
  }

  .section-heading.centered {
    text-align: left;
  }

  .route-hero {
    background-position: 63% center;
  }

  .route-hero::before {
    background: linear-gradient(90deg, rgba(5, 15, 32, 0.92), rgba(9, 32, 73, 0.64));
  }

  .footer-backdrop {
    background-position: 64% center;
    opacity: 0.58;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 12px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    max-width: 160px;
    font-size: 9px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-stats-grid div {
    padding-inline: 5px;
  }

  .hero-stats strong {
    font-size: 15px;
  }

  .hero-stats span {
    font-size: 9px;
  }

  .photo-card {
    min-height: 310px;
  }

  .story-photo,
  .story-photo > img {
    min-height: 350px;
    height: 350px;
  }

  .module-card,
  .price-card,
  .resource-card,
  .differentiator-grid article,
  .process-grid article,
  .testimonial-grid blockquote {
    padding: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
