:root {
  --dark: #090b0c;
  --light: #f4f5f2;
  --orange: #f08b28;
  --green: #85bd31;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; background: var(--dark); }

body {
  color: var(--light);
  font-family: "Manrope", sans-serif;
  overflow: hidden;
}

.gateway {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 56px);
  min-height: 620px;
  position: relative;
  isolation: isolate;
}

.gateway::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  content: "";
  height: 100%;
  left: 50%;
  opacity: .25;
  position: absolute;
  top: 0;
  width: 1px;
  z-index: 4;
}

.choice {
  align-items: flex-end;
  color: inherit;
  display: flex;
  overflow: hidden;
  padding: clamp(38px, 6vw, 104px);
  position: relative;
  text-decoration: none;
}

.choice::before, .choice::after {
  content: "";
  inset: 0;
  position: absolute;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
}

.choice::before {
  background-position: center;
  background-size: cover;
  filter: grayscale(25%);
  transform: scale(1.01);
  z-index: -2;
}

.choice--moto::before { background-image: url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1600&q=88"); }
.choice--car::before { background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=88"); }

.choice--moto::after { background: linear-gradient(180deg, rgba(9,11,12,.35), rgba(9,11,12,.92) 80%), linear-gradient(90deg, rgba(240,139,40,.12), transparent); }
.choice--car::after { background: linear-gradient(180deg, rgba(9,11,12,.38), rgba(9,11,12,.94) 80%), linear-gradient(270deg, rgba(133,189,49,.13), transparent); }
.choice:hover::before, .choice:focus-visible::before { transform: scale(1.075); }
.choice:hover::after, .choice:focus-visible::after { opacity: .82; }

.choice__content { display: flex; flex-direction: column; position: relative; z-index: 2; }
.choice--car .choice__content { margin-left: auto; text-align: right; }

.choice__eyebrow {
  font-size: clamp(10px, .8vw, 13px);
  font-weight: 700;
  letter-spacing: .32em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.choice--moto .choice__eyebrow { color: var(--orange); }
.choice--car .choice__eyebrow { color: var(--green); }

.choice__title {
  font: 600 clamp(48px, 6vw, 106px)/.89 "Oswald", sans-serif;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.choice__title span { display: block; }
.choice__description { color: rgba(255,255,255,.66); font-size: clamp(12px, 1vw, 15px); letter-spacing: .14em; margin-top: 20px; text-transform: uppercase; }

.choice__action {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 15px;
  letter-spacing: .07em;
  margin-top: 30px;
  text-transform: uppercase;
}

.choice--car .choice__action { justify-content: flex-end; }
.choice__action i { align-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: inline-flex; font-size: 20px; font-style: normal; height: 42px; justify-content: center; transition: background .3s, border-color .3s, transform .3s; width: 42px; }
.choice--moto:hover .choice__action i { background: var(--orange); border-color: var(--orange); transform: translateX(5px); }
.choice--car:hover .choice__action i { background: var(--green); border-color: var(--green); color: #0a0c0a; transform: translateX(5px); }

.brand {
  align-items: center;
  background: rgba(7, 9, 10, .82);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  left: 50%;
  padding: 18px 30px 15px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: 6;
}

.brand__logo { display: block; height: auto; width: clamp(150px, 13vw, 210px); }
.brand__tagline { align-items: center; color: rgba(255,255,255,.58); display: flex; font-size: 8px; gap: 9px; letter-spacing: .3em; margin-top: 9px; text-transform: uppercase; white-space: nowrap; }
.brand__tagline span { background: currentColor; display: block; height: 1px; opacity: .45; width: 20px; }
.scroll-hint { bottom: 26px; color: rgba(255,255,255,.5); font-size: 8px; left: 50%; letter-spacing: .25em; position: absolute; transform: translateX(-50%); z-index: 6; }
.scroll-hint span { animation: pulse 1.8s infinite; background: #fff; display: block; height: 24px; margin: 0 auto 8px; opacity: .45; width: 1px; }

.footer { align-items: center; background: #070809; color: rgba(255,255,255,.42); display: flex; font-size: 10px; height: 56px; justify-content: space-between; letter-spacing: .06em; padding: 0 34px; }
.footer a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer b { color: #fff; font-weight: 700; }

@keyframes pulse { 0%,100% { opacity: .2; transform: scaleY(.7); transform-origin: top; } 50% { opacity: .8; transform: scaleY(1); } }

@media (max-width: 760px) {
  body { overflow: auto; }
  .gateway { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; height: calc(100svh - 78px); min-height: 720px; }
  .gateway::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent); height: 1px; left: 0; top: 50%; width: 100%; }
  .choice { align-items: flex-end; padding: 28px 26px; }
  .choice::before { background-position: center 45%; }
  .choice--car .choice__content { margin-left: 0; text-align: left; }
  .choice__title { font-size: clamp(42px, 14vw, 68px); }
  .choice__description { margin-top: 10px; }
  .choice__action { margin-top: 14px; }
  .choice--car .choice__action { justify-content: flex-start; }
  .brand { border-radius: 14px; justify-content: center; padding: 10px 14px 9px; top: 50%; transform: translate(-50%,-50%); }
  .brand__logo { width: 118px; }
  .brand__tagline { font-size: 6px; gap: 5px; letter-spacing: .2em; margin-top: 5px; }
  .brand__tagline span { width: 10px; }
  .scroll-hint { display: none; }
  .footer { align-items: flex-start; flex-direction: column; height: 78px; justify-content: center; gap: 7px; padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
