/* ForceFriction AI - site stylesheet.
 *
 * Every value here is taken from "ForceFriction AI Landing v2.dc.html", which
 * carried its presentation in camelCase `style` attributes (`fontWeight:600`,
 * `objectFit:cover`, `backdropFilter:blur(12px)`). Those are not valid CSS, and
 * the site's Content-Security-Policy is `style-src 'self'` - one style attribute
 * anywhere would force 'unsafe-inline' and weaken the policy for every page. So
 * the mockup's inline styles live here, against the class names in
 * src/components/blocks.mjs.
 *
 * Three deliberate departures from the mockup, all for WCAG AA - see
 * PLACEHOLDERS.md so they are not "fixed" back:
 *   1. #98A2B3 on white is 2.6:1. The mockup uses it for the 12.5px footer
 *      headings and the 13px copyright, which fail AA at those sizes. Both use
 *      --text-2 (#667085, 5.0:1) here.
 *   2. #B9964E, the mockup's on-navy gold, is fine where it sits still (5.00:1 on
 *      #0A2A5E, 6.59:1 on #0A1428) but drops to 4.47:1 on #0E326B - the pillar
 *      HOVER background - where the gold pillar numbers then fail AA. Rather than
 *      change the hover colour the design specifies, the on-navy gold is lightened
 *      to #D4B36A, which clears AA on all three (6.94 / 9.14 / 6.20). The on-white
 *      gold #8A6D2E is unchanged.
 *   3. The mockup sets `outline:none` on every input. Replaced with a visible
 *      :focus-visible ring.
 *
 * The mockup has no media queries at all - it is desktop-only, with fixed
 * `1fr 1fr` grids and fixed pixel type. Every breakpoint below is new.
 */

/* =========================================================== 1. tokens == */

:root {
  /* Palette, verbatim from the mockup. */
  --navy-deep: #0a1428;
  --navy: #0a2a5e;
  --navy-hover: #123c80;
  --navy-lift: #0e326b;
  --link-hover: #1d4ed8;

  --cyan: #4fd1d9;
  --cyan-hover: #7de0e6;

  --gold: #d4b36a; /* on navy - lightened from the mockup's #B9964E; see note 2 above */
  --gold-deep: #8a6d2e; /* on white */

  --ink: #101828;
  --label: #344054;
  --text: #475467;
  --text-2: #667085;
  --muted: #98a2b3;

  --on-navy: #b9c7de;
  --on-navy-2: #a9b6cc;
  --on-navy-3: #d4dcea;
  --on-navy-dim: #8fa0bc;
  --on-navy-faint: #7c8aa5;

  --line: #e7eaf0;
  --line-input: #c9d2e0;
  --line-onnavy: rgba(255, 255, 255, 0.14);

  --bg: #ffffff;
  --bg-alt: #fafbfc;
  --tick-bg: rgba(212, 179, 106, 0.18);

  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1240px;
  --gutter: 40px;
  --r-sm: 4px;
  --r-md: 6px;
  --header-h: 81px;

  --shadow-card: 0 12px 32px rgba(10, 20, 40, 0.1);
  --shadow-form: 0 24px 60px rgba(0, 0, 0, 0.3);
}

/* ==================================================== 2. base and reset == */

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

html {
  -webkit-text-size-adjust: 100%;
  /* Without this the sticky header covers whatever #platform / #why /
     #assessment scrolls to. */
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-locked {
  overflow: hidden;
}

img,
picture,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--navy);
  text-decoration: none;
}

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

::selection {
  background: var(--navy);
  color: #fff;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* On white, the cyan ring is too low-contrast to be a reliable focus indicator. */
.section:not(.section--navy):not(.section--dark) :focus-visible,
.formcard :focus-visible,
.site-header :focus-visible,
.site-footer :focus-visible,
.partners :focus-visible {
  outline-color: var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ===================================================== 3. typography == */

.h1 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 6.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: #fff;
  text-wrap: balance;
}

.h1--page {
  font-size: clamp(32px, 4.8vw, 52px);
}

.h2 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--navy-deep);
  text-wrap: balance;
}

.h2--sm {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
}

.h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 27px);
  line-height: 1.2;
  font-weight: 500;
  color: var(--navy-deep);
}

/* The mockup sets the pillar and program headings in Archivo, not the serif. */
.h4 {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow--gold {
  color: var(--gold);
}

/* The hero eyebrow is cyan, not gold, and slightly tighter tracking. */
.hero .eyebrow {
  letter-spacing: 0.16em;
  color: var(--cyan);
}

.lede {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--text);
}

.lede--hero {
  margin-top: 26px;
  max-width: 560px;
  line-height: 1.6;
  color: var(--on-navy);
}

.accent {
  color: var(--cyan);
}

/* ======================================================== 4. layout == */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: 112px;
}

.section--tight {
  padding-block: 72px;
}

.section--alt {
  background: var(--bg-alt);
}

.section--ruled {
  border-bottom: 1px solid var(--line);
}

.section--navy {
  background: var(--navy);
  color: var(--on-navy);
}

.section--dark {
  background: var(--navy-deep);
  color: var(--on-navy);
}

.section--navy .h2,
.section--dark .h2,
.section--navy .h3,
.section--dark .h3 {
  color: #fff;
}

.section--navy .lede,
.section--dark .lede {
  color: var(--on-navy);
}

/* The recurring `eyebrow + h2 | lede` two-column section header. */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
}

.duo--solo {
  grid-template-columns: 1fr;
}

.duo .lede {
  max-width: 62ch;
}

/* ======================================================= 5. buttons == */

.btn {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

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

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

.btn--cyan {
  background: var(--cyan);
  color: var(--navy-deep);
}

.btn--cyan:hover {
  background: var(--cyan-hover);
  color: var(--navy-deep);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* On a light section a white ghost button is invisible. */
.section:not(.section--navy):not(.section--dark) .btn--ghost {
  border-color: var(--line-input);
  color: var(--navy);
}

.section:not(.section--navy):not(.section--dark) .btn--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn--sm {
  padding: 11px 22px;
  font-size: 14.5px;
  white-space: nowrap;
}

.btn--block {
  display: block;
  width: 100%;
  margin-top: 26px;
  padding: 15px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: progress;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

/* ======================================================== 6. header == */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

/* Without backdrop-filter, 94% white over moving content is a smear. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: #fff;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--gutter);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--ink);
}

.logo__img {
  display: block;
}

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

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.nav a:hover,
.nav a[aria-current='true'] {
  color: var(--navy);
}

.nav a[aria-current='true'] {
  font-weight: 600;
}

/* Above the drawer breakpoint the CTA lives in .header-actions, so the copy
   inside the nav is redundant. */
.nav__cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle__bars {
  position: relative;
  margin: 0 auto;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ========================================================== 7. hero == */

.hero {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media picture,
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media--dim img {
  opacity: 0.28;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    var(--navy-deep) 30%,
    rgba(10, 20, 40, 0.55) 70%,
    rgba(10, 20, 40, 0.3)
  );
}

/* The `sym` watermark. The mockup draws it 420px wide from a 228px source; it is
   clamped smaller and dimmed here to hide the upscale. Vector artwork would let
   this go back up. See PLACEHOLDERS.md. */
.hero__mark {
  position: absolute;
  right: -40px;
  bottom: -50px;
  z-index: -1;
  width: clamp(180px, 26vw, 320px);
  height: auto;
  opacity: 0.42;
  pointer-events: none;
}

.hero__body {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 130px var(--gutter) 120px;
}

.hero--page .hero__body {
  padding-block: 84px 76px;
}

.hero__content {
  max-width: 720px;
}

/* Photo-free interior page header. */
.page-header {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: 84px 76px;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--on-navy);
}

.page-header__mark {
  position: absolute;
  right: -30px;
  bottom: -60px;
  z-index: -1;
  width: clamp(160px, 22vw, 280px);
  height: auto;
  opacity: 0.3;
  pointer-events: none;
}

.page-header .lede {
  max-width: 62ch;
  color: var(--on-navy);
}

.breadcrumb-wrap {
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--on-navy-dim);
}

.breadcrumb a {
  color: var(--on-navy-3);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--on-navy-faint);
}

/* ========================================================= 8. stats == */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  margin: 0;
}

.stats--hero {
  margin-top: 80px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stats__value {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}

.stats__label {
  margin-top: 5px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--on-navy-dim);
}

/* The 2x2 grid in the infrastructure section, on white. */
.stats--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.stats--split .stats__item {
  padding-block: 22px;
}

.stats--split .stats__item:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.stats--split .stats__value {
  font-size: clamp(24px, 2.6vw, 28px);
  color: var(--navy-deep);
}

.stats--split .stats__label {
  margin-top: 3px;
  color: var(--text-2);
}

/* ====================================================== 9. partners == */

.partners {
  padding: 40px var(--gutter);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.partners__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-inline: 0;
}

.partners__label {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  /* 13px at 600 is below the large-text threshold, so --muted would fail AA. */
  color: var(--text-2);
}

.partners__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.partners__list li {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-2);
}

/* ================================================= 10. image cards == */

.cardgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.imgcard {
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.imgcard__media {
  height: 280px;
}

.imgcard__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imgcard__body {
  padding: 34px 36px;
}

.imgcard__body p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

/* ==================================================== 11. program == */

.program {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.program__item {
  padding: 36px 36px 36px 0;
  margin-right: 36px;
  border-right: 1px solid var(--line);
}

.program__item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.program__step {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.program__item p:last-child {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
}

/* ==================================================== 12. pillars == */

/* The mockup's hairlines are a 1px grid gap over a translucent white background,
   with each cell painting its own navy - so the "borders" are the container
   showing through the gaps. */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line-onnavy);
  border: 1px solid var(--line-onnavy);
}

.pillar {
  min-height: 200px;
  padding: 38px 34px;
  background: var(--navy);
  transition: background-color 0.15s ease;
}

.pillar:hover {
  background: var(--navy-lift);
}

.pillar__no {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.pillar .h4 {
  margin-top: 16px;
  font-size: 20px;
  color: #fff;
}

.pillar p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-navy);
}

.pillar__detail {
  padding-top: 14px;
  border-top: 1px solid var(--line-onnavy);
  color: var(--on-navy-2) !important;
}

/* ================================================ 13. industry tiles == */

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.tile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: box-shadow 0.15s ease;
}

.tile:hover {
  box-shadow: var(--shadow-card);
}

.tile__media {
  min-height: 200px;
}

.tile__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile__body {
  padding: 30px 32px;
}

.tile__tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.tile .h3 {
  margin-top: 10px;
  overflow-wrap: break-word;
}

/* The mockup wraps the whole card in one <a>, which flattens the heading and
   gives a screen reader a link named after every word in the card. Instead the
   link sits inside the <h3> and this pseudo-element stretches its hit area over
   the card - one link, real heading, same click target. */
.tile__link {
  color: var(--navy-deep);
}

.tile__link::after {
  content: '';
  position: absolute;
  inset: 0;
}

.tile:hover .tile__link {
  color: var(--navy);
}

.tile__body p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.tile__more {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ====================================================== 14. split == */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split__media {
  overflow: hidden;
  border-radius: var(--r-md);
}

.split__img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split__body p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}

.section--navy .split__body p,
.section--dark .split__body p {
  color: var(--on-navy);
}

/* ================================================= 15. assessment == */

.assess {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.assess__mark {
  position: absolute;
  left: -60px;
  top: -40px;
  z-index: -1;
  width: clamp(160px, 20vw, 260px);
  height: auto;
  opacity: 0.22;
  pointer-events: none;
}

.assess__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.assess__pitch .lede {
  margin-top: 20px;
  max-width: 480px;
  color: var(--on-navy-2);
}

.ticks {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  max-width: 480px;
}

.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--on-navy-3);
}

.ticks__mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--tick-bg);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.assess__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line-onnavy);
  font-size: 14px;
  color: var(--on-navy-2);
}

.assess__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.assess__phone-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-navy-faint);
}

.assess__phone a {
  color: #fff;
  font-weight: 500;
}

.assess__phone a:hover {
  color: var(--cyan);
}

.assess__address {
  flex-basis: 100%;
  line-height: 1.55;
  color: var(--on-navy-faint);
}

/* ======================================================= 16. form == */

.formcard {
  align-self: start;
  padding: 40px;
  background: var(--bg);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-form);
  color: var(--ink);
}

.formcard__lede {
  margin: 8px 0 26px;
  font-size: 15px;
  color: var(--text-2);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

/* One rule for the vertical rhythm of the whole form, rather than per-element
   margins that then have to be cancelled. The button and status message set
   their own larger spacing and are excluded. */
.form > * + *:not(.btn):not(.form__status) {
  margin-top: 14px;
}

/* Fields inside a row are grid items; the row's own gap spaces them. */
.form__row .field {
  margin-top: 0;
}

.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--label);
}

.field__opt {
  font-weight: 400;
  color: var(--muted);
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-input);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
}

.field__input:focus {
  border-color: var(--navy);
}

.field__input--area {
  resize: vertical;
  min-height: 76px;
}

.field__input:user-invalid {
  border-color: #b42318;
}

.form__status {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.form__status:empty {
  display: none;
}

.form__status[data-state='ok'] {
  color: #05603a;
}

.form__status[data-state='error'] {
  color: #b42318;
}

.formcard__fallback {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--text);
}

.formcard__note {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-2);
}

/* =================================================== 17. benefits == */

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit {
  padding: 28px 30px;
  background: var(--bg);
}

.section--alt .benefits,
.section--alt .benefit {
  background: var(--bg-alt);
}

.section--alt .benefits {
  background: var(--line);
}

.benefit__title {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-deep);
}

.benefit p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* ================================================ 18. testimonial == */

.quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote__text {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.34;
  font-weight: 500;
  color: var(--navy-deep);
  text-wrap: pretty;
}

.quote__by {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ====================================================== 19. cards == */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

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

.cards--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  padding: 30px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.section--alt .card {
  background: var(--bg);
}

.card__no {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
}

.card .h4:first-child {
  margin-top: 0;
}

.card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.card__more {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

/* ======================================================= 20. defs == */

.defs {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.defs__row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 24px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.defs__row dt {
  font-weight: 600;
  color: var(--navy-deep);
}

.defs__row dd {
  font-size: 15.5px;
  color: var(--text);
}

/* ================================================ 21. contact grid == */

.contactgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contactgrid__item {
  padding: 26px 28px;
  background: var(--bg);
}

.contactgrid__item--wide {
  grid-column: span 4;
}

.contactgrid__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.contactgrid__value {
  margin-top: 8px;
  font-size: 16.5px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--navy-deep);
}

/* ====================================================== 22. prose == */

.prose {
  max-width: 74ch;
}

.prose > * + * {
  margin-top: 18px;
}

.prose h2 {
  margin-top: 44px;
}

.prose h3 {
  margin-top: 32px;
}

.prose p,
.prose li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
}

.prose__list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.prose__list li {
  list-style: disc;
}

.prose__note {
  padding: 18px 22px;
  background: var(--bg-alt);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 15.5px !important;
}

.prose strong {
  color: var(--navy-deep);
}

/* ==================================================== 23. sitemap == */

.sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.sitemap__heading {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

.sitemap ul {
  display: grid;
  gap: 10px;
}

.sitemap a {
  font-size: 15.5px;
  color: var(--text);
}

.sitemap a:hover {
  color: var(--navy);
}

/* ======================================================== 24. cta == */

.cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta .lede {
  margin-top: 16px;
  max-width: 56ch;
}

.cta .btn-row {
  margin-top: 0;
  justify-content: flex-end;
}

/* ===================================================== 25. footer == */

.site-footer {
  padding: 72px var(--gutter) 44px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.site-footer__brand p {
  margin-top: 16px;
  max-width: 340px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
}

.site-footer__col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__heading {
  margin-bottom: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  /* The mockup uses #98A2B3 here. At 12.5px that is 2.6:1 on white and fails AA. */
  color: var(--text-2);
}

.site-footer__col a,
.site-footer__col address {
  font-size: 14.5px;
  color: var(--text);
}

.site-footer__col a:hover {
  color: var(--navy);
}

.site-footer__address {
  line-height: 1.55;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--wrap);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  /* Also #98A2B3 in the mockup; same AA problem at 13px. */
  color: var(--text-2);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__legal a {
  color: var(--text-2);
}

.site-footer__legal a:hover {
  color: var(--navy);
}

/* ================================================== 26. breakpoints == */

/* The mockup has none of these. It is a fixed 1240px desktop layout whose
   `1fr 1fr` grids and 40px gutters do not survive a phone. */

@media (max-width: 1180px) {
  :root {
    --gutter: 32px;
  }

  .duo,
  .split {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding-block: 84px;
  }

  .duo,
  .split,
  .assess__inner,
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .duo {
    align-items: start;
  }

  .cta .btn-row {
    justify-content: flex-start;
  }

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

  .cardgrid,
  .tiles {
    grid-template-columns: 1fr;
  }

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

  .split__img {
    height: 320px;
  }

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

  .contactgrid__item--wide {
    grid-column: span 2;
  }

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

  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .hero__body {
    padding-block: 104px 92px;
  }
}

/* The nav drawer. Must stay in step with the matchMedia query in site.js. */
@media (max-width: 860px) {
  .site-header__inner {
    gap: 16px;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 49;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px var(--gutter) 32px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .nav--open {
    display: flex;
  }

  .nav a {
    padding-block: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .nav__cta {
    display: block;
    margin-top: 24px;
  }

  .nav__cta .btn {
    display: block;
    width: 100%;
    padding-block: 15px;
  }

  .nav-toggle {
    display: block;
  }

  /* The header CTA duplicate is in the drawer now. */
  .header-actions .btn {
    display: none;
  }

  .program,
  .program__item {
    grid-template-columns: 1fr;
  }

  .program__item {
    padding: 28px 0;
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .program__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

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

  .tile__media {
    height: 200px;
    min-height: 0;
  }

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

  .defs__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .partners__inner,
  .partners__list {
    gap: 20px 28px;
  }

  .formcard {
    padding: 28px 24px;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
  }

  .section {
    padding-block: 64px;
  }

  .section--tight {
    padding-block: 48px;
  }

  .hero__body {
    padding: 88px var(--gutter) 72px;
  }

  .hero--page .hero__body,
  .page-header {
    padding-block: 60px 52px;
  }

  .stats--hero {
    margin-top: 48px;
  }

  .pillars,
  .cards,
  .cards--2,
  .cards--4,
  .contactgrid,
  .sitemap,
  .site-footer__cols,
  .form__row,
  .stats--split {
    grid-template-columns: 1fr;
  }

  .contactgrid__item--wide {
    grid-column: span 1;
  }

  .stats--split .stats__item:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .imgcard__body,
  .tile__body {
    padding: 26px 22px;
  }

  .assess__contact {
    gap: 16px;
  }

  .site-footer {
    padding-top: 56px;
  }
}

/* ============================================== 27. motion and print == */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header,
  .nav-toggle,
  .skip-link,
  .hero__mark,
  .page-header__mark,
  .btn-row,
  .form,
  .partners {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .page-header,
  .section--navy,
  .section--dark {
    background: #fff !important;
    color: #000 !important;
  }

  .hero__media,
  .hero__scrim {
    display: none !important;
  }

  .h1,
  .h2,
  .h3,
  .section--navy .h2,
  .section--dark .h2 {
    color: #000 !important;
  }

  .lede,
  .lede--hero,
  .ticks li,
  .pillar p {
    color: #222 !important;
  }

  .section {
    padding-block: 24px;
    page-break-inside: avoid;
  }

  a[href^='http']::after {
    content: ' (' attr(href) ')';
    font-size: 11px;
  }
}

/* Blurred hero placeholders. Generated by tools/build.mjs from the image
   manifest - edit tools/optimize-images.mjs, not this. */
.hero__media--data-center-audit{background-image:url("data:image/webp;base64,UklGRoQAAABXRUJQVlA4IHgAAAAQBACdASoUAAsAPxFysFAsJqSisAgBgCIJYgCdEf/gNDKsmihVPROIAAD+vEc7nJBxx7i5P1rvO8MgqFpyOukO/8qF0iRpfAP2MHn9TwYtCUH1Aac+fU/pTKuTZvv6OIrhsYBFkTRbpr4xMoQUqJY5lNZQWFx8wAA=");background-size:cover;background-position:center}
.hero__media--facility-lights{background-image:url("data:image/webp;base64,UklGRnAAAABXRUJQVlA4IGQAAACQAwCdASoUAAsAPxFysVAsJqSisAgBgCIJaACw7BM3xOPh+k8AAP7pQ8Ptln3KXjnLpcv/o/DB6O91d66Yiri+R1+Rla4t9CzafD7M+eMr0WHihe/2IH5VbSv7fF9gcshoAAAA");background-size:cover;background-position:center}
.hero__media--finance-analytics{background-image:url("data:image/webp;base64,UklGRpoAAABXRUJQVlA4II4AAADQAwCdASoUAA0APxFysFAsJqSisAgBgCIJQBfnAzJGBgYTEPF2oGgA/VOpC34zYo9Ho63v9GvSXZq7+qjjuwNf1UyxoCuaoMWRijp+MR6U/NXm8aWkFJxj7aiCla6m2M4iU6o+2CHYBcbwO24bsudr08zw6ogw++5UqEmLRDa2P6EDaqp0zMyfF/WFgZAA");background-size:cover;background-position:center}
.hero__media--hero-skyline{background-image:url("data:image/webp;base64,UklGRnIAAABXRUJQVlA4IGYAAADwAwCdASoUAA0APxFysFAsJqSisAgBgCIJYwCw7CKQ+b2Jki165fUAAP7gTpUJcXrTaMUoETotvBMq+5ITV8p58Crl+HjSoYkvmsh+0mncFYUdRDSIJ3mCYSLtCO/LsWPl+N+UoAA=");background-size:cover;background-position:center}
.hero__media--industrial-robot{background-image:url("data:image/webp;base64,UklGRogAAABXRUJQVlA4IHwAAAAwBACdASoUAAsAPxFysFAsJqSisAgBgCIJbADE2YwSmhLeWpT+hMc+MgAA/jyTMxNVVzs24grsFsVc1PEs1i9w6JkfBH9uD1S3rtSLIwVVarmbzGbmc+bd/uuN7zTdfRHOJ0lSMY6G6Iiiniq+x2Ca05HlZCQiZIx7BUAA");background-size:cover;background-position:center}
.hero__media--retail-payment{background-image:url("data:image/webp;base64,UklGRo4AAABXRUJQVlA4IIIAAACQBACdASoUAAsAPxFysFAsJqSisAgBgCIJagCdMoR3A8ABP6zUwRtjjtE8DtAA/tzGAIZCT+w2e/7BFZM3Xb5MRaQVo48QzPmxTG+GaSVQIF1jv1B3+sACR+uJDfGRhDGz8MPMnnLgOhauHR0G6m5KNUFJoKhGSpWU4Qf5FVOeGkAA");background-size:cover;background-position:center}
.hero__media--server-racks{background-image:url("data:image/webp;base64,UklGRnwAAABXRUJQVlA4IHAAAAAQBACdASoUAAwAPxFysFAsJqSisAgBgCIJbACdMoAC8Ys241dl7xHAAAD+Rn4CI0CAkQZg0LQi8RbV+bOKZzH1LVGSUIV0UlWW/PGIb8L526Fd/XNQ5Zji7bGZG32NlJVJwBNauC+UAPLBGkQd9UAA");background-size:cover;background-position:center}
.hero__media--workplace{background-image:url("data:image/webp;base64,UklGRnwAAABXRUJQVlA4IHAAAACQAwCdASoUAA0APxFysFAsJqSisAgBgCIJZQAAIOHGuVjHokJAAP6XJhDIQ1GXleDBVBL+1V7Kcl0o1Bb1YbjFBqZyweDJxSLRQGquM5rG7VlZjzvOpv1QRmT1V5eSNt0Bfo6ekRs/4vp/ZFCsOAAA");background-size:cover;background-position:center}
