:root {
  --navy-950: #061725;
  --navy-900: #071d2e;
  --navy-800: #0c2b42;
  --navy-700: #173a53;
  --ink: #17222b;
  --slate: #56646f;
  --terracotta: #b85f3f;
  --terracotta-dark: #99482f;
  --sand: #eadaca;
  --ivory: #f7f3ed;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: #ded6cc;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 70px rgba(7, 29, 46, 0.13);
  --container: min(1280px, calc(100vw - 64px));
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e29372;
  outline-offset: 4px;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.25rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  text-wrap: pretty;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 4px;
  transition: transform 180ms ease;
}

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--terracotta-dark);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow--warm {
  color: #df9677;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

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

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button--primary {
  color: var(--white);
  background: var(--terracotta);
  box-shadow: 0 10px 28px rgba(184, 95, 63, 0.26);
}

.button--primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 14px 32px rgba(184, 95, 63, 0.34);
}

.button--light {
  color: var(--navy-900);
  background: var(--white);
}

.button--light:hover {
  background: var(--sand);
}

.button--dark,
.button--header {
  color: var(--white);
  background: var(--navy-900);
}

.button--dark:hover,
.button--header:hover {
  background: var(--navy-700);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 6px;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 180ms ease, gap 220ms var(--ease);
}

.text-link:hover {
  gap: 18px;
  color: var(--terracotta-dark);
}

.text-link--light {
  color: var(--white);
}

.text-link--light:hover {
  color: var(--sand);
}

.site-topbar {
  position: relative;
  z-index: 102;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-950);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-topbar__inner,
.site-topbar__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-topbar p {
  margin: 0;
}

.site-topbar a {
  text-decoration: none;
}

.site-topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid rgba(7, 29, 46, 0.1);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 10px 30px rgba(7, 29, 46, 0.09);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo {
  display: flex;
  width: clamp(220px, 18vw, 292px);
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}

.site-logo img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.5vw, 27px);
}

.site-navigation > a:not(.button) {
  position: relative;
  padding-block: 10px;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.site-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-navigation > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button--header {
  min-height: 44px;
  padding-inline: 17px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px;
  color: var(--navy-900);
  background: transparent;
  border: 0;
}

.nav-toggle__label {
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle__lines {
  display: grid;
  width: 24px;
  gap: 6px;
}

.nav-toggle__lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(650px, 74vh, 820px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("../images/phalanx-hero-handshake.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 22, 35, 0.97) 0%, rgba(5, 22, 35, 0.91) 38%, rgba(5, 22, 35, 0.35) 64%, rgba(5, 22, 35, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 22, 35, 0.3), transparent 55%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 80px 100px;
}

.hero__content {
  width: min(690px, 58vw);
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.5rem, 6.6vw, 6.7rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 span {
  color: #e89b7b;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 30px;
}

.hero__note {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.proof-ribbon {
  position: relative;
  z-index: 4;
  color: var(--navy-900);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.proof-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-ribbon__grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 27px clamp(20px, 2.2vw, 38px);
  border-left: 1px solid var(--line);
}

.proof-ribbon__grid > div:last-child {
  border-right: 1px solid var(--line);
}

.proof-ribbon__grid span {
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.proof-ribbon__grid p {
  margin: 0;
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.45;
}

.proof-ribbon__grid strong {
  color: var(--navy-900);
}

.section {
  padding-block: clamp(92px, 10vw, 150px);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 64px;
}

.section-heading h2 {
  margin-bottom: 24px;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.06rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.section-heading--split h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.audience-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(234, 218, 202, 0.48), transparent 30%),
    var(--ivory);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  gap: 24px;
}

.audience-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(40px, 5vw, 74px);
  overflow: hidden;
  border-radius: 7px;
}

.audience-card--employer {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 95, 63, 0.25), transparent 36%),
    var(--navy-900);
  box-shadow: var(--shadow);
}

.audience-card--partner {
  margin-top: 62px;
  color: var(--navy-900);
  background: var(--sand);
}

.audience-card__index {
  margin-bottom: 70px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card--employer .audience-card__index {
  color: #df9677;
}

.audience-card h3 {
  max-width: 530px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 3.6vw, 4.5rem);
}

.audience-card--employer h3 {
  color: var(--white);
}

.audience-card > p:not(.audience-card__index) {
  max-width: 600px;
  margin-bottom: 26px;
  opacity: 0.82;
}

.audience-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.audience-card li::before {
  margin-right: 10px;
  content: "—";
  color: var(--terracotta);
}

.audience-card--employer li::before {
  color: #df9677;
}

.audience-card .button {
  margin-top: auto;
}

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

.industry-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 40px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.industry-card {
  min-height: 270px;
  padding: 34px;
  background: var(--paper);
  transition: color 260ms ease, background 260ms ease, transform 260ms var(--ease);
}

.industry-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-4px);
}

.industry-card--wide {
  grid-column: span 2;
}

.industry-card--tall {
  grid-row: span 2;
}

.industry-card span {
  display: block;
  margin-bottom: 72px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.industry-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.industry-card:hover h3 {
  color: var(--white);
}

.industry-card p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.55;
}

.industry-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.process-section {
  display: grid;
  min-height: 940px;
  grid-template-columns: 0.9fr 1.1fr;
  color: var(--white);
  background: var(--navy-900);
}

.process-section__image {
  min-height: 720px;
  background-image:
    linear-gradient(180deg, rgba(7, 29, 46, 0.02), rgba(7, 29, 46, 0.28)),
    url("../images/phalanx-recruitment-process.png");
  background-position: 68% center;
  background-size: cover;
}

.process-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px);
}

.process-section h2 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--white);
}

.process-section__content > div > p:last-child {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 46px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.process-list > li > span {
  color: #df9677;
  font-size: 0.73rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.mobility-section {
  background: var(--sand);
}

.mobility-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.mobility-visual {
  position: relative;
}

.mobility-visual img {
  min-height: 650px;
  object-fit: cover;
  object-position: 32% center;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.mobility-visual__caption {
  position: absolute;
  right: -30px;
  bottom: -30px;
  display: flex;
  max-width: 320px;
  flex-direction: column;
  padding: 26px 30px;
  color: var(--white);
  background: var(--terracotta);
  box-shadow: 0 20px 50px rgba(116, 61, 41, 0.2);
}

.mobility-visual__caption span {
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobility-visual__caption strong {
  line-height: 1.3;
}

.mobility-copy h2 {
  margin-bottom: 26px;
}

.mobility-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--slate);
}

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

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

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  color: var(--terracotta-dark);
  content: "↗";
  font-weight: 800;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(500px, 1fr);
  gap: clamp(60px, 10vw, 170px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 26px;
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--slate);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 24px;
  padding-block: 27px;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -6px 0 28px;
  color: var(--slate);
}

.contact-section {
  padding-block: clamp(90px, 10vw, 145px);
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(184, 95, 63, 0.22), transparent 35%),
    var(--navy-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy h2 {
  margin-bottom: 28px;
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

.contact-details a,
.contact-details p {
  display: grid;
  grid-template-columns: 62px 1fr;
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-details span {
  color: #df9677;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card {
  padding: clamp(32px, 5vw, 68px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 7px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.ph-form__intro h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.ph-form__intro > p:last-child {
  margin-bottom: 34px;
  color: var(--slate);
}

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

.ph-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.ph-field > span {
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.ph-field input,
.ph-field textarea,
.ph-field select {
  width: 100%;
  color: var(--ink);
  background: #fcfaf6;
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ph-field input {
  min-height: 50px;
  padding: 10px 13px;
}

.ph-field textarea {
  padding: 12px 13px;
  resize: vertical;
}

.ph-field input:focus,
.ph-field textarea:focus,
.ph-field select:focus {
  border-color: var(--terracotta);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(184, 95, 63, 0.13);
}

.ph-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  margin-block: 12px 26px;
  color: var(--slate);
  font-size: 0.75rem;
  line-height: 1.5;
}

.ph-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--terracotta);
}

.ph-consent a {
  color: var(--navy-900);
}

.ph-submit {
  width: 100%;
  cursor: pointer;
}

.ph-form__fineprint {
  margin: 15px 0 0;
  color: #75818a;
  font-size: 0.68rem;
  text-align: center;
}

.ph-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.form-notice {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 3px solid;
  font-size: 0.82rem;
}

.form-notice--success {
  color: #19593b;
  background: #edf8f1;
  border-color: #2d8c60;
}

.form-notice--error {
  color: #7b2f24;
  background: #fdf0ec;
  border-color: var(--terracotta);
}

.site-footer {
  padding-block: 74px 28px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy-950);
  font-size: 0.82rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.65fr 1fr;
  gap: 70px;
  padding-bottom: 66px;
}

.site-footer__brand p {
  max-width: 330px;
}

.site-footer__logo {
  display: block;
  width: min(290px, 100%);
  margin-bottom: 30px;
  padding: 14px 18px;
  overflow: hidden;
  background: var(--white);
  border-radius: 4px;
}

.site-footer__logo img {
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

.site-footer__grid > div:not(.site-footer__brand),
.site-footer address {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  text-decoration: none;
}

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

.site-footer__heading {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.7rem;
}

.site-footer__bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 95, 63, 0.27), transparent 38%),
    var(--navy-900);
}

.page-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -23vw;
  width: 48vw;
  height: 48vw;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(100px, 13vw, 190px) clamp(85px, 10vw, 145px);
}

.page-hero h1 {
  max-width: 1000px;
  margin: 0;
  color: var(--white);
}

.page-content {
  min-height: 48vh;
  padding-block: clamp(82px, 10vw, 145px);
  background: var(--paper);
}

.page-content__inner {
  max-width: 1000px;
}

.page-content__inner > *:first-child {
  margin-top: 0;
}

.page-content h2 {
  margin: 80px 0 22px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
}

.page-content h3 {
  margin: 42px 0 13px;
}

.page-content p,
.page-content li {
  color: var(--slate);
}

.page-content .content-lead {
  max-width: 850px;
  margin-bottom: 70px;
  color: var(--navy-800);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.45;
}

.page-content .content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-block: 40px 70px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.page-content .content-card {
  min-height: 240px;
  padding: 34px;
  background: var(--ivory);
}

.page-content .content-card h3 {
  margin-top: 0;
}

.page-content .content-card p:last-child {
  margin-bottom: 0;
}

.page-content .process-steps,
.page-content .service-list {
  display: grid;
  gap: 1px;
  margin: 40px 0 70px;
  padding: 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  list-style: none;
}

.page-content .process-steps li,
.page-content .service-list li {
  padding: 28px 32px;
  background: var(--ivory);
}

.page-content .process-steps strong,
.page-content .service-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
}

.page-content .cta-panel {
  margin-top: 80px;
  padding: clamp(38px, 6vw, 70px);
  color: var(--white);
  background: var(--navy-900);
  border-radius: 7px;
}

.page-content .cta-panel h2,
.page-content .cta-panel h3,
.page-content .cta-panel p {
  color: var(--white);
}

.page-content .cta-panel h2,
.page-content .cta-panel h3 {
  margin-top: 0;
}

.page-content .cta-panel p {
  opacity: 0.72;
}

.page-content .ph-form {
  margin-top: 50px;
  padding: clamp(30px, 5vw, 62px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding-block: 100px;
  background: var(--ivory);
}

.not-found__inner {
  max-width: 800px;
}

.not-found h1 {
  margin-bottom: 24px;
}

.not-found p:not(.eyebrow) {
  max-width: 650px;
  color: var(--slate);
}

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

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

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 48px, 1120px);
  }

  .site-navigation {
    gap: 15px;
  }

  .site-navigation > a:not(.button) {
    font-size: 0.72rem;
  }

  .site-logo {
    width: 220px;
  }

  .proof-ribbon__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-ribbon__grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .proof-ribbon__grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .process-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .process-section__content {
    padding: 70px 55px;
  }
}

@media (max-width: 980px) {
  .site-topbar__inner > p {
    display: none;
  }

  .site-topbar__inner {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: flex;
  }

  .site-navigation {
    position: fixed;
    top: calc(34px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 24px 60px;
    overflow: auto;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-navigation > a:not(.button) {
    width: 100%;
    padding-block: 17px;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--line);
  }

  .site-navigation .button {
    width: 100%;
    margin-top: 24px;
  }

  .hero__content {
    width: min(690px, 78vw);
  }

  .hero__veil {
    background: linear-gradient(90deg, rgba(5, 22, 35, 0.98) 0%, rgba(5, 22, 35, 0.84) 62%, rgba(5, 22, 35, 0.34) 100%);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card--partner {
    margin-top: 0;
  }

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

  .industry-card--tall {
    grid-row: span 1;
  }

  .process-section {
    grid-template-columns: 1fr;
  }

  .process-section__image {
    min-height: 540px;
    background-position: center;
  }

  .mobility-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mobility-visual img {
    min-height: 520px;
  }

  .faq-intro,
  .contact-copy {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 40px);
    --header-height: 68px;
  }

  body {
    font-size: 16px;
  }

  .site-topbar__contact a:nth-child(2) {
    display: none;
  }

  .site-logo {
    width: 190px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__image {
    background-position: 63% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(5, 22, 35, 0.97), rgba(5, 22, 35, 0.78)),
      linear-gradient(0deg, rgba(5, 22, 35, 0.62), transparent 60%);
  }

  .hero__inner {
    align-items: flex-end;
    padding-block: 90px 65px;
  }

  .hero__content {
    width: 100%;
  }

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

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__note {
    line-height: 1.6;
  }

  .proof-ribbon__grid {
    grid-template-columns: 1fr;
  }

  .proof-ribbon__grid > div {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .audience-card {
    min-height: 490px;
    padding: 36px 28px;
  }

  .audience-card__index {
    margin-bottom: 45px;
  }

  .audience-card h3 {
    font-size: 2.45rem;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card--wide {
    grid-column: span 1;
  }

  .industry-card {
    min-height: 230px;
  }

  .process-section__image {
    min-height: 360px;
  }

  .process-section__content {
    padding: 75px 20px;
  }

  .mobility-visual img {
    min-height: 420px;
  }

  .mobility-visual__caption {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: calc(100% - 24px);
    margin: -30px 0 0 auto;
  }

  .contact-card {
    margin-inline: -8px;
    padding: 30px 22px;
  }

  .ph-form__grid,
  .page-content .content-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-content .content-card,
  .page-content .process-steps li,
  .page-content .service-list li {
    padding: 27px 24px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
