/* ==========================================================================
   Dajcor Aluminum — site stylesheet
   Brand tokens, type scale and component specs mirror the production site.
   ========================================================================== */

/* ---------- fonts ---------- */
@font-face {
  font-family: "Bebas";
  src: url("../fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-SemiboldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nexa";
  src: url("../fonts/nexa-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --dark-blue: #000f44;
  --dark-blue-75: #000f44bf;
  --dark-blue-82: #000f44d1;
  --medium-blue: #3e6cb1;
  --light-blue: #e1efff;
  --lighter-blue: #f0f7ff;
  --light-grey: #f0f0f0;
  --dark-grey: #afafaf;
  --white: #fff;
  --n-5: #f5f5f5;
  --n-10: #ececec;
  --n-25: lightgrey;
  --n-50: #9b9b9b;
  --n-75: #555;
  --n-90: #2e2e2e;
  --n-100: #161616;
  --transparent: #16161600;

  --nav-h: 5rem;
  --display: "Bebas", "Arial Narrow", Arial, sans-serif;
  --ui: "Nexa", Arial, sans-serif;
  --body: "General Sans", Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  margin: 0;
  color: #333;
  background-color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
  display: inline-block;
}

a {
  color: inherit;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

li {
  margin-bottom: 0.4rem;
}

p {
  margin: 0 0 1rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--n-25);
  margin: 2rem 0;
}

/* ---------- type scale ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-blue);
  margin: 0 0 0.625rem;
}

h1 {
  font-family: var(--display);
  font-size: 3.75em;
  font-weight: 400;
  line-height: 1.1em;
}

h2 {
  font-family: var(--display);
  font-size: 4em;
  font-weight: 400;
  line-height: 0.95em;
}

h3 {
  font-family: var(--display);
  font-size: 2.75em;
  font-weight: 400;
  line-height: 1.05em;
}

h4 {
  font-family: var(--ui);
  font-size: 1.6em;
  font-weight: 900;
  line-height: 1.1em;
  letter-spacing: 0;
}

h5 {
  font-family: var(--ui);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
}

.heading-h5 {
  font-family: var(--ui);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.1em;
  letter-spacing: 0;
  color: var(--dark-blue);
  margin: 0;
}

.eyebrow {
  font-family: var(--ui);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--medium-blue);
  margin: 0 0 0.5rem;
}

.text-size-large {
  font-size: 1.2em;
}

.text-size-small {
  font-size: 0.9em;
}

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

.opacity-75 {
  opacity: 0.75;
}

.text-center {
  text-align: center;
}

/* ---------- layout ---------- */
.container--main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.container--small {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.section--tight {
  padding: 4rem 0;
}

.section--light {
  background-color: var(--lighter-blue);
}

.section--pale {
  background-color: var(--light-blue);
}

.page-content {
  padding-top: var(--nav-h);
}

/* ---------- buttons ---------- */
.button-primary,
.button-secondary {
  height: 48px;
  padding: 0 1.25rem;
  font-family: var(--ui);
  font-size: 1em;
  font-weight: 900;
  line-height: 1em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.button-primary {
  border-color: var(--dark-blue);
  background-color: var(--dark-blue);
  color: var(--white);
}

.button-primary:hover {
  background-color: transparent;
  color: var(--dark-blue);
  transform: scale(1.075);
}

.button-secondary {
  border-color: var(--light-blue);
  background-color: var(--light-blue);
  color: var(--dark-blue);
}

.button-secondary:hover {
  background-color: transparent;
  color: var(--white);
  transform: scale(1.075);
}

.button-primary:focus-visible,
.button-secondary:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
  outline: 2px solid #0050bd;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  box-shadow: 0 2px 5px #0003;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 4vw;
}

.brand {
  z-index: 1;
  display: flex;
  align-items: center;
  flex: none;
}

.brand-logo {
  width: 240px;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin-left: auto;
}

.nav-link {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 0.5rem;
  padding: 0 0.75rem;
  border-right: 1px solid #00000040;
  opacity: 0.8;
  color: var(--dark-blue);
  font-family: var(--ui);
  font-size: 1em;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.25px;
  text-decoration: none;
  background: none;
  border-top: 0;
  border-left: 0;
  border-bottom: 0;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.is-current {
  color: var(--medium-blue);
  opacity: 1;
}

.nav-link.last {
  border-right: 0;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.dropdown-icon {
  width: 0.65em;
  height: 0.65em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.1em);
  transition: transform 0.2s;
  flex: none;
}

.dropdown[data-open="true"] .dropdown-icon {
  transform: rotate(225deg) translateY(-0.1em);
}

.dropdown-list {
  display: none;
  position: absolute;
  inset: 100% auto auto 0;
  width: 240px;
  padding: 0;
  background-color: var(--light-blue);
  box-shadow: 0 8px 20px #00000026;
  flex-flow: column;
}

.dropdown[data-open="true"] .dropdown-list {
  display: flex;
}

.dropdown-link {
  display: block;
  width: 100%;
  padding: 0.75em;
  border-bottom: 1px solid var(--n-25);
  color: var(--dark-blue);
  font-family: var(--ui);
  font-size: 1.1em;
  font-weight: 900;
  line-height: 1em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.4s, border-color 0.1s;
}

.dropdown-link:hover {
  background-color: #000f441f;
  border-bottom-color: transparent;
}

.dropdown-link.is-current {
  color: var(--medium-blue);
}

.dropdown-link.last {
  border-bottom-color: transparent;
}

.nav-cta--wrapper {
  display: flex;
  align-items: center;
  gap: 1em;
  padding-left: 24px;
  flex: none;
}

.link--icon-text.menu-phone {
  display: none;
  align-items: center;
  gap: 0.5em;
  color: var(--n-100);
  font-weight: 600;
  text-decoration: underline;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

.mobile-menu--button {
  display: none;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background-color: var(--medium-blue);
  color: var(--white);
  cursor: pointer;
}

.mobile-menu--button[aria-expanded="true"] {
  background-color: var(--dark-blue);
}

.burger {
  position: relative;
  width: 25px;
  height: 2px;
  background: currentColor;
  display: block;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s, top 0.2s;
}

.burger::before {
  top: -8px;
}

.burger::after {
  top: 8px;
}

.mobile-menu--button[aria-expanded="true"] .burger {
  background: transparent;
}

.mobile-menu--button[aria-expanded="true"] .burger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu--button[aria-expanded="true"] .burger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- language switcher ---------- */
.locales-wrapper {
  position: fixed;
  inset: auto 4vw 0 auto;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.locale-toggle {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 2.75rem 0.8rem 0.8rem;
  border: 0;
  background-color: var(--medium-blue);
  color: var(--white);
  font-family: var(--body);
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.locale-toggle[aria-expanded="true"] {
  background-color: var(--dark-blue);
}

.locale-toggle .dropdown-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-top: -0.5em;
}

.locale-toggle[aria-expanded="true"] .dropdown-icon {
  transform: rotate(225deg) translateY(-0.1em);
}

.locale-dropdown {
  display: none;
  position: absolute;
  bottom: 2.75rem;
  right: 0;
  width: 240px;
  background-color: var(--light-blue);
  box-shadow: 0 -8px 20px #00000026;
  flex-flow: column;
}

.locale-toggle[aria-expanded="true"] + .locale-dropdown {
  display: flex;
}

.local-link {
  display: block;
  padding: 0.75em;
  border-bottom: 1px solid var(--n-25);
  color: var(--dark-blue);
  font-weight: 600;
  text-decoration: none;
}

.local-link:hover {
  background-color: #000f441f;
}

.local-link.is-current {
  color: var(--medium-blue);
}

/* ---------- subpage hero ---------- */
.section--subpage-hero-image {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: var(--white);
  background-color: var(--dark-blue);
}

/* the navy wash that sits over the hero photo */
.section--subpage-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--dark-blue-75);
}

.section--subpage-hero-image .container--small {
  position: relative;
  z-index: 1;
  text-align: center;
}

.subpage-hero_content {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  min-height: 16rem;
  justify-content: center;
}

.subpage-hero_content h1,
.subpage-hero_content .hero-subtext {
  color: var(--white);
  margin: 0;
}

.background-img {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  width: 100%;
  aspect-ratio: 2.39;
  object-fit: cover;
}

/* ---------- capability / industry card grids ---------- */
.capabilities-industries_content {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
}

.thumbnail_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

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

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

.capability_card {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  background-color: var(--white);
  box-shadow: 0 2px 1rem #0000001f;
}

.capability-card_top {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.capability-card_info p {
  margin: 0;
  color: var(--n-75);
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-container.thumbnail-icon {
  width: 7rem;
  height: 7rem;
  border-radius: 4rem;
  background-color: var(--light-blue);
  flex: none;
}

.image-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industries_top {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.industries_top h2 {
  margin-bottom: 0.5rem;
}

.industries_top p {
  margin: 0;
}

/* photo-led industry cards (industries index) */
.industry_card {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  min-height: 22rem;
  padding: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  background-color: var(--dark-blue);
}

.industry_card .image-cover {
  transition: transform 0.5s;
}

.industry_card:hover .image-cover {
  transform: scale(1.06);
}

.industry_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to top,
    #000f44f2 0%,
    #000f4499 45%,
    #000f4433 100%
  );
}

.industry_card_body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1rem;
}

.industry_card_body h3 {
  color: var(--white);
  margin: 0;
  font-size: 2rem;
}

.industry_card_body p {
  margin: 0;
  color: #ffffffd9;
  font-size: 0.9em;
}

/* ---------- inline / full CTA bands ---------- */
.cta-inline {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue-82);
}

.cta-inline .image-cover {
  z-index: 0;
}

.cta-full--wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 44rem;
  padding: 8rem 2rem;
  text-align: center;
}

.cta-full--wrapper h2,
.cta-full--wrapper h3 {
  color: var(--white);
  margin: 0;
}

.cta-full--wrapper p {
  margin: 0;
  color: var(--white);
}

/* simple closing band ("Ready to get started?") */
.section--closing-cta {
  background-color: var(--dark-blue);
  padding: 5rem 0;
}

.closing-cta_inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.closing-cta_inner h2 {
  color: var(--white);
  margin: 0;
}

/* ---------- rich content (capability + legal pages) ---------- */
.rich-content h2 {
  margin-top: 0;
}

.rich-content h3 {
  margin-top: 3rem;
}

.rich-content > *:first-child {
  margin-top: 0;
}

.lead {
  font-size: 1.2em;
  color: var(--n-75);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin: 0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--medium-blue);
  transform: rotate(45deg);
}

.checklist._2col {
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

/* performance feature cards */
.feature_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.feature_card {
  padding: 1.5rem;
  background-color: var(--white);
  border-left: 4px solid var(--medium-blue);
  box-shadow: 0 2px 1rem #0000001f;
}

.feature_card strong {
  display: block;
  font-family: var(--ui);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 0.35rem;
}

.feature_card span {
  color: var(--n-75);
  font-size: 0.95em;
}

/* numbered process steps */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 4rem;
  margin: 0;
  background-color: var(--white);
  box-shadow: 0 2px 1rem #0000001f;
  font-family: var(--ui);
  font-weight: 900;
  color: var(--dark-blue);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-blue);
  color: var(--dark-blue);
  font-family: var(--display);
  font-size: 1.25rem;
}

/* two-column split (media + copy) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--wide-text {
  grid-template-columns: 1.15fr 0.85fr;
}

.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* pull-quote style value statement */
.value-statement {
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--light-blue);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.05;
  color: var(--dark-blue);
}

/* ---------- on-this-page jump nav ---------- */
.page-nav {
  border-top: 1px solid var(--n-10);
  border-bottom: 1px solid var(--n-10);
  background-color: var(--white);
}

.page-nav_inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.75rem 0;
}

.page-nav_label {
  flex: none;
  font-family: var(--ui);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--n-50);
}

.page-nav a {
  flex: none;
  padding: 0.35rem 0;
  color: var(--dark-blue);
  font-family: var(--ui);
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.page-nav a:hover {
  border-bottom-color: var(--medium-blue);
  color: var(--medium-blue);
}

/* ---------- stat band ---------- */
.stat_band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: #ffffff29;
}

.section--stats {
  background-color: var(--dark-blue);
  padding: 0;
}

.stat {
  padding: 3rem 1.5rem;
  text-align: center;
  background-color: var(--dark-blue);
}

.stat_value {
  display: block;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: var(--white);
}

.stat_label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--body);
  font-size: 0.95rem;
  color: #ffffffb3;
}

/* ---------- spec tables ---------- */
.table_wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  box-shadow: 0 2px 1rem #0000001f;
  background-color: var(--white);
}

.spec_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98em;
}

.spec_table caption {
  text-align: left;
  padding: 1.25rem 1.5rem 0;
  font-family: var(--ui);
  font-weight: 900;
  color: var(--dark-blue);
}

.spec_table th,
.spec_table td {
  padding: 0.9rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--n-10);
  vertical-align: top;
}

.spec_table thead th {
  font-family: var(--ui);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--medium-blue);
  border-bottom: 2px solid var(--light-blue);
  white-space: nowrap;
}

.spec_table tbody th {
  font-family: var(--ui);
  font-weight: 900;
  color: var(--dark-blue);
  white-space: nowrap;
}

.spec_table tbody tr:last-child th,
.spec_table tbody tr:last-child td {
  border-bottom: 0;
}

.spec_table tbody tr:hover {
  background-color: var(--lighter-blue);
}

/* ---------- prose + figure splits ---------- */
.prose_split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.prose_split--reverse .prose_split_media {
  order: -1;
}

.prose_split_media {
  margin: 0;
}

.prose_split_media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.prose_split_media figcaption {
  margin-top: 0.75rem;
  font-size: 0.9em;
  color: var(--n-75);
}

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

.prose h2,
.prose h3 {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1.15rem;
}

/* ---------- pull quote ---------- */
.pullquote {
  margin: 2.5rem 0;
  padding: 0 0 0 2rem;
  border-left: 4px solid var(--medium-blue);
}

.pullquote p {
  margin: 0;
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: 1.05;
  color: var(--dark-blue);
}

.pullquote footer {
  margin-top: 0.75rem;
  font-size: 0.95em;
  color: var(--n-75);
}

/* ---------- callout aside ---------- */
.callout {
  margin: 2rem 0;
  padding: 1.75rem 2rem;
  background-color: var(--light-blue);
  border-left: 4px solid var(--dark-blue);
}

.callout h4 {
  margin-top: 0;
  font-size: 1.15em;
}

.callout > *:last-child {
  margin-bottom: 0;
}

/* ---------- process steps with descriptions ---------- */
.process {
  margin: 2rem 0 0;
  counter-reset: pstep;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--n-10);
}

.process > div {
  counter-increment: pstep;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--n-10);
}

.process dt {
  font-family: var(--ui);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--dark-blue);
  grid-column: 2;
}

.process dd {
  margin: 0.35rem 0 0;
  grid-column: 2;
  color: var(--n-75);
}

.process > div::before {
  content: counter(pstep, decimal-leading-zero);
  grid-row: 1 / span 2;
  grid-column: 1;
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--medium-blue);
}

/* ---------- definition grid ---------- */
.def_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin: 2rem 0 0;
}

.def_grid > div {
  padding-top: 1rem;
  border-top: 2px solid var(--light-blue);
}

.def_grid dt {
  font-family: var(--ui);
  font-weight: 900;
  color: var(--dark-blue);
  margin-bottom: 0.35rem;
}

.def_grid dd {
  margin: 0;
  color: var(--n-75);
  font-size: 0.97em;
}

/* ---------- application cards with copy ---------- */
.app_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.app_card {
  padding: 1.75rem;
  background-color: var(--white);
  box-shadow: 0 2px 1rem #0000001f;
  border-top: 3px solid var(--medium-blue);
}

.app_card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1em;
}

.app_card p {
  margin: 0;
  color: var(--n-75);
  font-size: 0.95em;
}

/* ---------- cross-link strip ---------- */
.crosslink_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.crosslink {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background-color: var(--white);
  box-shadow: 0 2px 1rem #0000001f;
  text-decoration: none;
  transition: transform 0.2s;
}

.crosslink:hover {
  transform: translateY(-3px);
}

.crosslink strong {
  font-family: var(--ui);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--dark-blue);
}

.crosslink span {
  color: var(--n-75);
  font-size: 0.92em;
}

.crosslink em {
  font-family: var(--ui);
  font-weight: 900;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--medium-blue);
  margin-top: auto;
}

/* ---------- section header ---------- */
.section_header {
  max-width: 44rem;
  margin-bottom: 1rem;
}

.section_header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section_header h2 {
  margin-bottom: 0.75rem;
}

.section_header p {
  margin: 0;
  font-size: 1.1em;
  color: var(--n-75);
}

.section_header.on-dark h2 {
  color: var(--white);
}

.section_header.on-dark p {
  color: #ffffffb3;
}

/* ---------- breadcrumbs ---------- */
.breadcrumbs {
  border-bottom: 1px solid var(--n-10);
  background-color: var(--white);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.85rem 0;
  list-style: none;
  font-size: 0.9rem;
}

.breadcrumbs li {
  margin: 0;
  color: var(--n-75);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--n-50);
}

.breadcrumbs a {
  color: var(--medium-blue);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs li[aria-current] {
  color: var(--dark-blue);
  font-weight: 600;
}

/* ---------- article page ---------- */
.article_header {
  margin-bottom: 2.5rem;
}

.article_kicker {
  margin: 0 0 0.75rem;
  font-family: var(--ui);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--medium-blue);
}

.article_header h1 {
  margin: 0 0 1rem;
}

.article_standfirst {
  font-size: 1.25em;
  line-height: 1.5;
  color: var(--n-75);
  margin: 0 0 1.5rem;
}

.article_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--n-10);
  font-size: 0.92rem;
  color: var(--n-75);
}

.article_meta span:first-child {
  font-weight: 600;
  color: var(--dark-blue);
}

.article_role {
  color: var(--n-50);
}

.article_hero {
  margin: 0 0 2.5rem;
}

.article_hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article_toc {
  margin: 0 0 2.5rem;
  padding: 1.5rem 1.75rem;
  background-color: var(--lighter-blue);
  border-left: 4px solid var(--medium-blue);
}

.article_toc h2 {
  margin: 0 0 0.75rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--n-75);
}

.article_toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.article_toc li {
  margin-bottom: 0.35rem;
}

.article_toc a {
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 600;
}

.article_toc a:hover {
  color: var(--medium-blue);
  text-decoration: underline;
}

.article_body > h2 {
  margin-top: 3rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.article_body > h3 {
  margin-top: 2.25rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

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

.article_body p {
  margin-bottom: 1.25rem;
}

.article_body a {
  color: var(--medium-blue);
  text-decoration: underline;
}

.article_figure {
  margin: 2.5rem 0;
}

.article_figure img {
  width: 100%;
}

.article_figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.9em;
  color: var(--n-75);
}

ol.numbered {
  padding-left: 1.35rem;
  margin-bottom: 1.25rem;
}

ol.numbered li {
  margin-bottom: 0.6rem;
  padding-left: 0.35rem;
}

ol.numbered li::marker {
  font-family: var(--ui);
  font-weight: 900;
  color: var(--medium-blue);
}

.article_footer {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--n-10);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.article_footer p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--n-75);
}

/* ---------- answer-first key takeaway ---------- */
.key_takeaway {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background-color: var(--dark-blue);
  color: var(--white);
  border-left: 6px solid var(--medium-blue);
}

.key_takeaway h2,
.key_takeaway p.key_takeaway_label {
  margin: 0 0 0.6rem;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9dc0f0;
}

.key_takeaway p:last-child {
  margin: 0;
  font-size: 1.2em;
  line-height: 1.55;
  color: var(--white);
}

/* ---------- TL;DR summary ---------- */
.tldr {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background-color: var(--lighter-blue);
  border: 1px solid var(--light-blue);
}

.tldr h2 {
  margin: 0 0 0.9rem;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-75);
}

.tldr ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.tldr li {
  position: relative;
  margin: 0;
  padding-left: 1.75rem;
  color: var(--n-90);
}

.tldr li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--medium-blue);
  transform: rotate(45deg);
}

/* ---------- inline note ---------- */
.note {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background-color: var(--n-5);
  border-left: 4px solid var(--dark-grey);
}

.note p {
  margin: 0;
}

.note strong.note_label {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--ui);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-blue);
}

/* ---------- HowTo steps ---------- */
.howto {
  margin: 2rem 0;
  padding: 0;
  counter-reset: hstep;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.howto li {
  counter-increment: hstep;
  position: relative;
  margin: 0;
  padding: 1.35rem 1.5rem 1.35rem 4.25rem;
  background-color: var(--white);
  box-shadow: 0 2px 1rem #0000001f;
}

.howto li::before {
  content: counter(hstep);
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-blue);
  color: var(--dark-blue);
  font-family: var(--display);
  font-size: 1.25rem;
}

.howto strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--ui);
  font-weight: 900;
  color: var(--dark-blue);
}

.howto span {
  color: var(--n-75);
}

/* ---------- source citations ---------- */
.sources {
  margin: 3rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 2px solid var(--light-blue);
}

.sources h2 {
  margin: 0 0 0.9rem;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-75);
}

.sources ol {
  margin: 0;
  padding-left: 1.35rem;
}

.sources li {
  margin-bottom: 0.5rem;
  font-size: 0.94em;
  color: var(--n-75);
}

.sources a {
  color: var(--medium-blue);
}

/* ---------- article index ---------- */
.article_list {
  display: grid;
  gap: 1.5rem;
}

.article_card {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 2rem;
  background-color: var(--white);
  box-shadow: 0 2px 1rem #0000001f;
}

.article_card > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article_card_body {
  padding: 2rem 2rem 2rem 0;
}

.article_card:not(:has(> img)) .article_card_body {
  padding-left: 2rem;
}

.article_card h2 {
  font-size: 2.25em;
  margin: 0 0 0.75rem;
}

.article_card h2 a {
  color: inherit;
  text-decoration: none;
}

.article_card h2 a:hover {
  color: var(--medium-blue);
}

.article_card_body > p {
  color: var(--n-75);
  margin-bottom: 1rem;
}

.empty_state {
  max-width: 34rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--lighter-blue);
}

.empty_state h2 {
  margin-top: 0;
}

.empty_state p {
  color: var(--n-75);
}

/* ---------- applications page ---------- */
.application_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--n-10);
}

.application_row:last-child {
  border-bottom: 0;
}

.application_row:nth-child(even) .application_media {
  order: -1;
}

.application_media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.application_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- news ---------- */
.news_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news_card {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--white);
  box-shadow: 0 2px 1rem #0000001f;
  text-decoration: none;
  height: 100%;
  justify-content: space-between;
}

.news_card h4 {
  margin: 0;
}

.news_card p {
  color: var(--n-75);
  font-size: 0.95em;
  margin: 0;
}

.news_card .read-more {
  font-family: var(--ui);
  font-weight: 900;
  color: var(--medium-blue);
  text-decoration: none;
}

/* ---------- resources / FAQ ---------- */
.resource_split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.faq_list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.faq_item {
  background-color: var(--white);
  box-shadow: 0 2px 1rem #0000001f;
}

.faq_question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ui);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--dark-blue);
}

.faq_question .dropdown-icon {
  color: var(--medium-blue);
  flex: none;
}

.faq_item[data-open="true"] .dropdown-icon {
  transform: rotate(225deg) translateY(-0.1em);
}

.faq_answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--n-75);
}

.faq_item[data-open="true"] .faq_answer {
  display: block;
}

.faq_answer > *:last-child {
  margin-bottom: 0;
}

/* download buttons with a small menu */
.download_group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ---------- forms ---------- */
.form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form_field {
  display: flex;
  flex-flow: column;
  gap: 0.4rem;
}

.form_field--full {
  grid-column: 1 / -1;
}

.form_field label {
  font-family: var(--ui);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--dark-blue);
}

.form_field input[type="text"],
.form_field input[type="email"],
.form_field input[type="tel"],
.form_field input[type="number"],
.form_field select,
.form_field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--n-25);
  background-color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--n-100);
}

.form_field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form_field input:focus,
.form_field select:focus,
.form_field textarea:focus {
  outline: 2px solid var(--medium-blue);
  outline-offset: -1px;
  border-color: var(--medium-blue);
}

.checkbox_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.checkbox_item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-weight: 400;
  color: var(--n-100);
}

.form_section_title {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
}

.form_section_title:first-child {
  margin-top: 0;
}

.form_note {
  grid-column: 1 / -1;
  color: var(--n-75);
  font-size: 0.9em;
  margin: 0;
}

.form_status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
  background-color: var(--light-blue);
  color: var(--dark-blue);
  font-weight: 600;
}

/* ---------- locations / contact cards ---------- */
.location_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.location_card {
  padding: 2rem;
  background-color: var(--white);
  box-shadow: 0 2px 1rem #0000001f;
}

.location_card h4 {
  margin-top: 0;
}

.location_card address {
  font-style: normal;
  color: var(--n-75);
  margin-bottom: 1rem;
  white-space: pre-line;
}

.location_card--dark {
  background-color: var(--dark-blue);
  color: var(--white);
  box-shadow: none;
}

.location_card--dark h4,
.location_card--dark a {
  color: var(--white);
}

.location_card--dark address {
  color: #ffffffbf;
}

.link--icon-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  text-decoration: underline;
  color: inherit;
}

.social_row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--medium-blue);
  transition: transform 0.2s;
}

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

.social-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.map_img {
  width: 100%;
  margin-bottom: 3rem;
}

/* ---------- footer ---------- */
.section--footer {
  background-color: var(--lighter-blue);
  padding: 8rem 0 2rem;
}

.footer_top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
}

.footer-logo-img {
  width: 140px;
}

.footer_nav {
  display: flex;
  flex-flow: column;
  gap: 0.35rem;
  margin-top: 2.5rem;
}

.footer-link {
  color: var(--n-100);
  text-decoration: none;
  font-family: var(--ui);
  font-weight: 900;
  font-size: 1.2rem;
}

.footer-link:hover {
  color: var(--medium-blue);
}

.footer_tagline {
  font-family: var(--display);
  font-size: 2.75em;
  line-height: 1.05;
  color: var(--dark-blue);
  margin: 0 0 2.5rem;
}

.footer_locations_title {
  margin-bottom: 1rem;
}

.footer_locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer_location address {
  font-style: normal;
  white-space: pre-line;
  margin-bottom: 0.5rem;
  color: var(--n-90);
}

.text-link {
  color: var(--dark-blue);
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: underline;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 5rem;
}

.footer_legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-link-small {
  color: var(--n-90);
  font-size: 0.95em;
  text-decoration: underline;
}

.footer_copy {
  margin: 0;
  color: var(--n-75);
}

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

.stack {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
}

.row-center {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Breakpoints — mirror the production site's 991 / 767 / 479 stops
   ========================================================================== */
@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25em;
  }

  h2 {
    font-size: 3.25em;
  }

  .container--main {
    padding: 0 2rem;
  }

  .section {
    padding: 6rem 0;
  }

  .section--footer {
    padding-top: 6rem;
  }

  .navbar {
    height: 4.6rem;
  }

  :root {
    --nav-h: 4.6rem;
  }

  .nav-container {
    margin: 0 0 0 3vw;
    height: 100%;
  }

  .brand-logo {
    width: 160px;
  }

  .mobile-menu--button {
    display: flex;
  }

  /* full-height slide-in menu */
  .nav-menu {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 auto;
    height: calc(100vh - var(--nav-h));
    flex-flow: column;
    align-items: stretch;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    overflow-y: auto;
  }

  .nav-menu[data-open="true"] {
    display: flex;
  }

  .dropdown {
    flex-flow: column;
    align-items: stretch;
  }

  .nav-link {
    width: 100%;
    height: 64px;
    justify-content: flex-start;
    padding: 0 0 0 3vw;
    border-right: 0;
    gap: 0.5rem;
  }

  .dropdown-list {
    position: static;
    width: 100%;
    background-color: var(--n-5);
    box-shadow: none;
  }

  .dropdown-link {
    padding: 1em 3vw;
  }

  .dropdown-link:hover {
    background-color: var(--light-blue);
  }

  .nav-cta--wrapper {
    flex-flow: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    gap: 2em;
    padding: 3vw;
    border-top: 1px solid var(--n-25);
  }

  .link--icon-text.menu-phone {
    display: inline-flex;
  }

  .button-primary.menu-button {
    align-self: stretch;
    height: 64px;
  }

  .thumbnail_grid,
  .thumbnail_grid._4 {
    grid-template-columns: 1fr 1fr;
  }

  .thumbnail_grid._3 {
    grid-template-columns: 1fr;
  }

  .split,
  .resource_split,
  .application_row,
  .prose_split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .prose_split--reverse .prose_split_media {
    order: 0;
  }

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

  .stat {
    padding: 2.25rem 1rem;
  }

  .stat_value {
    font-size: 3.25rem;
  }

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

  .pullquote p {
    font-size: 1.9rem;
  }

  .application_row:nth-child(even) .application_media {
    order: 0;
  }

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

  .footer_top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-full--wrapper {
    padding: 6rem 2rem;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.75em;
  }

  h2 {
    font-size: 2.5em;
  }

  h3 {
    font-size: 2.25em;
  }

  .container--main,
  .container--small {
    padding: 0 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section--footer {
    padding-top: 4rem;
  }

  .background-img {
    aspect-ratio: 16 / 9;
  }

  .capability_card {
    padding: 1.5rem 1rem;
  }

  .feature_grid,
  .form_grid,
  .location_grid,
  .footer_locations,
  .news_grid,
  .checklist._2col,
  .app_grid,
  .crosslink_grid,
  .def_grid {
    grid-template-columns: 1fr;
  }

  .pullquote {
    padding-left: 1.25rem;
  }

  .article_card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .article_card_body,
  .article_card:not(:has(> img)) .article_card_body {
    padding: 1.75rem;
  }

  .article_card h2 {
    font-size: 1.9em;
  }

  .article_footer {
    flex-flow: column;
    align-items: flex-start;
  }

  .key_takeaway,
  .tldr {
    padding: 1.35rem 1.5rem;
  }

  .key_takeaway p:last-child {
    font-size: 1.08em;
  }

  .howto li {
    padding: 1.2rem 1.25rem 1.2rem 1.25rem;
  }

  .howto li::before {
    position: static;
    margin-bottom: 0.6rem;
  }

  .pullquote p {
    font-size: 1.6rem;
  }

  .process > div {
    grid-template-columns: 2.75rem 1fr;
    gap: 1rem;
  }

  .process > div::before {
    font-size: 1.75rem;
  }

  .callout {
    padding: 1.25rem 1.5rem;
  }

  .spec_table th,
  .spec_table td {
    padding: 0.75rem 1rem;
  }

  .footer_tagline {
    font-size: 2.25em;
  }

  .cta-full--wrapper {
    padding: 4rem 1.5rem;
  }

  .value-statement {
    font-size: 1.6rem;
    padding: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.4em;
  }

  h2 {
    font-size: 2.1em;
  }

  .thumbnail_grid,
  .thumbnail_grid._4 {
    grid-template-columns: 1fr;
  }

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

  .background-img {
    aspect-ratio: 1;
  }

  .locales-wrapper {
    inset: auto 2vw 0 auto;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .download_group .button-primary,
  .download_group .button-secondary {
    width: auto;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .button-primary:hover,
  .button-secondary:hover {
    transform: none;
  }
}
