:root {
  color-scheme: light;
  --ink: #101317;
  --muted: #5f6872;
  --line: #dfe4e8;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --mist: #e8f2f3;
  --ado: #00a7b5;
  --ado-dark: #006d7a;
  --lime: #c8ef4a;
  --coral: #ff694d;
  --gold: #f7c744;
  --shadow: 0 24px 70px rgba(16, 19, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 228, 232, 0.86);
  backdrop-filter: blur(18px);
}

.promo {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 18px;
  color: #f8ffff;
  background: #0f181d;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.nav {
  width: min(1180px, calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  min-width: 58px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 3px;
  font-size: 16px;
}

.brand-logo {
  width: 84px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: #27313a;
  font-size: 14px;
  font-weight: 700;
}

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

.nav-cta,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.65);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #101317;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.hero img,
.hero-video,
.hero-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 10, 12, 0.78), rgba(7, 10, 12, 0.38) 42%, rgba(7, 10, 12, 0.02) 72%),
    linear-gradient(0deg, rgba(7, 10, 12, 0.28), rgba(7, 10, 12, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 76px;
  color: #fff;
}

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

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-content > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

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

.hero-stats {
  width: min(680px, 100%);
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  min-height: 92px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  font-size: 24px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category-strip a {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}

.category-strip a:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: end;
}

.intro-band p:last-child,
.feature-copy > p,
.impact-copy p,
.heading-note,
.video-card p,
.lab-content p,
.lab-news p,
.test-ride p,
.footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.button.ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.brand-impact {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 18px;
  padding: clamp(36px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  color: #fff;
  background: #101317;
  border-radius: 8px;
}

.impact-copy h2 {
  max-width: 720px;
}

.impact-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.impact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.impact-metrics div {
  min-height: 138px;
  padding: 20px;
  display: grid;
  align-content: end;
  background: #171d22;
}

.impact-metrics strong,
.impact-metrics span {
  display: block;
}

.impact-metrics strong {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.impact-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.media-wall {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
}

.media-tile {
  position: relative;
  min-height: 250px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #14191e;
}

.media-large {
  grid-row: 1 / span 2;
  min-height: 520px;
}

.media-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 58%);
}

.media-tile > div:not(.lab-mark) {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.media-tile span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-tile h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
}

.media-tile:not(.media-large) h3 {
  font-size: 28px;
}

.media-dark {
  padding: 26px;
  background:
    radial-gradient(circle at 72% 20%, rgba(0, 167, 181, 0.36), transparent 34%),
    linear-gradient(135deg, #101317, #27313a);
}

.media-dark::after {
  display: none;
}

.lab-mark {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 0.95;
}

.heading-note {
  max-width: 430px;
  margin: 0;
}

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

.video-card {
  min-height: 470px;
  display: grid;
  grid-template-rows: 245px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  background: #101317;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 70%);
}

.video-graphic {
  background:
    linear-gradient(135deg, rgba(0, 167, 181, 0.75), rgba(16, 19, 23, 0.92)),
    url("https://www.dropbox.com/scl/fo/8g4pkclqu7ygjjhit4efx/ANV2gK_y4r2TSILnJbsSGi8/_Modelos%20UY/Posters/Poster%20Oasis%20One.jpeg?rlkey=j2w5ezna1g6jklu5359ae6kou&raw=1") center / cover;
}

.play {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101317;
  background: #fff;
  font-size: 0;
}

.play::before {
  content: "";
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #101317;
}

.video-card > :not(.video-thumb) {
  margin-left: 24px;
  margin-right: 24px;
}

.video-card .tag {
  margin-top: 24px;
}

.video-card h3 {
  margin-left: 24px;
  margin-right: 24px;
}

.video-card p:last-child {
  margin-bottom: 24px;
}

.lab-immersive {
  margin-top: 16px;
  background: #101317;
  color: #fff;
}

.ado-lab-page {
  margin-top: 0;
}

.lab-hero-video {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #101317;
  isolation: isolate;
}

.lab-hero-video video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}

.lab-hero-copy {
  z-index: 2;
}

.lab-cert-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 58px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: end;
}

.lab-cert-band p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.lab-test-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lab-test-grid article {
  min-height: 250px;
  padding: 24px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #171d22;
}

.lab-test-grid strong {
  display: block;
  margin-bottom: 44px;
  color: var(--lime);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.lab-test-grid h3 {
  margin-bottom: 8px;
}

.lab-test-grid p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.lab-video-split {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
}

.lab-video-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.youtube-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lab-news-wrap {
  padding: 0 0 96px;
  background: #fff;
  color: var(--ink);
}

.lab-news-heading {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0 32px;
}

.lab-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.lab-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: grayscale(0.2) contrast(1.08);
}

.lab-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 23, 0.95), rgba(16, 19, 23, 0.48) 56%, rgba(16, 19, 23, 0.08)),
    radial-gradient(circle at 78% 22%, rgba(0, 167, 181, 0.32), transparent 32%);
}

.lab-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.lab-content h2 {
  max-width: 760px;
}

.lab-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.lab-tests {
  max-width: 780px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lab-tests span {
  min-height: 44px;
  padding: 12px 16px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.lab-news {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 0;
}

.lab-news article {
  min-height: 520px;
  padding: 0;
  display: grid;
  grid-template-rows: 230px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
}

.lab-news img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #f3f5f6;
}

.lab-news span {
  display: block;
  margin: 22px 24px 10px;
  color: var(--ado-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-news h3,
.lab-news p,
.lab-news a {
  margin-left: 24px;
  margin-right: 24px;
}

.lab-news p {
  color: var(--muted);
  line-height: 1.62;
}

.lab-news a {
  align-self: end;
  margin-top: 6px;
  margin-bottom: 24px;
  color: var(--ink);
  font-weight: 900;
}

.explore-ado {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.explore-grid article {
  min-height: 150px;
  padding: 20px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.explore-grid strong,
.explore-grid span {
  display: block;
}

.explore-grid strong {
  font-size: 20px;
}

.explore-grid span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section-heading {
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

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

.filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: #364049;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  color: #fff;
  background: var(--ado-dark);
  border-color: var(--ado-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 680px;
  display: grid;
  grid-template-rows: 360px 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 32px rgba(16, 19, 23, 0.06);
}

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

.product-guide-card {
  min-height: 680px;
  grid-template-rows: 1fr;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0, 109, 122, 0.94), rgba(16, 19, 23, 0.96)),
    url("https://www.dropbox.com/scl/fo/8g4pkclqu7ygjjhit4efx/APnM_v47hh_s1cuHPHvKl44/_Modelos%20UY/Posters/Poster%20Eco%2020.jpeg?rlkey=j2w5ezna1g6jklu5359ae6kou&raw=1");
  background-position: center;
  background-size: cover;
}

.product-guide-panel {
  min-height: 100%;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 28px;
}

.product-guide-panel .tag {
  color: var(--lime);
}

.product-guide-panel h3 {
  margin: 0;
  font-size: 38px;
  line-height: 0.98;
  letter-spacing: 0;
}

.product-guide-panel > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.product-guide-panel .guide-link {
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.24);
}

.product-photo {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f3f5f6;
}

.model-carousel {
  position: relative;
  width: min(680px, 100%);
  height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f5f6;
}

.product-photo img,
.model-carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: grid;
}

.carousel-track img {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.carousel-track img.active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(16, 19, 23, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(16, 19, 23, 0.12);
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 19, 23, 0.25);
  cursor: pointer;
}

.carousel-dot.active {
  width: 22px;
  background: var(--ado-dark);
}

.product-visual {
  position: relative;
  display: grid;
  place-items: end start;
  padding: 20px;
  overflow: hidden;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.product-visual::before {
  width: 260px;
  height: 260px;
  right: -58px;
  top: -74px;
  background: rgba(255, 255, 255, 0.32);
}

.product-visual::after {
  width: 84%;
  height: 38px;
  left: 8%;
  bottom: 42px;
  border: 8px solid rgba(16, 19, 23, 0.72);
  border-top: 0;
  border-radius: 999px;
  transform: skewX(-12deg);
}

.product-visual span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.visual-blue {
  background: linear-gradient(135deg, #008b99, #4ed0dc);
}

.visual-dark {
  background: linear-gradient(135deg, #11161b, #59646e);
}

.visual-green {
  background: linear-gradient(135deg, #268460, #b6dc62);
}

.visual-silver {
  background: linear-gradient(135deg, #7d8a91, #e6edf0);
}

.visual-yellow {
  background: linear-gradient(135deg, #d08a14, #f7d45a);
}

.visual-red {
  background: linear-gradient(135deg, #b4393a, #ff8061);
}

.product-copy {
  padding: 24px;
  display: grid;
  align-content: start;
}

.tag {
  margin-bottom: 8px;
  color: var(--ado-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-copy p:not(.tag) {
  color: var(--muted);
  line-height: 1.55;
}

.product-copy ul {
  margin: 12px 0 18px;
  padding-left: 18px;
  color: #364049;
  line-height: 1.8;
}

.price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 24px;
  font-weight: 900;
}

.price span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-link {
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  display: inline-grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--soft);
}

.feature-media {
  min-height: 640px;
}

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

.feature-copy {
  padding: clamp(42px, 6vw, 86px);
  align-self: center;
}

.compare-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.compare-list.compact {
  margin-top: 4px;
  gap: 8px;
}

.compare-list div {
  min-height: 112px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-list.compact div {
  min-height: 94px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 0;
}

.compare-list strong,
.compare-list span {
  display: block;
}

.compare-list span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.service {
  padding-top: 104px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: #fff;
  background: var(--ado-dark);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.test-ride {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 92px;
  padding: clamp(32px, 5vw, 58px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  color: #fff;
  background: #0e1519;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.test-ride .eyebrow,
.test-ride p {
  color: rgba(255, 255, 255, 0.78);
}

.test-ride h2 {
  color: #fff;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.lead-form select option {
  color: var(--ink);
}

.lead-form button,
.form-note {
  grid-column: 1 / -1;
}

.lead-form .button.primary {
  background: var(--ado);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.accessories {
  padding-top: 0;
}

.accessory-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.accessory-row span {
  min-height: 44px;
  padding: 12px 16px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--mist);
  font-weight: 800;
}

.footer {
  padding: 50px max(18px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: #101317;
  color: #fff;
}

.footer p {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer .brand-mark {
  background: #fff;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 4px;
  color: #fff;
  background: var(--ado-dark);
  box-shadow: var(--shadow);
  font-weight: 800;
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.model-page {
  background: #fff;
}

.model-hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-bottom: 1px solid var(--line);
  background: #f5f6f7;
}

.model-hero-media {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 70px);
  background: #f3f5f6;
}

.model-hero-media img {
  width: min(620px, 100%);
  max-height: 640px;
  object-fit: contain;
}

.model-hero-copy {
  padding: clamp(36px, 6vw, 86px);
  display: grid;
  align-content: center;
  background: #fff;
}

.model-hero-copy h1 {
  color: var(--ink);
}

.model-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.model-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 30px;
}

.model-badges span {
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.model-buybar {
  position: sticky;
  top: 107px;
  z-index: 14;
  min-height: 72px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.model-buybar strong,
.model-buybar span {
  display: block;
}

.model-buybar span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.model-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.model-feature-grid,
.model-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.model-feature-grid article,
.model-spec-grid div {
  min-height: 170px;
  padding: 22px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.model-feature-grid h3,
.model-spec-grid strong {
  margin-bottom: 8px;
  font-size: 22px;
}

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

.model-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #101317;
  color: #fff;
}

.model-story img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  padding: 34px;
  background: #f5f6f7;
}

.model-story-copy {
  padding: clamp(42px, 6vw, 86px);
  display: grid;
  align-content: center;
}

.model-story-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.model-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.model-gallery img {
  width: 100%;
  height: 440px;
  object-fit: contain;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f6f7;
}

.model-gallery img:first-child {
  grid-row: span 2;
  height: 896px;
}

.model-back {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--ado-dark);
  font-weight: 900;
}

.note-page {
  background: var(--soft);
}

.note-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: stretch;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.note-hero-copy {
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 70px);
}

.note-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.note-hero-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.note-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.note-content {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto 86px;
  padding: clamp(34px, 5vw, 72px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
}

.note-meta {
  margin-bottom: 28px;
  color: var(--ado-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.note-body {
  color: #222a31;
  font-size: 20px;
  line-height: 1.75;
}

.note-body p {
  margin: 0 0 24px;
}

.note-body h2 {
  margin: 46px 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.note-body blockquote {
  margin: 42px 0;
  padding: 28px 32px;
  color: var(--ink);
  background: var(--mist);
  border-left: 6px solid var(--ado);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}

@media (max-width: 940px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

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

  .nav-links.open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: start;
    gap: 12px;
    padding-bottom: 18px;
  }

  .category-strip,
  .product-grid,
  .service-grid,
  .brand-impact,
  .media-wall,
  .video-grid,
  .lab-news,
  .lab-cert-band,
  .lab-test-grid,
  .lab-video-split,
  .explore-ado,
  .model-hero,
  .model-feature-grid,
  .model-spec-grid,
  .model-story,
  .model-gallery,
  .intro-band,
  .feature-split,
  .test-ride,
  .note-hero {
    grid-template-columns: 1fr;
  }

  .category-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-media {
    min-height: 420px;
  }

  .media-large {
    grid-row: auto;
    min-height: 430px;
  }

  .lab-visual {
    min-height: 620px;
  }

  .lab-hero-video {
    min-height: 620px;
  }

  .lab-news {
    margin-top: 0;
  }

  .model-buybar {
    top: 72px;
  }

  .model-gallery img,
  .model-gallery img:first-child {
    grid-row: auto;
    height: auto;
    max-height: 560px;
  }

  .note-hero img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .promo {
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(7, 10, 12, 0.82), rgba(7, 10, 12, 0.48));
  }

  .hero-content {
    align-self: end;
  }

  .hero-stats,
  .compare-list,
  .impact-metrics,
  .explore-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    display: grid;
  }

  .product-card {
    min-height: 0;
  }

  .brand-impact {
    padding: 28px;
  }

  .brand-logo {
    width: 76px;
  }

  .impact-metrics div {
    min-height: 108px;
  }

  .media-wall {
    gap: 12px;
  }

  .media-tile,
  .media-large {
    min-height: 320px;
  }

  .media-tile h3,
  .media-tile:not(.media-large) h3 {
    font-size: 26px;
  }

  .video-card {
    min-height: 0;
  }

  .lab-content {
    align-self: end;
    padding-bottom: 120px;
  }

  .lab-tests span {
    width: 100%;
  }

  .lab-cert-band,
  .lab-video-split {
    padding: 64px 0;
  }

  .lab-test-grid article {
    min-height: 190px;
  }

  .lab-news-wrap {
    padding-bottom: 64px;
  }

  .lab-news article {
    min-height: 0;
  }

  .model-hero {
    min-height: 0;
  }

  .model-hero-media {
    min-height: 420px;
  }

  .model-buybar {
    position: static;
    display: grid;
  }

  .model-section {
    padding: 64px 0;
  }

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

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: start;
  }

  .note-hero {
    width: 100%;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
  }

  .note-hero-copy {
    min-height: 0;
    padding: 48px 18px;
  }

  .note-hero-copy h1 {
    font-size: 42px;
  }

  .note-hero-copy > p,
  .note-body {
    font-size: 18px;
  }

  .note-hero img {
    min-height: 320px;
  }

  .note-content {
    width: 100%;
    margin-bottom: 0;
    padding: 38px 18px 64px;
    border-left: 0;
    border-right: 0;
  }

  .note-body blockquote {
    padding: 22px;
    font-size: 20px;
  }
}
