@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/barlow-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/barlow-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/barlow-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/barlow-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/rajdhani-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/rajdhani-700-latin.woff2") format("woff2");
}

:root {
  --orange: #ff6b00;
  --orange-hot: #ff8a1c;
  --orange-ink: #b74600;
  --focus: #c54a00;
  --black: #050505;
  --charcoal: #111111;
  --panel: #181818;
  --ink: #151515;
  --muted: #666666;
  --metal: #b9b9b9;
  --sand: #f3f1ec;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.09);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --surface-dark: rgba(7, 11, 14, 0.82);
  --dark-line: rgba(255, 255, 255, 0.14);
  --light-line: rgba(5, 5, 5, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  --shadow-strong: 0 34px 92px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 160ms;
  --motion-standard: 260ms;
  --motion-reveal: 480ms;
  --motion-hero: 620ms;
  --motion-distance: 16px;
  --hover-lift: 2px;
  --image-hover-scale: 1.02;
  --label: clamp(18px, 1.28vw, 24px);
  --hero-title: clamp(52px, 5.25vw, 96px);
  --section-title: clamp(38px, 5.1vw, 74px);
  --card-title: clamp(25px, 2.2vw, 34px);
  --body-large: clamp(18px, 1.55vw, 23px);
  --hero-shift-x: 0%;
  --hero-shift-y: 0%;
  --hero-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.025) 1px, transparent 1px),
    var(--sand);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: Barlow, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.page-glow {
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(520px circle at 78% 18%, rgba(255, 107, 0, 0.12), transparent 58%);
  opacity: 0.78;
  pointer-events: none;
}

body > *:not(.page-glow):not(.skip-link):not(.scroll-meter):not(.site-header) {
  position: relative;
  z-index: 1;
}

*:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.scroll-meter {
  position: fixed;
  z-index: 60;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.38);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--dark-line);
  color: var(--white);
  transition: background var(--motion-fast) ease, border-color var(--motion-fast) ease, min-height var(--motion-fast) ease, padding var(--motion-fast) ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 66px;
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--dark-line);
}

.brand img {
  width: clamp(116px, 13vw, 172px);
  transition: width var(--motion-fast) ease;
}

.site-header.is-scrolled .brand img {
  width: clamp(98px, 10vw, 138px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.36);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 9px 12px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--motion-fast) ease, background var(--motion-fast) ease, transform var(--motion-fast) var(--ease);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) var(--ease);
}

.primary-nav a:hover,
.primary-nav a.is-active,
.primary-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 107, 0, 0.13);
  transform: translateY(-1px);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  cursor: pointer;
  touch-action: manipulation;
  transition: background var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform var(--motion-standard) var(--ease-soft), opacity var(--motion-fast) ease;
}

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

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

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

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 15%, rgba(255, 107, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #050505, #111 56%, #1b1b1b);
}

.hero-banner,
.services-section,
.victron-section,
.about-section,
.work-section,
.adventure-section,
.process-section,
.system-flow-section,
.authority-section,
.faq-section,
.contact-section {
  position: relative;
  padding: clamp(62px, 8vw, 118px) clamp(20px, 5vw, 76px);
}

.hero-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 86vh;
  padding-top: 128px;
  padding-bottom: clamp(54px, 7vh, 92px);
  overflow: hidden;
  isolation: isolate;
}

.subpage-hero {
  min-height: min(72vh, 760px);
}

.subpage-hero .hero-content {
  max-width: 980px;
}

.subpage-hero .hero-media img {
  object-position: center 45%;
}

.victron-hero .hero-media img {
  object-position: center 38%;
}

.contact-hero .hero-media img {
  object-position: center 34%;
}

.about-hero .hero-media img {
  object-position: 58% 50%;
}

.hero-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto clamp(20px, 5vw, 76px) clamp(20px, 3vw, 42px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.72), rgba(255, 255, 255, 0.28), transparent);
  opacity: 0.88;
}

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

.hero-media {
  z-index: -3;
  background: #050505;
}

.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
  transform: translate(var(--hero-shift-x), var(--hero-shift-y)) scale(var(--hero-scale));
  animation: heroSettle 950ms var(--ease-soft) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.62) 38%, rgba(5, 5, 5, 0.04) 74%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.26) 58%, rgba(5, 5, 5, 0.84));
}

.hero-content {
  max-width: 1120px;
  position: relative;
  z-index: 1;
}

.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > .hero-lede,
.hero-content > .hero-actions {
  animation: heroStage var(--motion-hero) var(--ease-soft) both;
}

.hero-content > .eyebrow {
  animation-delay: 40ms;
}

.hero-content > h1 {
  animation-delay: 100ms;
}

.hero-content > .hero-lede {
  animation-delay: 170ms;
}

.hero-content > .hero-actions {
  animation-delay: 240ms;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: var(--label);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Rajdhani, "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
  scroll-margin-top: 96px;
  text-wrap: balance;
  text-transform: uppercase;
}

p {
  text-wrap: pretty;
}

h1 {
  max-width: 1120px;
  color: #f7f7f3;
  font-size: var(--hero-title);
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
}

h1 span {
  display: block;
}

h1 .mobile-break {
  display: inline;
}

h2 {
  max-width: 1060px;
  font-size: var(--section-title);
}

h3 {
  font-size: var(--card-title);
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--body-large);
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform var(--motion-fast) var(--ease), background var(--motion-fast) ease, border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.button:active {
  transform: translateY(-1px) scale(0.985);
}

.button-primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.35);
}

.button-primary:hover {
  background: var(--orange-hot);
  box-shadow: 0 8px 22px rgba(255, 107, 0, 0.2);
}

.button:disabled {
  opacity: 0.72;
  cursor: wait;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(calc(var(--hover-lift) * -1));
  }
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.install-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content .eyebrow,
.section-heading .eyebrow,
.about-copy > .eyebrow,
.contact-copy > .eyebrow {
  font-size: clamp(21px, 1.7vw, 30px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 18px 60px rgba(255, 107, 0, 0.24);
}

.trust-strip span {
  position: relative;
  padding: 18px clamp(14px, 2vw, 28px);
  border-right: 1px solid rgba(5, 5, 5, 0.16);
  font-family: Rajdhani, Arial, sans-serif;
  font-size: clamp(21px, 2.1vw, 31px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip span::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 10px;
  background: rgba(5, 5, 5, 0.82);
}

.section-heading {
  max-width: 1080px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.home-pages-section > .section-heading .eyebrow,
.services-section > .section-heading .eyebrow,
.work-section > .section-heading .eyebrow,
.authority-section > .section-heading .eyebrow,
.contact-copy > .eyebrow {
  color: var(--orange-ink);
}

.services-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 107, 0, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    var(--sand);
  background-size: 46px 46px;
}

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

.service-panel {
  position: relative;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto auto 1fr;
  gap: 13px;
  min-height: 360px;
  overflow: hidden;
  padding: 0 clamp(20px, 2.35vw, 28px) clamp(22px, 2.5vw, 30px);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  isolation: isolate;
  transition: border-color var(--motion-standard) ease, background var(--motion-standard) ease;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 138, 28, 0.25));
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 116px;
  margin: 0 calc(clamp(20px, 2.35vw, 28px) * -1) 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--black);
  isolation: isolate;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.28)),
    linear-gradient(90deg, rgba(255, 107, 0, 0.15), transparent 62%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.92);
  transition: transform var(--motion-standard) var(--ease-soft), filter var(--motion-standard) ease;
}

.service-panel:nth-child(2) .service-image img {
  object-position: center 22%;
}

.service-panel::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -64px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border: 20px solid rgba(255, 107, 0, 0.08);
  border-radius: 50%;
}

@media (hover: hover) and (pointer: fine) {
  .service-panel:hover .service-image img {
    transform: scale(var(--image-hover-scale));
    filter: saturate(0.94) contrast(1.1) brightness(0.95);
  }
}

.service-panel:nth-child(1) {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 107, 0, 0.2), transparent 28%),
    linear-gradient(145deg, #050505, #111 66%, #241104);
  color: var(--white);
}

.service-panel:nth-child(1) .service-image img {
  object-position: 38% 52%;
}

.service-panel:nth-child(2) {
  background: var(--white);
  color: var(--ink);
}

.service-panel:nth-child(2) .service-image img {
  object-position: 72% 52%;
}

.service-panel:nth-child(3) {
  background: var(--black);
  color: var(--white);
}

.service-panel:nth-child(3) .service-image img {
  object-position: 48% 57%;
}

.service-panel:nth-child(4) {
  background: var(--charcoal);
  color: var(--white);
}

.service-panel:nth-child(4) .service-image img {
  object-position: 58% 48%;
}

.service-panel:nth-child(5) {
  background: var(--sand);
  color: var(--ink);
}

.service-panel:nth-child(5) .service-image img {
  object-position: 50% 42%;
}

.service-panel:nth-child(6) {
  background: var(--orange);
  color: var(--black);
}

.service-panel:nth-child(6) .service-image img {
  object-position: 52% 72%;
}

.service-panel:nth-child(3) p,
.service-panel:nth-child(4) p,
.service-panel:nth-child(1) p {
  color: rgba(255, 255, 255, 0.7);
}

.service-kicker {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.95;
}

.service-panel:nth-child(2) .service-kicker,
.service-panel:nth-child(5) .service-kicker {
  color: var(--orange-ink);
}

.service-panel:nth-child(6) .service-kicker {
  border-color: var(--black);
  color: var(--black);
}

.service-panel h3 {
  max-width: 430px;
}

.service-panel p {
  font-family: Barlow, Arial, sans-serif;
  max-width: 24ch;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.35;
  color: var(--muted);
  margin: 0;
}

.service-panel strong {
  display: block;
  align-self: end;
  margin-top: 10px;
  color: inherit;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-tags {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 12px;
}

.service-tags span {
  position: relative;
  display: inline-block;
  min-height: 0;
  padding: 0 0 0 14px;
  border: 0;
  color: inherit;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.76;
}

.service-tags span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.service-panel:nth-child(3) .service-tags span,
.service-panel:nth-child(4) .service-tags span,
.service-panel:nth-child(1) .service-tags span {
  color: rgba(255, 255, 255, 0.82);
}

.service-panel:nth-child(6) .service-tags span {
  color: rgba(5, 5, 5, 0.8);
}

.service-panel:nth-child(6) .service-tags span::before {
  background: var(--black);
}

.service-panel:nth-child(6) p {
  color: rgba(5, 5, 5, 0.78);
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.service-cta p {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
}

.lithium-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  margin-top: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 107, 0, 0.18), transparent 26%),
    linear-gradient(135deg, #050505, #101010 66%, #241104);
  color: var(--white);
  box-shadow: 0 22px 58px rgba(5, 5, 5, 0.18);
}

.lithium-callout h3 {
  max-width: 760px;
  font-size: clamp(34px, 4.8vw, 62px);
}

.lithium-callout p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(18px, 1.35vw, 21px);
}

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

.lithium-callout li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.victron-section {
  overflow: hidden;
}

.victron-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 107, 0, 0.16), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.07), transparent 28%);
  pointer-events: none;
}

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

.victron-brand-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  max-width: 1180px;
  margin-bottom: clamp(48px, 6vw, 78px);
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid #0066b2;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.victron-logo-field {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 28px 30px;
  border-radius: 4px;
  background: #ffffff;
}

.victron-logo-field img {
  display: block;
  width: min(100%, 390px);
  height: auto;
}

.victron-brand-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.victron-brand-copy > a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 14px;
  color: #8ec7ff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.victron-brand-copy > a:hover,
.victron-brand-copy > a:focus-visible {
  color: #ffffff;
}

.victron-section > .section-heading::after {
  content: "";
  display: block;
  width: min(100%, 960px);
  height: 1px;
  margin-top: clamp(26px, 3vw, 38px);
  background: linear-gradient(90deg, var(--orange), rgba(255, 107, 0, 0.24) 68%, transparent);
}

.victron-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.victron-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.victron-copy .button {
  margin-top: 18px;
}

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

.victron-card,
.authority-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--dark-line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.055));
}

.victron-card strong,
.authority-card strong {
  display: block;
  font-family: Rajdhani, Arial, sans-serif;
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

.victron-card p,
.authority-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  overflow: hidden;
}

.about-section::after,
.process-section::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -24vw;
  width: 58vw;
  height: 58vw;
  border: 38px solid rgba(255, 107, 0, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.about-copy,
.about-image-frame,
.about-standard {
  position: relative;
  z-index: 1;
}

.about-copy p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.about-copy .about-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 600;
}

.about-proof {
  display: grid;
  gap: 10px;
  max-width: 690px;
  margin-top: 30px;
}

.about-proof div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid var(--dark-line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 107, 0, 0.12), rgba(255, 255, 255, 0.045));
  color: rgba(255, 255, 255, 0.88);
}

.about-proof strong {
  color: rgba(255, 107, 0, 0.9);
  font-family: Rajdhani, Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.about-proof span {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(20px, 1.6vw, 25px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.about-standard {
  min-height: 0;
  overflow: hidden;
  padding: clamp(26px, 3.2vw, 44px);
  border: 1px solid rgba(255, 107, 0, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 107, 0, 0.1), transparent 42%),
    #0b0b0b;
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 70px rgba(0, 0, 0, 0.32);
}

.about-standard::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.standard-heading,
.standard-map {
  position: relative;
  z-index: 1;
}

.standard-heading {
  max-width: 680px;
}

.standard-heading .eyebrow {
  margin-bottom: 10px;
}

.standard-heading h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 2.65vw, 40px);
}

.standard-map {
  display: grid;
  grid-template-columns: minmax(128px, 1fr) clamp(180px, 32%, 200px) minmax(128px, 1fr);
  grid-template-rows: minmax(122px, auto) minmax(164px, auto) minmax(122px, auto);
  gap: 18px clamp(12px, 1vw, 18px);
  align-items: stretch;
  width: 100%;
  max-width: 900px;
  min-height: 0;
  margin: 30px auto 0;
  isolation: isolate;
}

.standard-map::before,
.standard-map::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: rgba(255, 107, 0, 0.46);
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.2);
}

.standard-map::before {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
}

.standard-map::after {
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
}

.standard-core {
  position: relative;
  z-index: 2;
  grid-row: 2;
  grid-column: 2;
  display: grid;
  width: min(100%, 180px);
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  place-content: center;
  padding: 22px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: #080808;
  box-shadow:
    0 0 0 10px rgba(255, 107, 0, 0.08),
    0 0 44px rgba(255, 107, 0, 0.2);
  text-align: center;
}

.standard-core span {
  color: var(--orange-hot);
  font-family: Rajdhani, Arial, sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 700;
  line-height: 0.8;
}

.standard-core strong {
  max-width: 12ch;
  margin: 14px auto 0;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.05;
  text-transform: uppercase;
}

.standard-node {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 260px;
  min-height: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 3px solid var(--orange);
  border-radius: 6px;
  background: rgba(18, 18, 18, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.standard-node-top {
  grid-row: 1;
  grid-column: 2;
  justify-self: center;
}

.standard-node-left {
  grid-row: 2;
  grid-column: 1;
  align-self: center;
  justify-self: start;
}

.standard-node-right {
  grid-row: 2;
  grid-column: 3;
  align-self: center;
  justify-self: end;
}

.standard-node-bottom {
  grid-row: 3;
  grid-column: 2;
  max-width: 300px;
  justify-self: center;
}

.standard-node span {
  color: var(--orange);
  font-family: Rajdhani, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.standard-node strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-family: Rajdhani, Arial, sans-serif;
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1;
  text-transform: uppercase;
}

.standard-node p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.3;
}

.about-image-frame,
.install-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 107, 0, 0.38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 24px 70px rgba(0, 0, 0, 0.32);
}

.about-image-frame::before,
.install-card::before,
.adventure-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.about-image-frame img {
  width: 100%;
  height: clamp(430px, 48vw, 620px);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) brightness(0.9);
}

.image-caption {
  padding: 18px;
  border-top: 1px solid var(--dark-line);
  border-left: 4px solid var(--orange);
  background: rgba(5, 5, 5, 0.92);
}

.image-caption span {
  color: var(--orange);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.image-caption strong {
  display: block;
  margin-top: 6px;
  font-family: Rajdhani, Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.work-section {
  background: var(--white);
}

.install-gallery {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 18px;
}

.install-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(5, 5, 5, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 107, 0, 0.22) inset,
    0 18px 45px rgba(5, 5, 5, 0.14);
  color: var(--white);
}

.install-card-large {
  display: grid;
  grid-template-rows: minmax(560px, 1fr) auto;
  grid-row: span 2;
}

.install-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: contrast(1.04) brightness(0.86);
  transition: transform var(--motion-standard) var(--ease-soft), filter var(--motion-standard) ease;
}

@media (hover: hover) and (pointer: fine) {
  .install-card:hover img {
    filter: contrast(1.07) brightness(0.91);
    transform: scale(var(--image-hover-scale));
  }
}

.install-card-large img {
  height: 100%;
  min-height: 560px;
}

.install-meta {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-left: 4px solid var(--orange);
  background:
    linear-gradient(135deg, rgba(9, 18, 28, 0.96), rgba(5, 5, 5, 0.96));
}

.install-meta p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.adventure-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 0.85fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 138, 28, 0.34), transparent 42%),
    var(--orange);
  color: var(--black);
}

.adventure-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.24);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 24px 70px rgba(0, 0, 0, 0.25);
}

.adventure-image img {
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  object-fit: cover;
  object-position: 40% center;
  filter: contrast(1.04) brightness(0.78);
}

.adventure-copy .eyebrow {
  color: var(--black);
}

.adventure-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px 0 26px;
  font-size: 20px;
}

.process-section {
  overflow: hidden;
}

.process-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-track li {
  display: grid;
  grid-template-rows: 80px minmax(72px, auto) 1fr;
  min-height: 292px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.055));
}

.process-track span {
  display: block;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: Rajdhani, Arial, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.process-track strong {
  display: block;
  font-family: Rajdhani, Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.process-track p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.system-flow-section {
  overflow: hidden;
}

.system-flow-section .section-heading p:not(.eyebrow) {
  max-width: 680px;
}

.system-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: clamp(34px, 5vw, 62px) 0 0;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  list-style: none;
}

.system-flow li {
  position: relative;
  min-width: 0;
  padding: 30px clamp(20px, 2.6vw, 38px);
}

.system-flow li + li {
  border-left: 1px solid var(--dark-line);
}

.system-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: calc(50% - 7px);
  right: 8px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  background: var(--black);
  transform: rotate(45deg);
}

.system-flow span {
  display: block;
  color: var(--orange);
  font-family: Rajdhani, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.system-flow strong {
  display: block;
  margin-top: 20px;
  font-family: Rajdhani, Arial, sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.system-flow p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.authority-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 107, 0, 0.1), transparent 28%),
    var(--sand);
}

.authority-card {
  min-height: 210px;
  border-color: var(--light-line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.authority-card p {
  color: var(--muted);
}

.faq-section {
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  right: -18vw;
  top: -24vw;
  width: 56vw;
  height: 56vw;
  border: 38px solid rgba(255, 107, 0, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 1080px;
}

.faq-list details {
  border: 1px solid var(--dark-line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-list p {
  max-width: 860px;
  padding: 0 20px 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.88fr);
  gap: clamp(30px, 6vw, 92px);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 107, 0, 0.08), transparent 28%),
    var(--white);
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 700;
}

.contact-details a {
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(255, 107, 0, 0.35);
  color: #b74400;
  overflow-wrap: anywhere;
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-details a:hover {
  border-color: var(--orange);
  color: #8f3600;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.facebook-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.home-pages-section {
  background: var(--white);
}

.page-link-grid .authority-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  transition: transform var(--motion-fast) var(--ease), border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.page-link-grid .authority-card::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -70px;
  bottom: -96px;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(255, 107, 0, 0.035);
  border-radius: 50%;
}

.page-link-symbol {
  position: absolute;
  z-index: -1;
  right: -14px;
  bottom: -16px;
  width: 215px;
  height: 215px;
  color: var(--ink);
  transition: opacity var(--motion-standard) ease, transform var(--motion-standard) var(--ease-soft);
}

.page-link-symbol-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.075;
}

.page-link-symbol-fill {
  fill: currentColor;
  opacity: 0.06;
}

.page-link-kicker {
  position: relative;
  z-index: 1;
  max-width: 68%;
  margin: 0 0 12px;
  color: var(--orange-ink);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-link-grid .authority-card strong,
.page-link-grid .authority-card p {
  position: relative;
  z-index: 1;
  max-width: 68%;
}

.page-link-action {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 24px;
  color: #b74400;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-link-grid .authority-card:focus-visible {
  border-color: rgba(255, 107, 0, 0.65);
  transform: translateY(calc(var(--hover-lift) * -1));
}

.page-link-grid .authority-card:focus-visible .page-link-symbol {
  opacity: 0.11;
  transform: translate(-2px, -2px);
}

@media (hover: hover) and (pointer: fine) {
  .page-link-grid .authority-card:hover {
    border-color: rgba(255, 107, 0, 0.65);
    transform: translateY(calc(var(--hover-lift) * -1));
  }

  .page-link-grid .authority-card:hover .page-link-symbol {
    opacity: 0.11;
    transform: translate(-2px, -2px);
  }
}

@media (max-width: 760px) {
  .page-link-grid .authority-card {
    min-height: 270px;
    padding: 26px;
  }

  .page-link-symbol {
    right: -28px;
    width: 195px;
    height: 195px;
  }

  .page-link-kicker,
  .page-link-grid .authority-card strong,
  .page-link-grid .authority-card p {
    max-width: 72%;
  }
}

.home-contact-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 76px);
}

.home-contact-cta h2 {
  max-width: 780px;
}

.home-contact-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.home-contact-cta .button {
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 241, 236, 0.94));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.form-status {
  min-height: 22px;
  margin: -6px 0 0;
  color: #555;
  font-size: 15px;
  font-weight: 600;
}

.form-status:empty {
  min-height: 0;
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #444;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.62);
  color: #555;
  font-family: Barlow, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none;
}

.contact-form .consent-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.contact-form .consent-check span {
  min-width: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d4d1ca;
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  font: 500 17px Barlow, Arial, sans-serif;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form .consent-check input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 1px 0 0;
  border-radius: 3px;
  accent-color: var(--orange);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--focus);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  box-shadow: none;
}

.interest-fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.interest-fieldset legend {
  margin-bottom: 9px;
  color: #444;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.interest-grid label {
  position: relative;
  display: block;
  min-height: 46px;
  cursor: pointer;
}

.interest-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.interest-grid span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d4d1ca;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
  color: #3b3b3b;
  font-family: Barlow, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.interest-grid span::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-right: 9px;
  border: 2px solid rgba(5, 5, 5, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.interest-grid input:checked + span {
  border-color: rgba(255, 107, 0, 0.72);
  background: rgba(255, 107, 0, 0.12);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.12);
}

.interest-grid input:checked + span::before {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 3px var(--white);
}

.interest-grid input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  box-shadow: none;
}

.field-status {
  color: #5c5c5c;
  font-family: Barlow, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.consent-check a {
  color: #9e3c00;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #555;
  font-size: 15px;
}

.form-note a {
  color: #b74400;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100vh;
  padding: 136px clamp(20px, 5vw, 76px) clamp(70px, 8vw, 118px);
  background: var(--sand);
}

.legal-shell {
  max-width: 980px;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.legal-shell > .eyebrow {
  color: var(--orange-ink);
}

.legal-shell h1 {
  max-width: 760px;
  color: var(--black);
  font-size: clamp(42px, 5vw, 72px);
}

.legal-shell h2 {
  margin-top: 34px;
  color: var(--black);
  font-size: clamp(26px, 3vw, 38px);
}

.legal-shell p,
.legal-shell li {
  color: #444;
  font-size: 18px;
}

.legal-shell a {
  color: #b74400;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-shell .button {
  color: var(--white);
  text-decoration: none;
}

.legal-shell .button-primary {
  color: var(--black);
}

.legal-shell ul {
  padding-left: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(390px, 0.9fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
  padding: 38px clamp(20px, 5vw, 76px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.66);
}

.site-footer img {
  width: 116px;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-links a[href^="mailto:"] {
  font-size: 15px;
  white-space: nowrap;
}

.privacy-note {
  font-size: 14px;
}

.privacy-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(var(--motion-distance));
  transition: opacity var(--motion-reveal) var(--ease-soft), transform var(--motion-reveal) var(--ease-soft);
  transition-delay: 0ms;
}

.motion-ready [data-reveal][data-reveal-index="1"] {
  transition-delay: 45ms;
}

.motion-ready [data-reveal][data-reveal-index="2"] {
  transition-delay: 90ms;
}

.motion-ready [data-reveal][data-reveal-index="3"] {
  transition-delay: 135ms;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroStage {
  from {
    opacity: 0;
    transform: translateY(var(--motion-distance));
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSettle {
  from {
    transform: translate(var(--hero-shift-x), var(--hero-shift-y)) scale(calc(var(--hero-scale) + 0.015));
  }

  to {
    transform: translate(var(--hero-shift-x), var(--hero-shift-y)) scale(var(--hero-scale));
  }
}

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

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

  .page-glow {
    display: none;
  }

  .hero-media img {
    animation: none !important;
  }

  .hero-content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (pointer: coarse) {
  .page-glow {
    display: none;
  }
}

@media (max-width: 1280px) {
  .about-section,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .hero-banner,
  .lithium-callout,
  .victron-layout,
  .about-section,
  .adventure-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-stack,
  .victron-benefits,
  .authority-grid,
  .process-track,
  .system-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-flow li:nth-child(3) {
    border-left: 0;
  }

  .system-flow li:nth-child(n + 3) {
    border-top: 1px solid var(--dark-line);
  }

  .system-flow li:nth-child(2)::after {
    display: none;
  }

  .install-gallery {
    grid-template-columns: 1fr;
  }

  .install-card-large {
    grid-row: auto;
  }

  .about-standard {
    min-height: 0;
  }

  .standard-map {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --motion-distance: 10px;
    --motion-reveal: 400ms;
    --motion-hero: 480ms;
  }

  .subpage-hero {
    min-height: 68vh;
  }

  .home-contact-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  body {
    font-size: 16px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .services-section,
  .victron-section,
  .about-section,
  .work-section,
  .adventure-section,
  .process-section,
  .system-flow-section,
  .authority-section,
  .faq-section,
  .contact-section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 920px;
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto;
    min-height: 68px;
    padding: 12px 18px;
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    min-height: 68px;
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
    background: rgba(5, 5, 5, 0.5);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  }

  .brand img {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.62));
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    height: calc(100dvh - 68px);
    max-height: calc(100dvh - 68px);
    padding: 16px 20px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
    align-content: start;
    visibility: hidden;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: #050505;
    border-bottom: 1px solid var(--dark-line);
    opacity: 0;
    pointer-events: none;
    overscroll-behavior: contain;
    transform: translateY(-8px);
    transform-origin: top;
    transition: opacity var(--motion-standard) ease, transform var(--motion-standard) var(--ease-soft), visibility 0s linear var(--motion-standard);
  }

  .primary-nav a {
    text-align: left;
  }

  .site-header.is-open .primary-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .motion-ready [data-reveal][data-reveal-index="1"] {
    transition-delay: 30ms;
  }

  .motion-ready [data-reveal][data-reveal-index="2"] {
    transition-delay: 60ms;
  }

  .motion-ready [data-reveal][data-reveal-index="3"] {
    transition-delay: 90ms;
  }

  .hero-banner {
    --hero-shift-x: 0%;
    --hero-shift-y: 0%;
    --hero-scale: 1;
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 86px 20px 34px;
    background:
      radial-gradient(circle at 86% 20%, rgba(255, 107, 0, 0.12), transparent 34%),
      linear-gradient(135deg, #050505, #111);
  }

  .hero-media {
    position: relative;
    inset: auto;
    z-index: 0;
    width: calc(100% + 40px);
    height: 290px;
    margin: -86px -20px 28px;
    overflow: hidden;
    border-bottom: 5px solid var(--orange);
    background: none;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.1) 58%, rgba(5, 5, 5, 0.7)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.18), transparent 44%);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-media img {
    position: static;
    width: 100%;
    object-position: 50% 69%;
    filter: saturate(1.08) contrast(1.08) brightness(1.04);
    animation: none;
  }

  .hero-content > .eyebrow {
    animation-delay: 20ms;
  }

  .hero-content > h1 {
    animation-delay: 70ms;
  }

  .hero-content > .hero-lede {
    animation-delay: 120ms;
  }

  .hero-content > .hero-actions {
    animation-delay: 170ms;
  }

  .victron-hero .hero-media img {
    object-position: 50% 42%;
  }

  .contact-hero .hero-media img {
    object-position: 50% 40%;
  }

  .about-hero .hero-media img {
    object-position: 70% 50%;
  }

  .hero-shade {
    display: none;
  }

  .page-link-grid .authority-card:active {
    transform: scale(0.99);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(23px, 5.35vw, 27px);
    line-height: 1.02;
  }

  h1 span {
    white-space: nowrap;
  }

  h1 .mobile-break {
    display: inline;
  }

  h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .hero-lede {
    max-width: 96%;
    font-size: clamp(16px, 3.7vw, 18px);
  }

  .eyebrow {
    display: block;
    width: auto;
    max-width: 100%;
    font-size: 18px;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 54px;
  }

  .trust-strip,
  .service-stack,
  .victron-benefits,
  .authority-grid,
  .process-track,
  .system-flow {
    grid-template-columns: 1fr;
  }

  .system-flow {
    border-bottom: 0;
  }

  .system-flow li,
  .system-flow li:nth-child(3) {
    padding: 22px 18px;
    border-top: 0;
    border-bottom: 1px solid var(--dark-line);
    border-left: 0;
  }

  .system-flow li:not(:last-child)::after,
  .system-flow li:nth-child(2)::after {
    display: block;
    top: auto;
    right: auto;
    bottom: -10px;
    left: 25px;
    width: 2px;
    height: 20px;
    border: 0;
    background: var(--orange);
    transform: none;
  }

  .system-flow strong {
    margin-top: 8px;
    font-size: 30px;
  }

  .system-flow p {
    margin-top: 6px;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.16);
  }

  .trust-strip span::before {
    width: 24px;
    margin-bottom: 8px;
  }

  .hero-banner,
  .services-section,
  .victron-section,
  .about-section,
  .work-section,
  .adventure-section,
  .process-section,
  .system-flow-section,
  .authority-section,
  .faq-section,
  .contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer-links a[href^="mailto:"] {
    font-size: 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .service-panel {
    min-height: 230px;
  }

  .service-tags {
    display: none;
  }

  .lithium-callout,
  .victron-layout,
  .victron-brand-band {
    grid-template-columns: 1fr;
  }

  .lithium-callout {
    padding: 22px;
  }

  .victron-brand-band {
    gap: 20px;
    padding: 16px;
  }

  .victron-logo-field {
    min-height: 108px;
    padding: 24px;
  }

  .service-cta {
    display: grid;
    gap: 14px;
  }

  .service-cta .button {
    width: 100%;
  }

  .about-image-frame img {
    height: 430px;
  }

  .about-standard {
    min-height: 0;
    padding: 24px 20px;
  }

  .about-standard::before {
    inset: 10px;
  }

  .standard-heading {
    padding: 0 4px;
  }

  .standard-heading h3 {
    max-width: 16ch;
    font-size: clamp(27px, 8vw, 32px);
  }

  .standard-map {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
    gap: 10px;
    margin-top: 28px;
    padding-left: 18px;
  }

  .standard-map::before {
    top: 44px;
    bottom: 44px;
    left: 31px;
    width: 2px;
  }

  .standard-map::after {
    display: none;
  }

  .standard-core,
  .standard-node,
  .standard-node-top,
  .standard-node-left,
  .standard-node-right,
  .standard-node-bottom {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    grid-row: auto;
    grid-column: auto;
    transform: none;
  }

  .standard-core {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    min-height: 104px;
    aspect-ratio: auto;
    place-content: center start;
    padding: 18px 22px;
    border-radius: 6px;
    text-align: left;
  }

  .standard-core span {
    align-self: center;
    font-size: 46px;
  }

  .standard-core strong {
    align-self: center;
    max-width: 14ch;
    margin: 0;
    font-size: 17px;
  }

  .standard-node {
    padding: 15px 16px 15px 54px;
    border-top-width: 1px;
    border-left: 3px solid var(--orange);
  }

  .standard-node span {
    position: absolute;
    top: 16px;
    left: 16px;
  }

  .standard-node strong {
    margin-top: 0;
    font-size: 23px;
  }

  .standard-node p {
    font-size: 15px;
  }

  .image-caption {
    border-left-width: 4px;
  }

  .install-card img,
  .install-card-large img,
  .adventure-image img {
    height: 300px;
  }

  .adventure-image img {
    object-position: 58% center;
  }

  .process-track li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    min-height: 0;
    padding: 18px;
  }

  .process-track span {
    grid-row: 1 / span 2;
    align-self: start;
    font-size: 40px;
  }

  .process-track strong,
  .process-track p {
    grid-column: 2;
  }

  .process-track strong {
    font-size: 24px;
  }

  .process-track p {
    margin-top: 8px;
  }

  .victron-card,
  .authority-card {
    min-height: auto;
  }

  .faq-list summary {
    padding: 16px;
  }

  .faq-list p {
    padding: 0 16px 18px;
  }

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

@media (max-width: 420px) {
  .hero-banner {
    padding-top: 94px;
  }

  .about-image-frame img {
    height: 360px;
  }

  .about-standard {
    padding: 22px 16px;
  }

  .standard-map {
    padding-left: 12px;
  }

  .standard-map::before {
    left: 25px;
  }
}
