:root {
  --bg: #f2f2f0;
  --surface: #ffffff;
  --ink: #0c0c0d;
  --muted: #6a6a6e;
  --line: rgba(12, 12, 13, 0.1);
  --lime: #c8f542;
  --lime-ink: #12140a;
  --dark: #0c0c0d;
  --radius: 12px;
  --pad: clamp(25px, 2.4vw, 40px);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 650;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn--ink {
  background: var(--ink);
  color: #fff;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--line);
}

.btn--sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1rem 1.45rem;
}

.btn--block {
  width: 100%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-head {
  padding: 0 var(--pad);
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-head p {
  margin-top: 0.55rem;
  max-width: 48ch;
  color: var(--muted);
}

.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.link {
  font-weight: 650;
  white-space: nowrap;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem var(--pad);
  color: #fff;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.is-solid,
.nav--solid {
  background: rgba(242, 242, 240, 0.9);
  backdrop-filter: blur(14px);
  color: var(--ink);
  border-bottom-color: var(--line);
}

.nav__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.nav__links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.92rem;
  opacity: 0.9;
}

.nav__links a.is-active,
.nav__links a:hover {
  opacity: 1;
}

.nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav__lang {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.85;
  font-size: 0.68rem;
  font-weight: 700;
}

.nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.85rem;
  font-weight: 650;
}

.nav__cart em {
  font-style: normal;
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 0.7rem;
  display: grid;
  place-items: center;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.nav__burger span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.mobile {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-content: center;
  gap: 1.2rem;
  background: rgba(242, 242, 240, 0.98);
  font-size: 1.4rem;
  font-weight: 650;
}

.mobile[hidden] {
  display: none;
}

/* Cart */
.cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(380px, 100%);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(105%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  color: var(--ink);
}

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

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.4);
}

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

.cart__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart__head h2 {
  font-family: var(--display);
  font-size: 1.25rem;
}

.cart__head button {
  font-size: 1.6rem;
}

.cart__body {
  flex: 1;
  overflow: auto;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.cart__empty {
  color: var(--muted);
  padding: 2rem 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item h4 {
  font-size: 0.9rem;
}

.cart-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

.cart__foot {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.cart__total {
  display: flex;
  justify-content: space-between;
  font-weight: 650;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) 5.5rem;
  max-width: 720px;
}

.hero__kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero__title .word {
  display: inline-block;
  margin-right: 0.28em;
}

.hero__sub {
  margin: 1.1rem 0 1.6rem;
  max-width: 42ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--lime);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

/* Lineup */
.lineup,
.why,
.acc,
.stories,
.related {
  padding: 4.5rem 0 3rem;
}

.lineup__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

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

.bike {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}

.bike:hover {
  transform: translateY(-4px);
}

.bike__media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e8e8e6;
}

.bike__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.bike:hover .bike__media img {
  transform: scale(1.04);
}

.bike__body {
  padding: 1.2rem 1.25rem 1.35rem;
}

.bike__role {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.bike__body h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.bike__body ul {
  list-style: none;
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.bike__body li::before {
  content: "· ";
  color: var(--ink);
}

.bike__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

/* Press / marquee */
.press {
  padding: 2rem 0 1rem;
}

.press__label {
  padding: 0 var(--pad);
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
  padding: 1rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-slide 36s linear infinite;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.05rem;
}

.marquee__group {
  display: flex;
  flex-shrink: 0;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.marquee__group span {
  white-space: nowrap;
}

.marquee__group span::after {
  content: "·";
  margin-left: 2.5rem;
  opacity: 0.4;
}

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

/* Why */
.why__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.why__grid article {
  padding: 1.5rem 1.25rem;
  min-height: 220px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.why__grid span {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.why__grid h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 1rem 0 0.5rem;
  letter-spacing: -0.02em;
}

.why__grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Tech */
.tech {
  margin: 2rem var(--pad) 1rem;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  min-height: 480px;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.tech__media {
  overflow: hidden;
}

.tech__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.tech__copy {
  padding: clamp(1.5rem, 3vw, 2.75rem);
  display: grid;
  align-content: center;
  gap: 0.85rem;
}

.tech__copy h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.tech__copy > p {
  color: var(--muted);
}

.tech__list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0.25rem 0 0.5rem;
  color: var(--muted);
}

.tech__list li::before {
  content: "→ ";
  color: var(--ink);
}

/* City */
.city {
  position: relative;
  margin: 3rem 0;
  min-height: 70vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.city__media {
  position: absolute;
  inset: 0;
}

.city__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.7));
}

.city__copy {
  position: relative;
  z-index: 1;
  padding: 3rem var(--pad);
}

.city__copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.city__copy > p {
  margin: 0.85rem 0 1.5rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.8);
}

.city__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.city__stats strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--lime);
}

.city__stats span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Feature */
.feature {
  padding: 3rem var(--pad);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.feature__copy h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.75rem;
}

.feature__copy p {
  color: var(--muted);
  max-width: 40ch;
  margin-bottom: 1.25rem;
}

.feature__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.feature__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

/* Acc */
.acc__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.acc__card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
}

.acc__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.acc__card > div {
  padding: 1.4rem;
  display: grid;
  align-content: center;
  gap: 0.55rem;
}

.acc__card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
}

/* Stories */
.stories__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.story {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.story:hover img {
  transform: scale(1.05);
}

.story span {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.25rem;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.cta-band {
  margin: 2rem var(--pad) 3.5rem;
  padding: 2.25rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--dark);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.cta-band p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 40ch;
}

.cta-band__actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer {
  padding: 2.5rem var(--pad) 2rem;
  border-top: 1px solid var(--line);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer__top p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.footer__cols {
  display: flex;
  gap: 3rem;
}

.footer__cols h4 {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.footer__cols a {
  display: block;
  margin-bottom: 0.35rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Shop / PDP pages */
.page {
  padding: 6.5rem 0 3rem;
}

.page-head {
  padding: 0 var(--pad) 1.5rem;
}

.page-head h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.04em;
}

.page-head p {
  margin-top: 0.5rem;
  color: var(--muted);
  max-width: 48ch;
}

.filters {
  padding: 0 var(--pad) 1.25rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.filter {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.filter.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.shop-grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.shop-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}

.shop-card:hover {
  transform: translateY(-4px);
}

.shop-card.is-hidden {
  display: none;
}

.shop-card__media {
  display: block;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
  background: #e8e8e6;
}

.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.shop-card:hover .shop-card__media img {
  transform: scale(1.04);
}

.shop-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.shop-card__body p {
  color: var(--muted);
  font-size: 0.82rem;
}

.shop-card__body h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  margin: 0.2rem 0 0.75rem;
}

.shop-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.crumb {
  padding: 0 var(--pad) 1.25rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.pdp__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.pdp__main {
  border-radius: var(--radius);
  overflow: hidden;
  background: #e8e8e6;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1.05;
}

.pdp__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.pdp__thumbs button {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
}

.pdp__thumbs button.is-on {
  border-color: var(--ink);
  opacity: 1;
}

.pdp__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__info h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  margin: 0.15rem 0 0.65rem;
}

.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.pdp__price strong {
  font-family: var(--display);
  font-size: 1.6rem;
}

.pdp__price span {
  color: var(--muted);
  font-size: 0.85rem;
}

.pdp__desc {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 42ch;
}

.pdp__swatches,
.pdp__sizes {
  margin-bottom: 1.15rem;
}

.pdp__swatches > span,
.pdp__sizes > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  margin-bottom: 0.5rem;
}

.pdp__swatches > div,
.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch.is-on {
  box-shadow: 0 0 0 2px var(--ink);
}

.sizes button {
  min-width: 48px;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 600;
}

.sizes button.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.pdp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 1.4rem;
}

.pdp__specs {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.pdp__specs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.pdp__specs span {
  color: var(--muted);
}

.pdp-band {
  position: relative;
  margin: 3.5rem 0 2rem;
  min-height: 420px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.pdp-band__media {
  position: absolute;
  inset: 0;
}

.pdp-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.pdp-band__copy {
  position: relative;
  z-index: 1;
  padding: 2.5rem var(--pad);
  max-width: 560px;
}

.pdp-band__copy h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.pdp-band__copy p {
  color: rgba(255, 255, 255, 0.8);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}

@media (max-width: 1000px) {
  .why__grid,
  .stories__grid,
  .shop-grid,
  .lineup__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech,
  .feature,
  .pdp__grid,
  .acc__card {
    grid-template-columns: 1fr;
  }

  .tech__media img,
  .acc__card img {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .lineup__grid,
  .why__grid,
  .stories__grid,
  .shop-grid,
  .acc__grid {
    grid-template-columns: 1fr;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
