:root {
  --ink: #080a0e;
  --ink-soft: #11141a;
  --paper: #f3f0e8;
  --paper-deep: #e8e4da;
  --line: rgba(8, 10, 14, 0.16);
  --line-light: rgba(243, 240, 232, 0.2);
  --muted: #74736f;
  --muted-light: #a8a9a5;
  --lime: #d8ff61;
  --violet: #8f7bff;
  --orange: #ff795c;
  --blue: #93d6ff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Space Grotesk", Arial, sans-serif;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

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

body.is-loading {
  overflow: hidden;
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

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

.loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 16px;
  background: var(--ink);
  color: var(--paper);
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader__brand {
  font: 600 13px var(--display);
  letter-spacing: 0.22em;
  text-align: center;
}

.loader__brand span {
  color: var(--lime);
}

.loader__line {
  width: 150px;
  height: 1px;
  overflow: hidden;
  background: rgba(243, 240, 232, 0.2);
}

.loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: translateX(-100%);
  animation: loading-line 1.3s var(--ease-out) forwards;
}

.loader p {
  margin: 0;
  color: var(--muted-light);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

@keyframes loading-line {
  to {
    transform: translateX(0);
  }
}

.cursor {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(216, 255, 97, 0.75);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.3s ease, background 0.25s ease;
}

.cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-50%, -50%);
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-hovering {
  width: 48px;
  height: 48px;
  background: rgba(216, 255, 97, 0.11);
}

.site-nav {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1360px, calc(100% - 64px));
  height: 94px;
  margin: auto;
  color: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.brand__mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 600 13px var(--display);
  letter-spacing: -0.1em;
}

.brand__word span {
  color: var(--lime);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.4vw, 52px);
  margin-left: 8vw;
}

.desktop-nav a {
  position: relative;
  color: rgba(243, 240, 232, 0.68);
  font-size: 11px;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--paper);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a span {
  margin-left: 4px;
  color: var(--muted-light);
  font-size: 8px;
  vertical-align: super;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 11px 0 11px 18px;
  border-left: 1px solid rgba(243, 240, 232, 0.28);
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrow {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.35s var(--ease-out), background 0.35s ease, color 0.35s ease;
}

a:hover .arrow,
button:hover .arrow {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(45deg);
}

.arrow--small {
  width: 25px;
  height: 25px;
  border-color: rgba(243, 240, 232, 0.4);
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 8px 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 0.25s ease;
}

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 77% 38%, rgba(43, 57, 52, 0.8), transparent 27%), radial-gradient(circle at 18% 82%, rgba(27, 39, 48, 0.72), transparent 25%);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background-image: linear-gradient(rgba(243, 240, 232, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(243, 240, 232, 0.055) 1px, transparent 1px);
  background-size: 75px 75px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 85%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  min-height: min(940px, 100svh);
  padding-top: 76px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 70px 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(216, 255, 97, 0.12);
}

.eyebrow--light {
  color: var(--muted-light);
}

.hero .eyebrow {
  color: rgba(243, 240, 232, 0.62);
}

.hero-title {
  max-width: 680px;
  margin: 29px 0 25px;
  font: 500 clamp(64px, 8.1vw, 123px) / 0.87 var(--display);
  letter-spacing: -0.085em;
}

.hero-title__line {
  display: block;
  white-space: nowrap;
}

.hero-title__line--accent {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 1.03em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.1em;
  transform: translateX(0.35em);
}

.hero-title__dot {
  color: var(--paper);
}

.hero__intro {
  max-width: 390px;
  margin: 0;
  color: rgba(243, 240, 232, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 21px;
  min-height: 52px;
  padding: 5px 5px 5px 20px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.button--lime {
  background: var(--lime);
  color: var(--ink);
}

.button--lime:hover {
  background: var(--paper);
}

.button--lime .arrow {
  border-color: rgba(8, 10, 14, 0.3);
}

.button--outline {
  border-color: var(--line);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button--light {
  border-color: rgba(243, 240, 232, 0.35);
  color: var(--paper);
}

.button--light:hover {
  background: var(--lime);
  color: var(--ink);
}

.button--light .arrow {
  border-color: rgba(243, 240, 232, 0.4);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero .text-link {
  color: var(--paper);
}

.play-icon {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 7px;
  transition: background 0.3s ease, color 0.3s ease;
}

.text-link:hover .play-icon {
  background: var(--lime);
  color: var(--ink);
}

.text-link--light {
  color: var(--paper);
}

.text-link--light .arrow {
  width: 27px;
  height: 27px;
  margin-left: 3px;
  border-color: rgba(243, 240, 232, 0.35);
  font-size: 14px;
}

.hero__meta {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  margin-top: 75px;
}

.hero__meta > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero__meta strong {
  color: var(--lime);
  font: 400 23px / 1 var(--display);
  letter-spacing: -0.06em;
}

.hero__meta span {
  color: rgba(243, 240, 232, 0.44);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: min(700px, 77vh);
  margin: 2vh 0 0 -4%;
}

.hero__image-frame {
  position: absolute;
  z-index: 1;
  top: 4%;
  right: 0;
  width: 75%;
  height: 89%;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 87%, 86% 100%, 0 100%, 0 11%);
  background: #252c2b;
}

.hero__image-frame img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.6) contrast(1.08) brightness(0.8);
  transform: scale(1.04);
}

.hero__image-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 10, 14, 0.66), transparent 53%), linear-gradient(0deg, rgba(8, 10, 14, 0.72), transparent 42%);
}

.hero__canvas-wrap {
  position: absolute;
  z-index: 2;
  bottom: 1%;
  left: -5%;
  width: 67%;
  height: 71%;
  overflow: hidden;
  pointer-events: none;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.98;
}

.canvas-label {
  position: absolute;
  top: 16px;
  left: 19px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(243, 240, 232, 0.72);
  font: 9px var(--display);
  letter-spacing: 0.11em;
}

.canvas-label small {
  margin-left: 5px;
  color: var(--lime);
  font-size: 8px;
}

.pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(216, 255, 97, 0.12);
}

.hero__vertical-label {
  position: absolute;
  z-index: 3;
  top: 20%;
  right: -21px;
  color: rgba(243, 240, 232, 0.45);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.hero__visual-index {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 14%;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font: 10px var(--display);
}

.hero__visual-index i {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--lime);
}

.hero__stamp {
  position: absolute;
  z-index: 3;
  right: 19%;
  bottom: 4%;
  color: var(--lime);
  font: 700 9px / 1 var(--display);
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.hero__stamp em {
  font: italic 18px var(--serif);
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: max(28px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(243, 240, 232, 0.45);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__scroll i {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--lime);
}

.ticker {
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 47px;
  gap: 28px;
  padding-left: 28px;
  animation: ticker-slide 28s linear infinite;
  font: 600 11px var(--display);
  letter-spacing: 0.13em;
}

.ticker__track b {
  font-size: 13px;
  font-weight: 400;
}

@keyframes ticker-slide {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 125px 0;
}

.bikes-section {
  background: var(--paper);
}

.section-topline {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font: 9px var(--display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-number {
  color: var(--ink);
  font-weight: 600;
}

.section-caption--right {
  margin-left: auto;
}

.section-rule {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-topline--light {
  color: var(--muted-light);
}

.section-topline--light .section-number {
  color: var(--paper);
}

.section-topline--light .section-rule {
  background: var(--line-light);
}

.section-topline--stacked {
  display: block;
}

.section-topline--stacked .section-caption {
  display: block;
  margin-top: 12px;
}

.section-heading {
  margin-top: 50px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.gallery-heading h2,
.contact-copy h2,
.faq-intro h2 {
  margin: 19px 0 0;
  color: var(--ink);
  font: 500 clamp(54px, 6.5vw, 94px) / 0.88 var(--display);
  letter-spacing: -0.08em;
}

.section-heading h2 em,
.gallery-heading h2 em,
.contact-copy h2 em,
.faq-intro h2 em {
  color: var(--violet);
  font-family: var(--serif);
  font-size: 0.98em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.11em;
}

.section-heading--split > p,
.gallery-heading > p {
  max-width: 315px;
  margin: 0 0 5px auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.bike-slider {
  margin-top: 69px;
}

.bike-slider__viewport {
  overflow: hidden;
  margin-right: -1px;
}

.bike-slider__track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.bike-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  overflow: hidden;
  border: 1px solid rgba(8, 10, 14, 0.12);
  background: #e9e5db;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s ease;
}

.bike-card:hover {
  box-shadow: 0 22px 55px rgba(8, 10, 14, 0.12);
  transform: translateY(-8px);
}

.bike-card--lime {
  --card-accent: var(--lime);
}

.bike-card--violet {
  --card-accent: var(--violet);
}

.bike-card--orange {
  --card-accent: var(--orange);
}

.bike-card--blue {
  --card-accent: var(--blue);
}

.bike-card__top {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(243, 240, 232, 0.75);
  font: 9px var(--display);
  letter-spacing: 0.1em;
}

.bike-card__top span:last-child {
  color: var(--card-accent);
}

.bike-card__image {
  position: relative;
  height: 305px;
  overflow: hidden;
  background: #252a2b;
}

.bike-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.35), transparent 35%, rgba(8, 10, 14, 0.3));
  content: "";
}

.bike-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06) brightness(0.75);
  transition: transform 0.8s var(--ease-out), filter 0.8s ease;
}

.bike-card:hover .bike-card__image img {
  filter: saturate(0.88) contrast(1.05) brightness(0.82);
  transform: scale(1.08);
}

.bike-card__tag {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 16px;
  padding: 6px 8px;
  background: var(--card-accent);
  color: var(--ink);
  font: 9px var(--display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bike-card__body {
  padding: 21px 20px 20px;
}

.bike-card__body h3 {
  margin: 0;
  font: 600 30px / 1 var(--display);
  letter-spacing: -0.08em;
}

.bike-card__body h3 em {
  color: var(--muted);
  font: italic 25px var(--serif);
  letter-spacing: -0.05em;
}

.bike-card__body p {
  min-height: 45px;
  margin: 12px 0 19px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.bike-card__specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 9px var(--display);
  letter-spacing: 0.02em;
}

.bike-card__specs strong {
  color: var(--ink);
  font-size: 12px;
}

.bike-slider__controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.slider-progress {
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(8, 10, 14, 0.15);
}

.slider-progress span {
  display: block;
  width: 25%;
  height: 2px;
  background: var(--ink);
  transition: width 0.5s var(--ease-out);
}

.slider-count {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-width: 53px;
  font: 11px var(--display);
}

.slider-count strong {
  font-size: 19px;
  letter-spacing: -0.08em;
}

.slider-count span {
  color: var(--muted);
  font-size: 9px;
}

.slider-arrows {
  display: flex;
  gap: 8px;
}

.slider-arrow {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(8, 10, 14, 0.22);
  border-radius: 50%;
  background: transparent;
  font-size: 16px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.slider-arrow--active,
.slider-arrow:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--lime);
}

.slider-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.25;
}

.lab-section {
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--paper);
}

.lab-section__glow {
  position: absolute;
  top: -35%;
  right: -10%;
  width: 52vw;
  height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 77, 191, 0.2), transparent 67%);
  filter: blur(16px);
  pointer-events: none;
}

.lab-section .section-number {
  color: var(--paper);
}

.lab-section .section-heading {
  position: relative;
  z-index: 1;
}

.lab-section .section-heading h2 {
  color: var(--paper);
}

.lab-section .section-heading h2 em {
  color: var(--lime);
}

.lab-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
  margin-top: 74px;
}

.lab-showcase__visual {
  position: relative;
  min-height: 570px;
}

.lab-showcase__image {
  height: 570px;
  overflow: hidden;
  clip-path: polygon(0 0, 90% 0, 100% 9%, 100% 100%, 10% 100%, 0 91%);
  background: #313333;
}

.lab-showcase__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 14, 0.6), transparent 55%);
  content: "";
}

.lab-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.56) brightness(0.78);
  transition: transform 1s var(--ease-out);
}

.lab-showcase__visual:hover .lab-showcase__image img {
  transform: scale(1.045);
}

.lab-showcase__overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  color: rgba(243, 240, 232, 0.68);
  font: 9px var(--display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lab-showcase__overlay span:first-child {
  color: var(--lime);
}

.lab-showcase__quote {
  position: absolute;
  bottom: 32px;
  left: 34px;
  color: var(--paper);
  font: 600 25px / 0.93 var(--display);
  letter-spacing: -0.07em;
}

.lab-showcase__quote em {
  color: var(--lime);
  font: italic 27px var(--serif);
  letter-spacing: -0.06em;
}

.lab-showcase__lead {
  max-width: 425px;
  margin: 0 0 45px;
  color: rgba(243, 240, 232, 0.75);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.detail-list {
  border-top: 1px solid var(--line-light);
}

.detail-row {
  display: grid;
  grid-template-columns: 29px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 19px 0 18px;
  border-bottom: 1px solid var(--line-light);
}

.detail-row__index {
  color: var(--lime);
  font: 10px var(--display);
}

.detail-row h3 {
  margin: 0 0 7px;
  color: var(--paper);
  font: 500 15px var(--display);
  letter-spacing: -0.03em;
}

.detail-row p {
  max-width: 320px;
  margin: 0;
  color: var(--muted-light);
  font-size: 11px;
  line-height: 1.55;
}

.detail-row > strong {
  color: var(--paper);
  font: 10px var(--display);
}

.lab-showcase__content > .text-link {
  margin-top: 28px;
}

.specs-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 25px;
  align-items: center;
  margin-top: 105px;
  padding: 25px 0 22px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.specs-band__heading {
  display: grid;
  gap: 8px;
}

.specs-band__heading span,
.specs-band__item span {
  color: var(--muted-light);
  font: 9px var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specs-band__heading strong {
  font: 500 15px var(--display);
}

.specs-band__item {
  display: grid;
  gap: 8px;
  padding-left: 24px;
  border-left: 1px solid var(--line-light);
}

.specs-band__item strong {
  color: var(--lime);
  font: 400 31px / 0.95 var(--display);
  letter-spacing: -0.09em;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(60px, 10vw, 160px);
}

.faq-intro .section-topline {
  margin-bottom: 81px;
}

.faq-intro h2 {
  margin-top: 24px;
}

.faq-intro p {
  max-width: 295px;
  margin: 25px 0 31px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: transparent;
  color: var(--ink);
  font: 500 17px var(--display);
  letter-spacing: -0.035em;
  text-align: left;
}

.faq-question i {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-left: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.25s ease, transform 0.4s var(--ease-out), border-color 0.25s ease;
}

.faq-question i::before,
.faq-question i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.4s var(--ease-out);
}

.faq-item.is-open .faq-question i {
  border-color: var(--ink);
  background: var(--lime);
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-item.is-open .faq-answer {
  max-height: 160px;
}

.faq-answer p {
  max-width: 610px;
  margin: -3px 55px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.gallery-section {
  overflow: hidden;
  background: var(--paper-deep);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  align-items: end;
  gap: 70px;
  margin-top: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
  margin-top: 67px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #454442;
  color: var(--paper);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.03) 25%, rgba(8, 10, 14, 0.8) 100%);
  content: "";
  pointer-events: none;
}

.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.06) brightness(0.78);
  transition: transform 0.8s var(--ease-out), filter 0.8s ease;
}

.gallery-card:hover img,
.gallery-card:hover video {
  filter: saturate(0.85) contrast(1.05) brightness(0.83);
  transform: scale(1.07);
}

.gallery-card--tall {
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
}

.gallery-card--wide {
  grid-column: 5 / span 8;
  grid-row: 1;
}

.gallery-card--video {
  grid-column: 5 / span 4;
  grid-row: 2;
}

.gallery-card--small {
  grid-column: 9 / span 4;
  grid-row: 2;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 23px;
  bottom: 21px;
  left: 23px;
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 8px 15px;
  align-items: end;
}

.gallery-card figcaption > span {
  grid-column: 1 / -1;
  color: rgba(243, 240, 232, 0.7);
  font: 9px var(--display);
  letter-spacing: 0.13em;
}

.gallery-card figcaption > span .pulse-dot {
  width: 5px;
  height: 5px;
  margin-right: 5px;
  vertical-align: 1px;
}

.gallery-card figcaption strong {
  font: 500 27px / 0.9 var(--display);
  letter-spacing: -0.07em;
}

.gallery-card figcaption strong em {
  color: var(--lime);
  font: italic 27px var(--serif);
  letter-spacing: -0.06em;
}

.gallery-card figcaption > i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(243, 240, 232, 0.45);
  border-radius: 50%;
  font-style: normal;
  transition: background 0.25s ease, color 0.25s ease, transform 0.35s var(--ease-out);
}

.gallery-card:hover figcaption > i {
  background: var(--lime);
  color: var(--ink);
  transform: rotate(45deg);
}

.gallery-note {
  grid-column: 7 / span 6;
  align-self: center;
  padding: 27px 0 0 30px;
  border-left: 1px solid var(--line);
}

.gallery-note > span,
.gallery-note small {
  color: var(--muted);
  font: 9px var(--display);
  letter-spacing: 0.13em;
}

.gallery-note p {
  max-width: 500px;
  margin: 16px 0 11px;
  font: italic 24px / 1.05 var(--serif);
  letter-spacing: -0.04em;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 126px 0 135px;
  background: var(--ink);
  color: var(--paper);
}

.contact-section::before {
  position: absolute;
  top: -28%;
  right: -17%;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(216, 255, 97, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(216, 255, 97, 0.025), 0 0 0 140px rgba(216, 255, 97, 0.02);
  content: "";
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 100px;
}

.contact-copy .section-topline {
  margin-bottom: 75px;
}

.contact-copy h2 {
  max-width: 520px;
  margin-top: 21px;
  color: var(--paper);
}

.contact-copy h2 em {
  color: var(--lime);
}

.contact-copy > p {
  max-width: 380px;
  margin: 26px 0 38px;
  color: rgba(243, 240, 232, 0.64);
  font-size: 13px;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 440px;
  padding-top: 19px;
  border-top: 1px solid var(--line-light);
}

.contact-details div {
  display: grid;
  gap: 6px;
  align-content: start;
}

.contact-details span {
  color: var(--muted-light);
  font: 9px var(--display);
  letter-spacing: 0.12em;
}

.contact-details strong,
.contact-details a {
  color: var(--paper);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--lime);
}

.contact-form-card {
  padding: 30px 34px 27px;
  background: #e8e5dd;
  color: var(--ink);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--violet);
  font: 9px var(--display);
  letter-spacing: 0.12em;
}

.form-heading strong {
  font: 500 15px var(--display);
  letter-spacing: -0.03em;
}

.contact-form-card form {
  display: grid;
  gap: 21px;
}

.contact-form-card label {
  display: grid;
  gap: 7px;
}

.contact-form-card label > span {
  color: var(--muted);
  font: 9px var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form-card label > span small {
  font-size: 8px;
  letter-spacing: 0;
  text-transform: lowercase;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(8, 10, 14, 0.25);
  outline: 0;
  appearance: none;
  resize: vertical;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  transition: border-color 0.25s ease;
}

.contact-form-card select {
  padding-right: 22px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 8px) 7px, calc(100% - 3px) 7px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-form-card textarea {
  min-height: 48px;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #979690;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--violet);
}

.contact-form-card .button {
  justify-self: start;
  margin-top: 2px;
}

.form-note {
  max-width: 310px;
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.map-card {
  position: relative;
  grid-column: 1 / -1;
  height: 224px;
  overflow: hidden;
  margin-top: 4px;
  border: 1px solid rgba(243, 240, 232, 0.18);
  background: #151b1e;
}

.map-card__grid {
  position: absolute;
  inset: -20%;
  opacity: 0.28;
  background-image: linear-gradient(rgba(147, 214, 255, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(147, 214, 255, 0.25) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: rotate(-7deg) scale(1.2);
}

.map-card__roads {
  position: absolute;
  width: 125%;
  height: 1px;
  background: rgba(243, 240, 232, 0.44);
  transform: rotate(22deg);
}

.map-card__roads::after {
  position: absolute;
  top: 14px;
  left: 15%;
  width: 100%;
  height: 1px;
  background: rgba(243, 240, 232, 0.18);
  content: "";
}

.map-card__roads--one {
  top: 22%;
  left: -8%;
}

.map-card__roads--two {
  top: 70%;
  left: -7%;
  opacity: 0.6;
  transform: rotate(-17deg);
}

.map-card__roads--three {
  top: 12%;
  left: 22%;
  opacity: 0.4;
  transform: rotate(67deg);
}

.map-card__labels {
  position: absolute;
  inset: 0;
  color: rgba(243, 240, 232, 0.39);
  font: 9px var(--display);
  letter-spacing: 0.16em;
}

.map-card__labels span {
  position: absolute;
}

.map-card__labels span:nth-child(1) { top: 22%; left: 23%; }
.map-card__labels span:nth-child(2) { top: 33%; right: 18%; }
.map-card__labels span:nth-child(3) { bottom: 20%; left: 43%; }
.map-card__labels span:nth-child(4) { right: 6%; bottom: 13%; color: var(--lime); }

.map-pin {
  position: absolute;
  top: 50%;
  left: 52%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: rgba(216, 255, 97, 0.14);
  color: var(--lime);
  transform: translate(-50%, -50%);
}

.map-pin::before,
.map-pin::after {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(216, 255, 97, 0.33);
  border-radius: 50%;
  content: "";
  animation: map-pulse 2.4s ease-out infinite;
}

.map-pin::after {
  animation-delay: 1.2s;
}

.map-pin span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.map-pin b {
  position: relative;
  z-index: 1;
  font: 600 13px var(--display);
}

@keyframes map-pulse {
  0% { opacity: 0.8; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(2.2); }
}

.map-card__address {
  position: absolute;
  top: 26px;
  left: 30px;
  display: grid;
  gap: 5px;
}

.map-card__address span,
.map-card__coordinates {
  color: var(--muted-light);
  font: 9px var(--display);
  letter-spacing: 0.12em;
}

.map-card__address strong {
  color: var(--paper);
  font: 500 14px var(--display);
}

.map-card__coordinates {
  position: absolute;
  right: 30px;
  bottom: 27px;
  color: var(--lime);
  line-height: 1.6;
  text-align: right;
}

.site-footer {
  padding: 73px 0 25px;
  background: #050607;
  color: var(--paper);
}

.footer-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 245px;
  padding-bottom: 37px;
  border-bottom: 1px solid var(--line-light);
}

.footer-big-word {
  position: absolute;
  top: 42px;
  left: 50%;
  color: var(--paper);
  font: 600 clamp(88px, 17vw, 250px) / 0.75 var(--display);
  letter-spacing: -0.14em;
  transform: translateX(-54%);
}

.footer-big-word span {
  color: var(--lime);
}

.footer-top .button {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 41px 0 62px;
}

.footer-brand p {
  max-width: 260px;
  margin: 21px 0 0;
  color: var(--muted-light);
  font-size: 11px;
  line-height: 1.6;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-label {
  margin-bottom: 5px;
  color: var(--lime);
  font: 9px var(--display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  width: max-content;
  color: var(--muted-light);
  font-size: 11px;
  transition: color 0.25s ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: #666a67;
  font: 8px var(--display);
  letter-spacing: 0.1em;
}

.footer-bottom i {
  color: var(--lime);
  font-style: normal;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border: 1px solid rgba(8, 10, 14, 0.18);
  background: var(--paper);
  box-shadow: 0 16px 35px rgba(8, 10, 14, 0.18);
  color: var(--ink);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.toast span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-size: 12px;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
}

[data-parallax] {
  will-change: transform;
}

.reveal-up,
.reveal-left,
.reveal-right {
  will-change: transform, opacity;
}

@media (max-width: 1040px) {
  .site-nav {
    width: calc(100% - 44px);
  }

  .desktop-nav {
    gap: 25px;
    margin-left: 0;
  }

  .hero__inner {
    grid-template-columns: 0.88fr 1.12fr;
  }

  .hero-title {
    font-size: clamp(59px, 8.2vw, 90px);
  }

  .hero__visual {
    margin-left: -8%;
  }

  .section-heading--split,
  .gallery-heading {
    gap: 40px;
  }

  .lab-showcase {
    gap: 55px;
  }

  .contact-layout {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, 600px);
  }

  .site-nav {
    width: calc(100% - 36px);
    height: 76px;
  }

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

  .menu-toggle {
    display: block;
  }

  body.menu-is-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body.menu-is-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  body.menu-is-open .desktop-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    align-content: center;
    gap: 22px;
    height: 100svh;
    margin: 0;
    padding: 90px 28px 40px;
    background: var(--ink);
  }

  body.menu-is-open .desktop-nav a {
    color: var(--paper);
    font: 500 37px var(--display);
    letter-spacing: -0.07em;
  }

  body.menu-is-open .desktop-nav a span {
    color: var(--lime);
    font-size: 10px;
    letter-spacing: 0;
  }

  .hero {
    min-height: 800px;
  }

  .hero__inner {
    display: block;
    min-height: 800px;
    padding-top: 78px;
  }

  .hero__copy {
    padding-top: 51px;
  }

  .hero-title {
    margin-top: 25px;
    font-size: clamp(59px, 16vw, 92px);
  }

  .hero-title__line--accent {
    transform: translateX(0.05em);
  }

  .hero__intro {
    max-width: 310px;
    font-size: 13px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
  }

  .hero__meta {
    gap: 19px;
    margin-top: 43px;
  }

  .hero__meta strong {
    font-size: 19px;
  }

  .hero__meta span {
    font-size: 8px;
  }

  .hero__visual {
    position: absolute;
    top: 38%;
    right: -30px;
    bottom: 0;
    left: 12%;
    min-height: 0;
    margin: 0;
    opacity: 0.88;
  }

  .hero__image-frame {
    top: 10%;
    width: 81%;
    height: 70%;
  }

  .hero__canvas-wrap {
    bottom: 12%;
    left: -5%;
    width: 78%;
    height: 57%;
  }

  .hero__vertical-label {
    top: 21%;
    right: 0;
    font-size: 7px;
  }

  .hero__stamp {
    right: 19%;
    bottom: 10%;
  }

  .hero__visual-index {
    right: 13%;
    bottom: 17%;
  }

  .hero__scroll {
    bottom: 20px;
    left: 18px;
    font-size: 8px;
  }

  .section {
    padding: 82px 0;
  }

  .section-topline {
    gap: 10px;
    font-size: 8px;
  }

  .section-caption--right {
    display: none;
  }

  .section-heading,
  .gallery-heading {
    margin-top: 38px;
  }

  .section-heading--split,
  .gallery-heading {
    display: block;
  }

  .section-heading h2,
  .gallery-heading h2,
  .contact-copy h2,
  .faq-intro h2 {
    font-size: clamp(53px, 15vw, 85px);
  }

  .section-heading--split > p,
  .gallery-heading > p {
    max-width: 285px;
    margin: 24px 0 0;
  }

  .bike-slider {
    margin-top: 44px;
  }

  .bike-slider__viewport {
    margin-right: -18px;
  }

  .bike-card {
    flex-basis: calc(100% - 42px);
  }

  .bike-card__image {
    height: min(78vw, 340px);
  }

  .bike-slider__controls {
    gap: 14px;
  }

  .lab-showcase {
    display: block;
    margin-top: 45px;
  }

  .lab-showcase__visual,
  .lab-showcase__image {
    min-height: 410px;
    height: 410px;
  }

  .lab-showcase__content {
    margin-top: 42px;
  }

  .lab-showcase__lead {
    margin-bottom: 31px;
    font-size: 16px;
  }

  .detail-row {
    grid-template-columns: 25px 1fr;
  }

  .detail-row > strong {
    display: none;
  }

  .specs-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 16px;
    margin-top: 62px;
  }

  .specs-band__heading {
    grid-column: 1 / -1;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--line-light);
  }

  .specs-band__item {
    padding-left: 15px;
  }

  .specs-band__item strong {
    font-size: 27px;
  }

  .faq-layout {
    display: block;
  }

  .faq-intro .section-topline {
    margin-bottom: 43px;
  }

  .faq-intro p {
    margin-bottom: 25px;
  }

  .faq-list {
    margin-top: 59px;
  }

  .faq-question {
    gap: 17px;
    padding: 20px 0;
    font-size: 15px;
  }

  .faq-answer p {
    margin-right: 35px;
    font-size: 12px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 210px);
    gap: 11px;
    margin-top: 45px;
  }

  .gallery-card--tall {
    grid-column: 1 / -1;
    grid-row: 1 / span 2;
  }

  .gallery-card--wide {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .gallery-card--video {
    grid-column: 1;
    grid-row: 4;
  }

  .gallery-card--small {
    grid-column: 2;
    grid-row: 4;
  }

  .gallery-card figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .gallery-card figcaption strong {
    font-size: 20px;
  }

  .gallery-card figcaption strong em {
    font-size: 21px;
  }

  .gallery-card figcaption > i {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }

  .gallery-note {
    grid-column: 1 / -1;
    padding: 23px 0 0 18px;
  }

  .gallery-note p {
    font-size: 20px;
  }

  .contact-section {
    padding: 83px 0 90px;
  }

  .contact-layout {
    display: block;
  }

  .contact-copy .section-topline {
    margin-bottom: 43px;
  }

  .contact-copy > p {
    max-width: 320px;
  }

  .contact-form-card {
    margin-top: 47px;
    padding: 25px 20px 22px;
  }

  .map-card {
    height: 194px;
    margin-top: 12px;
  }

  .map-card__address {
    top: 20px;
    left: 20px;
  }

  .map-card__coordinates {
    right: 20px;
    bottom: 18px;
  }

  .site-footer {
    padding-top: 57px;
  }

  .footer-top {
    min-height: 180px;
  }

  .footer-top .eyebrow {
    max-width: 130px;
    line-height: 1.25;
  }

  .footer-big-word {
    top: 57px;
    left: 47%;
    font-size: 23vw;
  }

  .footer-top .button {
    min-height: 38px;
    padding-left: 12px;
    font-size: 8px;
  }

  .footer-top .button .arrow {
    width: 29px;
    height: 29px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 25px;
    padding: 35px 0 42px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    font-size: 7px;
    line-height: 1.45;
  }
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
