* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #2638f5;
  --blue-dark: #1828c8;
  --black: #080808;
  --white: #ffffff;
  --grey: #dedede;
  --light: #f4f4f4;
  --text-muted: #666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  font-size-adjust: 0.545;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  height: 86px;
  background: rgba(255, 255, 255, .98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #e8e8e8;
  overflow: hidden;
  isolation: isolate;
}

.logo {
  color: var(--blue);
  font-weight: 900;
  font-size: 25px;
  letter-spacing: -1.8px;
  white-space: nowrap;
}

.logo span {
  margin-left: 3px;
}

.site-header .logo,
.site-footer .logo {
  display: block;
  line-height: 0;
}

.site-header .logo {
  position: relative;
  z-index: 3;
}

.site-header .logo img {
  display: block;
  width: 420px;
  max-width: 42vw;
  height: auto;
}

.site-footer .logo img {
  display: block;
  width: 280px;
  height: auto;
}


/* =========================================================
   NAVIGATION BUTTONS
   ========================================================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  z-index: 3;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid #1d2fd7;
  border-radius: 7px;
  background: linear-gradient(180deg, #3448ff 0%, #2638f5 100%);
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.7px;
  white-space: nowrap;
  box-shadow:
    0 2px 0 rgba(0, 0, 0, .04),
    0 5px 12px rgba(0, 0, 0, .07);
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.main-nav a:hover {
  background: linear-gradient(180deg, #4659ff 0%, #3044ff 100%);
  color: #fff !important;
  border-color: #5264ff;
  transform: translateY(-2px);
  box-shadow:
    0 3px 0 rgba(0, 0, 0, .08),
    0 8px 18px rgba(38, 56, 245, .22);
}

.main-nav a:active {
  transform: translateY(0);

  box-shadow:
    0 2px 5px rgba(0, 0, 0, .12);
}

.main-nav a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* Prevent first-paint hover/layout movement. Hover effects become active
   once the page has completed its initial render. */
body:not(.page-ready) .main-nav a:hover {
  transform: none;
  box-shadow:
    0 2px 0 rgba(0, 0, 0, .04),
    0 5px 12px rgba(0, 0, 0, .07);
}


/* =========================================================
   CART COUNT
   ========================================================= */

#cart-count,
#footer-cart-count {
  font-variant-numeric: tabular-nums;
}

#cart-count {
  display: inline-block;
  margin-left: 4px;
  font-size: .88em;
  line-height: 1;
  vertical-align: baseline;
  opacity: .82;
  position: relative;
  top: 0;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  height: min(680px, calc(100vh - 86px));
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: #111;
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    url("assets/hero-wheel.png") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, .78) 0%,
    rgba(0, 0, 0, .38) 43%,
    rgba(0, 0, 0, .04) 75%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 7vw 100px;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
}

.hero .eyebrow {
  color: #fff;
}

.hero h1 {
  font-size: clamp(54px, 7vw, 105px);
  line-height: .89;
  letter-spacing: -5px;
  font-weight: 900;
}

.hero-copy {
  max-width: 520px;
  margin-top: 27px;
  font-size: 17px;
  color: rgba(255, 255, 255, .86);
}

.btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 15px 18px;
  border: 2px solid var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: .2s ease;
}

.btn span {
  font-size: 18px;
  line-height: 1;
}

.btn-primary {
  margin-top: 30px;
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.hero-bottom-shape {
  position: absolute;
  z-index: 5;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 82px;
  background: var(--grey);
  clip-path: polygon(
    0 0,
    50% 100%,
    100% 0,
    100% 100%,
    0 100%
  );
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
  background: var(--blue);
  color: #fff;
  padding: 85px max(30px, 7vw) 80px;
}

.page-hero .eyebrow {
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(55px, 7vw, 100px);
  line-height: .88;
  letter-spacing: -5px;
  font-weight: 900;
}

.page-hero h1 em {
  color: #fff;
  font-style: normal;
}


/* =========================================================
   GENERAL
   ========================================================= */

.section-pad {
  padding: 105px max(30px, 7vw);
}

.section-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 55px;
}

h2 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: .92;
  letter-spacing: -4px;
  font-weight: 900;
}

h2 em {
  color: var(--blue);
  font-style: normal;
}

.intro {
  background: var(--grey);
}

.intro-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin: 0 auto;
}

.intro-text {
  padding-top: 7px;
  max-width: 540px;
}

.intro-text p {
  font-size: 18px;
  color: #333;
  margin-bottom: 22px;
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-top: 12px;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 5px;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.features {
  background: var(--grey);
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: #fff;
  min-height: 390px;
  padding: 34px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card.featured {
  background: var(--blue);
  color: #fff;
}

.feature-number {
  position: absolute;
  top: 30px;
  right: 32px;
  font-size: 12px;
  font-weight: 800;
  opacity: .5;
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 55px;
}

.feature-card h3 {
  font-size: 29px;
  line-height: .98;
  letter-spacing: -1px;
  font-weight: 900;
}

.feature-card p {
  margin-top: 20px;
  color: #666;
  max-width: 320px;
}

.featured p {
  color: rgba(255, 255, 255, .78);
}

.feature-card a {
  margin-top: auto;
  padding-top: 28px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
  position: relative;
  min-height: 470px;
  background: var(--black);
  color: #fff;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  width: 52vw;
  height: 52vw;
  right: -17vw;
  top: -21vw;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  padding: 100px max(30px, 7vw);
}

.cta .eyebrow {
  color: #fff;
}

.cta h2 {
  position: relative;
  z-index: 2;
}

.btn-light {
  margin-top: 35px;
  background: #fff;
  border-color: #fff;
  color: var(--black);
}

.btn-light:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-details-section {
  background: #dedede;
  padding: 90px max(30px, 7vw);
}

.contact-info {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-info-item span {
  color: #2638f5;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.contact-info a {
  color: #080808;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  transition: color .2s ease;
}

.contact-info a:hover {
  color: #2638f5;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.shop-cta {
  background: var(--grey);
  padding: 80px max(30px, 7vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.shop-cta h2 {
  font-size: clamp(45px, 5vw, 70px);
}

.shop-cta .btn {
  flex-shrink: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  width: 100%;
  background: #080808;
  color: #fff;
  text-align: center;
  border-top: 1px solid #1b1b1b;
  padding: 70px 30px 30px;
  overflow: hidden;
}

.footer-logo {
  display: block;
  width: fit-content;
  margin: 0 auto 28px;
  line-height: 0;
}

.footer-logo img {
  display: block;
  width: 650px;
  max-width: 85vw;
  height: auto;
}

.footer-description {
  max-width: 1000px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: .15px;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid #292929;
  color: rgba(255, 255, 255, .55);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .9px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .72);
}

.footer-bottom a:hover {
  color: #fff;
}


/* =========================================================
   HOMEPAGE SECONDARY SHOP LINKS
   ========================================================= */

.secondary-links a,
.secondary-links a:hover,
.secondary-links a:focus,
.secondary-links a:active {
  border: 0 !important;
  outline: none !important;
}



/* =========================================================
   HERO FREE SHIPPING PROMO
   ========================================================= */

.hero-shipping {
  position: absolute;
  z-index: 4;
  top: 10px;
  right: 30px;
  background: #fff;
  color: #2638f5;
  padding: 15px 24px;
  border: 4px solid #2638f5;
  border-top: 1;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.4px;
  text-align: center;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .16);
}

.hero-shipping em {
  font-style: italic;
}

@media (max-width: 800px) {
  .hero-shipping {
    top: 10px;
    right: 24px;
    left: 24px;
    width: auto;
    padding: 12px 16px;
    border-top: 0;
    font-size: 14px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .logo {
    font-size: 19px;
    letter-spacing: -1.3px;
  }

  .site-header .logo img {
    width: 260px;
    max-width: 70vw;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #ddd;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--blue) !important;
    box-shadow: none;
    font-size: 16px;
  }

  .main-nav a:hover {
    background: transparent;
    color: var(--blue) !important;
    border-color: transparent;
    box-shadow: none;
    transform: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 4;
  }

  .menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--blue);
  }

  .hero {
    min-height: 650px;
    height: calc(100vh - 68px);
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-content {
    padding: 35px 24px 110px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 76px);
    letter-spacing: -3px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-bottom-shape {
    height: 55px;
  }

  .section-pad {
    padding: 75px 24px;
  }

  .section-label {
    margin-bottom: 40px;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .features {
    padding: 0 24px 75px;
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 330px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .shop-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 65px 24px;
  }

  .footer-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer-bottom {
    margin-top: 35px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .footer-links {
    gap: 20px;
  }
}