:root {
  --ink: #111111;
  --text: #2a2a2a;
  --muted: #666a70;
  --paper: #fbfbfa;
  --surface: #ffffff;
  --line: #e5e5e1;
  --graphite: #1f2022;
  --charcoal: #0c0d0e;
  --sage: #111111;
  --copper: #d71920;
  --signal: #d71920;
  --blue: #6f747b;
  --radius: 6px;
  --shadow: 0 18px 46px rgba(10, 10, 10, .12);
  --section-gap: clamp(72px, 8vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, .035), transparent 26%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(21, 21, 21, .12);
  background: rgba(251, 251, 250, .98);
}

.site-header::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--signal), var(--ink));
}

.brand img {
  width: 108px;
  height: auto;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: transform .22s ease, opacity .22s ease;
}

.brand::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.brand:hover,
.brand:focus-visible {
  opacity: .86;
  transform: translateY(-1px);
}

.brand:hover::after,
.brand:focus-visible::after {
  transform: scaleX(1);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 32px);
  color: #34383d;
  font-size: 13px;
  font-weight: 850;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px) clamp(18px, 4vw, 56px);
  min-height: min(720px, calc(100svh - 68px));
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #697986;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 5.3vw, 72px);
}

h2 {
  font-size: clamp(34px, 4.5vw, 64px);
}

h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.hero-lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: #3d4248;
  font-size: clamp(17px, 1.55vw, 20px);
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 12px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 3px 0 0 var(--signal);
  transition: border-color .2s ease, box-shadow .25s ease, color .2s ease, background .2s ease, transform .25s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .22) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: inset 3px 0 0 var(--signal), 0 14px 34px rgba(17, 17, 17, .16);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

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

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.button.secondary::after {
  background: linear-gradient(110deg, transparent 0%, rgba(215, 25, 32, .10) 48%, transparent 62%);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--signal);
  color: var(--signal);
}

.hero-products {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 12px;
  align-items: stretch;
}

.hero-product {
  position: relative;
  display: grid;
  min-height: 198px;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--ink);
  background: #f4f4f2;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .25s ease, box-shadow .35s ease, transform .35s ease;
}

.hero-product:hover {
  border-color: rgba(17, 17, 17, .32);
  box-shadow: 0 24px 70px rgba(17, 17, 17, .12);
  transform: translateY(-4px);
}

.hero-product-large {
  grid-row: span 2;
  min-height: 450px;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, .92) 100%);
  pointer-events: none;
}

.hero-product img {
  position: absolute;
  inset: 12px 12px 74px;
  width: calc(100% - 24px);
  height: calc(100% - 92px);
  object-fit: contain;
}

.hero-product span,
.hero-product strong,
.hero-product small {
  position: relative;
  z-index: 1;
}

.hero-product span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 8px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-product strong {
  margin-top: 8px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
}

.hero-product small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-band div {
  position: relative;
  padding: 28px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 950;
}

.trust-band strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
}

.trust-band p {
  max-width: 370px;
  margin: 8px 0 0;
  color: #575d64;
}

.priority-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.priority-strip a {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 138px;
  align-content: center;
  border: 1px solid transparent;
  padding: 21px clamp(18px, 4vw, 44px);
  background: #fdfdfb;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.priority-strip a:hover,
.priority-strip a:focus-visible {
  z-index: 1;
  border-color: var(--signal);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--signal), 0 18px 42px rgba(17, 17, 17, .1);
  transform: translateY(-2px);
}

.priority-strip span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: #fff;
  background: var(--copper);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.priority-strip strong {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.priority-strip small {
  max-width: 390px;
  color: #596069;
  font-size: 14px;
  font-weight: 750;
}

.showcase,
.catalog-intro,
.compare-section,
.energlo-detail,
.contact-section,
.product-grid {
  padding-inline: clamp(18px, 4vw, 56px);
}

.catalog-intro {
  padding-top: var(--section-gap);
}

.compare-section {
  padding-top: clamp(50px, 6.25vw, 90px);
}

.showcase {
  padding-top: clamp(48px, 6vw, 76px);
}

.section-heading {
  display: block;
  max-width: 820px;
  margin-bottom: 20px;
}

.showcase .section-heading {
  max-width: 760px;
}

.showcase .section-heading h2 {
  font-size: clamp(32px, 3.8vw, 54px);
}

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

.feature-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  min-height: 360px;
  align-items: start;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow .35s ease, transform .35s ease;
}

.feature-panel:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-panel-dark {
  color: white;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, .16), transparent 34%),
    var(--graphite);
}

.feature-panel p:not(.eyebrow) {
  max-width: 520px;
  margin: 12px 0 0;
  color: #555d64;
  font-size: 16px;
}

.feature-panel-dark p:not(.eyebrow) {
  color: #d2d9de;
}

.feature-panel img {
  width: 100%;
  align-self: end;
  max-height: 215px;
  object-fit: contain;
}

.feature-panel:first-child img {
  justify-self: center;
  max-height: 230px;
}

.energlo-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-top: clamp(72px, 8vw, 110px);
  padding-top: clamp(30px, 4.5vw, 52px);
  padding-bottom: clamp(30px, 4.5vw, 52px);
  color: #f5f6f4;
  background:
    linear-gradient(120deg, rgba(215, 25, 32, .16), transparent 34%),
    linear-gradient(180deg, #171819, #0f1011);
  overflow: hidden;
}

.energlo-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 76%, transparent);
  pointer-events: none;
}

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

.energlo-copy .eyebrow {
  color: #ff5b60;
}

.energlo-copy h2 {
  max-width: 640px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.energlo-copy p:not(.eyebrow) {
  max-width: 600px;
  color: #d8dde0;
  font-size: 17px;
}

.inline-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.inline-specs li {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, .06);
}

.inline-specs strong,
.inline-specs span {
  display: block;
}

.inline-specs strong {
  font-size: 18px;
}

.inline-specs span {
  color: #aeb7bd;
  font-size: 13px;
  font-weight: 800;
}

.energlo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.energlo-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 7 / 4;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
  object-fit: contain;
}

.energlo-gallery-main {
  aspect-ratio: 11 / 5;
  grid-column: 1 / -1;
}

.catalog-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.search-wrap {
  display: grid;
  flex: 1 1 320px;
  max-width: 560px;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.search-wrap input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cacfd1;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  font: inherit;
}

.search-wrap input {
  min-height: 50px;
  padding: 0 15px;
}

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

.filter-button {
  min-height: 42px;
  border: 1px solid #c6cacd;
  border-radius: var(--radius);
  padding: 0 14px;
  background: white;
  color: #30343a;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .22s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.filter-button.active {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--ink);
  box-shadow: 0 10px 24px rgba(17, 17, 17, .1);
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  padding-top: 6px;
  padding-bottom: 0;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  content-visibility: auto;
  contain-intrinsic-size: 720px;
  overflow: hidden;
  box-shadow: inset 0 3px 0 transparent;
  transition: border-color .25s ease, box-shadow .35s ease, transform .35s ease;
}

.product-card:hover {
  border-color: rgba(17, 17, 17, .22);
  box-shadow: inset 0 3px 0 var(--signal), 0 22px 58px rgba(17, 17, 17, .1);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  aspect-ratio: auto;
  height: clamp(210px, 21vw, 250px);
  min-height: 206px;
  background: #f8f8f6;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .22s ease;
}

.primary-product-image.is-swapping {
  animation: imageSwap .28s ease;
}

@keyframes imageSwap {
  from {
    opacity: .35;
  }

  to {
    opacity: 1;
  }
}

.card-carousel-controls {
  position: absolute;
  inset: 50% 12px auto 12px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}

.card-carousel-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 24px rgba(17, 17, 17, .08);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0;
  font-weight: 950;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.card-carousel-controls button::before {
  display: block;
  color: currentColor;
  font-size: 25px;
  font-weight: 700;
  line-height: 28px;
  transform: translateY(-1px);
}

.card-carousel-controls .carousel-prev::before {
  content: "\2039";
}

.card-carousel-controls .carousel-next::before {
  content: "\203A";
}

.card-carousel-controls button:hover {
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, .14);
  transform: scale(1.08);
}

.status-row {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.status-row span {
  border-radius: 999px;
  padding: 5px 9px;
  color: white;
  background: rgba(16, 18, 20, .86);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  justify-content: space-between;
  color: #697986;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-meta strong {
  color: var(--copper);
}

.product-body h3 {
  font-size: 25px;
  line-height: 1;
}

.product-body p {
  margin: 0;
  color: #4d535b;
  font-size: 14px;
  line-height: 1.42;
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

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

.variant-images button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: #eef0ef;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}

.variant-images button:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.variant-images button.active,
.swatch.active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.variant-images img {
  width: 100%;
  height: 54px;
  object-fit: contain;
}

.swatch {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 7px;
  border: 1px solid #d1d5d8;
  border-radius: 999px;
  padding: 4px 9px;
  color: #363a40;
  background: #fbfbfa;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.swatch:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.swatch i {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 50%;
  background: #b7b9bb;
}

.swatch.dark i {
  background: #191a1c;
}

.swatch.light i {
  background: #fff;
}

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

.spec-grid div {
  border-top: 1px solid var(--line);
  padding-top: 7px;
}

.spec-grid dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.spec-grid dd {
  margin: 1px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

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

.feature-list li {
  display: flex;
  gap: 6px;
  color: #3e444b;
  font-size: 12px;
  line-height: 1.35;
}

.feature-list li::before {
  content: "";
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--sage);
}

.product-inquiry {
  margin-top: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color .2s ease, text-underline-offset .2s ease;
}

.product-inquiry:hover,
.product-inquiry:focus-visible {
  color: var(--signal);
  text-underline-offset: 7px;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 18px;
}

.compare-section {
  padding-bottom: var(--section-gap);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  border-bottom: 1px solid var(--line);
  padding: 0;
  text-align: left;
  vertical-align: top;
  color: #f4f5f3;
  background: var(--graphite);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.compare-table th button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  padding: 15px 16px;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.compare-table th button::after {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #8d9398;
  opacity: .45;
}

.compare-table th button.active::after {
  opacity: 1;
  border-top-color: var(--signal);
}

.compare-table th button.active[data-direction="asc"]::after {
  transform: rotate(180deg);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table td span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 560px);
  gap: clamp(30px, 6vw, 84px);
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  color: white;
  background:
    linear-gradient(120deg, rgba(215, 25, 32, .16), transparent 38%),
    var(--charcoal);
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #c7ced2;
  font-size: 18px;
}

.email-link {
  display: inline-block;
  margin-top: 16px;
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, .07);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #dfe5e8;
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  min-height: 46px;
  padding: 11px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: #d6dce0;
  background: #0b0c0d;
  font-size: 14px;
}

.site-footer img {
  width: 94px;
}

.site-footer a {
  position: relative;
  color: white;
  font-weight: 900;
  text-decoration: none;
  transition: color .2s ease, transform .22s ease;
}

.site-footer a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {

  .hero,
  .energlo-detail,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-product,
  .hero-product-large {
    grid-row: auto;
    min-height: 260px;
  }

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

  .feature-panel:first-child {
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-products {
    display: grid;
    grid-auto-columns: minmax(230px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .hero-product,
  .hero-product-large {
    min-height: 230px;
    scroll-snap-align: start;
  }

  .trust-band,
  .priority-strip,
  .feature-panel,
  .energlo-gallery,
  .inline-specs,
  .product-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band div:last-child {
    border-bottom: 0;
  }

  .feature-panel {
    min-height: auto;
  }

  .product-media img {
    height: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

}