@import url("/assets/css/hero.css");
@import url("/assets/css/electric-ticker.css");

.moto-page{
  --moto-accent: var(--color-green);
  --moto-violet: var(--color-violet-bright);
  --moto-line: rgba(255,255,255,.14);
  --moto-line-strong: rgba(255,255,255,.24);
  --moto-panel: rgba(255,255,255,.035);
  --moto-panel-strong: rgba(255,255,255,.06);
  background: #000;
}

.moto-page main{
  overflow: hidden;
  background: #000;
}

.moto-page .header{
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
}

body.moto-page:not(.menu-open) .header:not(.scrolled){
  border-bottom-color: rgba(255,255,255,.12);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.moto-container{
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - (2 * var(--gutter))));
  margin-inline: auto;
}

.moto-page .section-heading{
  min-width: 0;
  max-width: 820px;
  margin: 0;
}

.moto-page .section-kicker{
  display: inline-block;
  margin-bottom: 18px;
  color: var(--moto-accent);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .16em;
}

.moto-page .section-title{
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.055em;
}

.moto-page .section-title span{
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--moto-violet), var(--moto-accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.moto-hero{
  --hero-offroad-accent: var(--moto-accent);
  border-bottom: 1px solid var(--moto-line);
  background-image: none;
}

.moto-hero-background{
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.moto-hero.hero--offroad::before,
.moto-hero.hero--offroad::after{
  z-index: 1;
}

.moto-hero :is(.hero-inner, .hero-side-note){
  z-index: 2;
}

.moto-hero .hero-left{
  width: min(1380px, 94%);
}

.moto-hero .hero-title{
  max-width: 1380px;
  font-size: clamp(64px, min(6.8vw, 13.5vh), 132px);
}

.moto-hero .hero-title-line--outline{
  padding-left: clamp(34px, 5vw, 98px);
}

.moto-hero .hero-footer{
  max-width: 940px;
}

@media (min-width: 721px){
  .moto-hero{
    min-height: clamp(640px, 76svh, 760px);
  }

  .moto-hero .hero-inner{
    align-items: flex-start;
    padding-top: clamp(84px, 10vh, 96px);
  }

  .moto-hero .hero-title{
    font-size: clamp(64px, min(5.8vw, 11.5vh), 112px);
  }
}

.moto-page .fullscreen-menu .btn[aria-current="page"]{
  color: var(--moto-accent);
}

.moto-selection{
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 132px) 0 clamp(104px, 10vw, 150px);
  border-block: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, #020202 0%, #08040e 58%, #020202 100%);
  color: #fff;
  isolation: isolate;
}

.moto-selection-background{
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.moto-selection::before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
  pointer-events: none;
}

.moto-selection::after{
  content: none;
}

.moto-selection .moto-container{
  width: min(1360px, calc(100% - (2 * var(--gutter))));
}

.moto-selection-intro{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .62fr);
  gap: clamp(42px, 8vw, 118px);
  align-items: end;
  padding-bottom: clamp(40px, 5vw, 66px);
  border-bottom: 1px solid var(--moto-line);
}

.moto-selection-heading{
  max-width: 860px;
}

.moto-selection-heading .section-title{
  margin-top: 16px;
}

.moto-selection-count{
  color: var(--moto-accent);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .16em;
}

.moto-selection-intro > p{
  max-width: 520px;
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(112,255,69,.34);
  color: var(--color-text-soft);
  font-size: 13px;
  line-height: 1.75;
}

.moto-product-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 32px);
  margin-top: clamp(52px, 6vw, 84px);
}

.moto-product-card{
  --product-accent: var(--moto-accent);
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--moto-line-strong);
  border-radius: clamp(20px, 2vw, 28px);
  background: rgba(255,255,255,.035);
  box-shadow: none;
  scroll-margin-top: calc(var(--header-height) + 24px);
  transition: transform .35s var(--ease-standard), border-color .35s ease;
}

.moto-product-card:nth-child(even){
  --product-accent: var(--moto-violet);
}

.moto-product-card::before{
  content: none;
}

.moto-product-visual{
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-bottom: 1px solid var(--moto-line);
  background: #080808;
  isolation: isolate;
}

.moto-product-visual::after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), transparent 42%),
    linear-gradient(0deg, rgba(0,0,0,.68), transparent 38%);
  pointer-events: none;
}

.moto-product-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-standard), filter .7s var(--ease-standard);
}

#komodo .moto-product-visual img{ object-position: 52% center; }
#sting .moto-product-visual img{ object-position: 50% center; }
#ultra-bee .moto-product-visual img{ object-position: 54% center; }
#evo-pro .moto-product-visual img{ object-position: 52% center; }

.moto-selection .moto-card-number{
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: grid;
  width: 38px;
  height: 34px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--product-accent) 75%, #fff);
  border-radius: 8px;
  background: rgba(0,0,0,.36);
  color: #fff;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 0 24px color-mix(in srgb, var(--product-accent) 24%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.moto-product-visual figcaption{
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  margin: 0;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(0,0,0,.54);
  color: rgba(255,255,255,.88);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
}

.moto-product-content{
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 3.2vw, 44px);
}

.moto-product-heading{
  width: 100%;
}

.moto-product-meta{
  margin: 0 0 14px;
  color: var(--product-accent);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .13em;
}

.moto-product-content h3{
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.055em;
}

.moto-product-description{
  max-width: 610px;
  margin: 20px 0 26px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.moto-product-facts{
  width: 100%;
  margin: 0 0 24px;
  border-block: 1px solid var(--moto-line);
}

.moto-product-facts div{
  display: grid;
  grid-template-columns: minmax(118px, .42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
}

.moto-product-facts dt{
  color: var(--color-text-soft);
  font-size: 12px;
}

.moto-product-facts dd{
  margin: 0;
  color: #fff;
  font-family: var(--font-copy);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.moto-product-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.moto-product-actions :is(.btn-primary, .btn-secondary){
  min-height: 50px;
  padding: 9px 11px 9px 18px;
  border-radius: 10px;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}

.moto-product-actions :is(.btn-primary, .btn-secondary) span{
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  place-items: center;
  border-radius: 7px;
}

.moto-guidance{
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 124px) 0 clamp(74px, 7vw, 104px);
  border-block: 1px solid rgba(255,255,255,.18);
  background: #090018;
  color: #fff;
  isolation: isolate;
}

.moto-guidance-background{
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.moto-guidance::before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,0,17,.32), rgba(3,0,17,.04) 52%, rgba(3,0,17,.2));
  pointer-events: none;
}

.moto-guidance .moto-container{
  width: min(1440px, calc(100% - (2 * var(--gutter))));
}

.moto-guidance-header{
  display: grid;
  grid-template-columns: minmax(180px,1fr) minmax(320px,430px);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.moto-guidance .section-kicker{
  position: relative;
  max-width: 190px;
  margin: 0;
  padding-top: 26px;
  color: #fff;
  font-size: 11px;
  line-height: 1.65;
}

.moto-guidance .section-kicker::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 2px;
  background: #b66cff;
  box-shadow: 0 0 16px rgba(166,79,255,.5);
}

.moto-guidance-header > p{
  max-width: 430px;
  margin: 0;
  padding-left: clamp(24px, 2.4vw, 38px);
  border-left: 2px solid rgba(174,82,255,.84);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.75;
}

.moto-guidance-list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(18px, 2vw, 30px);
  margin-top: clamp(44px, 5vw, 66px);
}

.moto-guidance-card{
  position: relative;
  min-width: 0;
  min-height: 250px;
  overflow: hidden;
  padding: clamp(28px, 2.6vw, 40px);
  border: 1px solid rgba(183,105,255,.72);
  border-radius: 16px;
  background: rgba(7,1,29,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 0 24px rgba(126,44,222,.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition: transform .28s var(--ease-standard), border-color .28s ease, background-color .28s ease;
}

.moto-guidance-card::before{
  content: "";
  position: absolute;
  top: 22px;
  right: -38px;
  width: 158px;
  height: 132px;
  opacity: .26;
  background: repeating-linear-gradient(135deg, transparent 0 11px, rgba(182,108,255,.52) 11px 12px);
  transform: skewX(-7deg);
  pointer-events: none;
}

.moto-guidance-card > span{
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 26px;
  color: #c078ff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
}

.moto-guidance-card h3{
  position: relative;
  z-index: 1;
  margin: 0 0 40px;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
}

.moto-guidance-card h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 46px;
  height: 2px;
  background: #a95cff;
}

.moto-guidance-card p{
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.7;
}

.moto-guidance-link{
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.moto-guidance-link span{
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(183,105,255,.82);
  border-radius: 10px;
  font-size: 24px;
  box-shadow: 0 0 20px rgba(155,69,255,.18);
  transition: transform .2s ease, background-color .2s ease;
}

.moto-final-cta{
  position: relative;
  display: flex;
  min-height: clamp(680px, 82svh, 900px);
  align-items: center;
  overflow: hidden;
  padding: clamp(92px, 12vw, 160px) 0;
  background: #030303;
  isolation: isolate;
}

.moto-final-cta::before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 88% 52%, rgba(102,11,177,.38), transparent 34rem),
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.84) 48%, rgba(10,2,20,.58) 100%);
  pointer-events: none;
}

.moto-final-cta-background{
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .52;
}

.moto-cta-content{
  z-index: 2;
}

.moto-final-cta h2{
  max-width: 1280px;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: clamp(58px, 8vw, 128px);
  font-weight: 600;
  line-height: .84;
  letter-spacing: -.065em;
}

.moto-final-cta h2 span{
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.88);
  text-stroke: 1px rgba(255,255,255,.88);
}

.moto-final-cta-bottom{
  display: grid;
  grid-template-columns: minmax(260px,470px) auto;
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  margin-top: clamp(44px, 7vw, 78px);
}

.moto-final-cta-bottom > p{
  margin: 0;
  color: var(--color-text-muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.7;
}

.moto-final-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.moto-final-cta-actions :is(.btn-primary, .btn-secondary){
  min-height: 54px;
}

@media (hover: hover){
  .moto-product-card:hover{
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.32);
    box-shadow: none;
  }

  .moto-product-card:hover .moto-product-visual img{
    transform: scale(1.035);
    filter: brightness(1.06);
  }

  .moto-product-actions a:hover{
    transform: translateY(-2px);
  }

  .moto-guidance-card:hover{
    transform: translateY(-4px);
    border-color: rgba(215,170,255,.94);
    background: rgba(10,2,38,.72);
  }

  .moto-guidance-link:hover span{
    transform: translate(2px, -2px);
    background: rgba(166,79,255,.18);
  }
}

@media (max-width: 1100px){
  .moto-hero .hero-left{
    width: min(1040px, 94%);
  }

  .moto-hero .hero-title{
    font-size: clamp(62px, 8.4vw, 96px);
  }

  .moto-guidance-header{
    grid-template-columns: minmax(150px,.32fr) minmax(0,1fr);
  }

  .moto-guidance-header > p{
    grid-column: 2;
  }
}

@media (max-width: 980px){
  .moto-guidance-header,
  .moto-final-cta-bottom{
    grid-template-columns: 1fr;
  }

  .moto-guidance-header > p{
    grid-column: auto;
    max-width: 660px;
  }

  .moto-guidance-list{
    grid-template-columns: 1fr;
  }

  .moto-guidance-card{
    display: grid;
    grid-template-columns: 54px minmax(180px,.42fr) minmax(0,1fr);
    gap: 20px;
    align-items: start;
  }

  .moto-guidance-card > span{
    margin-bottom: 0;
    padding-top: 5px;
  }

  .moto-guidance-card h3{
    margin: 0;
  }
}

@media (max-width: 820px){
  .moto-selection-intro,
  .moto-product-grid{
    grid-template-columns: 1fr;
  }

  .moto-selection-intro{
    gap: 18px;
  }

  .moto-selection-intro > p{
    max-width: 640px;
  }

  .moto-product-grid{
    row-gap: 76px;
  }

  .moto-product-visual{
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 720px){
  .moto-hero-background{
    object-position: 66% 50%;
  }

  .moto-hero .hero-left{
    width: 100%;
  }

  .moto-hero .hero-title{
    font-size: clamp(42px, 12.5vw, 62px);
  }

  .moto-hero .hero-title-line--outline{
    padding-left: 0;
  }

  .moto-guidance-card{
    display: block;
  }

  .moto-guidance-card > span{
    margin-bottom: 28px;
  }

  .moto-guidance-card h3{
    margin-bottom: 40px;
  }

  .moto-final-cta{
    min-height: max(580px, 74svh);
    padding-block: 72px;
  }

  .moto-final-cta h2{
    font-size: clamp(42px, 12vw, 62px);
    line-height: .9;
  }
}

@media (max-width: 520px){
  .moto-page .section-title{
    font-size: clamp(36px, 11.5vw, 50px);
    line-height: .98;
  }

  .moto-selection,
  .moto-guidance{
    padding-block: 64px;
  }

  .moto-product-visual{
    aspect-ratio: 4 / 3;
  }

  .moto-product-grid{
    margin-top: 42px;
    row-gap: 64px;
  }

  .moto-product-content{
    padding: 26px 20px 28px;
  }

  .moto-product-meta{
    margin-bottom: 12px;
  }

  .moto-product-content h3{
    font-size: clamp(36px, 12vw, 52px);
  }

  .moto-product-description{
    margin-top: 14px;
  }

  .moto-product-facts div{
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .moto-product-actions{
    width: 100%;
    flex-direction: column;
    gap: 14px 20px;
  }

  .moto-product-actions :is(.btn-primary, .btn-secondary){
    width: 100%;
    justify-content: space-between;
  }

  .moto-selection-intro > p{
    padding: 18px 0 0;
    border-top: 1px solid rgba(112,255,69,.24);
    border-left: 0;
  }

  .moto-guidance-header{
    gap: 20px;
  }

  .moto-guidance-list{
    margin-top: 38px;
  }

  .moto-guidance-card{
    padding: 24px 20px;
  }

  .moto-guidance-link{
    align-items: flex-start;
    line-height: 1.5;
  }

  .moto-final-cta-actions{
    flex-direction: column;
  }

}

@media (max-width: 360px){
  .moto-guidance-card{
    padding-inline: 18px;
  }

  .moto-selection .moto-card-number{
    top: 12px;
    left: 12px;
  }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 521px) and (max-width: 980px){
  .moto-hero .hero-title{
    font-size: clamp(40px, 5.4vw, 52px);
  }

}

@media (prefers-reduced-motion: reduce){
  .moto-product-visual img,
  .moto-product-actions a,
  .moto-guidance-card,
  .moto-guidance-link span{
    transition: none;
  }
}
