:root {
  color-scheme: light;
  --ink: #142033;
  --muted: #5f6a78;
  --line: #d7dde7;
  --paper: #f5f7fa;
  --white: #ffffff;
  --blue: #174f8a;
  --blue-dark: #0f335a;
  --blue-soft: #e8f1fb;
  --gold: #f0b832;
  --shadow: 0 18px 44px rgba(20, 32, 51, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 221, 231, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  min-width: 74px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.hero {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  background-image:
    linear-gradient(0deg, rgba(13, 28, 48, 0.9), rgba(13, 28, 48, 0.55)),
    url("truck-unbranded-v2.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-content {
  align-self: end;
  width: min(100%, 760px);
  padding: 64px 18px 42px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 43px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.primary {
  background: var(--gold);
  color: #172033;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.light {
  background: var(--white);
  color: var(--blue-dark);
}

.section-pad {
  padding: 48px 18px;
}

.intro,
.section-heading,
.landstar-copy {
  max-width: 900px;
}

.intro p,
.landstar-copy p,
.apply-band p {
  color: var(--muted);
  font-size: 18px;
}

.paths {
  background: var(--white);
}

.path-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.path-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 26px rgba(20, 32, 51, 0.06);
}

.path-card p:not(.card-label) {
  color: var(--muted);
}

.card-label {
  color: var(--blue);
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.landstar {
  display: grid;
  gap: 28px;
}

.checklist {
  display: grid;
  gap: 14px;
}

.checklist div {
  padding: 20px;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(20, 32, 51, 0.08);
}

.checklist strong,
.checklist span {
  display: block;
}

.checklist span {
  margin-top: 6px;
  color: var(--muted);
}

.apply-band {
  display: grid;
  gap: 24px;
  padding: 50px 18px;
  background: var(--blue-dark);
  color: var(--white);
}

.reading {
  background: var(--white);
}

.article-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.article-list.stacked {
  grid-template-columns: 1fr;
}

.article-list a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.article-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero {
  padding: 54px 18px;
  background:
    linear-gradient(0deg, rgba(13, 28, 48, 0.88), rgba(13, 28, 48, 0.68)),
    url("truck-unbranded-v2.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.page-hero h1,
.page-hero p {
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.page-hero .button {
  margin-top: 16px;
}

.content-grid {
  display: grid;
  gap: 28px;
}

.content-main {
  max-width: 820px;
}

.content-main p,
.content-main li,
.article-page p,
.article-page li {
  color: var(--muted);
  font-size: 18px;
}

.content-main ul,
.article-page ul {
  padding-left: 22px;
}

.content-main li,
.article-page li {
  margin-bottom: 8px;
}

.side-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.side-panel .button {
  width: 100%;
  margin: 8px 0 18px;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.article-page {
  max-width: 850px;
  padding: 54px 18px;
}

.article-page h1 {
  color: var(--ink);
}

.lede {
  color: var(--ink) !important;
  font-size: 21px !important;
  font-weight: 800;
}

.article-cta {
  margin-top: 34px;
  padding: 24px;
  border-radius: 8px;
  background: var(--blue-soft);
}

.related-block {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.related-block h2 {
  margin-bottom: 4px;
  font-size: 26px;
}

.related-block a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue);
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.related-block a::after {
  flex: 0 0 auto;
  margin-left: 14px;
  color: var(--muted);
  content: ">";
}

.side-panel .text-link {
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue);
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.path-card .text-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
}

.hub-link {
  margin-top: 18px;
}

.hub-layout {
  display: grid;
  gap: 28px;
}

.redirect-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.redirect-page .side-panel {
  width: min(100%, 560px);
}

.quiet-redirect {
  min-height: 100svh;
  background: var(--white);
}

.quiet-redirect .button {
  opacity: 0;
}

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

.apply-band p {
  color: rgba(255, 255, 255, 0.84);
}

footer {
  padding: 28px 18px;
  background: #101827;
  color: rgba(255, 255, 255, 0.72);
}

footer p {
  max-width: 980px;
  margin: 0;
  font-size: 14px;
}

@media (min-width: 760px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 14px clamp(28px, 5vw, 72px);
  }

  nav {
    justify-content: flex-end;
    gap: 26px;
  }

  .hero {
    min-height: clamp(590px, calc(100vh - 112px), 760px);
    background-image:
      linear-gradient(90deg, rgba(13, 28, 48, 0.92) 0%, rgba(13, 28, 48, 0.66) 48%, rgba(13, 28, 48, 0.16) 100%),
      url("truck-unbranded-v2.png");
  }

  .hero-content {
    align-self: center;
    padding: 76px 0 76px clamp(28px, 6vw, 86px);
  }

  h1 {
    font-size: clamp(58px, 7vw, 84px);
  }

  h2 {
    font-size: clamp(38px, 4vw, 54px);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .section-pad {
    padding: clamp(70px, 8vw, 112px) clamp(28px, 6vw, 86px);
  }

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

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

  .hub-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .landstar {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
    align-items: start;
    gap: clamp(32px, 6vw, 82px);
  }

  .apply-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: clamp(58px, 6vw, 78px) clamp(28px, 6vw, 86px);
  }

  footer {
    padding: 28px clamp(28px, 6vw, 86px);
  }

  .page-hero {
    padding: 82px clamp(28px, 6vw, 86px);
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .article-page {
    padding: 82px clamp(28px, 6vw, 86px);
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 210px;
  }

  nav a:not(.nav-cta) {
    font-size: 13px;
  }

  h1 {
    font-size: 39px;
  }
}
