:root {
  color-scheme: light;
  --rv-ink: #10202a;
  --rv-muted: #53636a;
  --rv-green: #116b55;
  --rv-green-dark: #0b4f40;
  --rv-lime: #dbe86b;
  --rv-sky: #dceef5;
  --rv-line: #d8e0df;
  --rv-paper: #f7f9f7;
  --rv-white: #fff;
  --rv-warning: #8a431b;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body { margin: 0; color: var(--rv-ink); background: var(--rv-white); font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.rv-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.rv-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 68px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: #102a2b;
  color: #fff;
}
.rv-brand { display: flex; align-items: baseline; gap: 8px; text-decoration: none; white-space: nowrap; }
.rv-brand span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #9bd4c5; border-radius: 7px; color: var(--rv-lime); font-size: 12px; font-weight: 850; }
.rv-brand strong { font-size: 18px; }
.rv-header nav { display: flex; justify-content: center; gap: 24px; min-width: 0; }
.rv-header nav a { padding: 7px 0; color: #d9e9e4; font-size: 14px; font-weight: 650; text-decoration: none; white-space: nowrap; }
.rv-header nav a:hover, .rv-header nav a:focus-visible, .rv-header nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -2px var(--rv-lime); }
.rv-header-action { padding: 9px 15px; border: 1px solid var(--rv-lime); border-radius: 6px; background: var(--rv-lime); color: #17251f; font-size: 14px; font-weight: 800; text-decoration: none; }

.rv-hero {
  position: relative;
  display: flex;
  min-height: min(680px, calc(100svh - 142px));
  overflow: hidden;
  background: #33514e url("/catalog-assets/rv/maxus-phev-hero.jpg") center 53% / cover no-repeat;
  color: #fff;
}
.rv-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,18,20,.88) 0%, rgba(5,18,20,.68) 43%, rgba(5,18,20,.12) 76%); }
.rv-hero-content { position: relative; display: flex; width: min(1180px, calc(100% - 40px)); margin: auto; flex-direction: column; align-items: flex-start; padding: 54px 0; }
.rv-eyebrow, .rv-section-kicker { margin: 0 0 12px; color: var(--rv-green); font-size: 13px; font-weight: 850; letter-spacing: 0; text-transform: uppercase; }
.rv-hero .rv-eyebrow { color: var(--rv-lime); }
.rv-hero h1 { max-width: 720px; margin: 0; font-size: 62px; line-height: 1.02; letter-spacing: 0; }
.rv-hero-lead { max-width: 650px; margin: 20px 0 0; color: #eef6f3; font-size: 22px; line-height: 1.4; }
.rv-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.rv-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 18px; border: 1px solid transparent; border-radius: 6px; font-weight: 800; text-decoration: none; }
.rv-button-primary { background: var(--rv-lime); color: #16251f; }
.rv-button-secondary { border-color: rgba(255,255,255,.62); background: rgba(4,22,22,.3); color: #fff; backdrop-filter: blur(6px); }
.rv-button:hover, .rv-button:focus-visible, .rv-header-action:hover, .rv-header-action:focus-visible { transform: translateY(-1px); filter: brightness(1.04); }
.rv-hero-facts { display: grid; grid-template-columns: repeat(3, auto); gap: 30px; margin: 44px 0 0; }
.rv-hero-facts div { padding-left: 14px; border-left: 2px solid var(--rv-lime); }
.rv-hero-facts dt { font-size: 16px; font-weight: 850; }
.rv-hero-facts dd { margin: 2px 0 0; color: #d8e6e1; font-size: 13px; }

.rv-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 70px; align-items: start; padding-top: 72px; padding-bottom: 72px; }
.rv-intro h2, .rv-section-head h2, .rv-lead h2 { margin: 0; font-size: 38px; line-height: 1.16; letter-spacing: 0; }
.rv-intro > p { margin: 4px 0 0; color: var(--rv-muted); font-size: 19px; line-height: 1.65; }

.rv-models { padding: 74px 0 82px; background: var(--rv-paper); }
.rv-section-head { display: flex; justify-content: space-between; gap: 56px; align-items: end; margin-bottom: 30px; }
.rv-section-head > p { max-width: 520px; margin: 0 0 3px; color: var(--rv-muted); }
.rv-model-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.rv-model-card { display: flex; min-width: 0; overflow: hidden; grid-column: span 2; flex-direction: column; border: 1px solid var(--rv-line); border-radius: 8px; background: var(--rv-white); }
.rv-model-card:nth-child(-n + 2) { grid-column: span 3; }
.rv-model-card img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.rv-model-copy { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.rv-model-top { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.rv-model-top span { padding: 4px 7px; border-radius: 4px; background: var(--rv-sky); color: #254d5a; font-size: 12px; font-weight: 750; }
.rv-model-copy h3 { margin: 0; font-size: 23px; line-height: 1.22; }
.rv-model-copy > p { flex: 1; margin: 12px 0 18px; color: var(--rv-muted); }
.rv-model-copy dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 0; overflow: hidden; border: 1px solid var(--rv-line); border-radius: 6px; background: var(--rv-line); }
.rv-model-copy dl div { min-width: 0; padding: 10px 9px; background: #fff; }
.rv-model-copy dt { color: var(--rv-muted); font-size: 11px; text-transform: uppercase; }
.rv-model-copy dd { margin: 3px 0 0; font-size: 13px; font-weight: 800; }
.rv-model-copy > a { margin-top: 18px; color: var(--rv-green); font-weight: 800; text-underline-offset: 3px; }
.rv-price-note { margin: 20px 0 0; color: var(--rv-muted); font-size: 13px; }

.rv-gallery { padding: 78px 0 84px; background: #dfeaec; }
.rv-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 50px 28px; }
.rv-photo-set { min-width: 0; }
.rv-photo-set header { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; margin-bottom: 14px; }
.rv-photo-set h3 { margin: 0; font-size: 21px; }
.rv-photo-set header span { color: var(--rv-muted); font-size: 13px; text-align: right; }
.rv-photo-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.rv-photo-pair figure { min-width: 0; margin: 0; overflow: hidden; border-radius: 8px; background: var(--rv-white); }
.rv-photo-pair img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.rv-photo-pair figcaption { min-height: 64px; padding: 10px 12px 12px; color: var(--rv-muted); font-size: 13px; line-height: 1.4; }
.rv-gallery-note { margin: 30px 0 0; color: var(--rv-muted); font-size: 13px; }

.rv-features { padding: 84px 0; overflow: hidden; scroll-margin-top: 68px; background: #102a2b; color: #fff; }
.rv-features .rv-section-kicker { color: var(--rv-lime); }
.rv-features-head > p { color: #bdd0ca; }
.rv-feature-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
.rv-feature-card { position: relative; display: flex; min-height: 330px; grid-column: span 4; flex-direction: column; padding: 24px; overflow: hidden; border: 1px solid #365452; border-radius: 8px; background: #163536; }
.rv-feature-card::after { content: ""; position: absolute; right: -44px; bottom: -54px; width: 150px; height: 150px; border: 1px solid rgba(219,232,107,.16); border-radius: 50%; }
.rv-feature-card.rv-feature-lead { grid-column: span 8; flex-direction: row; gap: 28px; padding-bottom: 68px; background: var(--rv-lime); color: #16251f; }
.rv-feature-number { position: relative; z-index: 1; flex: 0 0 auto; color: var(--rv-lime); font-size: 13px; font-weight: 850; }
.rv-feature-lead .rv-feature-number { color: var(--rv-green-dark); }
.rv-feature-label { position: relative; z-index: 1; margin: 0 0 10px; color: #8bcabb; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.rv-feature-lead .rv-feature-label { color: var(--rv-green-dark); }
.rv-feature-card h3 { position: relative; z-index: 1; margin: 0; font-size: 25px; line-height: 1.15; }
.rv-feature-lead h3 { max-width: 560px; font-size: 34px; }
.rv-feature-card p:not(.rv-feature-label) { position: relative; z-index: 1; margin: 15px 0 22px; color: #c2d3cf; line-height: 1.6; }
.rv-feature-lead p:not(.rv-feature-label) { max-width: 710px; color: #34483f; font-size: 17px; }
.rv-feature-proof { position: relative; z-index: 1; display: block; margin-top: auto; padding-top: 16px; border-top: 1px solid #42615e; color: #e7f18f; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.rv-feature-lead .rv-feature-proof { position: absolute; right: 24px; bottom: 22px; left: 76px; border-color: rgba(16,32,42,.22); color: var(--rv-green-dark); }
.rv-feature-check { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-top: 28px; padding: 26px 28px; border: 1px solid #45615f; border-left: 4px solid var(--rv-lime); background: #0d2425; }
.rv-feature-check b { font-size: 18px; }.rv-feature-check p { max-width: 850px; margin: 7px 0 0; color: #abc0ba; font-size: 14px; line-height: 1.55; }
.rv-feature-check > a { padding: 12px 15px; border: 1px solid var(--rv-lime); border-radius: 6px; color: var(--rv-lime); font-size: 13px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.rv-feature-sources { margin: 22px 0 0; color: #829d96; font-size: 11px; line-height: 1.65; }.rv-feature-sources a { color: #b9d6ce; text-underline-offset: 3px; }

.rv-proof { padding: 78px 0 84px; background: var(--rv-white); }
.rv-proof-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.rv-proof-facts article { padding-top: 20px; border-top: 3px solid var(--rv-green); }
.rv-proof-facts strong { color: var(--rv-green); font-size: 28px; line-height: 1; }
.rv-proof-facts h3 { margin: 10px 0 6px; font-size: 20px; }
.rv-proof-facts p { margin: 0; color: var(--rv-muted); }
.rv-ownership { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; margin-top: 68px; padding-top: 52px; border-top: 1px solid var(--rv-line); }
.rv-ownership h2 { margin: 0; font-size: 30px; line-height: 1.18; }
.rv-ownership p:not(.rv-section-kicker) { margin: 16px 0 0; color: var(--rv-muted); font-size: 17px; line-height: 1.65; }
.rv-energy { padding-left: 28px; border-left: 3px solid var(--rv-lime); }

.rv-service { padding: 76px 0; background: #102a2b; color: #fff; }
.rv-service .rv-section-kicker { color: var(--rv-lime); }
.rv-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid #4c6866; }
.rv-steps li { padding: 25px 24px 0 0; }
.rv-steps li + li { padding-left: 24px; border-left: 1px solid #4c6866; }
.rv-steps span { color: var(--rv-lime); font-size: 13px; font-weight: 850; }
.rv-steps h3 { margin: 13px 0 8px; font-size: 19px; }
.rv-steps p { margin: 0; color: #cadbd6; font-size: 14px; }

.rv-lead { padding: 80px 0; background: #e8f0ec; }
.rv-lead-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr); gap: 72px; align-items: start; }
.rv-lead-copy > p:not(.rv-section-kicker) { margin: 19px 0; color: var(--rv-muted); font-size: 18px; }
.rv-phone-contact { display: grid; gap: 3px; margin: 22px 0; padding: 15px 0; border-top: 1px solid #b9cbc4; border-bottom: 1px solid #b9cbc4; }
.rv-phone-contact span { color: var(--rv-muted); font-size: 13px; }
.rv-phone-contact a { color: var(--rv-green-dark); font-size: 24px; font-weight: 850; text-decoration: none; }
.rv-phone-contact a:hover, .rv-phone-contact a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.rv-lead-copy ul { display: grid; gap: 9px; margin: 25px 0 0; padding: 0; list-style: none; }
.rv-lead-copy li::before { content: "✓"; margin-right: 9px; color: var(--rv-green); font-weight: 900; }
.rv-form { padding: 28px; border: 1px solid #c8d5d0; border-radius: 8px; background: #fff; box-shadow: 0 18px 50px rgba(16,32,42,.1); }
.rv-segmented { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0 0 22px; padding: 0; border: 1px solid #b8c8c2; border-radius: 7px; overflow: hidden; }
.rv-segmented legend { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.rv-segmented label { position: relative; cursor: pointer; }
.rv-segmented label + label { border-left: 1px solid #b8c8c2; }
.rv-segmented input { position: absolute; opacity: 0; pointer-events: none; }
.rv-segmented span { display: grid; min-height: 46px; place-items: center; padding: 9px; text-align: center; font-size: 14px; font-weight: 800; }
.rv-segmented input:checked + span { background: var(--rv-green); color: #fff; }
.rv-segmented input:focus-visible + span { outline: 3px solid #a6d8cb; outline-offset: -3px; }
.rv-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.rv-field { display: grid; gap: 6px; min-width: 0; }
.rv-field > span { font-size: 13px; font-weight: 750; }
.rv-field-wide, .rv-listing-field { grid-column: 1 / -1; }
.rv-listing-field { margin-bottom: 15px; }
.rv-field input, .rv-field select, .rv-field textarea { width: 100%; min-height: 46px; padding: 10px 11px; border: 1px solid #aabbb5; border-radius: 6px; background: #fff; color: var(--rv-ink); }
.rv-field textarea { min-height: 98px; resize: vertical; }
.rv-field input:focus, .rv-field select:focus, .rv-field textarea:focus { outline: 3px solid #c8e5dc; border-color: var(--rv-green); }
.rv-field [aria-invalid="true"] { border-color: #b23a2f; background: #fff7f5; }
.rv-consent { display: flex; gap: 9px; align-items: flex-start; margin: 18px 0; color: var(--rv-muted); font-size: 12px; }
.rv-consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 1px; }
.rv-submit { width: 100%; min-height: 49px; border: 0; border-radius: 6px; background: var(--rv-green); color: #fff; font-weight: 850; cursor: pointer; }
.rv-submit:disabled { cursor: wait; opacity: .65; }
.rv-form-status { min-height: 22px; margin: 12px 0 0; color: var(--rv-muted); font-size: 13px; }
.rv-form-status[data-state="error"] { color: #a33227; }
.rv-form-status[data-state="success"] { color: var(--rv-green-dark); font-weight: 750; }
.rv-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.rv-footer { padding: 32px 0 26px; background: #0a1d20; color: #d7e5e1; }
.rv-footer > .rv-shell:first-child { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.rv-footer div > div { display: grid; gap: 2px; }
.rv-footer strong { color: #fff; }
.rv-footer span, .rv-photo-credit { color: #9bb0aa; font-size: 13px; }
.rv-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.rv-footer a { font-size: 13px; text-underline-offset: 3px; }
.rv-photo-credit { margin-top: 20px; padding-top: 18px; border-top: 1px solid #294043; }

@media (max-width: 980px) {
  html { scroll-padding-top: 118px; }
  .rv-header { grid-template-columns: auto auto; gap: 12px; }
  .rv-header nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; gap: 18px; overflow-x: auto; }
  .rv-header-action { justify-self: end; }
  .rv-features { scroll-margin-top: 112px; }
  .rv-hero { min-height: min(680px, calc(100svh - 176px)); }
  .rv-model-grid { grid-template-columns: 1fr; }
  .rv-model-card, .rv-model-card:nth-child(-n + 2) { display: grid; grid-column: auto; grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr); }
  .rv-model-card img { height: 100%; aspect-ratio: auto; }
  .rv-gallery-grid { grid-template-columns: 1fr; }
  .rv-feature-card { grid-column: span 6; }.rv-feature-card.rv-feature-lead { grid-column: span 12; }
  .rv-proof-facts { grid-template-columns: 1fr; gap: 24px; }
  .rv-ownership { grid-template-columns: 1fr; gap: 38px; }
  .rv-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
  .rv-steps li:nth-child(3) { padding-left: 0; border-left: 0; }
  .rv-lead-layout { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 680px) {
  .rv-shell, .rv-hero-content { width: min(100% - 24px, 1180px); }
  .rv-header { min-height: 60px; padding: 8px 12px; }
  .rv-brand strong { font-size: 16px; }
  .rv-brand span { width: 34px; height: 34px; }
  .rv-header nav { justify-content: space-between; gap: 8px; }
  .rv-header nav a { font-size: 13px; }
  .rv-header-action { padding: 8px 10px; font-size: 13px; }
  .rv-hero { min-height: min(660px, calc(100svh - 146px)); background-position: 62% center; }
  .rv-hero-shade { background: linear-gradient(90deg, rgba(5,18,20,.9) 0%, rgba(5,18,20,.68) 75%, rgba(5,18,20,.32)); }
  .rv-hero-content { padding: 36px 0 28px; }
  .rv-hero h1 { font-size: 44px; }
  .rv-hero-lead { font-size: 18px; }
  .rv-hero-actions, .rv-button { width: 100%; }
  .rv-hero-facts { width: 100%; grid-template-columns: 1fr; gap: 12px; margin-top: 26px; }
  .rv-intro, .rv-section-head { display: grid; grid-template-columns: 1fr; gap: 20px; }
  .rv-intro { padding-top: 52px; padding-bottom: 52px; }
  .rv-intro h2, .rv-section-head h2, .rv-lead h2 { font-size: 31px; }
  .rv-models, .rv-gallery, .rv-features, .rv-proof, .rv-service, .rv-lead { padding: 56px 0; }
  .rv-model-card, .rv-model-card:nth-child(-n + 2) { display: flex; grid-template-columns: none; }
  .rv-model-card img { height: auto; aspect-ratio: 4 / 3; }
  .rv-model-copy dl { grid-template-columns: 1fr; }
  .rv-gallery-grid { gap: 38px; }
  .rv-feature-grid { grid-template-columns: 1fr; }.rv-feature-card, .rv-feature-card.rv-feature-lead { min-height: 0; grid-column: auto; }.rv-feature-card.rv-feature-lead { display: flex; flex-direction: column; padding-bottom: 24px; }.rv-feature-lead h3 { font-size: 27px; }.rv-feature-lead .rv-feature-proof { position: relative; right: auto; bottom: auto; left: auto; }.rv-feature-check { grid-template-columns: 1fr; gap: 20px; padding: 22px; }.rv-feature-check > a { white-space: normal; }
  .rv-photo-set header { display: grid; gap: 3px; }
  .rv-photo-set header span { text-align: left; }
  .rv-photo-pair { display: flex; margin-right: -12px; padding: 0 12px 8px 0; overflow-x: auto; scroll-snap-type: x mandatory; }
  .rv-photo-pair figure { flex: 0 0 84%; scroll-snap-align: start; }
  .rv-ownership { margin-top: 48px; padding-top: 38px; }
  .rv-energy { padding: 28px 0 0; border-top: 3px solid var(--rv-lime); border-left: 0; }
  .rv-steps { grid-template-columns: 1fr; }
  .rv-steps li, .rv-steps li + li { padding: 22px 0 0; border-left: 0; }
  .rv-form { padding: 19px 14px; }
  .rv-form-grid { grid-template-columns: 1fr; }
  .rv-field-wide { grid-column: auto; }
  .rv-segmented span { min-height: 56px; padding: 8px 5px; font-size: 13px; }
  .rv-footer > .rv-shell:first-child { align-items: flex-start; flex-direction: column; }
}

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