:root {
  --ink: #111315;
  --muted: #626970;
  --line: rgba(17, 19, 21, .13);
  --paper: #ecefeb;
  --white: #ffffff;
  --blue: #c92520;
  --cyan: #e8edf0;
  --lime: #caff3d;
  --red: #c92520;
  --night: #0b0d0f;
  --shadow: 0 20px 54px rgba(12, 14, 16, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 104px;
}

#top {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.cart-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--night);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:where(a, button, input, select, summary):focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

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

.site-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(10, 12, 14, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(10, 12, 14, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--lime);
  background: var(--night);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, .68);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover {
  color: var(--white);
  background: rgba(202, 255, 61, .12);
}

.cart-button,
.icon-button {
  border: 0;
  color: var(--white);
  background: var(--night);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--night);
  background: var(--lime);
  font-weight: 900;
}

.cart-icon {
  color: var(--night);
  font-size: 22px;
  line-height: 1;
}

.section-band {
  margin-top: 18px;
  padding: 64px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  height: 76svh;
  max-height: 730px;
  display: flex;
  align-items: center;
  padding: 64px;
  color: var(--white);
  background: var(--night);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 7, 8, .97) 0%, rgba(5, 7, 8, .84) 34%, rgba(5, 7, 8, .24) 62%, rgba(5, 7, 8, .12) 100%);
}

.hero::after {
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 55%, rgba(0, 0, 0, .58) 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 54%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 84px;
  line-height: .92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 50px;
  line-height: .98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 22px;
  line-height: 1.08;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.lead {
  max-width: 660px;
  color: #343c49;
  font-size: 20px;
}

.hero h1 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 94px;
  line-height: .86;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero-tagline {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}

.hero .lead {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

.legal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: #343c49;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.checkout-form .legal-check {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f8f7;
}

.legal-check input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--night);
}

.legal-check a,
.privacy-line a,
.order-obligation a,
.legal-section a,
.site-footer a {
  color: var(--blue);
  font-weight: 900;
}

.privacy-line,
.order-obligation {
  margin: 8px 0 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.45;
}

.order-obligation {
  color: #343c49;
  font-weight: 900;
}

.legal-page {
  padding-bottom: 34px;
}

.legal-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.legal-note {
  max-width: 820px;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  color: #343c49;
  background: #fff;
}

.legal-section {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.legal-section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.legal-section h3 {
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero .button.primary {
  border-color: var(--lime);
  color: var(--night);
  background: var(--lime);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
  background: rgba(8, 10, 12, .44);
  backdrop-filter: blur(12px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(16, 19, 25, .18);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(16, 19, 25, .12);
}

.button.primary {
  border-color: var(--night);
  color: var(--white);
  background: var(--night);
}

.button.secondary {
  background: rgba(255, 255, 255, .7);
}

.trust-row {
  max-width: 580px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 24px;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.trust-row span {
  position: relative;
  padding: 6px 0 6px 16px;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, .8);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--lime);
}

.hero-product {
  position: absolute;
  right: 4%;
  bottom: -12px;
  z-index: 2;
  width: min(25vw, 330px);
  height: 92%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero-product > img {
  width: auto;
  height: 88%;
  max-width: none;
  filter: drop-shadow(0 32px 26px rgba(0, 0, 0, .58));
}

.hero-product-caption {
  position: absolute;
  left: -28px;
  bottom: 42px;
  padding-left: 14px;
  border-left: 3px solid var(--lime);
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .8);
}

.hero-product-caption strong,
.hero-product-caption span {
  display: block;
}

.hero-product-caption strong {
  font-size: 26px;
}

.hero-product-caption span {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 800;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 28px;
  align-items: center;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 14px;
}

.gallery-main {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.gallery-main img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.thumb {
  aspect-ratio: 1;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.thumb.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 88, 255, .12);
}

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

.video-grid,
.products,
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.products {
  grid-template-columns: minmax(0, .86fr) repeat(2, minmax(0, 1.07fr));
  align-items: stretch;
}

.bundle-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -4px 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bundle-benefits span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.bundle-benefits span + span {
  border-left: 1px solid var(--line);
}

.bundle-benefits strong {
  color: var(--night);
  font-weight: 900;
}

.video-tile {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 6px;
  padding: 22px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, transparent 25%, rgba(16, 19, 25, .86)),
    linear-gradient(135deg, rgba(17, 121, 255, .7), rgba(16, 19, 25, .92)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255, 255, 255, .12) 16px 20px);
  text-align: left;
  overflow: hidden;
  position: relative;
}

.video-tile::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.video-tile:hover .play {
  transform: scale(1.08);
}

.play {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  color: var(--night);
  background: var(--lime);
  transition: transform .18s ease;
}

.video-tile strong {
  font-size: 24px;
}

.video-tile small {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.benefits {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding-left: 0;
  padding-right: 0;
}

.benefit,
.product,
.mini-checkout,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.benefit,
.product {
  padding: 24px;
}

.benefit-icon {
  display: inline-block;
  width: auto;
  height: auto;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--red);
  border-radius: 0;
  color: var(--red);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
}

.product {
  position: relative;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product:hover {
  border-color: #aab2ba;
  box-shadow: 0 16px 36px rgba(16, 19, 25, .1);
  transform: translateY(-3px);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #edf0ed);
  overflow: hidden;
}

.product-image img {
  width: auto;
  height: 90%;
  max-width: 92%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(17, 19, 21, .16));
}

.bundle-stage {
  position: relative;
  isolation: isolate;
  display: block;
  aspect-ratio: 1.22 / 1;
  background: #f1f3f2;
}

.bundle-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(16, 19, 25, .055) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(16, 19, 25, .055) 50%, transparent 50.3%);
  background-size: 72px 72px;
}

.bundle-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
  height: 18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(16, 19, 25, .14);
  filter: blur(18px);
  transform: scaleY(.35);
}

.bundle-stage img {
  position: absolute;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 15px 11px rgba(16, 19, 25, .2));
}

.pack-count,
.stage-caption {
  position: absolute;
  z-index: 6;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pack-count {
  top: 12px;
  left: 12px;
  color: var(--white);
  background: var(--red);
}

.stage-caption {
  right: 12px;
  bottom: 10px;
  color: var(--night);
  background: rgba(255, 255, 255, .92);
}

.starter-stage .bundle-reflex {
  left: 50%;
  bottom: 3%;
  height: 93%;
  transform: translateX(-50%);
}

.rider-stage .bundle-cloth,
.garage-stage .bundle-cloth {
  right: -5%;
  bottom: 1%;
  z-index: 1;
  width: 69%;
  height: auto;
  transform: rotate(-6deg);
}

.rider-stage .bundle-reflex,
.garage-stage .bundle-reflex {
  bottom: 5%;
  z-index: 3;
}

.rider-stage .reflex-one {
  left: 17%;
  height: 80%;
  transform: rotate(-2deg);
}

.rider-stage .reflex-two {
  left: 38%;
  height: 74%;
  transform: rotate(3deg);
}

.rider-stage .bundle-kasko {
  right: 10%;
  bottom: 8%;
  z-index: 4;
  height: 57%;
}

.garage-stage .reflex-one {
  left: 8%;
  height: 74%;
  transform: rotate(-4deg);
}

.garage-stage .reflex-two {
  left: 27%;
  height: 81%;
}

.garage-stage .reflex-three {
  left: 47%;
  height: 72%;
  transform: rotate(4deg);
}

.garage-stage .bundle-kasko {
  right: 7%;
  bottom: 8%;
  z-index: 4;
  height: 53%;
}

.single-product img {
  height: 94%;
}

.trio-product {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 12px 8px 0;
}

.trio-product img {
  width: 132%;
  height: 92%;
  max-width: none;
}

.trio-product img:first-child {
  transform: translateX(18%) scale(.92);
}

.trio-product img:last-child {
  transform: translateX(-18%) scale(.92);
}

.kit-product img {
  width: 100%;
  height: 100%;
  max-width: none;
  filter: none;
}

.product.featured {
  color: var(--white);
  background: linear-gradient(150deg, #080a0c, #25292c);
  transform: translateY(-8px);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(16, 19, 25, .2);
}

.product.recommended {
  border-color: rgba(196, 45, 45, .45);
  box-shadow: inset 0 4px 0 var(--red), 0 18px 38px rgba(16, 19, 25, .1);
}

.product.recommended:hover {
  border-color: var(--red);
}

.product.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--lime);
}

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

.product.featured .product-image {
  border-color: rgba(255, 255, 255, .2);
}

.badge {
  margin-bottom: 24px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(17, 121, 255, .1);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge.hot {
  color: var(--night);
  background: var(--lime);
}

.recommended .badge.hot {
  color: var(--white);
  background: var(--red);
}

.product-kicker {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.08;
}

.product > p:not(.product-kicker) {
  margin-bottom: 16px;
}

.product.featured .product-kicker {
  color: var(--lime);
}

.bundle-contents {
  width: 100%;
  display: grid;
  margin: 2px 0 14px;
  border-top: 1px solid var(--line);
}

.bundle-contents span {
  min-height: 38px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  color: #39414c;
  font-size: 12px;
  font-weight: 800;
}

.bundle-contents b {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.bundle-contents.invert,
.bundle-contents.invert span {
  border-color: rgba(255, 255, 255, .17);
}

.bundle-contents.invert span {
  color: rgba(255, 255, 255, .78);
}

.bundle-contents.invert b {
  color: var(--lime);
}

.shipping-included {
  width: 100%;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-left: 3px solid #087a54;
  border-radius: 0 4px 4px 0;
  color: #075b40;
  background: #e8f7f0;
  font-size: 12px;
  font-weight: 900;
}

.shipping-included::before {
  content: "✓";
  margin-right: 7px;
}

.shipping-included.invert {
  border-left-color: var(--lime);
  color: var(--white);
  background: rgba(213, 255, 50, .12);
}

.price {
  margin-top: auto;
  margin-bottom: 18px;
}

.price-offer {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-offer del {
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.price small strong {
  color: #067647;
}

.kit-accessories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 18px;
}

.kit-value {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 2px 0 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.kit-value strong {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 17px;
}

.kit-value span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.product-points,
.use-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-points {
  margin: 0 0 18px;
}

.product-compliance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.compliance-head,
.manufacturer-line {
  grid-column: 1 / -1;
}

.compliance-head h3 {
  margin: 3px 0 8px;
  font-size: 26px;
}

.compliance-head p,
.safety-product p,
.manufacturer-line {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-compliance strong {
  color: var(--night);
}

.product-compliance a {
  color: var(--blue);
  font-weight: 800;
}

.safety-product {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.safety-product.hazardous {
  border-color: rgba(196, 45, 45, .38);
  box-shadow: inset 4px 0 0 #c42d2d;
}

.safety-product-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.safety-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.safety-product h4 {
  margin: 3px 0 0;
  font-size: 19px;
}

.safety-status {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.safety-status.neutral {
  color: #155c43;
  background: #e7f7ef;
}

.safety-status.danger {
  color: #7a1717;
  background: #ffe8e8;
}

.safety-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.safety-facts div {
  padding: 10px;
  border-radius: 6px;
  background: #f4f7f9;
}

.safety-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.safety-facts dd {
  margin: 3px 0 0;
  color: var(--night);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.product-warning-link {
  display: block;
  margin: -6px 0 14px;
  color: #ffdbdb;
  font-size: 12px;
  font-weight: 900;
}

.product-points span,
.use-targets span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #39414c;
  background: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
}

.product-points.invert span {
  border-color: rgba(255, 255, 255, .18);
  color: var(--night);
  background: rgba(213, 255, 50, .92);
}

.kit-accessories span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: var(--night);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.price span {
  display: block;
  font-size: 34px;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-weight: 800;
}

.product.featured .price small {
  color: rgba(255, 255, 255, .68);
}

.product.featured .button.primary {
  border-color: var(--lime);
  color: var(--night);
  background: var(--lime);
}

.product-button {
  width: 100%;
}

.cart-upsell-visual {
  position: relative;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.cart-upsell .cart-upsell-visual img {
  position: absolute;
  bottom: 4px;
  width: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 5px 4px rgba(16, 19, 25, .18));
}

.cart-upsell .cart-upsell-visual img:first-child {
  left: 18px;
  height: 68px;
}

.cart-upsell .cart-upsell-visual img:last-child {
  right: 9px;
  height: 48px;
}

.checkout-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 19, 25, .96), rgba(24, 34, 48, .93)),
    var(--night);
}

.usage,
.media-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 26px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 23, 34, .97), rgba(27, 39, 57, .95)),
    var(--night);
}

.usage p,
.usage .eyebrow,
.media-showcase p,
.media-showcase .eyebrow {
  color: rgba(255, 255, 255, .72);
}

.usage .eyebrow,
.media-showcase .eyebrow {
  color: var(--lime);
}

.use-steps {
  display: grid;
  gap: 12px;
}

.use-steps div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.use-steps strong {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--night);
  background: var(--lime);
}

.use-steps span {
  font-weight: 900;
}

.use-targets {
  margin-top: 18px;
}

.use-targets span {
  border-color: rgba(255, 255, 255, .18);
  color: var(--night);
  background: var(--lime);
}

.video-reels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.video-reels figure {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.video-reels video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 8px;
  background: #05080d;
  object-fit: cover;
}

.video-reels figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.checkout-preview p,
.checkout-preview .eyebrow {
  color: rgba(255, 255, 255, .7);
}

.checkout-preview .eyebrow {
  color: var(--lime);
}

.mini-checkout {
  padding: 20px;
  color: var(--ink);
  background: var(--white);
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mini-row.total {
  border-bottom: 0;
  font-size: 20px;
  font-weight: 900;
}

.shipping-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.summary .shipping-note {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.mini-checkout .button {
  width: 100%;
  margin-top: 16px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 28px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .68);
  background: var(--night);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: var(--lime);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(460px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  box-shadow: -24px 0 70px rgba(16, 19, 25, .22);
  transform: translateX(104%);
  visibility: hidden;
  transition: transform .25s ease, visibility 0s linear .25s;
  overflow: auto;
}

.cart-panel.open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.cart-header {
  position: sticky;
  top: -22px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px 0 14px;
  background: var(--white);
}

.cart-header h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 28px;
  line-height: 1;
}

.cart-empty {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  color: var(--muted);
  font-size: 13px;
}

.cart-upsell {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin: 16px 0 4px;
  padding: 13px;
  border: 1px solid #343b42;
  border-left: 4px solid var(--lime);
  border-radius: 8px;
  color: var(--white);
  background: #101315;
}

.cart-upsell[hidden] {
  display: none;
}

.cart-upsell img {
  width: 76px;
  height: 76px;
  padding: 4px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.cart-upsell strong,
.cart-upsell p,
.cart-upsell-eyebrow {
  display: block;
}

.cart-upsell-eyebrow {
  margin-bottom: 3px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-upsell strong {
  font-size: 14px;
  line-height: 1.25;
}

.cart-upsell p {
  margin: 4px 0 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.4;
}

.cart-upsell button {
  width: 100%;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--lime);
  border-radius: 6px;
  color: var(--night);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty button {
  width: 34px;
  height: 32px;
  border: 0;
  background: #eef4f8;
  font-weight: 900;
}

.qty b {
  min-width: 24px;
  text-align: center;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  display: grid;
  gap: 6px;
  color: #39414c;
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(17, 121, 255, .12);
}

button:disabled {
  cursor: wait;
  opacity: .62;
}

.summary {
  display: grid;
  gap: 8px;
  margin: 8px 0;
  padding: 14px;
  border-radius: 8px;
  background: #f5f8fb;
}

.summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.shipping-assurance {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid #a6f4c5;
  border-radius: 8px;
  color: #05603a;
  background: #ecfdf3;
  font-size: 12px;
  line-height: 1.45;
}

.shipping-assurance strong {
  font-size: 13px;
}

.checkout-button {
  width: 100%;
}

.form-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.thank-you {
  margin-top: 30px;
  padding: 26px;
  border-radius: 8px;
  text-align: center;
  background: #f5fbf1;
}

.success-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--night);
  background: var(--lime);
  font-size: 28px;
  font-weight: 900;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(16, 19, 25, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  min-width: 240px;
  padding: 13px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--night);
  box-shadow: 0 18px 40px rgba(16, 19, 25, .22);
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, 140%);
  transition: transform .22s ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

@media (max-width: 920px) {
  .site-shell {
    padding: 12px;
  }

  .topbar {
    top: 8px;
  }

  .nav {
    display: none;
  }

  .section-band {
    padding: 26px;
  }

  .hero,
  .product-story,
  .checkout-preview,
  .usage,
  .media-showcase,
  .video-grid,
  .products,
  .product-compliance,
  .benefits {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    height: 76svh;
    max-height: 700px;
    align-items: flex-start;
    padding: 42px;
  }

  .hero-copy {
    width: min(600px, 72%);
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-product {
    right: 2%;
    width: 230px;
    height: 70%;
  }

  .product.featured {
    transform: none;
  }

  .product:hover {
    transform: none;
  }

  .bundle-benefits {
    margin-top: 0;
  }

  .video-tile {
    min-height: 280px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

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

  .gallery-main {
    min-height: 320px;
  }

  .video-reels {
    grid-template-columns: 1fr;
  }

  .checkout-preview {
    gap: 18px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  #top {
    scroll-margin-top: 78px;
  }

  .site-shell {
    padding: 10px;
  }

  .topbar {
    min-height: 60px;
    padding: 8px 9px 8px 12px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand span:last-child {
    max-width: 126px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section-band {
    margin-top: 14px;
    padding: 22px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .hero {
    min-height: 700px;
    height: 700px;
    max-height: none;
    padding: 30px 22px;
    align-items: flex-start;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(5, 7, 8, .97) 0%, rgba(5, 7, 8, .9) 48%, rgba(5, 7, 8, .24) 72%, rgba(5, 7, 8, .48) 100%);
  }

  .hero-backdrop {
    object-position: 78% center;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-tagline {
    max-width: 310px;
    font-size: 19px;
  }

  .hero .lead {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    max-width: 270px;
    margin-top: 20px;
  }

  .hero-product {
    right: 4px;
    bottom: -4px;
    width: 112px;
    height: 240px;
  }

  .hero-product > img {
    height: 100%;
  }

  .hero-product-caption {
    display: none;
  }

  .trust-row {
    max-width: 205px;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 18px;
  }

  .trust-row span {
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-story {
    gap: 18px;
  }

  .gallery {
    gap: 10px;
  }

  .gallery-main {
    min-height: 270px;
    padding: 14px;
  }

  .gallery-thumbs {
    gap: 8px;
  }

  .thumb {
    aspect-ratio: 1.14;
  }

  .benefits {
    gap: 0;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .benefit {
    min-height: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit-icon {
    grid-row: 1 / span 2;
    margin: 2px 0 0;
    padding: 0;
    border: 0;
  }

  .benefit h3,
  .benefit p {
    grid-column: 2;
  }

  .benefit h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .benefit p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .use-targets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .use-targets span {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    font-size: 11px;
    text-align: center;
  }

  .use-steps {
    gap: 9px;
  }

  .use-steps div {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }

  .use-steps strong {
    width: 42px;
    height: 42px;
  }

  .use-steps span {
    font-size: 14px;
    line-height: 1.35;
  }

  .products {
    gap: 14px;
  }

  .bundle-benefits {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .bundle-benefits span {
    min-height: 42px;
    justify-content: flex-start;
    padding: 10px 4px;
    text-align: left;
  }

  .bundle-benefits span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product {
    min-height: 0;
    padding: 18px;
  }

  .product h3 {
    font-size: 23px;
  }

  .product-image {
    margin-bottom: 14px;
  }

  .bundle-stage {
    aspect-ratio: 1.34 / 1;
  }

  .starter-stage .bundle-reflex {
    height: 96%;
  }

  .rider-stage .reflex-one {
    left: 20%;
  }

  .rider-stage .reflex-two {
    left: 39%;
  }

  .garage-stage .reflex-one {
    left: 12%;
  }

  .garage-stage .reflex-two {
    left: 29%;
  }

  .garage-stage .reflex-three {
    left: 47%;
  }

  .badge {
    margin-bottom: 16px;
  }

  .product p {
    font-size: 15px;
    line-height: 1.5;
  }

  .product-points,
  .kit-accessories {
    gap: 6px;
    margin-bottom: 14px;
  }

  .product-points span,
  .kit-accessories span {
    padding: 6px 8px;
    font-size: 11px;
  }

  .product.featured .product-points {
    display: none;
  }

  .price {
    margin-bottom: 14px;
  }

  .media-showcase {
    gap: 18px;
  }

  .video-reels {
    display: flex;
    gap: 12px;
    margin-right: -22px;
    padding-right: 22px;
    padding-bottom: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .video-reels figure {
    flex: 0 0 min(76vw, 290px);
    padding: 8px;
    scroll-snap-align: start;
  }

  .video-reels figcaption {
    margin-top: 8px;
    font-size: 12px;
  }

  .checkout-preview {
    gap: 20px;
  }

  .mini-checkout {
    padding: 16px;
  }

  .mini-row {
    gap: 12px;
    font-size: 14px;
  }

  details {
    padding: 16px;
  }

  summary {
    font-size: 15px;
    line-height: 1.3;
  }

  details p {
    font-size: 14px;
    line-height: 1.5;
  }

  .site-footer {
    gap: 18px;
    margin-top: 14px;
    padding: 24px 20px 84px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .safety-product-title {
    display: grid;
  }

  .safety-status {
    justify-self: start;
  }

  .safety-facts {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    padding: 18px;
  }

  .cart-header {
    top: -18px;
    padding: 18px 0 12px;
  }
}

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

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