:root {
  --bg:      oklch(99% 0.002 240);
  --surface: oklch(100% 0 0);
  --fg:      oklch(18% 0.012 250);
  --muted:   oklch(54% 0.012 250);
  --border:  oklch(92% 0.005 250);
  --accent:  oklch(58% 0.18 255);
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --font-mono: ui-monospace, 'JetBrains Mono', 'IBM Plex Mono', Menlo, monospace;
  --accent-soft: color-mix(in oklch, var(--accent) 10%, var(--surface));
  --accent-strong: color-mix(in oklch, var(--accent) 82%, var(--fg));
  --success: oklch(58% 0.16 145);
  --warn: oklch(74% 0.14 80);
  --danger: oklch(58% 0.18 25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-raised: 0 8px 24px color-mix(in oklch, var(--fg) 8%, transparent);
  --container: 1200px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--accent) 3%, transparent), transparent 360px),
    var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body.nav-open {
  overflow: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent-strong);
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(calc(100% - clamp(32px, 6vw, 96px)), var(--container));
  margin-inline: auto;
}
.section {
  padding-block: clamp(56px, 7vw, 96px);
}
.section-tight {
  padding-block: clamp(36px, 5vw, 64px);
}
.section-band,
.section-surface {
  border-block: 1px solid var(--border);
}
.section-band {
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--accent) 5%, var(--bg)), color-mix(in oklch, var(--accent) 2%, var(--bg))),
    var(--bg);
}
.section-surface {
  background: color-mix(in oklch, var(--surface) 82%, var(--bg));
}
.section-band + .section-band,
.section-surface + .section-surface {
  border-top: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 94%, var(--bg));
}
.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--fg);
}
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-lockup {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-meta {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 12px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.header-email {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 0 14px;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--fg);
  cursor: pointer;
}
.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.menu-lines {
  position: relative;
}
.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}
.menu-lines::before {
  top: -6px;
}
.menu-lines::after {
  top: 6px;
}
.button,
.button-secondary,
.button-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1;
  padding: 0 16px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
}
.button:hover {
  color: white;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}
.button-secondary {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
}
.button-secondary:hover {
  border-color: color-mix(in oklch, var(--accent) 34%, var(--border));
  color: var(--accent-strong);
  transform: translateY(-1px);
}
.button-text {
  min-height: auto;
  padding: 0;
  color: var(--accent-strong);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}
.hero {
  padding-block: clamp(48px, 7vw, 92px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}
.hero-copy {
  display: grid;
  gap: 24px;
}
.hero h1,
.page-hero h1,
.landing-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
}
.lede {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  text-wrap: pretty;
}
.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-media,
.image-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.hero-media {
  min-height: clamp(440px, 55vw, 680px);
}
.hero-media img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img {
  position: absolute;
  inset: 0;
  object-position: 52% 42%;
}
.media-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 3px;
  max-width: 260px;
  border: 1px solid color-mix(in oklch, white 48%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  box-shadow: var(--shadow-raised);
  padding: 14px;
}
.media-caption strong {
  font-size: 14px;
}
.media-caption span {
  color: var(--muted);
  font-size: 12px;
}
.bco-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 10px 12px;
}
.bco-proof img {
  width: 42px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}
.bco-proof span {
  display: grid;
  gap: 1px;
}
.bco-proof small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bco-proof strong {
  font-family: var(--font-display);
  font-size: 15px;
}
.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
}
.status-item {
  display: grid;
  gap: 4px;
  background: var(--surface);
  padding: 18px;
}
.status-item span,
.field-label,
.mini-label {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-item strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.status-logo-item {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.status-logo-item span,
.status-logo-item strong {
  grid-column: 1;
}
.landstar-logo-inline {
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 34px;
  height: 38px;
  object-fit: contain;
}
.grid-3,
.grid-2,
.capability-grid,
.launcher-grid {
  display: grid;
  gap: 16px;
}
.grid-3,
.capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.launcher-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.card,
.site-card,
.broker-panel,
.contact-card,
.cms-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.card,
.site-card,
.contact-card,
.cms-card {
  padding: clamp(18px, 2vw, 24px);
}
.card {
  display: grid;
  gap: 12px;
}
.contact-card {
  display: grid;
  align-content: start;
  gap: 16px;
}
.contact-card .note {
  margin-top: 4px;
}
.direct-email-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  padding: 16px;
}
.direct-email-address {
  color: var(--fg);
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.direct-email-address:hover {
  color: var(--accent-strong);
}
.direct-email-card p {
  max-width: 34ch;
}
.direct-email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.direct-email-actions .button,
.direct-email-actions .button-secondary {
  min-height: 40px;
}
.direct-email-actions button {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--fg);
  cursor: pointer;
  font-weight: 700;
  padding-inline: 14px;
}
.direct-email-actions button:hover {
  border-color: color-mix(in oklch, var(--accent) 34%, var(--border));
  color: var(--accent-strong);
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}
.card-icon.logo-icon {
  border: 1px solid var(--border);
  background: var(--surface);
}
.card-icon.logo-icon img {
  width: 25px;
  height: 28px;
  object-fit: contain;
}
.card h2,
.card h3,
.site-card h2,
.site-card h3,
.contact-card h2,
.broker-panel h2,
.cms-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-wrap: pretty;
}
.card h3,
.site-card h3 {
  font-size: 20px;
}
.card p,
.site-card p,
.contact-card p,
.cms-card p {
  margin: 0;
  color: var(--muted);
}
.broker-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1px;
  overflow: hidden;
  background: var(--border);
}
.broker-panel > * {
  background: var(--surface);
  padding: clamp(22px, 3vw, 34px);
}
.broker-summary {
  display: grid;
  align-content: start;
  gap: 18px;
}
.broker-summary > p {
  margin: 0;
  color: var(--muted);
}
.summary-block {
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: color-mix(in oklch, var(--surface) 74%, var(--bg));
  padding: 16px;
}
.summary-block h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.summary-list,
.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.summary-list li,
.check-list li {
  position: relative;
  min-width: 0;
  color: var(--fg);
  padding-left: 20px;
}
.summary-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--accent);
  content: "";
}
.check-list li::before {
  top: 0.42em;
  width: 9px;
  height: 9px;
  border: 2px solid var(--accent);
  background: var(--surface);
}
.bco-inline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid color-mix(in oklch, var(--accent) 26%, var(--border));
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  padding: 14px;
}
.bco-inline img {
  width: 42px;
  height: 46px;
  object-fit: contain;
}
.bco-inline p {
  margin: 0;
  color: var(--fg);
  font-weight: 650;
  line-height: 1.35;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}
.field {
  display: grid;
  min-height: 92px;
  align-content: start;
  gap: 8px;
  background: var(--surface);
  padding: 18px;
}
.field strong {
  font-size: 17px;
  line-height: 1.35;
}
.field.with-logo {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}
.field.with-logo .field-label,
.field.with-logo strong {
  grid-column: 1;
}
.field p {
  margin: 0;
  color: var(--muted);
}
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--accent) 11%, var(--surface)), var(--surface) 48%),
    var(--surface);
  padding: clamp(24px, 4vw, 42px);
}
.contact-band h2,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.contact-band p,
.section-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 28px;
}
.page-hero,
.landing-hero {
  padding-block: clamp(44px, 6vw, 86px);
}
.page-hero-grid,
.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 6vw, 64px);
}
.page-intro-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(22px, 3vw, 30px);
}
.contact-list,
.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list li,
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding-block: 12px;
}
.contact-list li:last-child,
.detail-row:last-child {
  border-bottom: 0;
}
.contact-list span,
.detail-row span {
  color: var(--muted);
}
.contact-list strong,
.detail-row strong {
  text-align: right;
}
.image-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
}
.image-panel {
  min-height: 320px;
}
.image-panel.tall {
  min-height: 520px;
}
.image-panel.short {
  min-height: 245px;
}
.logo-feature {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(28px, 5vw, 48px);
}
.logo-feature img {
  max-width: min(360px, 84%);
  max-height: 280px;
  object-fit: contain;
}
.cms-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cms-list li {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--muted);
  padding: 12px;
}
.note {
  border: 1px solid color-mix(in oklch, var(--warn) 36%, var(--border));
  border-radius: var(--radius-md);
  background: color-mix(in oklch, var(--warn) 10%, var(--surface));
  color: color-mix(in oklch, var(--fg) 84%, var(--warn));
  padding: 16px;
}
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(20px, 3vw, 28px);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-field {
  display: grid;
  gap: 7px;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  color: var(--fg);
  font-size: 14px;
  font-weight: 700;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--fg);
  padding: 11px 12px;
  outline: none;
}
.form-field textarea {
  min-height: 132px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
}
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}
.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 14px;
}
.copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 14px;
}
.copy-row strong {
  display: block;
  word-break: break-word;
}
.copy-row button {
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  font-weight: 700;
  padding-inline: 12px;
}
.copy-feedback {
  grid-column: 1 / -1;
  min-height: 18px;
  color: var(--success);
  font-size: 13px;
}
.site-card {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  gap: 18px;
}
.site-card small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-card .button-text {
  justify-self: start;
}
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-block: 36px;
}
.footer-brand {
  display: grid;
  gap: 12px;
}
.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}
.footer-col h2,
.footer-brand h2 {
  margin: 0;
  font-size: 15px;
}
.footer-col a,
.footer-col p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-landstar {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.footer-landstar img {
  width: 28px;
  height: 31px;
  object-fit: contain;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding-block: 18px;
  font-size: 13px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding-inline: 11px;
}
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.58fr);
  gap: 24px;
  align-items: stretch;
}
.timeline {
  display: grid;
  gap: 12px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.timeline-step {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-weight: 800;
}
.timeline-item h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 1180px) {
  .launcher-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-grid,
  .page-hero-grid,
  .landing-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    min-height: 560px;
  }
}
@media (max-width: 940px) {
  .header-inner {
    grid-template-columns: auto auto;
  }
  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-raised);
    padding: 10px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    border-radius: var(--radius-sm);
    padding: 13px 14px;
  }
  .header-actions {
    justify-self: end;
  }
  .menu-toggle {
    display: grid;
  }
  .header-actions .button {
    display: none;
  }
  .broker-panel,
  .form-shell,
  .split-feature {
    grid-template-columns: 1fr;
  }
  .status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .brand-logo {
    width: 48px;
    height: 48px;
  }
  .brand-meta {
    display: none;
  }
  .header-email {
    min-height: 40px;
    padding: 0 11px;
    font-size: 12px;
  }
  .hero h1,
  .page-hero h1,
  .landing-hero h1 {
    font-size: clamp(36px, 12vw, 54px);
  }
  .hero-media {
    min-height: 430px;
  }
  .media-caption {
    inset: auto 10px 10px 10px;
    max-width: none;
  }
  .grid-3,
  .grid-2,
  .capability-grid,
  .launcher-grid,
  .field-grid,
  .cms-list,
  .form-grid,
  .footer-grid,
  .image-grid {
    grid-template-columns: 1fr;
  }
  .contact-band {
    grid-template-columns: 1fr;
  }
  .contact-list li,
  .detail-row {
    display: grid;
    gap: 4px;
  }
  .contact-list strong,
  .detail-row strong {
    text-align: left;
  }
  .image-panel.tall,
  .image-panel {
    min-height: 360px;
  }
}
@media (max-width: 560px) {
  .header-inner {
    gap: 10px;
  }
  .brand-name {
    max-width: 126px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-email {
    width: 42px;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }
  .header-email::before {
    content: "@";
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 800;
  }
}
@media (max-width: 420px) {
  .header-inner {
    gap: 10px;
  }
  .brand-name {
    max-width: 126px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-email {
    font-size: 0;
    width: 42px;
    justify-content: center;
    padding: 0;
  }
  .header-email::before {
    content: "@";
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 800;
  }
  .status-strip {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .button,
  .button-secondary {
    width: 100%;
  }
}
