:root {
  color-scheme: dark;
  --black: #050505;
  --black-soft: #0a0a09;
  --ink: #f5f5f2;
  --muted: #b8b6ad;
  --line: rgba(255, 255, 255, 0.14);
  --silver: #c9ced1;
  --silver-soft: #8e969b;
  --silver-dark: #151819;
  --gold: #dfa21e;
  --gold-strong: #f2c247;
  --gold-dark: #9f650b;
  --panel: #111111;
  --panel-raised: rgba(20, 20, 18, 0.78);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --title-font: Impact, Haettenschweiler, "Arial Black", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #000;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(223, 162, 30, 0.16), transparent 18%),
    radial-gradient(circle at 88% 62%, rgba(223, 162, 30, 0.13), transparent 22%),
    linear-gradient(90deg, transparent 0 7%, rgba(223, 162, 30, 0.1) 7.1%, transparent 7.25% 92%, rgba(223, 162, 30, 0.1) 92.1%, transparent 92.25%),
    repeating-linear-gradient(135deg, rgba(223, 162, 30, 0.055) 0 1px, transparent 1px 64px);
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto -2px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  border: 1px solid rgba(223, 162, 30, 0.26);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.mini-stats,
.cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 168px;
  height: 56px;
  border-radius: 0;
  object-fit: contain;
}

.site-nav {
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--gold-strong);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(223, 162, 30, 0.36);
  border-radius: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-strong);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-slider {
  width: 100%;
  margin: 18px 0 0;
}

.slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1300 / 470;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.slides.is-dragging {
  cursor: grabbing;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: translateX(100%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.slides.is-dragging .slide {
  transition: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -22px;
  position: relative;
  z-index: 2;
}

.slider-dots span {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.slider-dots span.is-active {
  background: var(--gold-strong);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(223, 162, 30, 0.42);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 2.7rem;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.slider-arrow:hover {
  border-color: rgba(242, 194, 71, 0.9);
  background: rgba(0, 0, 0, 0.68);
}

.slider-prev {
  left: clamp(14px, 3vw, 34px);
}

.slider-next {
  right: clamp(14px, 3vw, 34px);
}

.quick-stats {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1080px, calc(100% - 40px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 34px auto 0;
  border: 1px solid rgba(223, 162, 30, 0.34);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.quick-stats div {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(201, 206, 209, 0.1), transparent),
    rgba(0, 0, 0, 0.92);
}

.quick-stats span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.quick-stats strong {
  color: var(--ink);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 7vw, 82px) clamp(20px, 5vw, 70px);
}

.hero-copy {
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 1px solid rgba(223, 162, 30, 0.4);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--title-font);
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.8vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-dark));
  box-shadow: 0 12px 34px rgba(223, 162, 30, 0.25);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(223, 162, 30, 0.65);
}

.hero-media {
  position: relative;
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(223, 162, 30, 0.28);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(12px);
}

.price-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.price-card span,
.price-card small {
  color: var(--muted);
}

.price-card strong {
  display: block;
  margin: 8px 0;
  color: var(--gold-strong);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.95;
}

.price-card p {
  color: var(--muted);
  line-height: 1.5;
}

.mini-stats {
  gap: 12px;
  margin-top: 22px;
}

.mini-stats div {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-stats b {
  display: block;
  margin-top: 6px;
}

.plan-band,
.model,
.features,
.colors,
.uses,
.gallery,
.audience,
.mission,
.cta {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 70px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.model-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 22px;
  align-items: stretch;
}

.model-main {
  width: 100%;
  min-height: 440px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.model,
.plan-band {
  position: relative;
}

.model {
  background:
    linear-gradient(135deg, rgba(223, 162, 30, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff, #dfe3e5);
  color: #080808;
}

.plan-band {
  background:
    linear-gradient(90deg, rgba(223, 162, 30, 0.14), transparent 40%),
    linear-gradient(180deg, #f7f7f4, #d9dee1);
  color: #080808;
}

.model::before,
.plan-band::before {
  position: absolute;
  top: 0;
  left: clamp(20px, 5vw, 70px);
  right: clamp(20px, 5vw, 70px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 206, 209, 0.72), rgba(223, 162, 30, 0.52), transparent);
}

.model-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(201, 206, 209, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(223, 162, 30, 0.09), transparent),
    rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.model-copy p {
  color: #343637;
  line-height: 1.65;
}

.model-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.model-copy li {
  padding: 14px;
  border-left: 4px solid var(--silver);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #111;
}

.inline-link {
  color: var(--gold-strong);
  font-weight: 850;
}

.features {
  background:
    linear-gradient(135deg, rgba(201, 206, 209, 0.12), transparent 28%),
    #000;
  border-top: 1px solid rgba(223, 162, 30, 0.18);
  border-bottom: 1px solid rgba(223, 162, 30, 0.18);
}

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

.feature-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(223, 162, 30, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(223, 162, 30, 0.08), transparent),
    #000;
}

.feature-grid span,
.spec-list span {
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-grid h3 {
  margin: 18px 0 14px;
  color: var(--gold-strong);
  font-size: 1.8rem;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(201, 206, 209, 0.2);
  border-radius: 8px;
  background: rgba(201, 206, 209, 0.2);
}

.spec-list div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.92);
}

.spec-list strong {
  color: var(--ink);
}

.colors {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(223, 162, 30, 0.12), transparent 24%, transparent 76%, rgba(223, 162, 30, 0.1)),
    radial-gradient(circle at 50% 60%, rgba(223, 162, 30, 0.16), transparent 28%),
    #000;
  border-bottom: 1px solid rgba(223, 162, 30, 0.2);
}

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

.colors::before {
  opacity: 0.58;
  background:
    linear-gradient(115deg, transparent 0 16%, rgba(223, 162, 30, 0.28) 16.1%, transparent 16.35%),
    linear-gradient(115deg, transparent 0 70%, rgba(223, 162, 30, 0.22) 70.1%, transparent 70.35%),
    repeating-linear-gradient(115deg, transparent 0 88px, rgba(223, 162, 30, 0.13) 89px, transparent 90px 176px);
}

.colors::after {
  inset: 36px clamp(18px, 5vw, 70px);
  border: 1px solid rgba(223, 162, 30, 0.14);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 90px rgba(223, 162, 30, 0.12);
}

.colors > * {
  position: relative;
  z-index: 1;
}

.color-viewer {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-height: 520px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(223, 162, 30, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(0, 0, 0, 0.78);
  box-shadow: var(--shadow);
}

.color-copy {
  max-width: 320px;
}

.color-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.color-copy strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-strong);
  font-family: var(--title-font);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.color-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.color-bike {
  position: relative;
  display: grid;
  min-height: 370px;
  place-items: center;
}

.color-bike::before {
  position: absolute;
  right: 7%;
  bottom: 13%;
  left: 7%;
  height: 36px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(ellipse, rgba(223, 162, 30, 0.24), transparent 68%);
  filter: blur(8px);
}

.color-bike img {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  height: auto;
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.72));
  transform: translateX(0) scale(1);
  transition:
    opacity 210ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
}

.color-viewer.is-changing .color-bike img {
  opacity: 0.12;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.72)) blur(2px);
  transform: translateX(24px) scale(0.985);
}

.color-swatches {
  display: grid;
  gap: 14px;
}

.color-swatch {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 6px #000,
    0 10px 24px rgba(0, 0, 0, 0.32);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.color-swatch:hover,
.color-swatch.is-active {
  border-color: var(--gold-strong);
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 6px #000,
    0 0 0 4px rgba(223, 162, 30, 0.16),
    0 18px 34px rgba(223, 162, 30, 0.18);
}

.swatch-nardo {
  background: linear-gradient(135deg, #8f928b, #464944 60%, #d8d000 61% 76%, #8f928b 77%);
}

.swatch-azul {
  background: linear-gradient(135deg, #0068e8, #003b9d);
}

.swatch-blanco {
  background: linear-gradient(135deg, #fff, #cfd6da);
}

.swatch-negro {
  background: linear-gradient(135deg, #16191e, #000);
}

.uses {
  background:
    linear-gradient(90deg, rgba(223, 162, 30, 0.08), transparent 22%, transparent 78%, rgba(223, 162, 30, 0.08)),
    #000;
  border-top: 1px solid rgba(223, 162, 30, 0.18);
  border-bottom: 1px solid rgba(223, 162, 30, 0.18);
}

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

.uses-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(223, 162, 30, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(223, 162, 30, 0.045), transparent),
    #000;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.use-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(223, 162, 30, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 194, 71, 0.18), transparent),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 12px 30px rgba(223, 162, 30, 0.12);
}

.use-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.uses-grid article:hover,
.plan-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 162, 30, 0.58);
}

.uses-grid span {
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uses-grid h3 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.uses-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.plan-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(223, 162, 30, 0.16), transparent),
    rgba(255, 255, 255, 0.78);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.plan-grid span {
  color: var(--gold-strong);
  font-weight: 900;
}

.plan-grid p {
  color: var(--gold-strong);
  font-size: 1.45rem;
  font-weight: 900;
}

.legal-note {
  max-width: 920px;
  margin-top: 28px;
  color: #3d4244;
  line-height: 1.65;
}

.legal-note-highlight {
  max-width: 100%;
  color: #000;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.8vw, 5.2rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(223, 162, 30, 0.2), transparent 23%),
    linear-gradient(90deg, rgba(223, 162, 30, 0.14), transparent 28%),
    #000;
}

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

.gallery::before {
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 15%, rgba(242, 194, 71, 0.42) 15.1%, transparent 15.35%),
    linear-gradient(118deg, transparent 0 20%, rgba(242, 194, 71, 0.2) 20.1%, transparent 20.28%),
    linear-gradient(118deg, transparent 0 82%, rgba(223, 162, 30, 0.32) 82.1%, transparent 82.34%),
    repeating-linear-gradient(118deg, transparent 0 92px, rgba(223, 162, 30, 0.09) 93px, transparent 94px 184px);
  opacity: 0.78;
}

.gallery::after {
  top: 48px;
  right: clamp(20px, 5vw, 70px);
  bottom: 48px;
  width: min(54vw, 880px);
  border: 1px solid rgba(223, 162, 30, 0.18);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 80px rgba(223, 162, 30, 0.12);
}

.gallery-copy,
.gallery-mosaic {
  position: relative;
  z-index: 1;
}

.gallery-copy {
  max-width: 430px;
}

.gallery-copy h2 {
  margin-bottom: 22px;
}

.gallery-copy p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(180px, 0.72fr) minmax(180px, 0.72fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.gallery-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(223, 162, 30, 0.26);
  border-radius: 8px;
  background: #070707;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 28px 70px rgba(0, 0, 0, 0.62);
}

.gallery-card-main {
  grid-row: span 2;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition:
    filter 220ms ease,
    transform 260ms ease;
}

.gallery-card:hover img {
  filter: saturate(1.12) contrast(1.07);
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-left: 3px solid var(--gold-strong);
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.28));
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.audience {
  background: #000;
  border-top: 1px solid rgba(223, 162, 30, 0.16);
  border-bottom: 1px solid rgba(223, 162, 30, 0.16);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 18px;
  border-left: 4px solid var(--gold-strong);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(223, 162, 30, 0.07), transparent),
    rgba(0, 0, 0, 0.92);
  color: var(--muted);
}

.mission {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(223, 162, 30, 0.1), transparent 45%),
    #000;
}

.mission > p,
.cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  background: #000;
  box-shadow: inset 0 1px 0 rgba(223, 162, 30, 0.28);
}

.contact-copy img {
  display: block;
  width: min(430px, 78vw);
  height: auto;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
}

.contact-copy {
  max-width: 620px;
  justify-self: center;
  text-align: center;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(223, 162, 30, 0.42);
  border-radius: 999px;
  color: var(--gold-strong);
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: rgba(223, 162, 30, 0.08);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-whatsapp:hover {
  border-color: rgba(242, 194, 71, 0.78);
  background: rgba(223, 162, 30, 0.14);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(223, 162, 30, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 162, 30, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.72);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-row select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-strong) 50%),
    linear-gradient(135deg, var(--gold-strong) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.form-row input:focus,
.form-row select:focus {
  border-color: rgba(242, 194, 71, 0.82);
  box-shadow: 0 0 0 4px rgba(223, 162, 30, 0.14);
}

.contact-form .button {
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status.is-success {
  color: var(--gold-strong);
}

.form-status.is-error {
  color: #ffb0a6;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.32), transparent 28%),
    #25d366;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.42),
    0 0 0 5px rgba(37, 211, 102, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.whatsapp-float:hover {
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.48),
    0 0 0 7px rgba(37, 211, 102, 0.16);
  transform: translateY(-3px);
}

@media (max-width: 860px) {
  .site-header,
  .site-nav,
  .cta {
    align-items: flex-start;
  }

  .site-header {
    position: sticky;
    top: 6px;
    width: calc(100% - 24px);
    margin: 6px auto 0;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 7px 8px;
  }

  .brand img {
    width: 118px;
    height: 38px;
  }

  .menu-toggle {
    display: flex;
    align-self: center;
    justify-self: end;
    width: 38px;
    height: 38px;
  }

  .menu-toggle span {
    width: 18px;
  }

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

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    width: 100%;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      padding 180ms ease;
  }

  .site-header.is-open .site-nav {
    max-height: 290px;
    padding: 4px 0 1px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    border: 1px solid rgba(223, 162, 30, 0.18);
    border-radius: 6px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 800;
    text-align: center;
  }

  .main-slider {
    margin-top: 10px;
  }

  .slides {
    aspect-ratio: 16 / 9;
    background: #000;
  }

  .slide {
    object-fit: contain;
  }

  .slider-arrow {
    width: 40px;
    height: 48px;
    font-size: 2.2rem;
  }

  .slider-dots {
    margin-top: -18px;
  }

  .slider-dots span {
    width: 24px;
    height: 4px;
  }

  .quick-stats {
    width: calc(100% - 24px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .quick-stats div {
    display: grid;
    align-content: center;
    min-height: 96px;
    padding: 12px 8px;
    text-align: center;
  }

  .quick-stats span {
    min-height: 28px;
    margin-bottom: 5px;
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .quick-stats strong {
    font-size: clamp(1rem, 5vw, 1.45rem);
    line-height: 1.05;
  }

  .cta {
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr;
  }

  .plan-band,
  .model,
  .features,
  .colors,
  .uses,
  .gallery,
  .audience,
  .mission,
  .cta {
    padding: 58px 16px;
  }

  .hero,
  .model-showcase,
  .color-viewer,
  .gallery,
  .mission {
    grid-template-columns: 1fr;
  }

  .uses-grid,
  .feature-grid,
  .spec-list,
  .audience-list {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding: 52px 16px 58px;
    gap: 28px;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 24px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    justify-content: center;
  }

  .lead,
  .model-copy p,
  .feature-grid article,
  .feature-grid p,
  .spec-list div,
  .uses-grid article,
  .uses-grid p,
  .legal-note,
  .gallery-copy p:last-child,
  .mission > p,
  .cta p,
  .color-copy p {
    text-align: center;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .gallery {
    gap: 14px;
  }

  .gallery::after {
    inset: 18px 12px;
    width: auto;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-card-main,
  .gallery-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-card-main {
    min-height: 380px;
  }

  .colors::after {
    inset: 18px 12px;
  }

  .color-viewer {
    min-height: auto;
    padding: 18px;
    text-align: center;
  }

  .use-icon {
    margin: 0 auto;
  }

  .color-bike {
    min-height: 260px;
  }

  .color-swatches {
    grid-template-columns: repeat(4, 58px);
    justify-content: center;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.75rem);
  }
}

@media (max-width: 520px) {
  body::before {
    background:
      radial-gradient(circle at 50% 8%, rgba(223, 162, 30, 0.14), transparent 24%),
      repeating-linear-gradient(135deg, rgba(223, 162, 30, 0.052) 0 1px, transparent 1px 48px);
  }

  .slides {
    aspect-ratio: 16 / 10;
  }

  .slider-arrow {
    width: 34px;
    height: 42px;
    font-size: 1.9rem;
  }

  .quick-stats div,
  .feature-grid article,
  .uses-grid article,
  .plan-grid article,
  .model-copy {
    padding: 18px;
  }

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

  .color-copy {
    max-width: none;
  }

  .color-swatches {
    grid-template-columns: repeat(4, 50px);
    gap: 10px;
  }

  .color-swatch {
    width: 50px;
    height: 50px;
  }

  .gallery-mosaic {
    grid-auto-rows: 210px;
  }

  .gallery-card-main {
    min-height: 330px;
  }

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

  .cta img {
    display: block;
    width: min(300px, 82vw);
    margin-right: auto;
    margin-left: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}
