:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --panel: #0e0e0e;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --text: #171717;
  --muted: #777777;
  --muted-dark: #a4a4a4;
  --line: #292929;
  --light-line: #ddddda;
  --orange: #ff4f00;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}


/* HEADER */

.site-header {
  background: #000;
  border-bottom: 1px solid #1b1b1b;
  position: relative;
  z-index: 50;
}

.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  width: 150px;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav a {
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .055em;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav .nav-cta {
  color: var(--white);
  border: 1px solid var(--orange);
  padding: 11px 17px;
}


/* GLOBAL TYPE */

.eyebrow,
.section-label,
.card-tag,
.market-status {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-label,
.eyebrow {
  margin-bottom: 18px;
}

.intro h2,
.section-heading h2,
.elite-copy h2,
.quote-copy h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 600;
}


/* HERO */

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.95) 0%,
      rgba(0,0,0,.79) 42%,
      rgba(0,0,0,.18) 73%,
      rgba(0,0,0,.28) 100%
    ),
    url("hero-truck.webp") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,.45),
    transparent 50%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 75px 0 65px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 600;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 600px;
  margin-top: 27px;
  color: #dedede;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: #ff621f;
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.25);
}

.btn-secondary:hover {
  border-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 55px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
}

.hero-stats span {
  margin-top: 8px;
  color: #999;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}


/* INTRO */

.intro {
  padding: 95px 0;
  background: var(--off-white);
  color: var(--text);
  text-align: center;
}

.intro p {
  max-width: 760px;
  margin: 25px auto 0;
  color: #626262;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
}


/* SECTION HEADINGS */

.section-heading {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-heading p {
  max-width: 690px;
  margin-top: 21px;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}


/* CAMPAIGN TYPES */

.campaigns {
  padding: 100px 0;
  background: var(--black);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.campaign-card {
  padding: 46px;
  background: #0c0c0c;
  border: 1px solid #252525;
}

.campaign-card.shared {
  background: #101010;
}

.card-tag {
  margin-bottom: 25px;
}

.campaign-card h3 {
  max-width: 500px;
  margin-bottom: 15px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 500;
}

.card-intro {
  color: #f2f2f2 !important;
  font-size: 17px !important;
  margin-bottom: 20px;
}

.campaign-card p {
  color: #a7a7a7;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

.campaign-card ul {
  list-style: none;
  margin: 28px 0 34px;
}

.campaign-card li {
  padding: 9px 0;
  color: #dedede;
  border-bottom: 1px solid #222;
  font-size: 13px;
  font-weight: 300;
}

.campaign-card li::before {
  content: "—";
  margin-right: 10px;
  color: var(--orange);
}

.text-link {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}


/* ELITE 16 */

.elite-feature {
  padding: 105px 0;
  background: #080808;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.elite-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.elite-logo-wrap {
  padding: 20px;
  background: #000;
  border: 1px solid #202020;
}

.elite-logo-wrap img {
  width: 100%;
}

.elite-intro {
  max-width: 620px;
  margin-top: 24px;
  color: #bdbdbd;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
}

.elite-intro strong {
  color: #fff;
  font-weight: 500;
}

.elite-price {
  margin-top: 30px;
  color: var(--orange);
  font-size: 44px;
  line-height: 1;
  font-weight: 500;
}

.elite-price span {
  color: #999;
  font-size: 13px;
  letter-spacing: .08em;
}

.billing-note {
  margin-top: 8px;
  color: #777;
  font-size: 12px;
}

.elite-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 32px 0;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

.elite-details div {
  padding: 22px 18px 22px 0;
}

.elite-details div + div {
  padding-left: 20px;
  border-left: 1px solid #292929;
}

.elite-details strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
}

.elite-details span {
  display: block;
  margin-top: 5px;
  color: #888;
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.elite-includes {
  max-width: 600px;
  margin-bottom: 30px;
  color: #999;
  font-size: 14px;
  line-height: 1.7;
}


/* EXCLUSIVE COVERAGE */

.network {
  padding: 100px 0;
  background: var(--off-white);
  color: var(--text);
}

.network .section-heading p {
  color: #666;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.coverage-item {
  min-height: 215px;
  padding: 32px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.coverage-item > strong {
  display: block;
  color: var(--orange);
  font-size: 39px;
  line-height: 1;
  font-weight: 400;
}

.coverage-item h3 {
  margin-top: 25px;
  font-size: 19px;
  font-weight: 500;
}

.coverage-item p {
  margin-top: 7px;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
}


/* SHARED MARKETS */

.shared-rollout {
  padding: 100px 0;
  background: #080808;
}

.shared-market-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #292929;
  border-left: 1px solid #292929;
}

.shared-market {
  min-height: 205px;
  padding: 28px;
  border-right: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

.shared-market.live {
  background: var(--orange);
}

.shared-market.live .market-status,
.shared-market.live .market-link {
  color: #fff;
}

.shared-market.live .market-status {
  opacity: .8;
}

.shared-market.coming {
  background: #0d0d0d;
}

.shared-market.coming .market-status {
  color: #777;
}

.shared-market h3 {
  margin-top: 40px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 500;
}

.shared-market p {
  margin-top: 7px;
  color: #999;
  font-size: 12px;
}

.shared-market.live p {
  color: rgba(255,255,255,.8);
}

.market-link {
  display: block;
  margin-top: 25px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}


/* QUOTE */

.quote-section {
  padding: 105px 0;
  background: #050505;
  border-top: 1px solid #202020;
}

.quote-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
}

.quote-copy p {
  max-width: 440px;
  margin-top: 24px;
  color: #999;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.contact-info {
  margin-top: 36px;
}

.contact-info a {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.contact-info a:hover {
  color: var(--orange);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-form label {
  color: #8c8c8c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  color: #fff;
  background: #0d0d0d;
  border: 1px solid #303030;
  border-radius: 0;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
}

.full-field {
  grid-column: 1 / -1;
}


/* FOOTER */

.site-footer {
  padding: 45px 0 25px;
  background: #000;
  border-top: 1px solid #202020;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-grid strong {
  font-size: 14px;
  font-weight: 500;
}

.footer-grid p {
  margin-top: 5px;
  color: #666;
  font-size: 12px;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: block;
  color: #888;
  font-size: 12px;
}

.copyright {
  margin-top: 30px;
  padding-top: 18px;
  color: #555;
  border-top: 1px solid #191919;
  font-size: 10px;
}


/* TABLET */

@media (max-width: 950px) {

  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .campaign-grid,
  .elite-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .elite-grid,
  .quote-grid {
    gap: 45px;
  }

  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shared-market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .container {
    width: calc(100% - 30px);
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand {
    width: 110px;
  }

  .main-nav .nav-cta {
    padding: 9px 11px;
    font-size: 9px;
  }

  .hero {
    min-height: 625px;
    background-position: 62% center;
  }

  .hero-content {
    padding: 55px 0 45px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    gap: 15px;
    justify-content: space-between;
    margin-top: 42px;
  }

  .hero-stats strong {
    font-size: 18px;
  }

  .intro,
  .campaigns,
  .elite-feature,
  .network,
  .shared-rollout,
  .quote-section {
    padding: 72px 0;
  }

  .campaign-card {
    padding: 32px 24px;
  }

  .elite-logo-wrap {
    padding: 12px;
  }

  .elite-details {
    grid-template-columns: 1fr;
  }

  .elite-details div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #292929;
  }

  .coverage-grid,
  .shared-market-grid {
    grid-template-columns: 1fr;
  }

  .coverage-item,
  .shared-market {
    min-height: auto;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form label,
  .full-field {
    grid-column: 1;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }

}