@charset "UTF-8";

:root {
  --race-red: #df1822;
  --race-red-dark: #b90f18;
  --carbon: #0b0e10;
  --carbon-soft: #111518;
  --graphite: #252a2e;
  --titanium: #c9cdd0;
  --silver: #e1e3e4;
  --frost: #f2f3f2;
  --white: #fff;
  --ink: #101315;
  --muted: #666d72;
  --line: rgba(11, 14, 16, 0.16);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --pad: clamp(1.25rem, 4.3vw, 5.25rem);
  --header-height: 74px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { max-width: 100%; overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--frost);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

body::after {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .018;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1h1v1H1zM6 3h1v1H6zM3 6h1v1H3z' fill='%23fff' opacity='.45'/%3E%3C/svg%3E");
  background-size: 8px 8px;
}

img { display: block; width: 100%; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
[hidden] { display: none !important; }
[inert] { pointer-events: none; user-select: none; }
section[id], details[id] { scroll-margin-top: 76px; }

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

.skip-link {
  position: fixed;
  z-index: 2000;
  left: 1rem;
  top: -5rem;
  padding: .8rem 1rem;
  color: white;
  background: var(--race-red);
  font-weight: 800;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--race-red); outline-offset: 3px; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 2px solid white !important; outline-offset: 1px; box-shadow: 0 0 0 4px var(--carbon) !important; }

.utility-bar {
  position: absolute;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  height: 29px;
  color: rgba(255, 255, 255, .76);
  background: #07090a;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}

.utility-track {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font: 600 .61rem/1 var(--mono);
  letter-spacing: .14em;
}
.utility-set { display: flex; align-items: center; gap: clamp(1rem, 3vw, 3.2rem); }
.utility-set[aria-hidden="true"] { display: none; }
.utility-set i { width: 4px; height: 4px; background: var(--race-red); transform: rotate(45deg); }

.site-header {
  position: absolute;
  z-index: 70;
  top: 29px;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: background .35s, height .35s, transform .35s;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  height: 64px;
  color: white;
  background: rgba(8, 10, 12, .94);
  border-bottom-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  animation: header-in .4s var(--ease-out) both;
}

@keyframes header-in { from { transform: translateY(-100%); } }

.brand { display: inline-flex; align-items: flex-start; width: fit-content; line-height: 1; }
.brand-word { font-family: var(--display); font-size: 1.43rem; font-weight: 950; font-style: italic; letter-spacing: -.055em; transform: scaleX(.92); transform-origin: left center; }
.brand-slashes { margin-left: .36rem; color: var(--race-red); font-family: var(--display); font-size: 1.18rem; font-weight: 950; letter-spacing: -.2em; }
.brand-sub { align-self: flex-end; margin: 0 0 .03rem .5rem; font: 700 .46rem/1 var(--mono); letter-spacing: .24em; }

.desktop-nav { display: flex; align-items: stretch; height: 100%; }
.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 1.2rem;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.desktop-nav a::after { position: absolute; left: 1.2rem; right: 1.2rem; bottom: -1px; height: 2px; content: ""; background: var(--race-red); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.mobile-menu nav a[aria-current="page"] { color: var(--race-red); }
.footer-links a[aria-current="page"] { color: #fff; }

.header-actions { justify-self: end; display: flex; align-items: center; height: 100%; gap: .35rem; }
.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: .16rem;
  min-height: 36px;
  padding: .2rem;
  color: rgba(255,255,255,.62);
  background: rgba(8,10,11,.32);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}
.locale-switcher button {
  min-width: 34px;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 0 .42rem;
  color: inherit;
  background: transparent;
  border: 0;
  font: 750 .58rem var(--mono);
  letter-spacing: .1em;
  transition: color .18s var(--ease-out), background .18s var(--ease-out);
}
.locale-switcher button:hover { color: white; }
.locale-switcher button.is-active { color: white; background: var(--race-red); }
.locale-switcher button:focus-visible { outline: 2px solid white; outline-offset: 2px; }
.locale-switcher i { width: 1px; height: 14px; background: rgba(255,255,255,.22); }
.locale-switcher-mobile { display: none; }
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}
.icon-button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.icon-button:hover { color: var(--race-red); }
.cart-trigger {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 0 0 0 .75rem;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cart-trigger svg { display: none; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cart-count { min-width: 25px; height: 25px; display: grid; place-items: center; padding: 0 .3rem; color: white; background: var(--race-red); font: 750 .65rem var(--mono); clip-path: polygon(0 0, 100% 0, 100% 70%, 72% 100%, 0 100%); }
.menu-trigger { display: none; }

.mobile-menu {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 1.3rem var(--pad);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: white;
  background: var(--carbon);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), visibility 0s linear .55s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateX(0); transition-delay: 0s; }
.mobile-menu::before { position: absolute; z-index: -1; right: -12vw; top: 18%; width: 48vw; height: 55vh; content: ""; background: var(--race-red); clip-path: polygon(42% 0, 100% 0, 58% 100%, 0 100%); opacity: .11; }
.mobile-menu-top, .mobile-menu-foot { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu nav { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 1rem; padding: .55rem 0; font-family: var(--display); font-size: clamp(2.3rem, 10vw, 4.5rem); font-weight: 950; letter-spacing: -.055em; text-transform: uppercase; }
.mobile-menu nav a span { color: var(--race-red); font: 600 .65rem var(--mono); letter-spacing: .1em; }
.mobile-menu-foot { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.2); font: 600 .6rem var(--mono); letter-spacing: .13em; }

.hero {
  position: relative;
  min-height: 760px;
  height: max(760px, 100svh);
  color: white;
  background: var(--carbon);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; background: var(--carbon); transform: scale(1.015); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,8,.96) 0%, rgba(5,7,8,.76) 27%, rgba(5,7,8,.23) 57%, rgba(5,7,8,.08) 100%), linear-gradient(0deg, rgba(5,7,8,.66) 0, transparent 38%); }
.hero-grid { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 7.1vw 7.1vw; mask-image: linear-gradient(90deg, black, transparent 65%); }
.hero::after { position: absolute; right: -6vw; bottom: -16%; width: 39vw; height: 50%; content: ""; border-left: 3px solid var(--race-red); background: linear-gradient(130deg, rgba(239,32,41,.16), transparent 50%); transform: skewX(-28deg); }

.hero-copy { position: absolute; z-index: 2; left: var(--pad); top: 50%; width: min(760px, 55vw); transform: translateY(-44%); }
.eyebrow { display: block; margin: 0 0 1.1rem; color: var(--race-red); font: 700 .66rem/1.4 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin-bottom: 1.6rem; font-family: var(--display); font-size: clamp(4.2rem, 6.5vw, 7.7rem); font-weight: 950; line-height: .82; letter-spacing: -.067em; text-transform: uppercase; text-wrap: balance; }
.hero h1 em { color: transparent; -webkit-text-stroke: 1.4px rgba(255,255,255,.9); font-style: italic; }
.hero-lede { max-width: 530px; margin-bottom: 2rem; color: rgba(255,255,255,.76); font-size: clamp(.98rem, 1.25vw, 1.17rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: .8rem; }

.button {
  position: relative;
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  min-width: 186px;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  isolation: isolate;
  overflow: hidden;
  transition: color .25s, background .25s, border-color .25s, transform .25s var(--ease-out);
}
.button::before { position: absolute; inset: 0; z-index: 0; content: ""; background: white; transform: translateX(-102%) skewX(-18deg); transition: transform .45s var(--ease-out); }
.button > span, .button > b { position: relative; z-index: 1; }
.button:hover { transform: translateY(-2px); }
.button:hover::before { transform: translateX(0) skewX(0); }
.button-primary, .button--primary { color: white; background: var(--race-red); }
.button-primary:hover, .button--primary:hover { color: var(--race-red); }
.button-ghost { color: white; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
.button-ghost:hover { color: var(--carbon); border-color: white; }
.button-dark { color: white; background: var(--carbon); }
.button-dark:hover { color: var(--carbon); }
.button b { font-size: 1rem; font-weight: 500; }

.hero-spec { position: absolute; z-index: 2; right: var(--pad); bottom: 3.2rem; display: flex; align-items: flex-end; gap: 1rem; text-align: right; }
.hero-spec-no { color: rgba(255,255,255,.16); font-family: var(--display); font-size: clamp(4rem, 6vw, 7rem); font-weight: 950; font-style: italic; line-height: .75; letter-spacing: -.08em; }
.hero-spec div { display: flex; flex-direction: column; gap: .22rem; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.24); }
.hero-spec small { color: var(--race-red); font: 700 .56rem var(--mono); letter-spacing: .14em; }
.hero-spec strong { font-family: var(--display); font-size: .92rem; letter-spacing: .04em; }
.hero-spec div span { color: rgba(255,255,255,.62); font: 600 .58rem var(--mono); letter-spacing: .1em; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 2.6rem; display: flex; align-items: center; gap: .8rem; transform: translateX(-50%) rotate(90deg); transform-origin: center; color: rgba(255,255,255,.65); font: 600 .55rem var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue i { width: 55px; height: 1px; overflow: hidden; background: rgba(255,255,255,.25); }
.scroll-cue i::after { display: block; width: 100%; height: 100%; content: ""; background: var(--race-red); animation: scroll-line 2.2s ease-in-out infinite; }
@keyframes scroll-line { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .68s var(--ease-out), transform .68s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .24s; }

.section-kicker { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--line); color: #52595e; font: 650 .58rem var(--mono); letter-spacing: .14em; }

.bike-finder { padding: 3.3rem var(--pad) 4.5rem; background: var(--frost); }
.finder-layout { display: grid; grid-template-columns: .8fr 2.2fr; gap: 6vw; align-items: end; padding-top: 3.2rem; }
.finder-copy h2, .drop-copy h2, .shop-heading h2, .custom-copy h2, .craft-copy h2, .racewear-copy h2, .journal-heading h2, .newsletter-copy h2 { margin-bottom: 1.1rem; font-family: var(--display); font-weight: 950; line-height: .86; letter-spacing: -.06em; text-transform: uppercase; }
.finder-copy h2 { font-size: clamp(3rem, 4.2vw, 5.5rem); }
.finder-copy p { max-width: 390px; margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.7; }
.finder-form { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 1px; background: #cfd2d3; border: 1px solid #cfd2d3; }
.finder-form label { min-width: 0; padding: 1rem 1.1rem .8rem; background: white; }
.finder-form label > span { display: block; margin-bottom: .65rem; color: #656c70; font: 650 .54rem var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.finder-form select { width: 100%; padding: 0 2rem 0 0; color: var(--carbon); background: transparent; border: 0; outline: 0; font-family: var(--display); font-size: .98rem; font-weight: 850; text-transform: uppercase; }
.finder-form select:disabled { color: #9ba0a3; cursor: not-allowed; }
.finder-form .button { min-height: 74px; height: 100%; min-width: 170px; border: 0; }
.finder-result { margin-top: 1rem; padding: .9rem 1.1rem; color: white; background: var(--carbon); font: 650 .65rem var(--mono); letter-spacing: .08em; }
.finder-result strong { color: var(--race-red); }

.featured-drop { min-height: 750px; display: grid; grid-template-columns: 1.55fr .85fr; color: var(--ink); background: white; border-top: 1px solid var(--line); }
.drop-visual { position: relative; min-height: 720px; overflow: hidden; background: #eff0f0; }
.drop-visual::after { position: absolute; inset: 0; content: ""; box-shadow: inset -35px 0 70px rgba(11,14,16,.08); pointer-events: none; }
.drop-visual img { height: 100%; object-fit: cover; object-position: center; transition: transform 1.2s var(--ease-out); }
.drop-visual:hover img { transform: scale(1.025); }
.drop-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 5vw, 6.5rem); background-image: linear-gradient(135deg, transparent 70%, rgba(201,205,208,.2) 70%); }
.drop-copy h2 { font-size: clamp(3.6rem, 5vw, 6.5rem); }
.drop-copy h2 span { color: var(--race-red); }
.drop-copy > p { max-width: 490px; color: var(--muted); font-size: .98rem; line-height: 1.8; }
.drop-meta { margin: 2rem 0 2.5rem; border-top: 1px solid var(--line); }
.drop-meta > div { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.drop-meta span { color: #777d81; font: 650 .55rem var(--mono); letter-spacing: .13em; }
.drop-meta strong { text-align: right; font-family: var(--display); font-size: .77rem; letter-spacing: .05em; }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; width: fit-content; min-width: 250px; padding: .65rem 0; color: inherit; background: transparent; border: 0; border-bottom: 1px solid currentColor; font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.text-link b { color: var(--race-red); font-size: 1rem; transition: transform .25s; }
.text-link:hover b { transform: translate(3px, -3px); }
.drop-index { position: absolute; left: 1.5rem; bottom: 1.5rem; padding: .55rem .7rem; color: white; background: var(--carbon); font: 650 .56rem var(--mono); letter-spacing: .12em; }
.image-marker { position: absolute; z-index: 2; display: flex; align-items: center; gap: .6rem; color: var(--carbon); font: 650 .5rem/1.35 var(--mono); letter-spacing: .08em; }
.image-marker i { width: 13px; height: 13px; border: 3px solid white; outline: 1px solid var(--race-red); border-radius: 50%; background: var(--race-red); box-shadow: 0 0 0 10px rgba(239,32,41,.1); }
.marker-a { left: 42%; top: 35%; }
.marker-b { right: 16%; bottom: 30%; }

.shop-section { padding: 4.2rem var(--pad) 6.2rem; background: var(--frost); }
.shop-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; padding: 3.6rem 0 2.5rem; }
.shop-heading h2 { margin: 0; font-size: clamp(3.8rem, 6vw, 7.2rem); }
.shop-controls { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: stretch; gap: .7rem; max-width: min(760px, 62vw); }
.search-field { width: min(340px, 27vw); display: flex; align-items: center; gap: .65rem; padding: 0 .9rem; background: white; border: 1px solid var(--line); }
.search-field svg { flex: 0 0 18px; width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.search-field input { min-width: 0; height: 49px; flex: 1; border: 0; outline: 0; background: transparent; font-size: .78rem; }
.search-field kbd { padding: .2rem .38rem; color: #656c70; background: var(--frost); border: 1px solid #d4d7d8; font: 600 .6rem var(--mono); }
.sort-field select { height: 51px; padding: 0 2.4rem 0 1rem; background: white; border: 1px solid var(--line); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.price-field { min-width: 96px; display: flex; align-items: center; gap: .35rem; padding: 0 .7rem; background: #fff; border: 1px solid var(--line); }
.price-field span { color: #656c70; font: 650 .55rem var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.price-field input { width: 62px; height: 49px; padding: 0; background: transparent; border: 0; outline: 0; font: 700 .72rem var(--mono); }
.filter-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.35rem; }
.filter-chip { min-height: 44px; display: inline-flex; align-items: center; gap: .75rem; padding: 0 .9rem; color: #5f6569; background: transparent; border: 1px solid #c9ccce; font-size: .65rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: .25s; }
.filter-chip span { color: #62696d; font: 600 .57rem var(--mono); }
.filter-chip:hover, .filter-chip.is-active { color: white; background: var(--carbon); border-color: var(--carbon); }
.filter-chip.is-active span { color: white; }
.active-fitment { margin: 0 0 1.2rem; padding: .8rem 1rem; display: flex; justify-content: space-between; color: white; background: var(--race-red); font: 650 .62rem var(--mono); letter-spacing: .08em; }
.active-fitment button { padding: 0; color: inherit; background: transparent; border: 0; font-weight: 800; text-transform: uppercase; }
.catalog-pagination { display: grid; justify-items: center; gap: 1rem; padding: 2rem 0 0; }
.catalog-pagination p { margin: 0; color: var(--muted); font: 650 .58rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.catalog-pagination .button { min-width: 220px; }

.product-image.is-packshot,
.dialog-product-image.is-packshot { background: #fff; }
.product-image.is-packshot img,
.dialog-product-image.is-packshot > img { padding: clamp(.8rem, 3vw, 2.4rem); object-fit: contain; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: #cbd0d2; border: 1px solid #cbd0d2; }
.product-card { position: relative; min-width: 0; background: var(--frost); overflow: hidden; }
.product-card:nth-child(1), .product-card:nth-child(7) { grid-column: span 2; }
.product-card:nth-child(1) .product-image, .product-card:nth-child(7) .product-image { aspect-ratio: 16/8.3; }
.product-image { position: relative; display: block; width: 100%; aspect-ratio: 1/1.03; padding: 0; background: #e5e7e7; border: 0; overflow: hidden; }
.product-media-button { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; background: transparent; border: 0; }
.product-image::after { position: absolute; z-index: 1; inset: 0; content: ""; pointer-events: none; background: linear-gradient(145deg, transparent 52%, rgba(11,14,16,.09)); opacity: .5; transition: opacity .4s; }
.product-image img { height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .5s; }
.product-image:hover img { transform: scale(1.035); }
.product-image:hover::after { opacity: .15; }
.product-card[data-tone="carbon"] .product-image, .product-card[data-tone="graphite"] .product-image { background: var(--carbon); }
.product-card[data-tone="red"] .product-image::before { position: absolute; z-index: 1; right: -20%; bottom: -20%; width: 58%; height: 58%; content: ""; background: var(--race-red); opacity: .72; clip-path: polygon(44% 0,100% 0,56% 100%,0 100%); mix-blend-mode: multiply; }
.product-badge { position: absolute; z-index: 3; left: 1rem; top: 1rem; padding: .48rem .57rem; color: white; background: var(--carbon); font: 700 .5rem var(--mono); letter-spacing: .12em; }
.product-badge.is-red { background: var(--race-red); }
.wish-button { position: absolute; z-index: 3; top: .7rem; right: .7rem; width: 42px; height: 42px; display: grid; place-items: center; padding: 0; color: var(--carbon); background: rgba(255,255,255,.87); border: 0; backdrop-filter: blur(8px); }
.wish-button svg { width: 18px; fill: transparent; stroke: currentColor; stroke-width: 1.5; }
.wish-button.is-active { color: var(--race-red); }
.wish-button.is-active svg { fill: currentColor; }
.product-quick { position: absolute; z-index: 4; left: 1rem; right: 1rem; bottom: 1rem; min-height: 46px; color: white; background: rgba(11,14,16,.94); border: 0; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transform: translateY(12px); transition: .35s var(--ease-out); }
.product-image:hover .product-quick, .product-quick:focus-visible { opacity: 1; transform: none; }
.product-info { display: grid; grid-template-columns: 1fr auto; gap: .8rem; padding: 1.15rem 1.1rem 1.35rem; background: white; border-top: 1px solid var(--line); }
.product-info h3 { margin: 0; }
.product-category { display: block; margin-bottom: .38rem; color: #5d6468; font: 650 .5rem var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.product-name-button { padding: 0; color: var(--carbon); background: transparent; border: 0; text-align: left; font-family: var(--display); font-size: clamp(.95rem, 1.2vw, 1.18rem); font-weight: 900; line-height: 1.05; letter-spacing: -.025em; text-transform: uppercase; }
.product-name-button:hover { color: var(--race-red); }
.product-price { font-family: var(--display); font-size: .97rem; font-weight: 900; white-space: nowrap; }
.empty-products { padding: 6rem 1rem; text-align: center; background: white; border: 1px solid var(--line); }
.empty-products > span { color: var(--race-red); font: 700 .6rem var(--mono); letter-spacing: .16em; }
.empty-products h3 { margin: .8rem 0 .4rem; font-family: var(--display); font-size: 2.7rem; line-height: 1; text-transform: uppercase; }
.empty-products p { color: var(--muted); }
.empty-products .button { margin-top: 1rem; }

.custom-studio { position: relative; min-height: 780px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 9vw; padding: clamp(5rem, 9vw, 10rem) var(--pad); color: white; background: var(--carbon); overflow: hidden; }
.custom-studio::before { position: absolute; inset: 0; content: ""; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 8vw 8vw; mask-image: linear-gradient(90deg, black, transparent); }
.custom-number { position: absolute; right: -2vw; top: 50%; color: transparent; font-family: var(--display); font-size: 38vw; font-weight: 950; font-style: italic; line-height: .6; letter-spacing: -.1em; -webkit-text-stroke: 1px rgba(255,255,255,.08); transform: translateY(-48%); }
.custom-copy, .custom-steps { position: relative; z-index: 2; }
.custom-copy h2 { font-size: clamp(4rem, 6.4vw, 8rem); }
.custom-copy h2 em { color: var(--race-red); font-style: italic; }
.custom-copy > p { max-width: 600px; margin-bottom: 2.2rem; color: rgba(255,255,255,.68); font-size: 1rem; line-height: 1.8; }
.custom-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.custom-steps li { display: grid; grid-template-columns: 55px 1fr; gap: 1.1rem; padding: 1.45rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.custom-steps li > span { color: var(--race-red); font: 700 .7rem var(--mono); }
.custom-steps strong { display: block; margin-bottom: .35rem; font-family: var(--display); font-size: 1.2rem; letter-spacing: .02em; text-transform: uppercase; }
.custom-steps p { max-width: 420px; margin: 0; color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.6; }
.custom-slash { position: absolute; left: 43%; top: -20%; width: 16vw; height: 140%; background: linear-gradient(90deg, transparent, rgba(239,32,41,.12), transparent); transform: skewX(-26deg); }

.craft-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: white; overflow: hidden; }
.craft-section > * { min-width: 0; }
.craft-image { position: relative; min-height: 680px; overflow: hidden; }
.craft-image img { height: 100%; object-fit: cover; object-position: center; transition: transform 1.2s var(--ease-out); }
.craft-image:hover img { transform: scale(1.02); }
.craft-image > span { position: absolute; left: 1.2rem; bottom: 1.2rem; padding: .55rem .65rem; color: white; background: var(--race-red); font: 650 .55rem var(--mono); letter-spacing: .13em; }
.craft-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 6vw, 7.5rem); }
.craft-copy h2 { font-size: clamp(3.7rem, 5vw, 6.2rem); }
.craft-copy > p { max-width: 530px; color: var(--muted); line-height: 1.8; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 2.1rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.quality-grid > div { padding: 1.25rem 1.1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quality-grid strong { display: block; margin-bottom: .4rem; font-family: var(--display); font-size: 2.2rem; line-height: 1; letter-spacing: -.04em; }
.quality-grid strong span { color: var(--race-red); font-size: .75rem; letter-spacing: 0; }
.quality-grid p { margin: 0; color: #6b7276; font-size: .68rem; }

.racewear-banner { min-height: 690px; display: grid; grid-template-columns: 1.55fr .75fr; color: white; background: var(--carbon); }
.racewear-image { position: relative; overflow: hidden; }
.racewear-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 65%, var(--carbon)); }
.racewear-image img { height: 100%; object-fit: cover; object-position: center; }
.racewear-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 5vw, 6rem) var(--pad) clamp(3rem, 5vw, 6rem) 2rem; }
.racewear-copy h2 { font-size: clamp(3.6rem, 5vw, 6rem); }
.racewear-copy > p { color: rgba(255,255,255,.62); line-height: 1.75; }
.racewear-copy .text-link { margin-top: 1.3rem; }

.journal { padding: 4.5rem var(--pad) 6.5rem; background: var(--frost); }
.journal-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding: 3.3rem 0 2.4rem; }
.journal-heading h2 { margin: 0; font-size: clamp(4rem, 6vw, 7rem); }
.journal-heading p { max-width: 420px; margin: 0 0 .5rem; color: var(--muted); line-height: 1.7; }
.journal-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 1px; background: #c9ccce; border: 1px solid #c9ccce; }
.journal-card { display: grid; grid-template-rows: auto 1fr; background: white; }
.journal-image { display: block; width: 100%; aspect-ratio: 5/3.5; padding: 0; overflow: hidden; background: #dfe1e2; border: 0; text-align: left; }
.journal-image img { height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .5s; }
.journal-image:hover img { transform: scale(1.025); filter: saturate(.85); }
.journal-ride img { object-position: 72% center; }
.journal-card > div { padding: 1.3rem 1.4rem 1.6rem; }
.journal-card > div span { color: var(--race-red); font: 650 .54rem var(--mono); letter-spacing: .13em; }
.journal-card h3 { margin: .7rem 0 .55rem; }
.journal-title { display: block; margin: 0; padding: 0; color: var(--ink); background: transparent; border: 0; text-align: left; font-family: var(--display); font-size: clamp(1.5rem, 2vw, 2.35rem); font-weight: 900; line-height: .95; letter-spacing: -.035em; text-transform: uppercase; }
.journal-title:hover { color: var(--race-red); }
.journal-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.6; }

.support-section { padding: 4.5rem var(--pad) 6rem; color: white; background: var(--carbon); }
.support-section .section-kicker { color: rgba(255,255,255,.45); border-color: rgba(255,255,255,.16); }
.support-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; padding-top: 4rem; }
.support-heading h2 { margin-bottom: 1rem; font-family: var(--display); font-size: clamp(3.7rem, 5.5vw, 6.5rem); font-weight: 950; line-height: .86; letter-spacing: -.06em; text-transform: uppercase; }
.support-heading > p:last-child { max-width: 480px; color: rgba(255,255,255,.58); line-height: 1.75; }
.support-list { border-top: 1px solid rgba(255,255,255,.2); }
.support-list details { border-bottom: 1px solid rgba(255,255,255,.2); }
.support-list summary { min-height: 82px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 1rem; cursor: pointer; list-style: none; }
.support-list summary::-webkit-details-marker { display: none; }
.support-list summary span { color: var(--race-red); font: 700 .62rem var(--mono); }
.support-list summary strong { font-family: var(--display); font-size: 1.2rem; letter-spacing: .02em; text-transform: uppercase; }
.support-list summary b { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); font-size: 1rem; font-weight: 400; transition: transform .3s var(--ease-out), color .3s; }
.support-list details[open] summary b { color: var(--race-red); transform: rotate(45deg); }
.support-list details > div { padding: 0 3.5rem 1.5rem 3.65rem; }
.support-list details p { max-width: 650px; margin: 0; color: rgba(255,255,255,.58); font-size: .84rem; line-height: 1.75; }

.newsletter { position: relative; min-height: 380px; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 8vw; padding: 5rem var(--pad); color: white; background: var(--race-red); overflow: hidden; }
.newsletter::before { position: absolute; inset: 0; content: ""; background: linear-gradient(118deg, rgba(0,0,0,.16), transparent 46%); }
.newsletter-mark { position: absolute; left: 44%; top: -28%; color: rgba(255,255,255,.1); font-family: var(--display); font-size: 22vw; font-weight: 950; letter-spacing: -.25em; transform: skewX(-16deg); }
.newsletter-copy, .newsletter-form { position: relative; z-index: 1; }
.newsletter .eyebrow { color: white; opacity: .94; }
.newsletter-copy h2 { margin-bottom: .8rem; font-size: clamp(4rem, 6vw, 7rem); }
.newsletter-copy p:last-child { max-width: 550px; margin: 0; color: rgba(255,255,255,.96); }
.newsletter-form > label { display: block; margin-bottom: .7rem; font: 650 .59rem var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.newsletter-form > div { display: grid; grid-template-columns: 1fr auto; background: white; }
.newsletter-form input { min-width: 0; height: 58px; padding: 0 1.1rem; border: 0; outline: 0; }
.newsletter-form button { min-width: 110px; color: white; background: var(--carbon); border: 0; font-size: .69rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.newsletter-form button span { margin-left: .5rem; color: var(--race-red); }
.form-message { min-height: 1.25rem; margin: .5rem 0 0; color: white; font-size: .7rem; font-weight: 700; }

.site-footer { padding: 4.5rem var(--pad) 1.2rem; color: white; background: #080a0b; }
.footer-main { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6vw; padding-bottom: 4rem; }
.footer-brand .brand-word { font-size: 2.2rem; }
.footer-brand .brand-slashes { font-size: 1.8rem; }
.footer-brand p { margin: 1.5rem 0 3rem; color: rgba(255,255,255,.63); font-family: var(--display); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; }
.footer-brand > span { color: rgba(255,255,255,.65); font: 600 .55rem var(--mono); letter-spacing: .13em; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-links > div { display: flex; flex-direction: column; gap: .65rem; }
.footer-links span { margin-bottom: .55rem; color: var(--race-red); font: 700 .56rem var(--mono); letter-spacing: .14em; }
.footer-links a { color: rgba(255,255,255,.63); font-size: .72rem; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-bottom { min-height: 57px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.65); font: 600 .53rem var(--mono); letter-spacing: .1em; }
.back-to-top { padding: .6rem 0; color: white; background: transparent; border: 0; font: inherit; }

.page-overlay { position: fixed; z-index: 150; inset: 0; background: rgba(5,7,8,.62); backdrop-filter: blur(3px); opacity: 0; transition: opacity .3s; }
.page-overlay.is-visible { opacity: 1; }
.cart-drawer { position: fixed; z-index: 170; top: 0; right: 0; width: min(520px, 100vw); height: 100dvh; display: grid; grid-template-rows: auto auto 1fr auto; color: var(--ink); background: var(--frost); box-shadow: -24px 0 60px rgba(0,0,0,.25); visibility: hidden; transform: translateX(100%); transition: transform .5s var(--ease-out), visibility .5s; }
.cart-drawer.is-open { visibility: visible; transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: start; padding: 1.45rem 1.5rem 1.2rem; background: white; border-bottom: 1px solid var(--line); }
.drawer-head .eyebrow { margin-bottom: .5rem; }
.drawer-head h2 { margin: 0; font-family: var(--display); font-size: 2rem; line-height: 1; text-transform: uppercase; }
.drawer-head h2 span { color: #656c70; font-size: 1rem; }
.shipping-progress { padding: 1rem 1.5rem; color: white; background: var(--carbon); }
.shipping-progress > div:first-child { display: flex; justify-content: space-between; gap: .8rem; margin-bottom: .7rem; font: 600 .55rem var(--mono); letter-spacing: .07em; }
.shipping-progress strong { color: var(--race-red); }
.progress-track { height: 3px; background: rgba(255,255,255,.16); overflow: hidden; }
.progress-track i { display: block; height: 100%; width: 0; background: var(--race-red); transition: width .5s var(--ease-out); }
.cart-items { min-height: 0; overflow-y: auto; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: .9rem; padding: 1rem 1.2rem; background: white; border-bottom: 1px solid var(--line); }
.cart-item-image { width: 100px; aspect-ratio: 1; overflow: hidden; background: var(--silver); }
.cart-item-image img { height: 100%; object-fit: cover; }
.cart-item-meta { min-width: 0; }
.cart-item-meta > span { color: var(--race-red); font: 650 .49rem var(--mono); letter-spacing: .1em; }
.cart-item-meta h3 { margin: .28rem 0 .35rem; font-family: var(--display); font-size: .96rem; line-height: 1.05; text-transform: uppercase; }
.cart-item-config { margin: 0 0 .7rem; color: #71777b; font-size: .62rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.quantity-control { width: fit-content; height: 31px; display: flex; align-items: center; border: 1px solid var(--line); }
.quantity-control button { width: 29px; height: 29px; padding: 0; background: white; border: 0; }
.quantity-control span { min-width: 26px; text-align: center; font: 650 .62rem var(--mono); }
.cart-item-end { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-end strong { font-family: var(--display); font-size: .88rem; }
.cart-item-actions { display: flex; align-items: center; gap: .65rem; }
.edit-item { min-height: 32px; padding: .2rem 0; color: var(--carbon); background: transparent; border: 0; font-size: .56rem; font-weight: 750; text-decoration: underline; text-transform: uppercase; }
.remove-item { min-height: 32px; padding: .2rem 0; color: #5e6569; background: transparent; border: 0; font-size: .56rem; text-decoration: underline; text-transform: uppercase; }
.cart-empty { grid-row: 3 / 5; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 0; padding: 2rem; text-align: center; }
.empty-88 { color: #dfe1e2; font-family: var(--display); font-size: 7.5rem; font-weight: 950; font-style: italic; line-height: .75; letter-spacing: -.1em; }
.cart-empty h3 { margin: 1rem 0 .45rem; font-family: var(--display); font-size: 2.2rem; text-transform: uppercase; }
.cart-empty p { color: var(--muted); }
.cart-empty .button { margin-top: .7rem; }
.cart-footer { padding: 1.2rem 1.5rem 1rem; background: white; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; font-family: var(--display); font-size: 1.22rem; font-weight: 900; text-transform: uppercase; }
.cart-footer > p { margin: .25rem 0 1rem; color: #62696d; font-size: .63rem; }
.cart-footer .button { width: 100%; }
.cart-assurances { display: flex; justify-content: space-between; gap: .4rem; margin-top: .9rem; color: #62696d; font: 600 .48rem var(--mono); text-transform: uppercase; }

dialog { padding: 0; border: 0; }
dialog::backdrop { background: rgba(5,7,8,.72); backdrop-filter: blur(5px); }
.product-dialog { width: min(1140px, calc(100vw - 2rem)); max-height: calc(100dvh - 2rem); color: var(--ink); background: white; overflow-x: hidden; overflow-y: auto; }
.dialog-close { position: absolute; z-index: 6; right: 1rem; top: 1rem; width: 43px; height: 43px; display: grid; place-items: center; padding: 0; color: var(--carbon); background: rgba(255,255,255,.92); border: 1px solid var(--line); }
.dialog-close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.product-dialog-layout { min-height: 660px; display: grid; grid-template-columns: 1.05fr .95fr; }
.product-dialog-layout > * { min-width: 0; }
.dialog-product-image { position: relative; min-height: 620px; background: var(--silver); overflow: hidden; }
.dialog-product-image img { height: 100%; object-fit: cover; }
.dialog-product-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(145deg, transparent 60%, rgba(11,14,16,.15)); }
.dialog-product-index { position: absolute; z-index: 2; left: 1.2rem; bottom: 1.2rem; padding: .5rem .6rem; color: white; background: var(--carbon); font: 650 .54rem var(--mono); letter-spacing: .1em; }
.livery-preview { position: absolute; z-index: 3; right: 1.2rem; bottom: 1.2rem; width: 132px; padding: .75rem .8rem .8rem; color: var(--carbon); background: rgba(255,255,255,.94); border-top: 4px solid var(--preview-accent); box-shadow: 0 12px 30px rgba(0,0,0,.16); backdrop-filter: blur(8px); }
.livery-preview small, .livery-preview span, .livery-preview i { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.livery-preview small { margin-bottom: .25rem; color: #5e6569; font: 650 .45rem var(--mono); letter-spacing: .1em; }
.livery-preview strong { display: block; color: var(--preview-accent); font-family: var(--display); font-size: 2.25rem; font-style: italic; line-height: .8; letter-spacing: -.06em; -webkit-text-stroke: .45px rgba(11,14,16,.75); }
.livery-preview span { margin-top: .38rem; font-family: var(--display); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.livery-preview i { margin-top: .25rem; color: #565d61; font: 600 .43rem var(--mono); font-style: normal; }
.dialog-product-info { display: flex; flex-direction: column; padding: clamp(2rem, 4vw, 4.2rem); }
.dialog-product-info .eyebrow { margin-bottom: .8rem; }
.dialog-product-info h2 { max-width: 560px; margin-bottom: .8rem; font-family: var(--display); font-size: clamp(2.8rem, 4vw, 4.6rem); font-weight: 950; line-height: .86; letter-spacing: -.055em; text-transform: uppercase; }
.dialog-price { display: block; margin-bottom: 1.2rem; font-family: var(--display); font-size: 1.4rem; font-weight: 900; }
.dialog-description { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.product-form { margin-top: 1rem; }
.product-field { display: block; margin-bottom: 1rem; }
.product-field > span, .swatch-field > span { display: block; margin-bottom: .48rem; color: #70767a; font: 650 .53rem var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.product-field select, .product-field input, .product-field textarea { width: 100%; padding: 0 .85rem; color: var(--ink); background: var(--frost); border: 1px solid var(--line); outline: 0; }
.product-field select, .product-field input { height: 48px; }
.product-field textarea { min-height: 88px; padding-top: .75rem; resize: vertical; line-height: 1.5; }
.product-field [aria-invalid="true"] { border-color: var(--race-red); box-shadow: 0 0 0 2px rgba(239,32,41,.1); }
.personal-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: .7rem; }
.swatch-field { margin-bottom: 1rem; }
.swatches { display: flex; gap: .45rem; }
.swatch { position: relative; width: 37px; height: 37px; padding: 0; border: 3px solid white; outline: 1px solid #c9ccce; }
.swatch.is-active { outline: 2px solid var(--carbon); outline-offset: 2px; }
.swatch[data-color="Race Red"] { background: var(--race-red); }
.swatch[data-color="Carbon"] { background: var(--carbon); }
.swatch[data-color="Titanium"] { background: var(--titanium); }
.swatch[data-color="Frost"] { background: white; }
.product-add-row { display: grid; grid-template-columns: 94px 1fr; gap: .7rem; margin-top: 1.2rem; }
.dialog-quantity { display: flex; align-items: stretch; border: 1px solid var(--line); }
.dialog-quantity button { flex: 1; border: 0; background: white; }
.dialog-quantity input { width: 35px; padding: 0; text-align: center; border: 0; -moz-appearance: textfield; }
.dialog-quantity input::-webkit-inner-spin-button { display: none; }
.product-add-row .button { width: 100%; }
.product-error { min-height: 1.1rem; margin: .5rem 0 0; color: var(--race-red); font-size: .66rem; font-weight: 700; }
.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 1.4rem 0 0; padding: 1px; background: var(--line); list-style: none; }
.product-specs li { padding: .68rem .75rem; background: white; font-size: .62rem; }
.product-specs li::before { margin-right: .45rem; color: var(--race-red); content: "+"; font-weight: 900; }

.article-dialog-layout { background: white; }
.article-hero { position: relative; height: min(52vh, 560px); min-height: 360px; overflow: hidden; background: var(--graphite); }
.article-hero img { height: 100%; object-fit: cover; }
.article-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(5,7,8,.55), transparent 55%); }
.article-hero > span { position: absolute; z-index: 2; left: 1.2rem; bottom: 1.2rem; padding: .55rem .7rem; color: white; background: var(--race-red); font: 650 .55rem var(--mono); letter-spacing: .12em; }
.article-body { max-width: 790px; margin: 0 auto; padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 5vw, 4rem); }
.article-body h2 { margin-bottom: 1.1rem; font-family: var(--display); font-size: clamp(3.4rem, 6vw, 6.5rem); font-weight: 950; line-height: .86; letter-spacing: -.06em; text-transform: uppercase; }
.article-deck { margin-bottom: 2.4rem !important; color: var(--ink) !important; font-size: 1.15rem !important; font-weight: 650; line-height: 1.6 !important; }
.article-body > p { color: var(--muted); font-size: .96rem; line-height: 1.85; }
.article-body blockquote { margin: 2.5rem 0; padding: 1.6rem 0 1.6rem 1.4rem; color: var(--ink); border-left: 4px solid var(--race-red); font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; line-height: 1; text-transform: uppercase; }

.checkout-dialog { width: min(1180px, calc(100vw - 2rem)); max-height: calc(100dvh - 1.5rem); background: var(--frost); overflow-x: hidden; overflow-y: auto; }
.checkout-shell { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 760px; }
.checkout-shell > *, #checkoutForm, .checkout-summary-item > div { min-width: 0; }
.checkout-main { padding: clamp(2rem, 4.5vw, 4.8rem); background: white; }
.checkout-summary { padding: clamp(2rem, 3.5vw, 3.8rem); background: #e6e8e8; border-left: 1px solid var(--line); }
.checkout-brand { display: flex; align-items: baseline; margin-bottom: 1.3rem; font-family: var(--display); font-weight: 950; font-style: italic; }
.checkout-brand > span { font-size: 1.6rem; }
.checkout-brand i { margin-left: .3rem; color: var(--race-red); font-style: normal; }
.checkout-brand small { margin-left: auto; color: #666d71; font: 650 .52rem var(--mono); letter-spacing: .12em; }
.demo-notice { display: flex; flex-direction: column; margin-bottom: 2rem; padding: .85rem 1rem; color: white; background: var(--carbon); border-left: 4px solid var(--race-red); }
.demo-notice strong { font-size: .72rem; text-transform: uppercase; }
.demo-notice span { color: rgba(255,255,255,.65); font-size: .64rem; }
.checkout-main h2 { margin-bottom: 1.5rem; font-family: var(--display); font-size: 2.7rem; line-height: 1; text-transform: uppercase; }
#checkoutForm > label, .form-grid label { display: block; margin-bottom: .9rem; }
#checkoutForm label > span, .promo-field > label { display: block; margin-bottom: .38rem; color: #555c60; font: 650 .52rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
#checkoutForm input:not([type="radio"]):not([type="checkbox"]), #checkoutForm select { width: 100%; height: 47px; padding: 0 .75rem; background: var(--frost); border: 1px solid var(--line); outline: 0; }
#checkoutForm input:focus, #checkoutForm select:focus { border-color: var(--race-red); box-shadow: 0 0 0 2px rgba(239,32,41,.1); }
.form-grid { display: grid; gap: .7rem; }
.two-col { grid-template-columns: 1fr 1fr; }
.city-grid { grid-template-columns: .65fr 1fr 1fr; }
#checkoutForm fieldset { margin: 1.3rem 0; padding: 0; border: 0; }
#checkoutForm legend { margin-bottom: .5rem; font-family: var(--display); font-size: .92rem; font-weight: 900; text-transform: uppercase; }
.radio-card { min-height: 58px; display: grid !important; grid-template-columns: auto 1fr auto; align-items: center; gap: .7rem; margin: -1px 0 0 !important; padding: .75rem .85rem; border: 1px solid var(--line); cursor: pointer; }
.radio-card:has(input:checked) { position: relative; z-index: 1; border-color: var(--carbon); }
.radio-card input { accent-color: var(--race-red); }
.radio-card span { margin: 0 !important; }
.radio-card strong, .radio-card small { display: block; }
.radio-card strong { color: var(--ink); font-size: .72rem; }
.radio-card small { margin-top: .18rem; color: #676e72; font-size: .59rem; text-transform: none; }
.radio-card b { font: 700 .62rem var(--mono); }
.checkbox-label { display: flex !important; align-items: start; gap: .6rem; margin: 1.2rem 0 !important; }
.checkbox-label input { margin-top: .15rem; accent-color: var(--race-red); }
.checkbox-label span { margin: 0 !important; line-height: 1.5; text-transform: none !important; }
.checkout-error { min-height: 1rem; margin: 0 0 .6rem; color: var(--race-red); font-size: .68rem; font-weight: 700; }
.place-order { width: 100%; }
.checkout-summary > .eyebrow { color: var(--carbon); }
.checkout-summary-item { display: grid; grid-template-columns: 62px 1fr auto; gap: .65rem; align-items: center; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.checkout-summary-item img { width: 62px; height: 62px; object-fit: cover; background: white; }
.checkout-summary-item h3 { margin: 0 0 .25rem; font-family: var(--display); font-size: .78rem; line-height: 1; text-transform: uppercase; }
.checkout-summary-item small { display: -webkit-box; color: #50575b; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3; font-size: .59rem; line-height: 1.35; }
.checkout-summary-item b { font-family: var(--display); font-size: .78rem; }
.promo-field { display: block; margin: 1.3rem 0; }
.promo-field > div { display: grid; grid-template-columns: 1fr auto; }
.promo-field input { min-width: 0; height: 43px; padding: 0 .75rem; background: white; border: 1px solid var(--line); outline: 0; text-transform: uppercase; }
.promo-field button { min-width: 75px; color: white; background: var(--carbon); border: 0; font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.promo-field small { display: block; min-height: 1rem; margin-top: .35rem; color: var(--race-red); font-size: .6rem; }
.summary-lines { border-top: 1px solid var(--line); }
.summary-lines > div { display: flex; justify-content: space-between; padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .7rem; }
.summary-lines > div b { font-family: var(--display); font-size: .8rem; }
.summary-lines .summary-total { padding: 1rem 0; font-family: var(--display); font-size: 1rem; font-weight: 900; text-transform: uppercase; }
.summary-lines .summary-total b { color: var(--race-red); font-size: 1.45rem; }
.order-success { min-height: min(720px, calc(100dvh - 1.5rem)); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem; text-align: center; }
.success-mark { width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 1.5rem; color: white; background: var(--race-red); font-size: 1.8rem; clip-path: polygon(0 0,100% 0,100% 72%,72% 100%,0 100%); }
.order-success h2 { margin: .4rem 0 .8rem; font-family: var(--display); font-size: clamp(3.5rem, 7vw, 6.5rem); line-height: .9; text-transform: uppercase; }
.order-success p { max-width: 580px; color: var(--muted); }
.order-success .button { margin-top: 1rem; }

.toast { position: fixed; z-index: 300; left: 50%; bottom: 1.5rem; max-width: calc(100vw - 2rem); padding: .85rem 1.1rem; pointer-events: none; color: white; background: var(--carbon); border-left: 4px solid var(--race-red); box-shadow: 0 10px 40px rgba(0,0,0,.25); font-size: .72rem; font-weight: 700; opacity: 0; visibility: hidden; transform: translate(-50%, 20px); transition: .35s var(--ease-out); }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
#cartDrawer.is-open ~ .toast { bottom: max(12rem, calc(12rem + env(safe-area-inset-bottom))); }
body.is-route .toast { top: calc(6.5rem + env(safe-area-inset-top)); bottom: auto; transform: translate(-50%, -20px); }
body.is-route .toast.is-visible { transform: translate(-50%, 0); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-trigger { display: grid; }
  .finder-layout { grid-template-columns: 1fr; }
  .finder-copy { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 2rem; }
  .featured-drop { grid-template-columns: 1.25fr .85fr; }
  .drop-copy { padding: 3rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card:nth-child(1), .product-card:nth-child(7) { grid-column: span 2; }
  .custom-studio { gap: 5vw; }
  .racewear-banner { grid-template-columns: 1.2fr .8fr; }
  .checkout-shell { grid-template-columns: 1fr .75fr; }
}

@media (max-width: 820px) {
  :root { --pad: 1.25rem; }
  .utility-track { justify-content: flex-start; width: max-content; animation: none; transform: none; }
  .utility-set { display: flex; flex: none; padding: 0 1rem; }
  .utility-set[aria-hidden="true"] { display: none; }
  .header-actions .search-trigger, .cart-trigger > span:first-child { display: none; }
  .locale-switcher-desktop { display: none; }
  .locale-switcher-mobile { display: inline-flex; }
  .mobile-menu-foot { flex-wrap: wrap; gap: .75rem 1.1rem; }
  .mobile-menu-foot .locale-switcher { flex-basis: 100%; width: fit-content; }
  .cart-trigger { width: 44px; padding: 0; justify-content: center; }
  .cart-trigger svg { display: block; }
  .cart-trigger .cart-count { position: absolute; right: -1px; top: 1px; min-width: 17px; height: 17px; font-size: .5rem; clip-path: none; border-radius: 50%; }
  .site-header { height: 65px; }
  .header-actions { position: absolute; top: 50%; right: var(--pad); transform: translateY(-50%); }
  .hero { min-height: 700px; height: 100svh; }
  .hero-media { background-position: 70% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,7,8,.88), rgba(5,7,8,.2)), linear-gradient(0deg, rgba(5,7,8,.8), transparent 55%); }
  .hero-copy { top: 47%; width: calc(100% - 2.5rem); transform: translateY(-38%); }
  .hero h1 { font-size: clamp(3.6rem, 14vw, 6rem); }
  .hero-lede { max-width: 440px; }
  .hero-spec { left: var(--pad); right: auto; bottom: 2.2rem; text-align: left; }
  .hero-spec div { border-left: 0; border-right: 1px solid rgba(255,255,255,.24); padding-left: 0; padding-right: 1rem; order: -1; }
  .hero-spec-no { display: none; }
  .scroll-cue { display: none; }
  .bike-finder { padding-top: 2.2rem; }
  .finder-copy { display: block; }
  .finder-form { grid-template-columns: 1fr 1fr; }
  .finder-form .button { grid-column: span 2; }
  .featured-drop { display: block; }
  .drop-visual { min-height: 540px; height: 68vw; }
  .drop-copy { padding: 4rem var(--pad); }
  .shop-heading { display: block; }
  .shop-controls { margin-top: 1.6rem; }
  .search-field { width: 100%; }
  .product-image { aspect-ratio: 1; }
  .custom-studio { grid-template-columns: 1fr; min-height: auto; }
  .custom-steps { margin-top: 1rem; }
  .custom-number { font-size: 70vw; }
  .craft-section { grid-template-columns: 1fr; }
  .craft-image { min-height: 670px; height: 90vw; }
  .craft-copy { padding: 4.5rem var(--pad); }
  .racewear-banner { grid-template-columns: 1fr; }
  .racewear-image { min-height: 570px; height: 80vw; }
  .racewear-image::after { background: linear-gradient(0deg, var(--carbon), transparent 35%); }
  .racewear-copy { padding: 3.5rem var(--pad) 4.5rem; }
  .journal-heading { display: block; }
  .journal-heading p { margin-top: 1rem; }
  .journal-grid { grid-template-columns: 1fr; }
  .support-layout { grid-template-columns: 1fr; gap: 2.2rem; }
  .newsletter { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main { grid-template-columns: 1fr; }
  .checkout-shell { grid-template-columns: 1fr; }
  .checkout-summary { border-left: 0; border-top: 1px solid var(--line); }
  .checkout-dialog { width: calc(100vw - 1rem); max-height: calc(100dvh - .5rem); }
  .product-dialog-layout { grid-template-columns: 1fr; }
  .dialog-product-image { min-height: 380px; height: 58vw; max-height: 520px; }
}

@media (max-width: 560px) {
  .utility-track { gap: 1rem; }
  .hero { min-height: 650px; }
  .hero-copy { top: 43%; transform: translateY(-35%); }
  .hero h1 { font-size: clamp(2.65rem, 14.2vw, 4.8rem); line-height: .84; }
  .hero-lede { max-width: 340px; font-size: .88rem; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(310px, 100%); }
  .hero-actions .button { min-height: 48px; }
  .hero-spec { bottom: 1.3rem; }
  .finder-layout { padding-top: 2.5rem; }
  .finder-form { grid-template-columns: 1fr; }
  .finder-form .button { grid-column: auto; }
  .drop-visual { min-height: 390px; }
  .image-marker { display: none; }
  .shop-section { padding-top: 3.2rem; }
  .shop-heading { padding-top: 2.7rem; }
  .shop-heading h2 { font-size: 3.5rem; }
  .shop-controls { flex-direction: column; }
  .sort-field select { width: 100%; }
  .shop-controls { max-width: none; }
  .price-field { width: 100%; }
  .price-field input { flex: 1; }
  .filter-row { flex-wrap: nowrap; margin-left: calc(var(--pad) * -1); margin-right: calc(var(--pad) * -1); padding: 0 var(--pad) .65rem; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: thin; scrollbar-color: var(--race-red) #d7dadb; scroll-snap-type: inline proximity; }
  .filter-row::-webkit-scrollbar { height: 5px; }
  .filter-row::-webkit-scrollbar-track { background: #d7dadb; }
  .filter-row::-webkit-scrollbar-thumb { background: var(--race-red); }
  .filter-chip { scroll-snap-align: start; }
  .filter-chip { flex: 0 0 auto; }
  .product-grid { display: block; background: none; border: 0; }
  .product-card { margin-bottom: 1px; border: 1px solid #d2d4d5; }
  .product-card:nth-child(1) .product-image, .product-card:nth-child(7) .product-image { aspect-ratio: 1; }
  .product-quick { opacity: 1; transform: none; }
  .custom-copy h2 { font-size: 3.8rem; }
  .originals-media { min-height: 520px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.35fr .65fr; }
  .originals-media__feature { grid-column: 1 / -1; grid-row: auto; }
  .originals-media figcaption { display: block; font-size: .62rem; }
  .originals-media figcaption span { display: block; margin-top: .15rem; }
  .quality-grid strong { font-size: 1.85rem; }
  .craft-image { min-height: 520px; }
  .racewear-image { min-height: 430px; }
  .journal-image { aspect-ratio: 1.15; }
  .support-list summary { min-height: 72px; grid-template-columns: 32px 1fr auto; }
  .support-list details > div { padding-left: 0; padding-right: 1rem; }
  .article-hero { min-height: 300px; height: 58vw; }
  .newsletter { padding-top: 4rem; padding-bottom: 4rem; }
  .newsletter-form > div { grid-template-columns: 1fr; }
  .newsletter-form button { height: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom span:nth-child(2) { display: none; }
  .cart-item { grid-template-columns: 80px 1fr auto; padding-left: .8rem; padding-right: .8rem; }
  .cart-item-image { width: 80px; }
  .cart-assurances span:nth-child(2) { display: none; }
  .dialog-product-image { min-height: 300px; height: 72vw; }
  .dialog-product-info { padding: 2rem 1.2rem; }
  .dialog-product-info h2 { font-size: 2.75rem; }
  .personal-grid { grid-template-columns: 1fr; gap: 0; }
  .product-add-row { grid-template-columns: 76px minmax(0, 1fr); gap: .5rem; }
  .product-add-row .button { min-width: 0; gap: .5rem; padding-left: .8rem; padding-right: .8rem; }
  .product-specs { grid-template-columns: 1fr; }
  .checkout-main, .checkout-summary { padding: 1.5rem 1rem; }
  .two-col, .city-grid { grid-template-columns: 1fr; gap: 0; }
  .checkout-summary-item { grid-template-columns: 55px 1fr auto; }
  .checkout-summary-item img { width: 55px; height: 55px; }
  .order-success { padding: 2rem 1.2rem; }
}

@media (max-width: 360px) {
  .product-add-row { grid-template-columns: 1fr; }
  .dialog-quantity { min-height: 44px; }
  .article-body .text-link { width: 100%; min-width: 0; }
}

@media (hover: none) {
  .product-quick { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .utility-track { animation: none !important; transform: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-media { transform: none !important; }
}

/* 2026 route, media and component-system upgrade */
:root {
  --color-race-red: var(--race-red);
  --color-carbon: var(--carbon);
  --color-graphite: var(--graphite);
  --color-titanium: var(--silver);
  --color-frost: var(--frost);
  --color-white: #fff;
  --content-max: 1440px;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
}

.brand-logo-art {
  display: block;
  width: clamp(120px, 10vw, 164px);
  aspect-ratio: 5.25;
  background-image: url("/assets/logos/flsnd-logo-owner-web.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.site-footer .brand-logo-art { width: 164px; }
.is-route .site-header { color: #fff; background: rgba(9,12,14,.97); border-bottom-color: rgba(255,255,255,.12); }
.saved-trigger { position: relative; }
.saved-count { position: absolute; right: -2px; top: -2px; min-width: 17px; height: 17px; display: grid; place-items: center; padding: 0 4px; color: #fff; background: var(--race-red); border-radius: 999px; font: 800 .5rem var(--mono); }
.footer-pending { display: block; color: rgba(255,255,255,.48); font-size: .78rem; line-height: 1.5; }
.section-mount { display: none; }

/* Preserve the full semantic home while skipping layout/paint for distant sections. */
#main > .machine-explorer { content-visibility: auto; contain-intrinsic-size: auto 900px; }
#main > .latest-releases { content-visibility: auto; contain-intrinsic-size: auto 1250px; }
#main > .bike-finder { content-visibility: auto; contain-intrinsic-size: auto 720px; }
#main > .graphics-comparison { content-visibility: auto; contain-intrinsic-size: auto 920px; }
#main > .shop-section { content-visibility: auto; contain-intrinsic-size: auto 4200px; }
#main > .custom-studio, #main > .craft-section { content-visibility: auto; contain-intrinsic-size: auto 980px; }
#main > .racewear-banner, #main > .journal { content-visibility: auto; contain-intrinsic-size: auto 760px; }
#main > .support-section { content-visibility: auto; contain-intrinsic-size: auto 680px; }
#main > .newsletter { content-visibility: auto; contain-intrinsic-size: auto 440px; }

.hero-media { overflow: hidden; background: #0b0e10; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(5,7,8,.98) 0%, rgba(5,7,8,.88) 30%, rgba(5,7,8,.24) 58%, rgba(5,7,8,.12) 100%), linear-gradient(0deg, rgba(5,7,8,.62), transparent 44%); }
.hero-copy { width: min(820px, 60vw); }
.hero h1 { font-size: clamp(4rem, 6.2vw, 7.35rem); }
.hero-spec-no { color: rgba(255,255,255,.12); }

.machine-explorer { padding: clamp(5rem, 8vw, 8.5rem) var(--pad); color: #fff; background: #090c0e; overflow: hidden; }
.explorer-intro, .release-heading, .comparison-heading { width: min(100%, var(--content-max)); margin-inline: auto; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(2rem, 7vw, 7rem); margin-bottom: clamp(2.2rem, 4vw, 4.5rem); }
.explorer-intro h2, .release-heading h2, .comparison-heading h2 { margin: .55rem 0 0; font-size: clamp(4.3rem, 7.3vw, 8.4rem); line-height: .79; }
.explorer-intro h2 em { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.68); font-style: italic; }
.explorer-intro > p, .release-heading > p, .comparison-heading > p { max-width: 530px; margin: 0 0 .55rem; color: rgba(255,255,255,.68); font-size: .98rem; line-height: 1.75; }
.explorer-shell { width: min(100%, var(--content-max)); min-height: 690px; margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr); border: 1px solid rgba(255,255,255,.14); background: #111518; }
.explorer-stage { position: relative; min-width: 0; min-height: 620px; overflow: hidden; background: #07090a; }
.explorer-stage::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(90deg, transparent 55%, rgba(6,8,9,.62)); }
.explorer-stage img, .explorer-stage canvas { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 62% center; }
.explorer-poster-picture { width: 100%; height: 100%; display: block; }
.explorer-poster-noscript { position: absolute; z-index: 1; inset: 0; }
.explorer-stage canvas { position: absolute; inset: 0; z-index: 2; }
.explorer-watermark { position: absolute; z-index: 3; left: 1.5rem; bottom: 1.5rem; display: grid; grid-template-columns: auto auto; align-items: end; gap: .2rem .65rem; }
.explorer-watermark span, .explorer-watermark small { font: 700 .54rem var(--mono); letter-spacing: .15em; }
.explorer-watermark strong { grid-row: span 2; color: rgba(255,255,255,.15); font-family: var(--display); font-size: 5.4rem; font-style: italic; line-height: .7; }
.explorer-watermark small { color: var(--race-red); }
.explorer-loading { position: absolute; z-index: 4; right: 1rem; top: 1rem; max-width: 310px; padding: .75rem .85rem; color: rgba(255,255,255,.82); background: rgba(7,9,10,.82); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); font: 650 .58rem/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.explorer-controls { min-width: 0; display: flex; flex-direction: column; padding: clamp(1.4rem, 3vw, 2.4rem); background: #14191c; border-left: 1px solid rgba(255,255,255,.12); }
.explorer-control-head { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; color: rgba(255,255,255,.5); font: 700 .56rem var(--mono); letter-spacing: .12em; }
.explorer-control-head strong { color: var(--race-red); }
.explorer-controls > label { margin-bottom: .7rem; font: 800 .66rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.explorer-controls input[type="range"] { width: 100%; accent-color: var(--race-red); }
.explorer-controls input[type="range"]:disabled { opacity: .5; }
.explorer-controls > p { margin: .75rem 0 1.4rem; color: rgba(255,255,255,.56); font-size: .76rem; line-height: 1.6; }
.explorer-buttons { display: grid; gap: .55rem; margin-bottom: 1.5rem; }
.explorer-buttons .button { width: 100%; }
.explorer-buttons .button-ghost { min-height: 48px; }
.text-button { min-height: 44px; padding: .7rem; color: rgba(255,255,255,.7); background: transparent; border: 1px solid rgba(255,255,255,.15); font: 750 .6rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.explorer-parts { display: grid; gap: 1px; margin-top: auto; background: rgba(255,255,255,.1); }
.explorer-part { min-height: 58px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: .7rem; padding: .65rem .75rem; color: #fff; background: #101416; border: 0; text-align: left; }
.explorer-part:hover, .explorer-part[aria-pressed="true"] { background: #20272b; }
.explorer-part[aria-pressed="true"] { box-shadow: inset 3px 0 var(--race-red); }
.explorer-part > span:first-child { color: var(--race-red); font: 800 .58rem var(--mono); }
.explorer-part strong { display: block; font-family: var(--display); font-size: .9rem; letter-spacing: .02em; text-transform: uppercase; }
.explorer-part small { display: block; margin-top: .2rem; color: rgba(255,255,255,.48); font: .5rem var(--mono); letter-spacing: .07em; }
.explorer-part > b { color: rgba(255,255,255,.38); font-size: .75rem; }
.explorer-part-panel { margin-top: 1px; padding: 1rem; color: var(--ink); background: var(--frost); }
.explorer-parts__list { display: grid; gap: 1px; margin: 0; padding: 0; background: rgba(255,255,255,.1); list-style: none; }
.explorer-part-item { min-width: 0; background: #101416; }
.explorer-part-item[data-selected] { box-shadow: inset 3px 0 var(--race-red); }
.explorer-part__select { width: 100%; grid-template-columns: 28px minmax(0,1fr); }
.explorer-part__number { color: var(--race-red); font: 800 .58rem var(--mono); }
.explorer-part__summary { min-width: 0; }
.explorer-part__name { display: block; font-family: var(--display); font-size: .9rem; line-height: 1.05; text-transform: uppercase; }
.explorer-part__category { display: block; margin-top: .2rem; color: rgba(255,255,255,.48); font: .5rem var(--mono); letter-spacing: .07em; }
.explorer-part__metadata { display: grid; gap: .3rem; padding: .65rem .75rem; border-top: 1px solid rgba(255,255,255,.06); }
.explorer-part__meta { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.68); font: 600 .49rem/1.4 var(--mono); }
.explorer-part__meta-label { color: rgba(255,255,255,.56); text-transform: uppercase; }
.explorer-part__link { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem .75rem; color: #fff; background: #1a2023; font: 750 .52rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.explorer-part__link::after { color: var(--race-red); content: "↗"; }
.explorer-part__fallback { min-height: 70px; align-items: flex-start; flex-direction: column; justify-content: center; gap: .16rem; }
.explorer-part__fallback span, .explorer-part__fallback small { color: rgba(255,255,255,.48); font: 600 .49rem var(--mono); }
.explorer-part__fallback strong { font-family: var(--display); font-size: .9rem; }
.explorer-part-panel__title { margin: .4rem 0; font-size: 1.6rem; }
.explorer-part-panel__details { display: grid; gap: .35rem; color: var(--muted); font-size: .7rem; }
.explorer-part-panel__link { width: 100%; margin-top: .9rem; }

.latest-releases { padding: clamp(5rem, 8vw, 8rem) var(--pad); background: var(--frost); }
.latest-releases .section-kicker, .release-heading, .release-grid, .release-shop-link { width: min(100%, var(--content-max)); margin-inline: auto; }
.release-heading { margin-top: 3rem; color: var(--ink); }
.release-heading > p { color: var(--muted); }
.release-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 1px; background: #cbd0d2; border: 1px solid #cbd0d2; }
.release-card { min-width: 0; display: grid; grid-template-rows: auto 1fr; color: var(--ink); background: #fff; }
.release-card:first-child { grid-row: span 2; }
.release-card-media { position: relative; min-height: 260px; overflow: hidden; background: #dfe2e4; }
.release-card:first-child .release-card-media { min-height: 520px; }
.release-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-out); }
.release-card:hover img { transform: scale(1.018); }
.release-card-status { position: absolute; left: .8rem; top: .8rem; padding: .45rem .55rem; color: #fff; background: var(--carbon); font: 750 .5rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.release-card-copy { display: flex; justify-content: space-between; align-items: end; gap: 1rem; padding: 1rem 1.1rem 1.25rem; }
.release-card-copy span { color: var(--race-red); font: 700 .52rem var(--mono); letter-spacing: .1em; }
.release-card-copy h3 { margin: .48rem 0 .2rem; font-size: clamp(1.35rem, 2vw, 2rem); }
.release-card-copy p { margin: 0; color: var(--muted); font-size: .75rem; }
.release-card-copy a { min-width: 44px; min-height: 44px; display: grid; place-items: center; color: #fff; background: var(--carbon); font-size: 1rem; }
.release-shop-link { margin-top: 1.5rem; }

.graphics-comparison { padding: clamp(5rem, 8vw, 8rem) var(--pad); color: #fff; background: #0c0f11; }
.comparison-heading > p { color: rgba(255,255,255,.65); }
.comparison-grid { width: min(100%, var(--content-max)); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.15); }
.comparison-card { min-width: 0; background: #111619; }
.comparison-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e5e7e8; }
.comparison-media img { width: 100%; height: 100%; object-fit: cover; }
.comparison-media > span { position: absolute; left: .8rem; top: .8rem; padding: .45rem .55rem; color: #fff; background: rgba(8,10,11,.84); font: 700 .5rem var(--mono); letter-spacing: .09em; }
.comparison-media > strong { position: absolute; right: .7rem; bottom: -.8rem; color: rgba(255,255,255,.56); font-family: var(--display); font-size: 8rem; font-style: italic; line-height: 1; }
.comparison-copy { min-height: 210px; display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; padding: 1.4rem; }
.comparison-copy > div > span { color: var(--race-red); font: 700 .54rem var(--mono); letter-spacing: .12em; }
.comparison-copy h3 { margin: .55rem 0; font-size: 2.3rem; }
.comparison-copy p { max-width: 490px; margin: 0; color: rgba(255,255,255,.58); font-size: .78rem; line-height: 1.6; }

.custom-studio { grid-template-columns: .78fr 1fr; gap: 5vw; align-content: center; }
.custom-preview-demo { position: relative; z-index: 2; min-height: 300px; display: grid; grid-template-columns: .8fr 1.15fr .8fr; align-items: center; gap: .7rem; padding: 2rem; background: linear-gradient(140deg,#e6e8e9,#bfc4c7); border: 1px solid rgba(255,255,255,.16); clip-path: polygon(4% 0,100% 0,96% 100%,0 100%); }
.preview-panel { min-height: 170px; display: grid; place-content: center; padding: 1rem; color: var(--ink); background: #fff; clip-path: polygon(8% 0,100% 8%,92% 100%,0 92%); text-align: center; box-shadow: 0 18px 30px rgba(0,0,0,.18); }
.preview-panel-center { min-height: 220px; color: #fff; background: var(--race-red); }
.preview-panel strong { font-family: var(--display); font-size: 4.4rem; font-style: italic; line-height: .8; }
.preview-panel span, .preview-panel small, .preview-panel i { font: 750 .5rem var(--mono); letter-spacing: .12em; }
.custom-preview-demo > p { position: absolute; left: 2rem; right: 2rem; bottom: .7rem; margin: 0; color: #41484d; font: 650 .5rem var(--mono); letter-spacing: .09em; text-align: center; text-transform: uppercase; }
.custom-steps { grid-column: 2; }
.lighting-banner .racewear-image img { object-position: 62% center; }

.route-view { min-height: calc(100vh - 80px); padding: clamp(7rem, 10vw, 10rem) var(--pad) 6rem; background: var(--frost); }
.route-view:focus { outline: 0; }
.route-view h1[tabindex="-1"]:focus-visible, .order-success h2[tabindex="-1"]:focus-visible { outline: 0 !important; box-shadow: none !important; }
.route-view > * { width: min(100%, var(--content-max)); margin-inline: auto; }
.route-hero { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 5vw; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.route-hero h1 { margin: .45rem 0 0; font-size: clamp(4rem, 7vw, 8rem); line-height: .8; }
.route-hero p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.7; }
.route-breadcrumbs { margin-bottom: 1.2rem; color: var(--muted); font: 650 .56rem var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.route-breadcrumbs a { color: var(--ink); }
.route-view .shop-section, .route-view .bike-finder, .route-view .journal { width: 100%; padding-left: 0; padding-right: 0; }
.route-view .custom-studio { width: 100%; }
.route-view > .product-dialog-layout { min-height: 0; border: 1px solid var(--line); }
.route-view > .product-dialog-layout .dialog-product-info h1 { margin: 0 0 .8rem; font-size: clamp(3rem, 5vw, 5.8rem); }
.product-trust-row { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 1rem; }
.product-trust-row span { padding: .38rem .48rem; color: var(--ink); background: #edf0f1; border-left: 2px solid var(--race-red); font: 700 .5rem var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.product-pending { margin: 1rem 0; padding: 1.1rem; background: #f1f2f2; border-left: 4px solid var(--race-red); }
.product-pending strong { font-family: var(--display); font-size: 1.2rem; text-transform: uppercase; }
.product-pending p { color: var(--muted); line-height: 1.55; }
.product-gallery-thumbs { position: absolute; z-index: 4; left: 1rem; right: 1rem; bottom: 3.8rem; display: flex; gap: .45rem; }
.product-gallery-thumb { width: 62px; height: 62px; padding: 0; overflow: hidden; background: #fff; border: 2px solid transparent; }
.product-gallery-thumb.is-active { border-color: var(--race-red); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.route-article { max-width: 980px; }
.route-article-hero { position: relative; min-height: 420px; aspect-ratio: 16/9; overflow: hidden; background: var(--carbon); }
.route-article-hero img { width: 100%; height: 100%; object-fit: cover; }
.route-article-hero span { position: absolute; left: 1rem; bottom: 1rem; padding: .55rem .7rem; color: #fff; background: var(--race-red); font: 700 .55rem var(--mono); letter-spacing: .1em; }
.route-article-body { max-width: 780px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5.5rem) 0; }
.route-article-body h1 { margin: .7rem 0 1rem; font-size: clamp(3.5rem, 6vw, 6.5rem); line-height: .85; }
.route-article-body > p:not(.article-deck) { color: var(--muted); line-height: 1.85; }
.route-article-body blockquote { margin: 2.5rem 0; padding: 1.4rem 0 1.4rem 1.3rem; border-left: 4px solid var(--race-red); font: 900 clamp(1.7rem,3vw,2.6rem)/1 var(--display); text-transform: uppercase; }
.route-back { display: inline-block; margin-bottom: 2rem; color: var(--ink); font: 750 .56rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.route-cart { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.38fr); gap: clamp(1.5rem,4vw,4rem); align-items: start; }
.route-cart-item { display: grid; grid-template-columns: 150px minmax(0,1fr) auto; gap: 1.2rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.route-cart-media { width: 150px; aspect-ratio: 1; overflow: hidden; background: #dfe2e3; }
.route-cart-media img { width: 100%; height: 100%; object-fit: cover; }
.route-cart-item h2 { margin: .35rem 0; font-size: clamp(1.35rem,2vw,2.1rem); }
.route-cart-item p { margin: 0 0 .5rem; color: var(--muted); font-size: .75rem; }
.route-cart-controls { display: grid; grid-template-columns: 40px 38px 40px; align-items: center; border: 1px solid var(--line); }
.route-cart-controls button { min-height: 40px; padding: 0; background: #fff; border: 0; }
.route-cart-controls span { text-align: center; font: 700 .65rem var(--mono); }
.route-cart-controls button:last-child { grid-column: 1/-1; padding: .45rem; color: var(--muted); border-top: 1px solid var(--line); font: 700 .5rem var(--mono); text-transform: uppercase; }
.route-cart-summary { position: sticky; top: 100px; padding: 1.5rem; color: #fff; background: var(--carbon); }
.route-cart-summary > span { color: rgba(255,255,255,.55); font: 700 .55rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.route-cart-summary > strong { display: block; margin: .5rem 0; font: 900 2rem var(--display); }
.route-cart-summary p { color: rgba(255,255,255,.58); font-size: .7rem; line-height: 1.6; }
.route-cart-summary .button { width: 100%; margin-top: 1rem; }
.route-empty { padding: clamp(2rem,5vw,5rem); background: #fff; border: 1px solid var(--line); text-align: center; }
.route-empty h2 { font-size: clamp(2rem,4vw,4rem); }
.route-info-panel { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 1px; padding: 1px; background: var(--line); }
.route-info-panel > div { min-height: 110px; display: flex; flex-direction: column; justify-content: center; padding: 1.2rem; background: #fff; }
.route-info-panel span { color: var(--race-red); font: 700 .52rem var(--mono); letter-spacing: .1em; }
.route-info-panel strong { margin-top: .4rem; font-family: var(--display); font-size: 1.3rem; text-transform: uppercase; }
.route-checkout-mount { background: #fff; border: 1px solid var(--line); }
.route-checkout-mount .checkout-shell { min-height: 0; }
.route-checkout-mount .order-success { min-height: 600px; }
.route-legal { max-width: 820px; }
.route-legal h1 { font-size: clamp(3.5rem, 7vw, 6rem); }
.route-legal p, .route-legal li { color: var(--muted); line-height: 1.75; }

@media (max-width: 1100px) {
  .release-grid { grid-template-columns: 1fr 1fr; }
  .release-card:first-child { grid-row: auto; grid-column: span 2; }
  .release-card:first-child .release-card-media { min-height: 430px; }
  .explorer-shell { grid-template-columns: 1.25fr .75fr; }
  .custom-studio { grid-template-columns: 1fr; }
  .custom-steps { grid-column: auto; }
}

@media (max-width: 820px) {
  .site-header { gap: .35rem; padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right)); }
  .header-actions { gap: .15rem; }
  .header-actions .icon-button, .header-actions .cart-trigger { min-width: 44px; width: 44px; height: 44px; padding: 0; }
  .search-trigger, .saved-trigger { display: grid !important; }
  .brand-logo-art { width: 112px; }
  .hero { min-height: max(760px, 100svh); }
  .hero-media img { object-position: center bottom; }
  .hero-shade { background: linear-gradient(180deg, rgba(5,7,8,.82) 0%, rgba(5,7,8,.42) 42%, rgba(5,7,8,.86) 100%); }
  .hero-copy { top: 22%; width: calc(100vw - 2 * var(--pad)); transform: none; }
  .hero h1 { max-width: 92vw; font-size: clamp(2.9rem, 13.8vw, 5.6rem); line-height: .83; overflow-wrap: normal; }
  .hero-lede { max-width: 88vw; font-size: .88rem; line-height: 1.55; }
  .hero-spec { bottom: 1.4rem; }
  .scroll-cue { display: none; }
  .explorer-intro, .release-heading, .comparison-heading, .route-hero { grid-template-columns: 1fr; gap: 1.35rem; }
  .explorer-intro h2, .release-heading h2, .comparison-heading h2 { font-size: clamp(3.6rem, 15vw, 6rem); }
  .explorer-shell { grid-template-columns: 1fr; }
  .explorer-stage { min-height: auto; aspect-ratio: 4/5; }
  .explorer-stage img { object-position: center; }
  .explorer-stage::after { background: linear-gradient(0deg, rgba(6,8,9,.72), transparent 45%); }
  .explorer-controls { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .comparison-grid { grid-template-columns: 1fr; }
  .custom-preview-demo { min-height: 260px; padding: 1.1rem; }
  .preview-panel { min-height: 135px; }
  .preview-panel-center { min-height: 185px; }
  .preview-panel strong { font-size: 3.3rem; }
  .route-view { padding-top: 7rem; }
  .route-cart { grid-template-columns: 1fr; }
  .route-cart-summary { position: static; }
  .route-info-panel { grid-template-columns: 1fr; }
  .route-checkout-mount .checkout-shell { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .utility-bar:hover .utility-track, .utility-bar:focus-within .utility-track { animation-play-state: paused; }
  .header-actions .icon-button, .header-actions .cart-trigger { width: 42px; min-width: 42px; }
  .hero-actions { width: min(100%, 330px); }
  .machine-explorer, .latest-releases, .graphics-comparison { padding-inline: 1rem; }
  .release-grid { grid-template-columns: 1fr; }
  .release-card:first-child { grid-column: auto; }
  .release-card:first-child .release-card-media, .release-card-media { min-height: 340px; }
  .comparison-media { aspect-ratio: 1/1; }
  .comparison-copy { align-items: start; flex-direction: column; }
  .custom-preview-demo { grid-template-columns: .72fr 1fr .72fr; padding: .75rem; }
  .custom-preview-demo > p { left: .75rem; right: .75rem; }
  .route-view { padding-inline: 1rem; padding-bottom: max(4rem, env(safe-area-inset-bottom)); }
  .route-hero h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .route-cart-item { grid-template-columns: 92px minmax(0,1fr); gap: .8rem; }
  .route-cart-media { width: 92px; }
  .route-cart-controls { grid-column: 1/-1; width: 100%; grid-template-columns: 44px 1fr 44px auto; }
  .route-cart-controls button:last-child { grid-column: auto; border-top: 0; border-left: 1px solid var(--line); }
  .route-article-hero { min-height: 280px; aspect-ratio: 4/3; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: clamp(2.5rem, 12.8vw, 3.2rem); }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: 560px; }
  .hero-copy { top: 34%; }
  .hero h1 { font-size: clamp(2.6rem, 7vw, 4rem); }
  .hero-lede { margin-bottom: 1rem; }
  .hero-spec { display: none; }
  .mobile-menu { padding-top: max(.65rem, env(safe-area-inset-top)); padding-bottom: max(.65rem, env(safe-area-inset-bottom)); }
  .mobile-menu nav { flex: 0 0 auto; justify-content: flex-start; padding: .8rem 0; }
  .mobile-menu nav a { padding: .22rem 0; font-size: clamp(1.75rem, 8vh, 2.65rem); }
  .mobile-menu-foot { margin-top: auto; }
  .product-dialog, .checkout-dialog { max-height: calc(100dvh - .5rem); }
}

@media (forced-colors: active) {
  .button, .filter-chip, .explorer-part, .radio-card, .product-card { border: 1px solid ButtonText; }
  .button-primary, .product-badge, .saved-count { forced-color-adjust: none; }
}

/* 2026 client-presentation sprint: six calm home moments, one signature interaction. */
.utility-track {
  width: min(100%, 1440px);
  margin-inline: auto;
  justify-content: space-between;
  gap: 1.5rem;
  padding-inline: var(--pad);
}
.utility-set { gap: clamp(.75rem, 2vw, 2rem); }
.presentation-indicator { color: rgba(255,255,255,.46); font-size: .52rem; letter-spacing: .12em; }

body:not(.is-route) #main > .route-only-home { display: none !important; }
#main > [data-home-section] { content-visibility: auto; contain-intrinsic-size: auto 780px; }
#main > [data-home-section="hero"] { content-visibility: visible; contain: none; }

.hero { height: clamp(760px, 94svh, 1080px); }
.hero-grid { opacity: .075; }
.hero::after { opacity: .48; }
.hero-copy { top: 51%; width: min(730px, 52vw); }
.hero h1 { max-width: 720px; font-size: clamp(4rem, 6vw, 7.15rem); }
.hero-lede { max-width: 490px; }

.machine-explorer { padding-block: clamp(5.5rem, 8vw, 9rem); }
.explorer-intro { margin-bottom: clamp(2rem, 3.5vw, 3.6rem); }
.explorer-intro > p { max-width: 420px; }
.explorer-shell {
  min-height: 720px;
  grid-template-columns: minmax(0, 1.72fr) minmax(300px, .55fr);
  background: #0d1113;
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 34px 90px rgba(0,0,0,.35);
}
.explorer-stage { min-height: 720px; }
.explorer-stage::after { background: linear-gradient(90deg, transparent 68%, rgba(6,8,9,.42)); }
.explorer-controls { background: rgba(16,21,24,.98); }
.explorer-controls input[type="range"] { min-height: 44px; margin-block: -.4rem .15rem; }
.explorer-loading { max-width: 270px; backdrop-filter: none; }
.explorer-watermark strong { font-size: 4.2rem; }
.explorer-stage canvas { cursor: crosshair; }
.explorer-part__select { width: 100%; }
.explorer-part-panel { margin-bottom: 1rem; padding: 1.15rem; border-left: 3px solid var(--race-red); }
.explorer-part-panel__eyebrow { margin: 0; color: var(--race-red); font: 750 .52rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.explorer-part-panel__description { margin: .55rem 0 .8rem; color: var(--muted); font-size: .75rem; line-height: 1.55; }
.explorer-part-panel__close { width: 100%; margin-top: .5rem; color: var(--ink); border-color: rgba(11,14,16,.18); }

@media (min-width: 821px) {
  .explorer-shell {
    --explorer-desktop-height: clamp(620px, calc(100svh - 120px), 820px);
    height: var(--explorer-desktop-height);
    min-height: var(--explorer-desktop-height);
    align-items: stretch;
  }
  .explorer-stage,
  .explorer-controls {
    height: 100%;
    min-height: 0;
  }
  .explorer-stage { align-self: start; }
  .explorer-controls {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(239,32,41,.9) rgba(255,255,255,.08);
  }
  .explorer-controls::-webkit-scrollbar { width: 6px; }
  .explorer-controls::-webkit-scrollbar-track { background: rgba(255,255,255,.06); }
  .explorer-controls::-webkit-scrollbar-thumb {
    background: rgba(239,32,41,.9);
    border-radius: 999px;
  }
}

.latest-releases { padding-block: clamp(5.5rem, 8vw, 8.5rem); }
.release-heading { margin-top: clamp(2rem, 3vw, 3rem); }
.release-heading > p { max-width: 390px; }
.release-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.release-card:first-child { grid-column: auto; grid-row: auto; }
.release-card-media,
.release-card:first-child .release-card-media { min-height: 0; aspect-ratio: 1.18 / 1; }
.release-card-copy { min-height: 122px; align-items: center; }
.release-card-copy h3 { font-size: clamp(1.28rem, 1.75vw, 1.75rem); }
.release-card-copy p { line-height: 1.45; }
.release-card-status { max-width: calc(100% - 1.6rem); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.bike-finder { padding-block: clamp(3rem, 5vw, 5rem); }
.bike-finder > * { width: min(100%, var(--content-max)); margin-inline: auto; }
.finder-layout { grid-template-columns: minmax(250px, .62fr) minmax(0, 1.9fr); gap: clamp(2rem, 5vw, 5rem); padding-top: clamp(2rem, 3vw, 3rem); }
.finder-copy h2 { font-size: clamp(3rem, 4.4vw, 5.4rem); }
.finder-copy p { max-width: 360px; }
.finder-form .button { min-width: 210px; }

.custom-studio {
  min-height: 720px;
  grid-template-columns: minmax(310px, .68fr) minmax(0, 1.32fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-block: clamp(5rem, 8vw, 8rem);
  background: #0b0e10;
}
.custom-studio::before { opacity: .075; }
.custom-number { right: auto; left: -2vw; color: rgba(255,255,255,.018); font-size: 34vw; -webkit-text-stroke-color: rgba(255,255,255,.05); }
.custom-copy h2 { font-size: clamp(3.7rem, 5.6vw, 6.8rem); }
.custom-copy > p { max-width: 480px; line-height: 1.65; }
.custom-campaign-media {
  position: relative;
  z-index: 2;
  min-height: 520px;
  overflow: hidden;
  background: #111518;
  border: 1px solid rgba(255,255,255,.14);
  clip-path: polygon(2.2% 0,100% 0,100% 94%,97.8% 100%,0 100%,0 6%);
}
.custom-campaign-media::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(90deg, rgba(7,9,10,.34), transparent 35%), linear-gradient(0deg, rgba(7,9,10,.45), transparent 36%); }
.custom-campaign-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center; }
.custom-identity-overlay { position: absolute; z-index: 2; left: 1.4rem; bottom: 1.4rem; display: grid; grid-template-columns: auto auto; align-items: end; gap: .1rem .65rem; color: #fff; }
.custom-identity-overlay span,
.custom-identity-overlay small { font: 700 .52rem var(--mono); letter-spacing: .12em; }
.custom-identity-overlay strong { grid-row: span 2; color: var(--race-red); font: 950 4.8rem/.72 var(--display); font-style: italic; }
.concept-caption { position: absolute; z-index: 2; right: 1rem; bottom: 1rem; color: rgba(255,255,255,.6); font: 650 .48rem var(--mono); letter-spacing: .09em; }

.originals-media {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.originals-media figure { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: #e8e9e9; }
.originals-media__feature { grid-row: 1 / -1; }
.originals-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease-out); }
.originals-media figure:hover img { transform: scale(1.018); }
.originals-media figcaption { position: absolute; z-index: 2; left: .75rem; right: .75rem; bottom: .7rem; display: flex; justify-content: space-between; gap: .75rem; padding-top: .5rem; color: #fff; border-top: 1px solid rgba(255,255,255,.45); font: 850 .72rem var(--display); letter-spacing: .04em; text-shadow: 0 1px 8px rgba(0,0,0,.75); }
.originals-media figcaption span { font: 650 .45rem var(--mono); letter-spacing: .1em; }
.originals-media figure::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(0deg, rgba(5,7,8,.68), transparent 38%); }
.originals-media .concept-caption { right: .8rem; top: .75rem; bottom: auto; padding: .35rem .45rem; background: rgba(5,7,8,.72); }

.home-trust { display: grid; grid-template-columns: repeat(3, 1fr); color: #fff; background: #111518; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.home-trust a { min-width: 0; min-height: 128px; display: grid; grid-template-columns: 1fr auto; align-content: center; gap: .5rem 1rem; padding: 1.7rem var(--pad); border-right: 1px solid rgba(255,255,255,.1); transition: background .2s var(--ease-out); }
.home-trust a:last-child { border-right: 0; }
.home-trust a:hover { background: #1a2023; }
.home-trust span { grid-column: 1 / -1; color: var(--race-red); font: 700 .52rem var(--mono); letter-spacing: .11em; }
.home-trust strong { font: 850 clamp(1rem, 1.5vw, 1.35rem) var(--display); letter-spacing: .02em; text-transform: uppercase; }
.home-trust b { color: rgba(255,255,255,.55); font-weight: 400; }

.footer-newsletter { display: grid; grid-template-columns: .65fr 1fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); padding: 2rem var(--pad); border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-newsletter > div > span { color: var(--race-red); font: 700 .56rem var(--mono); letter-spacing: .13em; }
.footer-newsletter > div > p { margin: .4rem 0 0; color: rgba(255,255,255,.55); font-size: .78rem; }
.footer-newsletter .newsletter-form { display: grid; grid-template-columns: 1fr; }
.footer-newsletter .newsletter-form > div { display: grid; grid-template-columns: 1fr auto; background: #fff; }
.footer-newsletter .newsletter-form input { min-width: 0; height: 50px; padding: 0 1rem; border: 0; }
.footer-newsletter .newsletter-form button { min-width: 154px; color: #fff; background: var(--race-red); border: 0; font: 800 .58rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.footer-newsletter .form-message { min-height: 1.2rem; margin: .35rem 0 0; color: rgba(255,255,255,.58); font-size: .68rem; }

@media (max-width: 1100px) {
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .release-card:first-child { grid-column: auto; }
  .release-card:first-child .release-card-media { min-height: 0; }
  .explorer-shell { grid-template-columns: minmax(0, 1.2fr) minmax(290px, .62fr); }
  .custom-studio { grid-template-columns: .78fr 1.22fr; }
}

@media (max-width: 820px) {
  .utility-track { width: 100%; padding-inline: 1rem; }
  .utility-set span:nth-of-type(n+2), .utility-set i:nth-of-type(n+2) { display: none; }
  .presentation-indicator { margin-left: auto; font-size: .47rem; }
  .hero { min-height: max(700px, 94svh); height: max(700px, 94svh); }
  .hero-copy { top: 20%; width: calc(100vw - 2 * var(--pad)); }
  .hero h1 { font-size: clamp(3rem, 13vw, 5.4rem); }
  .explorer-shell { grid-template-columns: 1fr; min-height: 0; }
  .explorer-stage { min-height: 0; aspect-ratio: 4 / 3; }
  .explorer-controls { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  #explorer[data-explorer-mode="concept"] .explorer-loading {
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  .finder-layout { grid-template-columns: 1fr; }
  .custom-studio { grid-template-columns: 1fr; min-height: 0; }
  .custom-campaign-media, .custom-campaign-media img { min-height: 430px; }
  .home-trust { grid-template-columns: 1fr; }
  .home-trust a { min-height: 96px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .home-trust a:last-child { border-bottom: 0; }
  .footer-newsletter { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 560px) {
  .presentation-indicator { max-width: 135px; overflow: hidden; text-overflow: ellipsis; }
  .hero { min-height: max(660px, 94svh); }
  .hero-copy { top: 18%; }
  .hero h1 { font-size: clamp(2.8rem, 13.4vw, 4.5rem); }
  .machine-explorer, .latest-releases { padding-block: 4.6rem; }
  .explorer-stage { aspect-ratio: 4 / 3; }
  .release-grid { grid-template-columns: 1fr; }
  .release-card-media,
  .release-card:first-child .release-card-media { min-height: 0; aspect-ratio: 1.16 / 1; }
  .release-card-copy { min-height: 108px; }
  .finder-form .button { min-width: 0; min-height: 56px; }
  .custom-studio { padding-inline: 1rem; }
  .custom-copy h2 { font-size: clamp(3.2rem, 16vw, 4.5rem); }
  .custom-campaign-media, .custom-campaign-media img { min-height: 330px; }
  .custom-campaign-media img { object-position: 58% center; }
  .custom-identity-overlay strong { font-size: 3.5rem; }
  .concept-caption { display: none; }
  .footer-newsletter .newsletter-form > div { grid-template-columns: 1fr; }
  .footer-newsletter .newsletter-form button { min-height: 48px; }
}

@media (max-width: 360px) {
  .hero h1 { max-width: 100%; font-size: clamp(2.15rem, 10.7vw, 2.5rem); letter-spacing: -.06em; }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: 560px; height: 100svh; }
  .hero-copy { top: 31%; }
  .hero-actions { flex-direction: row; width: auto; }
  .explorer-stage { aspect-ratio: 16 / 9; }
}

@media (prefers-reduced-motion: reduce) {
  .release-card-media img,
  .home-trust a { transition: none !important; }
}

/* Explorer precision pass: cinematic source ratio, compact commerce controls. */
.machine-explorer {
  --explorer-panel-width: clamp(300px, 23vw, 352px);
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.035), transparent 34%),
    #090c0e;
}

.explorer-shell {
  position: relative;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) var(--explorer-panel-width);
  align-items: stretch;
  isolation: isolate;
  border-color: rgba(255,255,255,.13);
  background: #090c0e;
  box-shadow: 0 30px 86px rgba(0,0,0,.42);
}

.explorer-stage {
  min-height: 0;
  overflow: hidden;
  background: #080b0d;
}

.explorer-stage::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.045);
  box-shadow: inset 0 0 90px rgba(0,0,0,.2);
}

.explorer-stage::after {
  z-index: 3;
  background:
    linear-gradient(90deg, transparent 73%, rgba(5,7,8,.22)),
    linear-gradient(0deg, rgba(5,7,8,.12), transparent 22%);
}

.explorer-stage img,
.explorer-stage canvas {
  object-position: center;
}

.explorer-stage canvas {
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}

.explorer-stage canvas:active { cursor: grabbing; }

.explorer-concept-badge,
.explorer-loading {
  pointer-events: none;
}

.explorer-concept-badge {
  position: absolute;
  z-index: 5;
  left: clamp(.75rem, 1.5vw, 1.35rem);
  bottom: clamp(.7rem, 1.5vw, 1.25rem);
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .48rem .62rem;
  color: rgba(255,255,255,.64);
  background: rgba(7,10,12,.64);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  font: 700 .62rem/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.explorer-concept-badge i {
  width: 5px;
  height: 5px;
  background: var(--race-red);
  transform: rotate(45deg);
}

#explorer[data-explorer-approval="concept"] .explorer-concept-badge { display: flex; }

.explorer-loading {
  right: 1rem;
  top: 1rem;
  max-width: min(300px, calc(100% - 2rem));
  padding: .7rem .8rem;
  color: rgba(255,255,255,.78);
  background: rgba(7,9,10,.8);
  border-color: rgba(255,255,255,.13);
  font-size: .53rem;
}

#explorer:not([data-explorer-mode="initializing"]):not([data-explorer-mode="loading"]):not([data-explorer-mode="fallback"]) .explorer-loading {
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.explorer-controls {
  position: relative;
  min-height: 0;
  padding: clamp(1rem, 1.7vw, 1.5rem);
  overflow: visible;
  overscroll-behavior: auto;
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 42%),
    #12171a;
  border-left-color: rgba(255,255,255,.1);
}

.explorer-control-head {
  align-items: center;
  margin-bottom: .78rem;
  padding-bottom: .72rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.explorer-control-head strong {
  min-width: 3.25rem;
  padding: .32rem .4rem;
  color: #fff;
  background: var(--race-red);
  text-align: center;
}

.explorer-controls > label {
  margin-bottom: .1rem;
  color: rgba(255,255,255,.88);
}

.explorer-range-wrap { width: 100%; }

.explorer-controls input[type="range"] {
  width: 100%;
  min-height: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  accent-color: var(--race-red);
  border: 0;
  border-radius: 0;
  outline: 0;
  background:
    linear-gradient(90deg,
      var(--race-red) 0,
      var(--race-red) calc(var(--explorer-progress, 0) * 100%),
      rgba(255,255,255,.2) calc(var(--explorer-progress, 0) * 100%),
      rgba(255,255,255,.2) 100%) center / 100% 2px no-repeat;
}

.explorer-controls input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: transparent;
}

.explorer-controls input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -9px;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 5px solid var(--race-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(223,24,34,.15), 0 2px 10px rgba(0,0,0,.45);
}

.explorer-controls input[type="range"]::-moz-range-track {
  height: 2px;
  background: rgba(255,255,255,.2);
  border: 0;
}

.explorer-controls input[type="range"]::-moz-range-progress {
  height: 2px;
  background: var(--race-red);
}

.explorer-controls input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 5px solid var(--race-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(223,24,34,.15), 0 2px 10px rgba(0,0,0,.45);
}

.explorer-controls input[type="range"]:disabled {
  opacity: .42;
  cursor: wait;
}

.explorer-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: -.35rem;
  color: rgba(255,255,255,.4);
  font: 650 .625rem/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.explorer-controls > p {
  margin: .72rem 0 .9rem;
  color: rgba(255,255,255,.53);
  font-size: .69rem;
  line-height: 1.45;
}

.explorer-buttons {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .45rem;
  margin-bottom: .9rem;
}

.explorer-buttons #explorerLoad { grid-column: 1 / -1; }
.explorer-buttons .button,
.explorer-buttons .text-button {
  min-width: 0;
  min-height: 44px;
  padding-inline: .8rem;
}
.explorer-buttons .button { gap: .65rem; }
.explorer-buttons .button-ghost { min-height: 44px; }
.explorer-buttons .text-button { white-space: nowrap; }

.explorer-parts {
  margin-top: 0;
  background: rgba(255,255,255,.08);
}

.explorer-parts__list { gap: 1px; }

.explorer-part-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: stretch;
}

.explorer-part-item:not([data-explorer-part-item]) { grid-template-columns: 1fr; }

.explorer-part-item[data-selected] {
  box-shadow: inset 3px 0 var(--race-red);
}

.explorer-part {
  min-height: 52px;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: .55rem;
  padding: .55rem .65rem;
}

.explorer-part > b { display: none; }
.explorer-part__name { overflow: hidden; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.explorer-part__category { overflow: hidden; font-size: .625rem; text-overflow: ellipsis; white-space: nowrap; }

.explorer-part__metadata {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.explorer-part__link {
  min-width: 44px;
  min-height: 52px;
  padding: 0;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  border-left: 1px solid rgba(255,255,255,.07);
}

.explorer-part__link::after {
  color: rgba(255,255,255,.7);
  font-size: .75rem;
}

.explorer-part__link:hover::after,
.explorer-part__link:focus-visible::after { color: var(--race-red); }

.explorer-part__fallback {
  position: relative;
  grid-column: 1 / -1;
  min-height: 68px;
  align-items: flex-start;
  justify-content: center;
  gap: .16rem;
  padding: .65rem .75rem;
  color: #fff;
  font-size: .52rem;
  border-left: 0;
}

.explorer-part__fallback::after {
  position: absolute;
  right: .8rem;
  color: rgba(255,255,255,.55);
  font-size: .75rem;
}

.explorer-part-panel {
  z-index: 7;
  margin: 0;
  padding: 1.1rem;
  color: var(--ink);
  background: rgba(246,247,246,.98);
  border: 0;
  border-top: 3px solid var(--race-red);
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
}

.explorer-part-panel__title {
  margin: .38rem 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: .95;
  text-wrap: balance;
}

.explorer-part-panel__description {
  margin: .55rem 0 .75rem;
  color: #565e63;
  font-size: .72rem;
  line-height: 1.5;
}

.explorer-part-panel__details {
  gap: 0;
  color: #30363a;
  border-top: 1px solid rgba(11,14,16,.12);
}

.explorer-part-panel .explorer-part__meta {
  display: grid;
  grid-template-columns: minmax(72px, .7fr) minmax(0, 1.3fr);
  gap: .65rem;
  padding: .42rem 0;
  color: #30363a;
  border-bottom: 1px solid rgba(11,14,16,.1);
  font-size: .675rem;
}

.explorer-part-panel .explorer-part__meta-label {
  color: #70777b;
}

.explorer-part-panel .explorer-part__meta-value {
  color: #202528;
  font-weight: 750;
  text-align: right;
}

.explorer-part-panel__link,
.explorer-part-panel__close { min-height: 44px; }
.explorer-part-panel__link { margin-top: .8rem; }
.explorer-part-panel__close { margin-top: .4rem; }

.explorer-part-panel__media {
  margin: .7rem 0 .9rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11,14,16,.1);
}

.explorer-part-panel__media img {
  width: 100%;
  height: 100%;
  padding: .7rem;
  object-fit: contain;
}

@media (min-width: 1201px) {
  .explorer-shell {
    height: clamp(500px, 39vw, 650px);
  }

  .explorer-stage,
  .explorer-controls {
    height: 100%;
    min-height: 0;
  }

  .explorer-controls {
    overflow: visible;
    overscroll-behavior: auto;
    scrollbar-width: auto;
  }

  .explorer-controls:has(.explorer-part-panel:not([hidden])) > p { display: none; }

  .explorer-part-panel {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    max-height: none;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: .48rem .7rem;
    padding: .8rem;
    overflow: visible;
  }

  .explorer-part-panel:not([hidden]) ~ .explorer-parts { display: none; }

  .explorer-part-panel__eyebrow,
  .explorer-part-panel__details { grid-column: 1 / -1; }

  .explorer-part-panel__eyebrow { padding-right: 2.5rem; }

  .explorer-part-panel__media {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 88px;
    height: 78px;
    margin: 0;
    aspect-ratio: auto;
  }

  .explorer-part-panel__media img { padding: .35rem; }

  .explorer-part-panel__title {
    grid-column: 2;
    margin: 0;
    font-size: 1.22rem;
    align-self: end;
  }

  .explorer-part-panel__description {
    grid-column: 2;
    margin: 0;
    font-size: .66rem;
    line-height: 1.35;
    align-self: start;
  }

  .explorer-part-panel .explorer-part__meta { padding: .28rem 0; font-size: .625rem; }
  .explorer-part-panel__link {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
  }

  .explorer-part-panel__close {
    position: absolute;
    top: .3rem;
    right: .3rem;
    width: 44px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    border: 0;
  }

  .explorer-part-panel__close::after {
    content: "×";
    color: var(--ink);
    font: 400 1.25rem/1 sans-serif;
  }
}

@media (max-width: 1200px) {
  .explorer-shell {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .explorer-stage {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1672 / 941;
  }

  .explorer-controls {
    display: flex;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 0;
  }

  .explorer-part-panel {
    order: 0;
    margin: 0 0 1rem;
  }

  .explorer-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .explorer-parts__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .machine-explorer { --explorer-panel-width: 100%; }
  .explorer-intro { margin-bottom: 1.6rem; }
  .explorer-intro > p { line-height: 1.6; }
  .explorer-stage { aspect-ratio: 16 / 10; }
  .explorer-stage::after { background: linear-gradient(0deg, rgba(5,7,8,.17), transparent 28%); }
  .explorer-concept-badge { left: .65rem; bottom: .6rem; padding: .46rem .56rem; font-size: .6rem; }
  .explorer-controls { padding: 1rem; }
  .explorer-part-panel { margin: 0 0 1rem; }
  .explorer-parts__list { grid-template-columns: 1fr; }
  .explorer-part { min-height: 56px; }
  .explorer-part__link { min-height: 56px; }
  .dialog-product-index { top: 1rem; bottom: auto; }
}

@media (max-width: 430px) {
  .presentation-indicator { display: none; }
}

@media (max-height: 560px) and (orientation: landscape) {
  .explorer-stage { aspect-ratio: 16 / 9; }
}

@media (prefers-reduced-motion: reduce) {
  .explorer-stage canvas,
  .explorer-part-panel,
  .explorer-controls input[type="range"] { transition: none !important; }
}

@media (forced-colors: active) {
  .explorer-controls input[type="range"] { forced-color-adjust: auto; }
  .explorer-concept-badge,
  .explorer-part-panel { border: 1px solid CanvasText; }
}
