:root {
  color-scheme: light;
  --ink: #17212d;
  --muted: #5f6d7c;
  --paper: #f4f7f5;
  --white: #ffffff;
  --line: #dce4df;
  --teal: #126c61;
  --teal-dark: #0a433e;
  --blue: #256b9b;
  --amber: #f0bd4f;
  --coral: #d85e4c;
  --violet: #6b61a8;
  --soft-teal: #e3f1ee;
  --soft-blue: #eaf2f8;
  --shadow: 0 18px 42px rgba(23, 33, 45, .13);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.75;
  letter-spacing: 0;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, li, th, td, a, summary { overflow-wrap: anywhere; letter-spacing: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 max(18px, calc((100% - 1160px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}

.brand,
.header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pr-label {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 26px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
}

.header-nav {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
}

.header-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: var(--muted);
  text-decoration: none;
}

main { padding-bottom: 84px; }

.hero {
  min-height: calc(88svh - 64px);
  display: grid;
  align-items: center;
  padding: clamp(44px, 7vw, 86px) max(18px, calc((100% - 1160px) / 2)) clamp(54px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(244, 247, 245, .98) 0%, rgba(244, 247, 245, .92) 36%, rgba(244, 247, 245, .48) 60%, rgba(244, 247, 245, .16) 100%),
    url("assets/hero-driver-career.png") center / cover no-repeat;
}

.hero-copy {
  width: min(720px, 100%);
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0;
  padding: 6px 11px;
  border-radius: 7px;
  background: var(--amber);
  color: #1d2732;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

h1 {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: clamp(36px, 5.1vw, 62px);
  line-height: 1.08;
}

h1 span {
  display: block;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #324253;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.button:hover { transform: translateY(-1px); }

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 24px rgba(216, 94, 76, .24);
}

.button.secondary {
  border-color: var(--teal);
  background: #fff;
  color: var(--teal-dark);
}

.button.dark {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.disclosure {
  max-width: 700px;
  margin: 28px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.disclosure b { color: var(--teal); }

.section {
  padding: 70px max(18px, calc((100% - 1160px) / 2));
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading h2,
.notice h2,
.final-cta h2 {
  margin: 16px 0 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.14;
}

.section-heading p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.basis,
.compare,
.flow,
.notice {
  background: var(--white);
}

.basis-grid,
.check-grid,
.fit-grid {
  display: grid;
  gap: 14px;
}

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

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

.basis-grid article,
.check-grid article,
.program-card,
.fit-grid article,
.flow-list li,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.basis-grid article,
.check-grid article,
.fit-grid article {
  padding: 22px;
}

.basis-grid span,
.check-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.basis-grid h3,
.check-grid h3,
.fit-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
}

.basis-grid p,
.check-grid p,
.program-body p,
.program-body li,
.fit-grid p,
.flow-list p,
.notice li,
.faq-list p {
  color: var(--muted);
}

.quick-check,
.ranking {
  background: var(--paper);
}

.program-list {
  display: grid;
  gap: 18px;
}

.program-card {
  display: grid;
  grid-template-columns: 82px minmax(220px, 300px) minmax(300px, 1fr) minmax(170px, 220px);
  align-items: center;
  gap: 22px;
  padding: 24px;
}

.program-card.top {
  border: 3px solid rgba(18, 108, 97, .34);
}

.rank-badge {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--amber);
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.rank-badge small {
  display: block;
  font-size: 12px;
  line-height: 1.1;
}

.program-media {
  position: relative;
  display: grid;
  justify-items: center;
}

.program-media a,
.service-logo {
  width: 100%;
  max-width: 300px;
  min-height: 200px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(23, 33, 45, .1);
}

.program-media img:not(.tracking-pixel) {
  width: 300px;
  height: auto;
  max-height: 250px;
  background: #fff;
}

.service-logo {
  align-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}

.service-logo span {
  color: var(--teal-dark);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
}

.service-logo b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 13px;
}

.levjob {
  background:
    linear-gradient(135deg, rgba(227, 241, 238, .96), rgba(255, 255, 255, .94)),
    repeating-linear-gradient(45deg, rgba(37, 107, 155, .08) 0 8px, rgba(18, 108, 97, .08) 8px 16px);
}

.tracking-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.advertiser {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.program-body h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.12;
}

.program-body h3 span {
  color: var(--blue);
  font-size: 19px;
}

.program-body p {
  margin: 12px 0 0;
  font-weight: 700;
}

.program-body ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.program-body li {
  line-height: 1.6;
  font-weight: 700;
}

.table-wrap {
  contain: paint;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--teal-dark);
  color: #fff;
  font-size: 14px;
}

tbody th { font-size: 17px; }
tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }
td a,
.fit-grid a { color: var(--blue); font-weight: 900; }

.table-link {
  min-height: 42px;
  min-width: 118px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(216, 94, 76, .2);
}

td .table-link { color: #fff; }
.muted-link { background: var(--muted); }

.fit {
  background: var(--soft-teal);
}

.fit-grid article {
  min-height: 260px;
}

.fit-grid p {
  margin: 12px 0 16px;
  font-weight: 700;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  min-height: 220px;
  padding: 24px;
}

.flow-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-weight: 900;
}

.flow-list b {
  display: block;
  font-size: 22px;
}

.flow-list p { margin: 10px 0 0; }

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  font-weight: 700;
}

.final-cta {
  padding: 70px max(18px, calc((100% - 1160px) / 2));
  background: var(--teal-dark);
  color: #fff;
}

.final-cta .section-kicker {
  background: #dbf0ea;
  color: var(--teal-dark);
}

.notice h2 {
  font-size: 30px;
}

.notice ul {
  max-width: 1000px;
  padding-left: 1.2em;
  margin: 18px 0 0;
}

.notice li + li { margin-top: 9px; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px max(12px, calc((100% - 780px) / 2));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.sticky-cta a:nth-child(2) {
  background: var(--teal);
}

@media (max-width: 1100px) {
  .program-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .program-card > .button {
    justify-self: start;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 58px;
    background:
      linear-gradient(180deg, rgba(244, 247, 245, .95) 0%, rgba(244, 247, 245, .92) 50%, rgba(244, 247, 245, .86) 100%),
      url("assets/hero-driver-career.png") center top / cover no-repeat;
  }

  .hero-actions {
    display: grid;
  }

  .disclosure {
    margin-top: 18px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .basis-grid,
  .check-grid,
  .flow-list,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    padding: 18px;
    gap: 16px;
  }

  .program-media {
    justify-items: start;
  }

  .program-media a,
  .service-logo {
    max-width: 100%;
    min-height: 170px;
  }

  .program-media img:not(.tracking-pixel) {
    width: 100%;
  }

  .rank-badge {
    width: 92px;
    min-height: 50px;
  }

  .program-body h3 span {
    display: block;
    margin-top: 5px;
    font-size: 17px;
  }

  .final-actions,
  .sticky-cta {
    grid-template-columns: 1fr;
  }
}

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

  .section-heading h2,
  .notice h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .service-logo span {
    font-size: 28px;
  }

  th,
  td {
    padding: 13px;
  }
}
