@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/montserrat-400.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/montserrat-500.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/montserrat-600.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/montserrat-700.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/montserrat-800.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/montserrat-900.ttf") format("truetype");
}

:root {
  --bg: #f4f8fc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-fade: rgba(255, 255, 255, 0.96);
  --text: #0f295f;
  --muted: #4d678e;
  --line: rgba(37, 84, 171, 0.14);
  --brand-1: #2cb3ea;
  --brand-2: #1a76c8;
  --brand-3: #163f9a;
  --brand-4: #0f2f76;
  --shadow: 0 24px 60px rgba(21, 55, 124, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
  --anchor-offset: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}

#services,
#fleet,
#about,
#contact {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(44, 179, 234, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(22, 63, 154, 0.16), transparent 24%),
    linear-gradient(180deg, #fafdff 0%, #f0f5fb 100%);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 24px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-header::before {
  left: 8px;
  background: linear-gradient(90deg, var(--surface-fade), rgba(255, 255, 255, 0));
}

.site-header::after {
  right: 8px;
  background: linear-gradient(270deg, var(--surface-fade), rgba(255, 255, 255, 0));
}

.site-footer img {
  width: auto;
  height: 42px;
  border-radius: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-home-link {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  padding: 4px;
  border-radius: 16px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.site-home-link:hover,
.site-home-link:focus-visible {
  background: rgba(26, 118, 200, 0.08);
  transform: translateY(-1px);
}

.site-home-link img {
  display: block;
  width: auto;
  height: clamp(36px, 3.6vw, 48px);
  max-width: 92px;
  border-radius: 10px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  flex: 1 1 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  white-space: nowrap;
  scroll-padding-inline: 12px;
}

.site-nav-links::-webkit-scrollbar {
  display: none;
}

.site-nav-links a {
  position: relative;
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  scroll-snap-align: start;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav-links a:hover,
.site-nav-links a.is-active {
  color: var(--brand-4);
  background: rgba(26, 118, 200, 0.08);
  box-shadow: inset 0 0 0 1px rgba(26, 118, 200, 0.08);
}

.site-nav-links a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3));
  color: #fff;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(26, 118, 200, 0.26);
}

.button-small {
  min-height: 34px;
  padding-inline: 13px;
  font-size: 0.74rem;
  white-space: nowrap;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-4);
  border: 1px solid rgba(26, 118, 200, 0.18);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.44fr);
  gap: 14px 18px;
  align-items: stretch;
  padding: clamp(14px, 1.8vw, 24px) 0 clamp(8px, 1vw, 14px);
}

.hero-brand-panel {
  display: flex;
  align-self: stretch;
  min-width: 0;
  padding: clamp(12px, 1.3vw, 16px);
  border: 1px solid rgba(37, 84, 171, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.96), rgba(233, 242, 252, 0.88)),
    linear-gradient(135deg, rgba(44, 179, 234, 0.05), rgba(22, 63, 154, 0.04));
  box-shadow: 0 18px 40px rgba(21, 55, 124, 0.08);
}

.hero-message-panel {
  display: flex;
  align-self: stretch;
  min-width: 0;
  padding: clamp(16px, 1.6vw, 20px);
  border: 1px solid rgba(37, 84, 171, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(223, 237, 252, 0.94)),
    linear-gradient(135deg, rgba(44, 179, 234, 0.12), rgba(22, 63, 154, 0.08));
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  max-width: min(100%, 54rem);
}

.eyebrow,
.section-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 15.8ch;
  font-size: clamp(2.05rem, 3vw, 3.45rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-lead,
.service-card p,
.fleet-category-description,
.equipment-item p,
.info-band-column p,
.logo-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.hero-lead {
  max-width: 46rem;
  margin-top: 12px;
  font-size: clamp(0.95rem, 0.9vw, 1rem);
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-top: 0;
}

.hero-card,
.service-card,
.fleet-category {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.logo-card {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 100%;
  min-height: 100%;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.logo-card picture {
  display: block;
  width: min(100%, clamp(240px, 82%, 340px));
  max-width: 100%;
  justify-self: center;
  margin: 0 auto;
}

.logo-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
  border-radius: 0;
}

.logo-card-copy {
  width: min(100%, 25ch);
  margin: 0 auto;
}

.logo-card p {
  width: 100%;
  max-width: 100%;
  margin: 12px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-4);
  font-size: clamp(0.95rem, 0.82vw, 1rem);
  line-height: 1.48;
  font-weight: 600;
  text-align: left;
  text-wrap: pretty;
}

.hero-proof-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.hero-proof-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-proof-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15, 47, 118, 0.96), rgba(22, 63, 154, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-proof-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof-copy {
  min-width: 0;
}

.hero-proof-copy strong {
  display: block;
  margin: 0 0 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-4);
}

.hero-proof-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.section {
  position: relative;
  padding: 38px 0;
}

.section::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, rgba(26, 118, 200, 0.24), rgba(26, 118, 200, 0));
}

#services,
#about {
  margin-top: 10px;
  padding-inline: 18px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at top right, rgba(44, 179, 234, 0.08), rgba(44, 179, 234, 0));
}

#fleet,
#contact {
  padding-inline: 8px;
}

#services::before,
#about::before {
  width: 92px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3));
}

#fleet::before,
#contact::before {
  width: 68px;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, rgba(26, 118, 200, 0.32), rgba(26, 118, 200, 0));
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
}

.section-heading h2 {
  max-width: min(100%, 24ch);
  font-size: clamp(1.7rem, 2.35vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}

#services .section-heading h2 {
  max-width: min(100%, 30ch);
}

#fleet .section-heading h2 {
  max-width: min(100%, 24ch);
}

#about .section-heading h2 {
  max-width: min(100%, 30ch);
}

#contact .section-heading h2 {
  max-width: min(100%, 34ch);
  text-wrap: balance;
}

.section-heading .section-label {
  margin-bottom: 10px;
}

.service-card {
  padding: 24px;
}

.service-card h3,
.differential-card h3,
.fleet-category-header h3,
.info-band-column h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.02em;
  color: var(--brand-4);
}

.service-card h3,
.differential-card h3,
.info-band-column h3 {
  font-size: 1.2rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.72;
}

.service-lane-copy h3 {
  margin: 0;
  font-size: 1.26rem;
  letter-spacing: -0.02em;
  color: var(--brand-4);
}

.service-lane-head,
.differential-card-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 3px;
}

.service-lane-tags {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 2px;
}

.service-lane-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 118, 200, 0.14);
  color: var(--brand-4);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.services-prototype-alt {
  position: relative;
  padding: 6px 0 0;
}

.services-lanes {
  display: grid;
  gap: 0;
}

.service-lane {
  --lane-offset: 0px;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px 18px;
  width: min(960px, calc(100% - var(--lane-offset)));
  margin-left: var(--lane-offset);
  padding: 22px 26px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94)),
    linear-gradient(135deg, rgba(44, 179, 234, 0.06), rgba(22, 63, 154, 0.08));
  box-shadow:
    0 24px 48px rgba(15, 47, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.service-lane::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--brand-1), var(--brand-3));
}

.service-lane::after {
  content: "";
  position: absolute;
  top: -44px;
  right: -24px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 179, 234, 0.15), rgba(44, 179, 234, 0));
  pointer-events: none;
}

.service-lane-index {
  flex: 0 0 auto;
  padding-top: 2px;
  color: var(--brand-2);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.service-lane-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.42;
  max-width: none;
}

.service-lane:nth-child(1) {
  margin-left: 0;
  z-index: 1;
}

.service-lane:nth-child(2) {
  --lane-offset: clamp(24px, 4vw, 72px);
  margin-top: -14px;
  z-index: 2;
}

.service-lane:nth-child(3) {
  --lane-offset: clamp(48px, 8vw, 144px);
  margin-top: -14px;
  z-index: 3;
}

.service-lane:nth-child(4) {
  --lane-offset: clamp(72px, 12vw, 216px);
  margin-top: -14px;
  z-index: 4;
}

@media (min-width: 1281px) {
  .service-lane {
    width: min(1280px, calc(100% - var(--lane-offset)));
  }

  .service-lane-copy p {
    white-space: nowrap;
  }
}

.fleet-section {
  position: relative;
  overflow: hidden;
}

.fleet-categories {
  display: grid;
  gap: 22px;
}

.fleet-category {
  padding: 20px 22px 18px;
  min-width: 0;
  overflow: hidden;
}

.fleet-category-header {
  margin-bottom: 4px;
}

.fleet-category-header > div {
  width: 100%;
  min-width: 0;
}

.fleet-category-header h3 {
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  line-height: 1.12;
}

.fleet-category-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  margin-top: 8px;
}

.fleet-category-description {
  max-width: 540px;
  font-size: 0.98rem;
  line-height: 1.48;
}

.fleet-category-note {
  margin: 6px 0 0;
  color: var(--brand-4);
  font-size: 0.94rem;
  font-weight: 600;
}

.fleet-scroll-hint {
  align-self: center;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(19, 64, 154, 0.08);
  color: var(--brand-4);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.fleet-category.has-horizontal-overflow .fleet-scroll-hint {
  opacity: 1;
  visibility: visible;
}

.fleet-scroll-hint::after {
  content: "->";
  font-size: 0.9rem;
}

.fleet-scroll-shell {
  position: relative;
}

.fleet-scroll-shell::before,
.fleet-scroll-shell::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 10px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.fleet-scroll-shell::before {
  left: 0;
  width: 42px;
  background: linear-gradient(90deg, var(--surface-fade), rgba(255, 255, 255, 0));
}

.fleet-scroll-shell::after {
  right: 0;
  width: 60px;
  background: linear-gradient(270deg, var(--surface-fade), rgba(255, 255, 255, 0));
}

.fleet-scroll-shell.can-scroll-left::before,
.fleet-scroll-shell.can-scroll-right::after {
  opacity: 1;
}

.fleet-track {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 4px 10px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.equipment-item {
  flex: 0 0 clamp(280px, 30vw, 340px);
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(19, 64, 154, 0.1);
  background: rgba(255, 255, 255, 0.74);
  scroll-snap-align: start;
}

.equipment-item-transport {
  flex-basis: clamp(320px, 34vw, 390px);
}

.equipment-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--brand-4);
}

.equipment-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #eef5ff, #dfeaf8);
}

.equipment-photo-image {
  display: block;
  object-fit: contain;
  padding: 12px;
  border: 1px solid rgba(19, 64, 154, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.equipment-photo-placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--brand-3);
  font-weight: 700;
  text-align: center;
  border: 1.5px dashed rgba(26, 118, 200, 0.34);
  background:
    linear-gradient(135deg, rgba(44, 179, 234, 0.08), rgba(22, 63, 154, 0.12)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.82) 12px,
      rgba(222, 235, 252, 0.82) 12px,
      rgba(222, 235, 252, 0.82) 24px
    );
}

.equipment-item-transport .equipment-photo {
  aspect-ratio: 16 / 10;
}

.equipment-item p {
  margin: 6px 0 0;
  line-height: 1.55;
}

.equipment-item p span {
  font-weight: 700;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info-band-column {
  min-width: 0;
  padding: 24px;
}

.info-band-column + .info-band-column {
  border-left: 1px solid rgba(19, 64, 154, 0.1);
}

.info-band-column p {
  margin: 0;
  line-height: 1.62;
}

.info-band-column p + p {
  margin-top: 14px;
}

.info-band-accent {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 255, 0.92)),
    linear-gradient(135deg, rgba(44, 179, 234, 0.1), rgba(22, 63, 154, 0.08));
}

.info-band-accent::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--brand-1), var(--brand-3));
}

.about-band .info-band-column p {
  line-height: 1.72;
}

.about-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.82fr);
  gap: 16px;
  align-items: start;
  margin-top: 22px;
  margin-bottom: 18px;
}

.about-primary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.94)),
    radial-gradient(circle at top right, rgba(44, 179, 234, 0.12), rgba(255, 255, 255, 0));
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-primary::before {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 179, 234, 0.16), rgba(44, 179, 234, 0));
  pointer-events: none;
}

.about-primary .section-label {
  color: var(--brand-2);
}

.about-partnership-card .section-label {
  color: rgba(255, 255, 255, 0.84);
}

.about-primary-header {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-primary-header h3 {
  margin: 10px 0 0;
  max-width: 100%;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.02;
  color: var(--brand-4);
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.about-primary-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 760px;
}

.about-primary-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-primary-copy p + p {
  margin-top: 16px;
}

.about-partnership-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 20px 22px 22px;
  border: 1px solid rgba(19, 64, 154, 0.12);
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    linear-gradient(135deg, rgba(23, 103, 185, 0.96), rgba(18, 63, 154, 0.94) 55%, rgba(44, 179, 234, 0.88)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  box-shadow: 0 18px 38px rgba(14, 39, 86, 0.12);
  backdrop-filter: blur(12px);
}

.about-partnership-card h3 {
  margin: 6px 0 8px;
  color: white;
}

.about-partnership-card p {
  margin: 0;
}

.about-partnership-card p + p {
  margin-top: 10px;
}

.about-partnership-card p:last-child,
.about-partnership-card p:nth-last-child(2) {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.66;
}

.contact-band .info-band-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details {
  gap: 0;
}

.contact-details p {
  margin: 0;
}

.contact-details a,
.site-footer a {
  color: var(--brand-4);
  font-weight: 600;
  text-decoration: none;
}

.contact-details a {
  color: inherit;
  font-weight: inherit;
}

.contact-details a:hover,
.contact-details a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.contact-details p + p {
  margin-top: 8px;
}

.contact-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.contact-highlight-list span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(26, 118, 200, 0.08);
  border: 1px solid rgba(26, 118, 200, 0.12);
  color: var(--brand-4);
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.contact-action-row .button {
  flex: 1 1 220px;
}

.contact-action-row .button-small {
  min-height: 46px;
  font-size: 0.78rem;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 34px 16px 56px;
  text-align: center;
}

.policy-page {
  padding: 32px 0 56px;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.policy-content {
  padding: 32px;
}

.policy-back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-3);
  font-weight: 700;
}

.policy-content h1,
.policy-content h2 {
  color: var(--brand-4);
}

.policy-content h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.policy-content h2 {
  margin: 24px 0 10px;
  font-size: 1.2rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.7;
}

.policy-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.policy-content a {
  color: var(--brand-4);
  font-weight: 600;
  text-decoration: underline;
}

.site-footer p {
  margin: 0;
}

.site-footer-meta,
.site-footer-legal {
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--muted);
}

.site-footer img {
  width: min(100%, 320px);
  height: auto;
  max-height: 72px;
  border-radius: 0;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.differential-card {
  position: relative;
  width: 100%;
  align-self: start;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  padding: 22px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94)),
    linear-gradient(135deg, rgba(44, 179, 234, 0.06), rgba(22, 63, 154, 0.08));
  backdrop-filter: blur(12px);
  box-shadow:
    0 24px 48px rgba(15, 47, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.differential-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--brand-1), var(--brand-3));
}

.differential-card::after {
  content: "";
  position: absolute;
  top: -52px;
  right: -24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 179, 234, 0.16), rgba(44, 179, 234, 0));
  pointer-events: none;
}

.differential-card .section-label {
  margin: 0;
  color: var(--brand-2);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.differential-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.08;
  color: var(--brand-4);
}

.differential-card:nth-child(1) {
  z-index: 1;
}

.differential-card:nth-child(2) {
  z-index: 2;
}

.differential-card:nth-child(3) {
  z-index: 3;
}

.differential-card:nth-child(4) {
  z-index: 4;
}

.differential-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
  max-width: 56ch;
}

@media (max-width: 1180px) {
  .services-lanes {
    gap: 10px;
  }

  .hero {
    grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1.52fr);
    gap: 12px 14px;
  }

  .hero h1 {
    max-width: 15.2ch;
    font-size: clamp(1.9rem, 2.8vw, 3.05rem);
  }

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

  .hero-brand-panel {
    padding: 12px 14px;
  }

  .logo-card {
    justify-items: center;
    align-content: center;
  }

  .logo-card img {
    width: min(100%, clamp(210px, 84%, 290px));
    transform: none;
  }

  .logo-card p {
    width: min(100%, 20ch);
    margin: 10px auto 0;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .service-lane,
  .service-lane:nth-child(1),
  .service-lane:nth-child(2),
  .service-lane:nth-child(3),
  .service-lane:nth-child(4) {
    grid-template-columns: auto 1fr;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: 20px 20px 22px;
    box-shadow: 0 16px 30px rgba(15, 47, 118, 0.08);
  }

  .service-lane-tags {
    grid-column: 1 / -1;
    gap: 8px;
  }

  .service-lane-head,
  .differential-card-head {
    gap: 10px;
    margin-bottom: 8px;
  }

  .service-lane-copy h3,
  .differential-card h3 {
    margin: 0;
    font-size: 1.14rem;
  }

  .about-stage {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .about-primary {
    padding: 26px 24px 26px;
  }

  .about-partnership-card {
    width: 100%;
    margin-top: 14px;
  }

  .differentials-grid {
    gap: 12px;
    margin-top: 8px;
  }

  .differential-card {
    padding: 20px 20px 22px;
    box-shadow: 0 16px 30px rgba(15, 47, 118, 0.08);
  }

  .fleet-category-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fleet-scroll-hint {
    justify-self: start;
  }
}

@media (min-width: 768px) and (max-width: 1366px) {
  .hero-brand-panel {
    padding-top: 18px;
  }

  .logo-card {
    overflow: visible;
  }

  .logo-card img {
    width: min(100%, clamp(200px, 78%, 280px));
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 1366px) {
  #fleet .section-heading h2 {
    max-width: min(100%, 32ch);
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .hero h1 {
    max-width: 20ch;
    font-size: clamp(1.8rem, 2.7vw, 2.95rem);
  }
}

@media (max-width: 860px) {
  #services .section-heading {
    margin-bottom: 8px;
  }

  .services-prototype-alt {
    padding-top: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 18px;
  }

  .hero-brand-panel,
  .hero-message-panel {
    padding: 18px;
  }

  .hero-brand-panel {
    order: -1;
  }

  .logo-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    align-content: start;
    gap: 14px;
    min-height: 0;
  }

  .logo-card img {
    width: clamp(110px, 22vw, 156px);
    margin: 0;
    transform: none;
  }

  .logo-card p {
    width: auto;
    max-width: 28ch;
    margin: 0;
    text-align: left;
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .info-band {
    grid-template-columns: 1fr;
  }

  .info-band-column + .info-band-column {
    border-top: 1px solid rgba(19, 64, 154, 0.1);
    border-left: none;
  }

  .hero-actions {
    margin-top: 18px;
    padding-top: 0;
  }

  .hero-message-panel {
    align-self: stretch;
  }

  .hero h1 {
    max-width: 15.5ch;
  }

  .about-primary {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px 24px;
  }

  .about-primary-copy {
    max-width: none;
  }

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

@media (min-width: 700px) and (max-width: 860px) and (min-height: 1301px) and (orientation: portrait) and (hover: hover) and (pointer: fine) {
  .hero-brand-panel {
    padding: 12px 18px;
  }

  .logo-card {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 8px;
  }

  .logo-card picture {
    display: block;
    width: min(100%, 680px);
    max-width: 100%;
  }

  .logo-card img {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .logo-card-copy {
    width: min(100%, 30ch);
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .logo-card p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
    font-size: 0.96rem;
    line-height: 1.3;
  }
}

@media (min-width: 700px) and (max-width: 860px) and (max-height: 1300px) and (orientation: portrait) {
  .hero {
    grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1.5fr);
    gap: 14px 16px;
    padding-top: 16px;
  }

  .hero-brand-panel,
  .hero-message-panel {
    padding: 18px;
  }

  .hero-brand-panel {
    order: 0;
  }

  .logo-card {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    align-content: center;
    gap: 10px;
  }

  .logo-card img {
    width: min(100%, clamp(180px, 30vw, 250px));
  }

  .logo-card p {
    width: min(100%, 20ch);
    max-width: 20ch;
    margin: 0 auto;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.32;
  }

  .hero h1 {
    max-width: 14.5ch;
    font-size: clamp(2rem, 5vw, 2.9rem);
  }

  .hero-lead {
    max-width: 34rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: row;
    gap: 10px;
  }

  .hero-actions .button {
    width: auto;
  }

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

@media (max-width: 860px) and (orientation: landscape) {
  .site-nav {
    gap: 10px;
  }

  .site-home-link {
    margin-left: 6px;
  }

  .site-home-link img {
    height: 30px;
    max-width: 60px;
  }

  .site-nav-links {
    justify-content: center;
    gap: clamp(18px, 3vw, 28px);
    padding-inline: 8px;
    overflow-x: visible;
  }

  .site-nav-links a {
    padding: 6px 0;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
  }

  .hero {
    grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1.66fr);
    gap: 12px 14px;
    align-items: stretch;
    padding-top: 12px;
  }

  .hero-brand-panel,
  .hero-message-panel {
    padding: 14px;
  }

  .hero-brand-panel {
    order: 0;
  }

  .logo-card {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 6px;
  }

  .logo-card img {
    width: min(100%, clamp(130px, 23vw, 205px));
    margin: 0;
    transform: none;
  }

  .logo-card p {
    width: min(100%, 18ch);
    max-width: 18ch;
    margin: 0 auto;
    text-align: left;
    font-size: 0.84rem;
    line-height: 1.22;
  }

  .hero h1 {
    max-width: 12.2ch;
    font-size: clamp(1.7rem, 6vw, 2.85rem);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 12px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.74rem;
  }

  .hero-proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-proof-card {
    padding: 10px 12px;
  }

  .hero-proof-icon {
    width: 40px;
    height: 40px;
  }

  .hero-proof-copy strong {
    font-size: 0.82rem;
  }

  .hero-proof-copy p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

@media (max-width: 860px) and (max-height: 430px) and (orientation: landscape) {
  .hero {
    grid-template-columns: minmax(118px, 0.24fr) minmax(0, 1.76fr);
    gap: 10px 12px;
    padding-top: 10px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-brand-panel,
  .hero-message-panel {
    padding: 10px;
  }

  .logo-card img {
    width: min(100%, clamp(92px, 16vw, 138px));
  }

  .logo-card p {
    width: min(100%, 13ch);
    max-width: 13ch;
    font-size: 0.66rem;
    line-height: 1.08;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(0.96rem, 3.05vw, 1.38rem);
    line-height: 0.9;
    text-wrap: pretty;
  }

  .hero-lead {
    margin-top: 8px;
    font-size: 0.72rem;
    line-height: 1.14;
  }

  .hero-actions {
    gap: 6px;
    margin-top: 8px;
  }

  .hero-actions .button {
    min-height: 32px;
    padding-inline: 11px;
    font-size: 0.62rem;
  }
}

@media (max-width: 700px) and (max-height: 430px) and (orientation: landscape) {
  .hero {
    grid-template-columns: minmax(136px, 0.3fr) minmax(0, 1.7fr);
    gap: 10px 10px;
  }

  .logo-card img {
    width: min(100%, clamp(104px, 19vw, 124px));
  }

  .logo-card p {
    width: min(100%, 14ch);
    max-width: 14ch;
    font-size: 0.68rem;
    line-height: 1.08;
  }

  .hero h1 {
    max-width: 13.2ch;
    font-size: clamp(0.88rem, 2.85vw, 1.2rem);
    line-height: 0.9;
  }

  .hero-lead {
    margin-top: 6px;
    font-size: 0.68rem;
    line-height: 1.14;
  }

  .hero-actions {
    margin-top: 8px;
  }

  .hero-actions .button {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 0.58rem;
  }
}

@media (max-width: 700px) {
  :root {
    --anchor-offset: 34px;
  }

  .section {
    padding: 34px 0;
  }

  #services,
  #about,
  #fleet,
  #contact {
    padding-inline: 0;
    border-radius: 0;
    background: none;
  }

  .section::before {
    margin-bottom: 18px;
  }

  .site-header {
    top: 8px;
    padding: 8px;
    border-radius: 20px;
  }

  .site-nav {
    width: 100%;
    gap: 8px;
    padding-inline: 0;
  }

  .site-home-link img {
    height: 28px;
    max-width: 56px;
  }

  .site-home-link {
    margin-left: 10px;
    padding: 2px;
  }

  .site-nav-links {
    justify-content: space-between;
    gap: 2px;
    padding-inline: 0 6px;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .site-nav-links a {
    padding: 6px 4px;
    font-size: 0.66rem;
    letter-spacing: 0.015em;
  }

  .site-header::before,
  .site-header::after {
    opacity: 0;
  }

  .hero-copy,
  .hero-lead {
    max-width: none;
  }

  .hero h1 {
    max-width: 11.4ch;
    font-size: clamp(1.95rem, 7vw, 2.8rem);
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .hero-proof-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-proof-card {
    padding: 12px 14px;
  }

  .section-heading h2 {
    font-size: clamp(1.55rem, 4.2vw, 2rem);
  }

  #contact .section-heading,
  #about .section-heading {
    margin-bottom: 10px;
  }

  .about-stage {
    margin-top: 10px;
  }

  .about-primary {
    padding: 28px 22px 28px;
  }

  .about-primary-header h3 {
    font-size: clamp(1.7rem, 6vw, 2.3rem);
  }

  .about-partnership-card {
    padding: 18px 20px;
  }

  .service-lane-copy p,
  .differential-card p:last-child {
    max-width: none;
  }

  .service-lane-head {
    margin-bottom: 1px;
  }

  .service-lane-copy p {
    margin-top: 0;
  }

  .contact-details p + p {
    margin-top: 6px;
  }
}

@media (max-width: 700px) and (max-height: 430px) and (orientation: landscape) {
  .hero {
    grid-template-columns: minmax(136px, 0.3fr) minmax(0, 1.7fr);
    gap: 10px 10px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-brand-panel,
  .hero-message-panel {
    padding: 10px;
  }

  .logo-card img {
    width: min(100%, clamp(104px, 19vw, 124px));
  }

  .logo-card p {
    width: min(100%, 14ch);
    max-width: 14ch;
    font-size: 0.68rem;
    line-height: 1.08;
  }

  .hero h1 {
    max-width: 13.2ch;
    font-size: clamp(0.88rem, 2.85vw, 1.2rem);
    line-height: 0.9;
    text-wrap: pretty;
  }

  .hero-lead {
    margin-top: 6px;
    font-size: 0.68rem;
    line-height: 1.14;
  }

  .hero-actions {
    margin-top: 8px;
  }

  .hero-actions .button {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 0.58rem;
  }
}

@media (max-width: 560px) {
  .services-prototype-alt {
    margin-inline: -8px;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav-links {
    gap: 1px;
    font-size: 0.62rem;
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
    padding: 8px 9px;
  }

  .site-header::before,
  .site-header::after {
    width: 18px;
  }

  .site-home-link {
    margin-left: 6px;
    padding: 2px;
  }

  .site-home-link img {
    height: 24px;
    max-width: 46px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-brand-panel,
  .hero-message-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .hero-brand-panel {
    padding: 12px 14px;
  }

  .logo-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
  }

  .logo-card picture {
    display: block;
    width: min(100%, 360px);
    max-width: 100%;
  }

  .logo-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
  }

  .logo-card-copy {
    width: min(100%, 28ch);
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .logo-card p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.28;
    text-align: left;
  }

  .hero h1 {
    max-width: 10.8ch;
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-card,
  .service-card,
  .fleet-category,
  .services-prototype-alt {
    padding: 18px;
  }

  .service-lane,
  .service-lane:nth-child(1),
  .service-lane:nth-child(2),
  .service-lane:nth-child(3),
  .service-lane:nth-child(4) {
    padding: 18px 18px 20px;
  }

  .service-lane-head {
    gap: 8px;
    margin-bottom: 5px;
  }

  .service-lane-index {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .service-lane-copy h3 {
    margin-bottom: 0;
    font-size: 1.06rem;
    white-space: nowrap;
  }

  .service-lane-copy p {
    margin-top: 4px;
  }

  .service-lane-tags {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
  }

  .service-lane-tags span {
    white-space: normal;
  }

  .info-band-column {
    padding: 20px 18px;
  }

  .fleet-track {
    padding-top: 0;
    padding-inline: 2px;
    gap: 12px;
  }

  .fleet-scroll-shell::before {
    top: 16px;
    width: 24px;
  }

  .fleet-scroll-shell::after {
    top: 16px;
    width: 34px;
  }

  .equipment-item {
    flex-basis: min(80vw, 280px);
    padding: 16px;
    overflow: hidden;
  }

  .equipment-item-transport {
    flex-basis: min(84vw, 312px);
  }

  .equipment-photo {
    aspect-ratio: 16 / 10;
    margin-bottom: 12px;
    border-radius: 12px;
    background: transparent;
  }

  .equipment-photo-image {
    display: block;
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    height: auto;
    object-fit: contain;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .equipment-item-transport .equipment-photo {
    aspect-ratio: 16 / 9;
  }

  .service-lane {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-lane-index {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 699px) and (orientation: portrait) and (hover: hover) and (pointer: fine) {
  .hero-brand-panel {
    padding: 12px 16px;
  }

  .logo-card {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 8px;
  }

  .logo-card picture {
    display: block;
    width: min(100%, 560px);
    max-width: 100%;
  }

  .logo-card img {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .logo-card-copy {
    width: min(100%, 30ch);
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .logo-card p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.3;
  }
}
