@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #0d0d0d;
  --ink-soft: #151515;
  --graphite: #1d1d1d;
  --line: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #cfcfcf;
  --gold: #ffb21a;
  --gold-deep: #d99016;
  --sand: #f4c477;
  --cream: #ffe7b0;
  --cream-soft: #f6d99a;
  --red: #e53935;
  --blue: #2374ff;
  --green: #3f7d3a;
  --steel: #777d85;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    repeating-linear-gradient(
      112deg,
      rgba(255, 178, 26, 0.04) 0 1px,
      transparent 1px 86px
    ),
    var(--ink);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  padding: 10px 16px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  scroll-margin-top: 120px;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.lifestyle-copy h2,
.signup-copy h2 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 46px;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading--compact {
  margin-bottom: 34px;
}

.section-heading--dark h2,
.section-heading--dark p {
  color: #111;
}

/* Header floats over the hero, then becomes a dark glass navigation on scroll. */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 50;
  width: min(1320px, calc(100% - 64px));
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.2);
  padding: 10px 12px 10px 18px;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: rgba(13, 13, 13, 0.76);
  border-color: rgba(255, 178, 26, 0.32);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-word {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 34px;
  color: var(--gold);
  text-transform: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav > a:hover,
.nav-item > a:hover,
.desktop-nav > a:focus-visible,
.nav-item > a:focus-visible {
  color: var(--gold);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 210px;
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(14, 14, 14, 0.94);
  box-shadow: var(--shadow);
  padding: 10px;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    visibility 180ms ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  transform: translate(-50%, 2px);
  opacity: 1;
  visibility: visible;
}

.dropdown a {
  display: block;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(255, 178, 26, 0.12);
  color: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 178, 26, 0.8);
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 22px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  color: #111;
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 70;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.96);
  padding: 22px;
  transition: transform 260ms ease;
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.44);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.menu-close {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.menu-close span {
  position: absolute;
  left: 13px;
  right: 13px;
  top: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 6px;
}

.mobile-nav > a,
.accordion-trigger {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  padding: 17px 18px;
  text-align: left;
}

.accordion-trigger {
  position: relative;
}

.accordion-trigger::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  display: none;
  padding: 6px 0 12px 16px;
}

.accordion-panel.is-open {
  display: grid;
  gap: 8px;
}

.accordion-panel a {
  color: var(--muted);
  font-weight: 700;
  padding: 8px 10px;
}

.mobile-menu__cta {
  margin-top: auto;
  width: 100%;
}

.hero {
  padding: 46px 0 66px;
}

.hero-shell {
  padding-top: 38px;
}

.hero-panel {
  position: relative;
  min-height: clamp(650px, 57vw, 790px);
  display: grid;
  align-items: start;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #d99016;
  padding: clamp(64px, 6vw, 86px) 48px 0;
  box-shadow:
    0 0 0 18px #080808,
    var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 2;
  border-radius: 34px;
  background:
    repeating-linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.08) 0 2px,
      transparent 2px 42px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.18));
  mask-image: linear-gradient(to bottom, #000, #000 80%, transparent);
  pointer-events: none;
}

.scallop-edge::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -1px;
  z-index: 2;
  height: 58px;
  background:
    radial-gradient(circle at 50% 0, #e9a52b 0 34px, transparent 35px) 0 0 / 86px 58px repeat-x;
  pointer-events: none;
}

.scallop-edge--cream::after {
  left: 0;
  right: 0;
  bottom: -44px;
  height: 68px;
  background:
    radial-gradient(circle at 50% 0, var(--cream) 0 40px, transparent 41px) 0 0 / 84px 68px repeat-x;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: min(1180px, 94%);
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  position: relative;
  display: block;
}

.hero-title .title-line--mobile {
  display: none;
}

.glitch span::before,
.glitch span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.glitch span::before {
  color: var(--blue);
  transform: translate(2px, 0);
  animation: glitch-slice 4.8s infinite;
}

.glitch span::after {
  color: var(--red);
  transform: translate(-2px, 0);
  animation: glitch-slice 5.1s infinite reverse;
}

@keyframes glitch-slice {
  0%,
  88%,
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 0;
  }
  90% {
    clip-path: inset(12% 0 64% 0);
    opacity: 0.5;
  }
  92% {
    clip-path: inset(62% 0 18% 0);
    opacity: 0.42;
  }
  94% {
    clip-path: inset(38% 0 36% 0);
    opacity: 0.38;
  }
}

.hero-copy p {
  max-width: 900px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.hero-actions {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: clamp(72px, 7.4vw, 104px);
  z-index: 4;
  width: min(700px, calc(100% - 96px));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
  transform: translateX(-50%);
}

.hero-actions .button {
  min-width: 174px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 28px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--primary {
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: var(--gold);
  color: #111;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #ffc34c;
  box-shadow: 0 12px 34px rgba(255, 178, 26, 0.28);
}

.button--secondary {
  border: 2px solid #111;
  background: rgba(17, 17, 17, 0.94);
  color: #fff;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: #fff;
  color: #111;
}

.button--dark {
  border: 0;
  background: #111;
  color: #fff;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #d99016 url("assets/landing-page-poster.png") center top / cover no-repeat;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02) 52%, rgba(0, 0, 0, 0.12)),
    linear-gradient(to right, rgba(0, 0, 0, 0.18), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: translateY(4%) scale(1.04);
  transform-origin: center top;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 100%);
}

.hero-shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 232px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(32px);
}







.category-section {
  padding-top: 56px;
}

.category-section .section-heading {
  max-width: 1120px;
}

.category-section .section-heading p {
  max-width: none;
  white-space: nowrap;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
}

.category-card {
  text-align: center;
}

.category-media {
  width: 168px;
  height: 168px;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.category-card:hover .category-media {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 26px 52px rgba(255, 178, 26, 0.16);
}

.category-media img,
.product-media img,
.popular-media img,
.rider-image img,
.signup-image img,
.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.crop-bike img {
  object-position: 3% 62%;
}

.crop-car img {
  object-position: 43% 61%;
}

.crop-jeep img {
  object-position: 72% 62%;
}

.crop-scooter img {
  object-position: 96% 62%;
}

.crop-electric img {
  object-position: 48% 58%;
}

.crop-accessory img {
  object-position: 58% 50%;
}

.category-card h3,
.product-card h3,
.feature-card h3,
.rider-card h3,
.popular-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.category-card p {
  margin: 8px auto 0;
  max-width: 170px;
  color: var(--muted);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, #191919, #101010);
  padding: 14px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 178, 26, 0.44);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.product-card:hover img,
.popular-card:hover img,
.rider-card:hover img,
.lifestyle-panel:hover img,
.signup-panel:hover img {
  transform: scale(1.04);
}

.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 178, 26, 0.25), rgba(255, 255, 255, 0.06)),
    #222;
}

.product-copy {
  padding: 18px 8px 8px;
}

.product-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 178, 26, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  text-transform: uppercase;
}

.product-copy p {
  min-height: 46px;
  margin: 10px 0 8px;
  color: var(--muted);
  font-size: 15px;
}

.product-copy strong,
.popular-card strong,
.rider-card strong {
  display: block;
  color: var(--gold);
  font-size: 16px;
}

.product-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 16px;
  border: 1px solid rgba(255, 178, 26, 0.42);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 0 18px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.product-copy a:hover,
.product-copy a:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  color: #111;
}

.feature-band {
  padding: 48px 0 82px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.feature-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  padding: 22px 18px;
  text-align: center;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 178, 26, 0.38);
  background: rgba(255, 178, 26, 0.08);
}

.feature-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 16px;
  background: var(--gold);
  color: #111;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 14px;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.lifestyle-section {
  padding-top: 76px;
}

.lifestyle-panel {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 178, 26, 0.22);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(255, 178, 26, 0.08), transparent 52%),
    var(--graphite);
  padding: 28px;
}

.lifestyle-image {
  min-height: 440px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
}

.lifestyle-image img {
  object-position: center bottom;
}

.lifestyle-copy {
  padding: 16px 26px 16px 0;
}

.lifestyle-copy h2 {
  font-size: 50px;
}

.lifestyle-copy p {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.rider-panel {
  position: relative;
  overflow: visible;
  border-radius: 42px;
  background: var(--cream);
  color: #111;
  padding: 72px 36px 76px;
  box-shadow: var(--shadow);
}

.rider-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -42px;
  height: 68px;
  background:
    radial-gradient(circle at 50% 100%, var(--cream) 0 40px, transparent 41px) 0 0 / 84px 68px repeat-x;
  pointer-events: none;
}

.rider-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.rider-card {
  min-width: 0;
  text-align: center;
}

.rider-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 28px;
  background: #f8d99b;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.rider-card h3 {
  font-size: 15px;
}

.rider-card strong {
  margin-top: 6px;
  color: var(--gold-deep);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.popular-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #111;
  padding: 12px 12px 20px;
  text-align: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.popular-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 178, 26, 0.44);
}

.popular-media {
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
  border-radius: 20px;
  background: var(--sand);
  margin-bottom: 18px;
}

.popular-card h3 {
  font-size: 14px;
}

.popular-card p {
  margin: 6px 0 2px;
  color: var(--muted);
  font-size: 14px;
}

.signup-section {
  padding-top: 64px;
}

.signup-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 44px;
  align-items: center;
  overflow: hidden;
  border-radius: 42px;
  background: var(--cream);
  color: #111;
  padding: 52px;
  box-shadow: var(--shadow);
}

.signup-image {
  min-height: 360px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--gold);
}

.signup-image img {
  object-position: center bottom;
}

.signup-copy h2 {
  max-width: 550px;
  font-size: 42px;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
}

.signup-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(17, 17, 17, 0.32);
  border-radius: 999px;
  background: #fff;
  color: #111;
  outline: none;
  padding: 0 20px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.signup-form input:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(217, 144, 22, 0.18);
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: #333;
  font-weight: 700;
}

.site-footer {
  padding: 76px 0 44px;
  background: #0a0a0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-bottom p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--gold);
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.82;
}

.footer-brand-mark {
  display: inline-grid;
  width: 104px;
  height: 104px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: #fff;
  padding: 18px;
}

.footer-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand span:last-child {
  font-size: 132px;
  text-transform: none;
}

/* Scroll reveal uses JS to add .is-visible when each block enters the viewport. */
.section-reveal,
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.section-reveal.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-item:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-item:nth-child(4) {
  transition-delay: 210ms;
}

.reveal-item:nth-child(5) {
  transition-delay: 280ms;
}

.reveal-item:nth-child(6) {
  transition-delay: 350ms;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .container {
    width: min(var(--container), calc(100% - 64px));
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav > a,
  .nav-item > a {
    font-size: 12px;
  }

  .hero-title {
    font-size: 78px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }

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

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

  .lifestyle-panel,
  .signup-panel {
    grid-template-columns: 1fr;
  }

  .lifestyle-copy {
    padding: 0 8px 8px;
  }

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

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

@media (max-width: 900px) {
  .site-header {
    top: 14px;
    width: calc(100% - 32px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-grid;
  }

  .brand-word {
    font-size: 28px;
  }

  .hero-panel {
    min-height: 700px;
    padding: 76px 30px 0;
    border-radius: 34px;
    box-shadow:
      0 0 0 10px #080808,
      var(--shadow);
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-title .title-line--desktop {
    display: none;
  }

  .hero-title .title-line--mobile {
    display: block;
  }

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

  .hero-visual {
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 208, 106, 0.32), transparent 34%),
      linear-gradient(180deg, #c98112 0%, #d99016 54%, #9f5e0c 100%);
  }

  .hero-copy p {
    max-width: 560px;
    font-size: 16px;
  }

  .hero-video {
    transform: translateY(17%) scale(1.1);
  }

  .hero-actions {
    top: 252px;
    bottom: auto;
    width: min(560px, calc(100% - 60px));
  }

  .section {
    padding: 84px 0;
  }

  .category-section {
    padding-top: 56px;
  }

  .category-section .section-heading p {
    max-width: 620px;
    white-space: normal;
  }

  .section-heading h2,
  .lifestyle-copy h2,
  .signup-copy h2 {
    font-size: 36px;
  }

  .lifestyle-image,
  .signup-image {
    min-height: 300px;
  }

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

@media (max-width: 700px) {
  .container {
    width: calc(100% - 40px);
  }

  .site-header {
    min-height: 64px;
    padding: 8px 10px 8px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .brand-word {
    font-size: 24px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-shell {
    padding-top: 58px;
  }

  .hero-panel {
    min-height: 720px;
    padding: 68px 20px 0;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-copy {
    width: min(100%, 300px);
    justify-self: center;
  }

  .hero-copy p {
    max-width: 300px;
    font-size: 15px;
  }

  .hero-video {
    transform: translateY(18%) scale(1.12);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    top: 252px;
    bottom: auto;
    width: min(286px, calc(100% - 48px));
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-visual {
    inset: 0;
    height: 100%;
    border-radius: 34px;
  }

  .scallop-edge::after {
    left: 12px;
    right: 12px;
    height: 44px;
    background-size: 62px 44px;
    background-image: radial-gradient(circle at 50% 0, #e9a52b 0 26px, transparent 27px);
  }

  .category-grid,
  .product-grid,
  .feature-grid,
  .popular-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 2px 16px;
    scroll-snap-type: x mandatory;
  }

  .category-card {
    flex: 0 0 182px;
    scroll-snap-align: start;
  }

  .category-media {
    width: 148px;
    height: 148px;
  }

  .product-card,
  .popular-card {
    border-radius: 24px;
  }

  .feature-band {
    padding-top: 24px;
  }

  .lifestyle-panel,
  .signup-panel {
    border-radius: 30px;
    padding: 18px;
  }

  .lifestyle-image,
  .signup-image {
    min-height: 240px;
    border-radius: 24px;
  }

  .rider-panel {
    padding: 56px 20px 64px;
  }

  .rider-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 2px 16px;
    scroll-snap-type: x mandatory;
  }

  .rider-card {
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    justify-self: start;
    gap: 14px;
  }

  .footer-brand-mark {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    padding: 12px;
  }

  .footer-brand span:last-child {
    font-size: 78px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 36px;
    line-height: 1.04;
  }

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

  .hero-copy p {
    max-width: 286px;
    font-size: 14px;
  }

  .hero-actions {
    top: 246px;
    bottom: auto;
    width: min(286px, calc(100% - 48px));
  }

  .section-heading h2,
  .lifestyle-copy h2,
  .signup-copy h2 {
    font-size: 30px;
  }

  .mobile-nav > a,
  .accordion-trigger {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .section-reveal,
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
