:root {
  --font-display: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-white: #ffffff;
  --text-dark: #0a0a0a;
  --text-muted: #d4d4d4;
  --primary-1: #00a19a;
  --primary-2: #05807c;
  --primary-3: #c7fff6;
  --primary-stroke: #51f7e4;
  --bg-dark: #0a0a0a;
  --container-ghn: 1320px;
  --header-height: 78px;
  --radius-button: 2px;
  --shadow-dropdown: 0 8px 24px rgba(10, 10, 10, 0.14);
  --shadow-button: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

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

/* Shared header and button primitives */
.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  background: var(--text-white);
  color: var(--text-dark);
}

.header-inner {
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  width: 130px;
  height: 50px;
  flex: 0 0 130px;
  align-items: center;
}

.brand img {
  width: 130px;
  height: auto;
}

.primary-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: 20px;
  margin-left: 82px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 4px;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.3px;
  white-space: nowrap;
  cursor: pointer;
}

.chevron {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../assets/svg/chevron-down.svg") center / 20px 20px no-repeat;
  transition: transform 180ms ease;
}

.has-dropdown:hover .chevron,
.has-dropdown:focus-within .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -6px;
  display: grid;
  width: 220px;
  gap: 10px;
  padding: 14px 16px;
  background: var(--text-white);
  box-shadow: var(--shadow-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.dropdown-menu::before {
  position: absolute;
  top: -8px;
  left: 16px;
  border-right: 7px solid transparent;
  border-bottom: 8px solid var(--text-white);
  border-left: 7px solid transparent;
  content: "";
}

.dropdown-menu a {
  color: #111827;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.2px;
  transition: color 160ms ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--primary-1);
}

.dropdown-tall {
  gap: 8px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
}

.header-cta {
  flex: 0 0 175px;
  margin-left: auto;
}

.btn-pattern {
  --button-bg: var(--primary-1);
  --button-pattern: url("../assets/svg/button-pattern-teal-normal.svg");
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  padding: 10px 28px;
  border-radius: var(--radius-button);
  background-color: var(--button-bg);
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 1px rgba(16, 24, 40, 0.2);
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn-pattern::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 88px;
  background-image: var(--button-pattern);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
  transition: width 220ms ease, background-image 180ms ease;
}

.btn-pattern:hover,
.btn-pattern:focus-visible {
  box-shadow: var(--shadow-button);
}

.btn-pattern:hover::before,
.btn-pattern:focus-visible::before {
  width: 243px;
}

.btn-pattern:active {
  transform: translateY(1px);
}

.btn-teal:hover,
.btn-teal:focus-visible {
  --button-bg: var(--bg-dark);
  --button-pattern: url("../assets/svg/button-pattern-teal-hover.svg");
}

.btn-black {
  --button-bg: var(--bg-dark);
  --button-pattern: url("../assets/svg/button-pattern-black-normal.svg");
}

.btn-black:hover,
.btn-black:focus-visible {
  --button-bg: var(--primary-1);
  --button-pattern: url("../assets/svg/button-pattern-black-hover.svg");
}

.btn-pattern-sm {
  width: 175px;
  min-height: 40px;
  padding: 8px 18px;
  font-size: 18px;
  line-height: 18px;
}

.btn-pattern-lg {
  width: 194px;
}

/* Hero */
.about-hero {
  position: relative;
  isolation: isolate;
  height: 960px;
  overflow: hidden;
  background: #90cbe7;
}

.about-hero__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.about-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 23, 0) 63.5%, #141617 100%);
  content: "";
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.about-hero h1 {
  width: 670px;
  max-width: 55%;
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.about-hero h1 .about-hero__accent {
  color: var(--primary-2);
}

.hero-word,
.hero-char {
  display: inline-block;
}

.hero-word {
  white-space: nowrap;
}

.hero-motion-active .hero-char {
  will-change: opacity, transform;
}

/* Existing positioning -> Your Loads sequence */
.story-container {
  position: relative;
  z-index: 3;
}

.story-eyebrow {
  margin: 0 0 16px;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.positioning-copy h2,
.sequence-copy--positioning h2,
.loads-copy h2,
.sequence-copy--loads h2,
.roads-copy h2,
.sequence-copy--roads h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 72px;
  letter-spacing: -2.5px;
  text-transform: uppercase;
}

.positioning-copy h2,
.sequence-copy--positioning h2 {
  max-width: 635px;
  color: var(--primary-1);
}

.loads-copy h2,
.sequence-copy--loads h2 {
  max-width: 654px;
  color: var(--text-white);
}

.roads-copy h2,
.sequence-copy--roads h2 {
  max-width: 650px;
  color: var(--text-white);
}

.story-body {
  margin: 2px 0 0;
  color: #f5f5f5;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.5px;
}

.positioning-copy__body {
  max-width: 635px;
}

.loads-copy__body {
  max-width: 654px;
}

.roads-copy__body {
  max-width: 650px;
}

.static-panel {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
}

.static-panel__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.static-panel__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.static-panel__shade--positioning {
  background: linear-gradient(171deg, #141617 21%, rgba(20, 22, 23, 0) 57%);
}

.static-panel__shade--loads {
  background: linear-gradient(90deg, rgba(20, 22, 23, 0.5) 0%, rgba(20, 22, 23, 0.5) 30%, transparent 57%);
}

.static-panel__shade--roads {
  background: linear-gradient(90deg, rgba(20, 22, 23, 0.58) 0%, rgba(20, 22, 23, 0.46) 31%, transparent 59%);
}

.positioning-copy {
  padding-top: 72px;
}

.loads-copy {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
}

.roads-copy {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
}

.sequence-story {
  position: relative;
  display: none;
  min-height: 100svh;
  height: auto;
  background: var(--bg-dark);
}

.sequence-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: var(--bg-dark) url("../assets/sequences/about-positioning/desktop-webp/frame-0001.webp") center / cover no-repeat;
}

.sequence-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sequence-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 42%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.sequence-left-shade,
.sequence-roads-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 22, 23, 0.5) 0%, rgba(20, 22, 23, 0.5) 30%, transparent 57%);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.sequence-roads-shade {
  background: linear-gradient(90deg, rgba(20, 22, 23, 0.58) 0%, rgba(20, 22, 23, 0.46) 31%, transparent 59%);
}

.sequence-copy {
  position: absolute;
  z-index: 3;
  inset-inline: 0;
  margin-inline: auto;
  will-change: opacity, transform;
}

.sequence-copy--positioning {
  top: 72px;
}

.sequence-copy--loads {
  bottom: 72px;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.sequence-copy--roads {
  bottom: 72px;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.sequence-debug {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  min-width: 210px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 161, 154, 0.55);
  background: rgba(0, 0, 0, 0.78);
  color: #d9fffb;
  font: 12px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre;
  pointer-events: none;
}

.sequence-enhanced .story-static {
  display: none;
}

.sequence-enhanced .sequence-story {
  display: block;
}

/* Tech */
.about-tech {
  position: relative;
  isolation: isolate;
  min-height: 1246px;
  overflow: hidden;
  background: #001c1c;
}

.about-tech__background {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.about-tech__inner {
  padding-block: 72px;
}

.about-section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.about-tech__heading {
  width: min(100%, 720px);
  margin: 0 auto 44px;
  text-align: center;
}

.about-tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 423px);
  grid-auto-rows: 457px;
  justify-content: center;
  gap: 24px;
}

.about-tech-card {
  --tech-frame-size: 200px;
  position: relative;
  isolation: isolate;
  width: 423px;
  height: 457px;
  border-radius: 0;
}

.about-tech-card--feature {
  grid-column: span 2;
  width: 869px;
}

.about-tech-card::before,
.about-tech-card::after {
  position: absolute;
  z-index: 2;
  width: var(--tech-frame-size);
  height: var(--tech-frame-size);
  border-radius: 0;
  background: radial-gradient(circle 200px at 0 0, rgb(81, 247, 228) 0%, rgba(81, 247, 228, 0) 100%);
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M2 200V14C2 7.4 7.4 2 14 2H200' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M2 200V14C2 7.4 7.4 2 14 2H200' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events: none;
}

.about-tech-card::before {
  top: 0;
  left: 0;
}

.about-tech-card::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.about-tech-card__inner {
  position: absolute;
  z-index: 1;
  inset: 8px;
  overflow: hidden;
  border-radius: 4px;
  background: #051313;
  box-shadow:
    inset 0 -15px 30px rgba(175, 254, 253, 0.14),
    inset 0 15px 35px rgba(0, 161, 154, 0.12);
}

.about-tech-card__inner > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-tech-card:hover .about-tech-card__inner > img {
  transform: scale(1.015);
}

.about-tech-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(10deg, rgba(0, 0, 0, 0.72) 2%, rgba(0, 0, 0, 0.12) 48%, transparent 68%);
  pointer-events: none;
}

.about-tech-card--feature .about-tech-card__scrim {
  background:
    linear-gradient(90deg, rgba(0, 48, 46, 0.54) 0%, rgba(0, 20, 19, 0.08) 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.about-tech-card__content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.about-tech-card--feature .about-tech-card__content {
  right: auto;
  bottom: 26px;
  left: 34px;
  width: 560px;
  max-width: calc(100% - 306px);
}

.about-tech-card h3 {
  margin: 0 0 8px;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.about-tech-card p {
  margin: 0;
  color: var(--primary-3);
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.3px;
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .sequence-enhanced .about-tech {
    z-index: 4;
    margin-top: -100svh;
  }

  .tech-motion-active .about-tech__heading,
  .tech-motion-active .about-tech-card {
    will-change: opacity, transform;
  }
}

/* Difference: one production DOM shared by the static final state and the pinned storyboard. */
.about-difference {
  position: relative;
  isolation: isolate;
  min-height: 1057px;
  background: #030909;
}

.about-difference__stage {
  position: relative;
  isolation: isolate;
  min-height: 1057px;
  overflow: hidden;
  background: #030909;
}

.about-difference__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(0, 161, 154, 0.06) 48.4%, rgba(0, 161, 154, 0.02) 56%, transparent 56.4%),
    linear-gradient(225deg, transparent 46%, rgba(81, 247, 228, 0.05) 46.5%, rgba(0, 161, 154, 0.02) 57%, transparent 57.5%),
    radial-gradient(circle at 86% 24%, rgba(0, 161, 154, 0.36), transparent 36%),
    linear-gradient(180deg, #071010, #020404 82%);
}

.about-difference__inner {
  position: relative;
  z-index: 2;
  padding-block: 64px 72px;
}

.about-difference__heading {
  width: min(100%, 1120px);
  margin: 0 auto 36px;
  text-align: center;
}

.about-difference__heading > p {
  margin: 0 0 4px;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.about-difference__heading h2 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -1.5px;
}

.about-difference__heading h2 span {
  color: var(--primary-1);
}

.about-difference__media {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: #151515;
}

.about-difference__media::before,
.about-difference__media::after {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  height: 22%;
  content: "";
  pointer-events: none;
}

.about-difference__media::before {
  top: 0;
  background: linear-gradient(180deg, rgba(1, 1, 1, 0.58), transparent);
}

.about-difference__media::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(1, 1, 1, 0.45), transparent);
}

.about-difference__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 53%;
}

.about-difference__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.about-difference__benefits article {
  min-width: 0;
  padding: 0 26px;
}

.about-difference__benefits article:first-child {
  padding-left: 0;
}

.about-difference__benefits article:last-child {
  padding-right: 0;
}

.about-difference__benefits article + article {
  border-left: 1px solid rgba(199, 255, 246, 0.35);
}

.about-difference__benefits h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: -1px;
}

.about-difference__benefits p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.3px;
}

.difference-motion.about-difference {
  min-height: 100svh;
  height: auto;
}

.difference-motion .about-difference__stage {
  width: 100%;
  height: 100svh;
  min-height: 720px;
}

.difference-motion .about-difference__media,
.difference-motion .about-difference__media img {
  will-change: transform;
}

.difference-motion .about-difference__media img {
  top: 50%;
  height: auto;
  object-fit: fill;
}

.difference-motion .about-difference__background,
.difference-motion .about-difference__heading,
.difference-motion .about-difference__media,
.difference-motion .about-difference__benefits article {
  will-change: transform, opacity;
}

@media (min-width: 1024px) and (max-height: 999.98px) {
  .difference-motion .about-difference__inner {
    padding-block: 36px 40px;
  }

  .difference-motion .about-difference__heading {
    margin-bottom: 20px;
  }

  .difference-motion .about-difference__heading h2 {
    font-size: 32px;
    line-height: 41px;
    letter-spacing: -1.2px;
  }

  .difference-motion .about-difference__media {
    width: min(100%, 1100px);
    margin-inline: auto;
  }

  .difference-motion .about-difference__benefits {
    width: min(100%, 1100px);
    margin: 20px auto 0;
  }

  .difference-motion .about-difference__benefits h3 {
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 30px;
  }

  .difference-motion .about-difference__benefits p {
    font-size: 14px;
    line-height: 20px;
  }
}

/* About-specific CTA */
.about-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  height: 470px;
  align-items: center;
  overflow: hidden;
  background: var(--primary-1);
}

.about-cta__image {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.about-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 44px;
}

.about-cta h2 {
  width: 640px;
  max-width: 52%;
  margin: 0;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

/* Shared footer */
.site-footer {
  position: relative;
  min-height: 478px;
  overflow: hidden;
  padding: 72px 0;
  background: var(--bg-dark);
  color: var(--text-muted);
}

.site-footer-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.72)),
    url("../assets/images/shared/footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.footer-company {
  display: grid;
  align-content: start;
  gap: 20px;
  padding-right: 12px;
}

.footer-company h2 {
  margin: 0;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 47px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
}

.footer-contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.2px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.footer-icon svg,
.footer-social svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-legal {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.2px;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 20px;
}

.footer-link-group,
.footer-cert-social,
.footer-cert {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-link-group h3,
.footer-cert h3,
.footer-social h3 {
  margin: 0 0 4px;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.3px;
}

.footer-link-group a {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.2px;
  transition: color 160ms ease;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
  color: var(--primary-3);
}

.footer-cert-social {
  gap: 20px;
}

.footer-cert-badge {
  display: inline-flex;
  width: 115px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

.footer-cert-badge img {
  width: 100%;
  height: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social h3 {
  margin: 0;
}

.footer-social a {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--primary-3);
}

@media (max-width: 1399.98px) {
  .primary-nav {
    gap: 14px;
    margin-left: 28px;
  }

  .nav-link {
    font-size: 14px;
  }

  .header-cta {
    width: 158px;
    flex-basis: 158px;
  }

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

  .about-tech-card,
  .about-tech-card--feature {
    width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
  }

  .primary-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    margin: 0;
    padding: 20px 24px 28px;
    overflow-y: auto;
    border-top: 1px solid #e5e5e5;
    background: var(--text-white);
    box-shadow: var(--shadow-dropdown);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
    padding: 10px 14px;
    border-left: 2px solid var(--primary-1);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .has-dropdown.is-expanded .dropdown-menu {
    display: grid;
  }

  .has-dropdown.is-expanded .chevron {
    transform: rotate(180deg);
  }

  .about-hero {
    height: min(960px, calc(100svh - var(--header-height)));
    min-height: 720px;
  }

  .about-hero h1 {
    max-width: 62%;
    font-size: 40px;
    line-height: 51px;
  }

  .about-tech {
    min-height: 0;
  }

  .about-tech__inner {
    padding-block: 64px;
  }

  .about-tech__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: start;
    gap: 20px;
  }

  .about-tech-card {
    width: 100%;
    height: auto;
    aspect-ratio: 423 / 457;
  }

  .about-tech-card--feature {
    grid-column: span 2;
    aspect-ratio: 869 / 457;
  }

  .about-tech-card--feature .about-tech-card__content {
    max-width: 64%;
  }

  .about-difference__heading h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .about-difference__benefits h3 {
    font-size: 23px;
    line-height: 31px;
  }

  .about-cta h2 {
    max-width: 56%;
    font-size: 34px;
    line-height: 44px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 72px;
  }

  .container-ghn,
  .story-container {
    width: min(calc(100% - 40px), var(--container-ghn));
  }

  .header-inner {
    gap: 12px;
  }

  .brand,
  .brand img {
    width: 112px;
  }

  .brand {
    flex-basis: 112px;
  }

  .header-cta {
    width: 134px;
    min-height: 36px;
    flex-basis: 134px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .about-hero {
    height: calc(100svh - var(--header-height));
    min-height: 680px;
  }

  .about-hero__image {
    object-position: 58% center;
  }

  .about-hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 48%), linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 80%);
    content: "";
  }

  .about-hero__content {
    padding-top: 44px;
  }

  .about-hero h1 {
    width: 100%;
    max-width: 92%;
    font-size: clamp(30px, 9.4vw, 40px);
    line-height: 1.12;
    letter-spacing: -1.4px;
  }

  .static-panel {
    min-height: max(720px, 100svh);
  }

  .static-panel__image {
    object-position: 58% center;
  }

  .static-panel--loads .static-panel__image {
    object-position: 63% center;
  }

  .static-panel--roads .static-panel__image {
    object-position: 62% center;
  }

  .static-panel__shade--positioning {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.12) 58%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 90%);
  }

  .static-panel__shade--loads {
    background: linear-gradient(180deg, rgba(3, 7, 7, 0.18) 30%, rgba(3, 7, 7, 0.92) 66%, #030707 100%);
  }

  .static-panel__shade--roads {
    background: linear-gradient(180deg, rgba(20, 22, 23, 0.08) 28%, rgba(20, 22, 23, 0.88) 68%, #141617 100%);
  }

  .positioning-copy {
    padding-top: 56px;
  }

  .story-eyebrow {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.2px;
  }

  .positioning-copy h2 {
    max-width: 520px;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.8px;
  }

  .loads-copy {
    top: auto;
    bottom: 54px;
    transform: translateX(-50%);
  }

  .roads-copy {
    top: auto;
    bottom: 54px;
    transform: translateX(-50%);
  }

  .loads-copy h2 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.6px;
  }

  .roads-copy h2 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.6px;
  }

  .story-body {
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: -0.3px;
  }

  .about-section-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.18;
    letter-spacing: -1.4px;
  }

  .about-tech__inner {
    padding-block: 56px;
  }

  .about-tech__heading {
    margin-bottom: 32px;
  }

  .about-tech__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .about-tech-card,
  .about-tech-card--feature {
    grid-column: auto;
    aspect-ratio: 423 / 457;
  }

  .about-tech-card--feature {
    aspect-ratio: 869 / 570;
  }

  .about-tech-card--feature .about-tech-card__content,
  .about-tech-card__content {
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    max-width: none;
  }

  .about-tech-card h3 {
    margin-bottom: 6px;
    font-size: 27px;
    line-height: 35px;
  }

  .about-tech-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .about-difference {
    min-height: 0;
  }

  .about-difference__inner {
    padding-block: 56px;
  }

  .about-difference__heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .about-difference__heading > p {
    font-size: 12px;
  }

  .about-difference__heading h2 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -1px;
  }

  .about-difference__heading h2 br {
    display: none;
  }

  .about-difference__media {
    aspect-ratio: 4 / 3;
  }

  .about-difference__media img {
    object-position: 58% center;
  }

  .about-difference__benefits {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .about-difference__benefits article,
  .about-difference__benefits article:first-child,
  .about-difference__benefits article:last-child {
    padding: 20px 0;
  }

  .about-difference__benefits article + article {
    border-top: 1px solid rgba(199, 255, 246, 0.35);
    border-left: 0;
  }

  .about-difference__benefits h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .about-cta {
    height: 520px;
    align-items: flex-start;
  }

  .about-cta__image {
    object-position: 64% center;
  }

  .about-cta::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 161, 154, 0.15), rgba(0, 73, 70, 0.78));
    content: "";
  }

  .about-cta__content {
    gap: 28px;
    padding-top: 52px;
  }

  .about-cta h2 {
    width: 100%;
    max-width: 95%;
    font-size: 31px;
    line-height: 40px;
    letter-spacing: -1.1px;
  }

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

  .site-footer-inner {
    gap: 40px;
  }

  .footer-company h2 {
    font-size: 27px;
    line-height: 35px;
  }

  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }
}

@media (max-width: 479.98px) {
  .header-cta {
    display: none;
  }

  .about-tech-card--feature {
    aspect-ratio: 1 / 1;
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
  }
}

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

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