:root {
  --ink: #111827;
  --ink-2: #1f2937;
  --surface: #ffffff;
  --mist: #f4f8fb;
  --line: #dbe5ef;
  --muted: #607184;
  --blue: #1f61e0;
  --blue-dark: #174fc0;
  --blue-2: #2175b8;
  --cyan: #00a4fc;
  --teal: #188785;
  --yellow: #edd713;
  --dark: #121a25;
  --dark-2: #182333;
  --max: 1180px;
  --reading: 760px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
  --shadow-soft: 0 16px 44px rgba(17, 24, 39, 0.1);
}

[hidden] {
  display: none !important;
}

html {
  scroll-padding-top: 88px;
}

body {
  overflow-x: clip;
}

body.modal-open,
body.menu-locked {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: 0.78rem 1rem;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid rgba(0, 164, 252, 0.72);
  outline-offset: 4px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 178px;
}

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

.brand-company {
  position: absolute;
  left: 43.8%;
  top: 52%;
  display: none;
  width: max-content;
  color: var(--ink);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: translateY(-50%);
}

.site-header.is-scrolled .brand-company,
.site-header.menu-open .brand-company,
.site-header.header-light .brand-company {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open,
.site-header.header-light {
  border-bottom-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-header.is-scrolled .nav-links,
.site-header.menu-open .nav-links,
.site-header.header-light .nav-links {
  color: var(--ink);
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  position: relative;
  padding: 0.45rem 1rem 0.45rem 0;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::before {
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-68%) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown[open] summary::before {
  transform: translateY(-35%) rotate(225deg);
}

.nav-dropdown summary::after {
  position: absolute;
  right: 1rem;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-dropdown:hover summary::after,
.nav-dropdown:focus-within summary::after,
.nav-dropdown[open] summary::after,
.nav-dropdown[aria-current="page"] summary::after {
  transform: scaleX(1);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.7rem);
  left: 50%;
  width: min(290px, calc(100vw - 32px));
  padding: 0.55rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.16);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: 9px;
  line-height: 1.25;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--soft);
  color: var(--blue-dark);
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 97, 224, 0.18);
}

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

.nav-links .nav-cta:hover {
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.site-header.is-scrolled .menu-toggle,
.site-header.menu-open .menu-toggle,
.site-header.header-light .menu-toggle {
  border-color: rgba(17, 24, 39, 0.14);
  background: #fff;
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.site-header.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span::before {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span::after {
  transform: translateY(-2px) rotate(90deg);
}

.marketing-page {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.marketing-page *,
.marketing-page *::before,
.marketing-page *::after {
  box-sizing: border-box;
}

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

.marketing-page a {
  color: inherit;
  text-decoration: none;
}

.marketing-page button,
.marketing-page input,
.marketing-page textarea {
  font: inherit;
}

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

.page-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page-section {
  padding: clamp(4.8rem, 8vw, 7.8rem) 0;
}

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

.page-section-dark {
  color: #fff;
  background: var(--dark);
}

.page-section-dark + .page-section-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.page-hero {
  position: relative;
  min-height: min(890px, 100svh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.page-hero-solar {
  --hero-image: url("../images/solar/zon-rooftop-site-walkthrough.webp");
  --hero-position: center;
}

.page-hero-inspection {
  --hero-image: url("../images/use-inspection.webp");
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 26, 37, 0.97), rgba(18, 26, 37, 0.84) 50%, rgba(18, 26, 37, 0.34)),
    var(--hero-image, url("/images/Main-Back.webp")) var(--hero-position, center)/cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 40%;
  background: linear-gradient(0deg, rgba(18, 26, 37, 0.9), transparent);
}

.page-hero-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 8.8rem 0 5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.82fr);
  gap: clamp(2.4rem, 6vw, 5rem);
  align-items: center;
}

.page-hero-copy {
  animation: hero-copy-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero-visual {
  animation: hero-visual-in 760ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 1.3rem;
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.99;
  text-wrap: balance;
}

.page-hero .hero-lede {
  max-width: 680px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.page-eyebrow,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: #9fdcff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-section:not(.page-section-dark) .page-kicker {
  color: var(--blue-2);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.page-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0.85rem 1.12rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

.page-button:hover,
.page-button:focus-visible {
  transform: translateY(-2px);
}

.page-button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 97, 224, 0.2);
}

.page-button-primary:hover {
  background: var(--blue-dark);
}

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

.page-button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.page-button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-button-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs span + span::before,
.breadcrumbs a + span::before {
  margin-right: 0.45rem;
  content: "/";
  opacity: 0.55;
}

.product-stage {
  position: relative;
  min-height: 540px;
}

.product-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.product-frame-primary {
  inset: 0 17% 0 4%;
}

.product-frame-secondary {
  right: -2%;
  bottom: -3%;
  width: 39%;
  height: 78%;
  transform: rotate(1.5deg);
}

.product-stage:hover .product-frame-primary {
  transform: translateY(-5px);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
}

.product-stage:hover .product-frame-secondary {
  transform: translateY(-9px) rotate(0deg);
}

.product-caption {
  position: absolute;
  right: 7%;
  bottom: 4%;
  z-index: 3;
  max-width: 260px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(18, 26, 37, 0.86);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.product-showcase {
  width: 100%;
  max-width: 680px;
  margin: 0;
}

.product-showcase-window {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 20px;
  background: #f4f7fa;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
}

.product-showcase-window img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase--list .product-showcase-window img,
.product-showcase--checklist .product-showcase-window img,
.product-showcase--sync .product-showcase-window img,
.product-showcase--offline .product-showcase-window img {
  object-position: center top;
}

.product-showcase--item .product-showcase-window img {
  object-position: center 65%;
}

.product-showcase--item .product-showcase-window {
  aspect-ratio: 1;
}

.page-hero .product-showcase-window,
.page-section-dark .product-showcase-window {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

/* Zon Generation customer story */
.field-story-photo {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #101a26;
  color: #fff;
}

.field-story-photo::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 20, 31, 0.96) 0%, rgba(11, 20, 31, 0.72) 48%, rgba(11, 20, 31, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 20, 31, 0.92) 0%, rgba(11, 20, 31, 0.08) 72%);
}

.field-story-photo-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.field-story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: end;
}

.field-story-photo .page-kicker {
  color: #9fdcff;
}

.field-story-photo h2 {
  max-width: 680px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.field-story-copy {
  max-width: 650px;
  padding: 0.3rem 0 0.3rem clamp(1.2rem, 2.5vw, 2rem);
  color: rgba(255, 255, 255, 0.86);
}

.field-story-copy .lead {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.field-story-copy p:last-child {
  margin-bottom: 0;
}

.field-photo-intro {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: stretch;
}

.field-photo-intro .section-heading {
  align-self: center;
  margin-bottom: 0;
}

.field-photo-figure {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #152333;
  box-shadow: 0 24px 60px rgba(24, 39, 56, 0.18);
}

.field-photo-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-device-stage {
  position: relative;
  isolation: isolate;
  min-height: 660px;
}

.product-device-stage::before {
  position: absolute;
  z-index: -1;
  top: 12%;
  left: 5%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(0, 156, 221, 0.13), rgba(0, 156, 221, 0) 68%);
}

.product-device {
  position: absolute;
  padding: 17px 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 38px;
  background: #172332;
  box-shadow: 0 30px 70px rgba(20, 34, 49, 0.28);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.product-device-primary {
  z-index: 1;
  top: 0;
  left: 4%;
  width: min(52%, 280px);
}

.product-device-secondary {
  z-index: 2;
  right: 4%;
  bottom: 0;
  width: min(42%, 220px);
  transform: rotate(1.5deg);
}

.product-device-speaker {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  transform: translateX(-50%);
}

.product-device-screen {
  aspect-ratio: 411 / 925;
  margin: 0;
  padding: 3px 3px 7px;
  overflow: hidden;
  border-radius: 27px;
  background: #fff;
}

.product-device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: contain;
  object-position: center;
}

.product-device-stage:hover .product-device-primary {
  transform: translateY(-6px);
  box-shadow: 0 38px 80px rgba(20, 34, 49, 0.32);
}

.product-device-stage:hover .product-device-secondary {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 0 38px 80px rgba(20, 34, 49, 0.32);
}

.proof-band {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-band-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-band-item {
  min-height: 142px;
  padding: 1.65rem clamp(1.2rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.proof-band-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-band-item strong {
  color: var(--ink);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.08;
}

.proof-band-item span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.two-column h2,
.cta-band h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading .lead,
.two-column .lead,
.cta-band .lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
}

.page-section-dark .section-heading .lead,
.page-section-dark .two-column .lead,
.page-section-dark .cta-band .lead {
  color: rgba(255, 255, 255, 0.76);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.3rem, 6vw, 5rem);
  align-items: start;
}

.two-column.align-center {
  align-items: center;
}

.reading-copy {
  max-width: var(--reading);
}

.reading-copy p:last-child {
  margin-bottom: 0;
}

.plain-list {
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 1.55rem;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step-item {
  min-height: 260px;
  padding: 1.55rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.step-item h3 {
  margin-bottom: 0.6rem;
  font-size: 1.22rem;
  line-height: 1.18;
}

.step-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-section-dark .step-list {
  border-color: rgba(255, 255, 255, 0.14);
}

.page-section-dark .step-item {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.page-section-dark .step-item p {
  color: rgba(255, 255, 255, 0.7);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.evidence-item {
  min-height: 100%;
}

.evidence-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 18px;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.evidence-item:hover img {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.evidence-item h3 {
  margin: 1.2rem 0 0.45rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.evidence-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.field-photo-panel {
  min-height: 470px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 26, 37, 0.06), rgba(18, 26, 37, 0.58)),
    var(--photo, url("/images/field-solar-install.webp")) center/cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.product-evidence-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.product-evidence-feature .product-showcase {
  width: min(520px, 100%);
}

.product-evidence-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-evidence-copy > div {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.product-evidence-copy h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.product-evidence-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.evidence-item:nth-child(2) img {
  object-position: center 34%;
}

.field-photo-solar {
  --photo: url("../images/field-solar-install.webp");
}

.field-photo-inspection {
  --photo: url("../images/use-inspection.webp");
}

.energy-infrastructure {
  overflow: hidden;
}

.energy-infrastructure-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2.8rem, 6vw, 5.8rem);
  align-items: center;
}

.energy-infrastructure-photo {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.energy-infrastructure-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.energy-infrastructure-copy h2 {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.energy-infrastructure-copy > .lead {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
}

.energy-application-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.energy-application {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.energy-application h3 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.energy-application p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.quote-block {
  position: relative;
  margin: 0;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  background: rgba(255, 255, 255, 0.055);
}

.quote-block p {
  margin-bottom: 1.15rem;
  font-size: clamp(1.42rem, 2.7vw, 2.25rem);
  font-weight: 800;
  line-height: 1.26;
}

.quote-block cite {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
}

.proof-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.logo-proof {
  display: inline-flex;
  min-height: 106px;
  margin-bottom: 1.5rem;
  padding: 1rem 1.3rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.logo-proof img {
  width: auto;
  max-width: 210px;
  max-height: 78px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-link {
  min-height: 220px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background 160ms ease, transform 160ms ease;
}

.related-link:hover,
.related-link:focus-visible {
  z-index: 1;
  background: var(--mist);
  transform: translateY(-3px);
}

.related-link h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  line-height: 1.18;
}

.related-link p {
  color: var(--muted);
}

.related-link strong {
  color: var(--blue);
  font-size: 0.9rem;
}

.page-faq-list {
  max-width: 920px;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.page-faq-item {
  border-bottom: 1px solid var(--line);
}

.page-faq-item summary {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.page-faq-item summary::-webkit-details-marker {
  display: none;
}

.page-faq-item summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 700;
}

.page-faq-item[open] summary::after {
  content: "\2212";
}

.page-faq-item p {
  max-width: 800px;
  margin: -0.25rem 0 1.25rem;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 2rem;
  align-items: end;
}

.cta-band .lead {
  max-width: 720px;
}

.trust-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-checklist li {
  position: relative;
  min-height: 92px;
  padding: 1rem 1.2rem 1rem 3.25rem;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  list-style: none;
}

.trust-checklist li::before {
  content: "\2713";
  position: absolute;
  margin-left: -2.1rem;
  color: var(--teal);
  font-weight: 900;
}

.page-section-dark .evidence-item p,
.page-section-dark .reading-copy,
.page-section-dark .reading-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-page-hero {
  min-height: auto;
  padding-top: 76px;
}

.contact-page-hero .page-hero-grid {
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
  align-items: start;
}

.report-page {
  background: #edf3f8;
}

.report-intro {
  padding: 8.6rem 0 3rem;
  background: #fff;
}

.report-intro .breadcrumbs {
  color: var(--muted);
}

.report-intro .breadcrumbs a:hover {
  color: var(--ink);
}

.report-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.report-intro h1 {
  max-width: 860px;
  margin-bottom: 0.85rem;
  font-size: clamp(2.45rem, 4.7vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.report-intro .lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.report-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.report-toolbar {
  margin-bottom: 1rem;
  padding: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.report-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.report-paper {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid #d6e0ea;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.13);
}

.report-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.report-preview-frame {
  margin: 0;
}

.report-preview-image {
  width: 100%;
  height: auto;
  border: 1px solid #cbd7e2;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
}

.report-anatomy {
  position: sticky;
  top: 7rem;
}

.report-anatomy h2 {
  margin: 0.7rem 0 1.25rem;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.05;
}

.report-anatomy .plain-list {
  margin: 0;
}

.report-anatomy .plain-list li {
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.report-masthead {
  padding-bottom: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
  border-bottom: 3px solid var(--blue);
}

.report-mark {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.report-mark-symbol {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.report-mark strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.1;
}

.report-mark span {
  color: var(--muted);
  font-size: 0.82rem;
}

.report-sample-label {
  padding: 0.45rem 0.65rem;
  border: 1px solid #dac900;
  border-radius: 999px;
  background: #fff9bf;
  color: #514a00;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-title-block {
  padding: 2.2rem 0 1.4rem;
}

.report-title-block h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.report-title-block p {
  margin-bottom: 0;
  color: var(--muted);
}

.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.report-meta {
  padding: 0.85rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-meta span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-meta strong {
  font-size: 0.9rem;
}

.report-summary {
  margin: 1.8rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.report-stat {
  padding: 1rem;
  background: var(--mist);
}

.report-stat strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.05;
}

.report-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.report-section {
  margin-top: 2.2rem;
}

.report-section h3 {
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.22rem;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.report-table th,
.report-table td {
  padding: 0.75rem 0.65rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.report-table th {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-status {
  display: inline-flex;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  background: #fff5ad;
  color: #504900;
  font-size: 0.7rem;
  font-weight: 900;
}

.report-status.closed {
  background: #dff5e9;
  color: #155f3c;
}

.report-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.report-evidence {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.report-evidence img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.report-evidence div {
  padding: 0.8rem;
}

.report-evidence strong {
  display: block;
  margin-bottom: 0.25rem;
}

.report-evidence p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.report-footer-note {
  margin: 2.4rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
}

.demo-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.demo-panel label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.demo-field-full {
  grid-column: 1 / -1;
}

.demo-panel input:not([type="hidden"]),
.demo-panel textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 1px solid #cbd8e5;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.demo-panel textarea {
  min-height: 135px;
  resize: vertical;
}

.demo-panel input:focus,
.demo-panel textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(31, 97, 224, 0.13);
}

.demo-panel #website,
.contact-panel #website {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.form-privacy-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-status[data-state="success"] {
  color: #117a52;
}

.form-status[data-state="error"] {
  color: #b42318;
}

.form-status[data-state="loading"] {
  color: #3656d4;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #b9dfcf;
  border-radius: var(--radius);
  background: #effaf5;
  color: #174b37;
}

.form-success.is-visible {
  display: block;
}

.form-success strong {
  display: block;
  margin-bottom: 0.25rem;
}

.form-success p {
  margin-bottom: 0.7rem;
}

.form-success a {
  color: #0c6242;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.turnstile-slot {
  display: none;
  justify-content: center;
  margin-top: 1rem;
}

.turnstile-slot.is-active {
  display: flex;
}

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

.site-footer {
  padding: 2.4rem 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0d131d;
  font-size: 0.88rem;
}

.site-footer .footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.2fr) auto;
  gap: 2rem;
  align-items: center;
}

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

.footer-company {
  margin: 0;
  line-height: 1.5;
}

.footer-company strong {
  display: block;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.is-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Homepage enhancements loaded after the legacy inline stylesheet */
.hero .product-stage {
  min-height: 540px;
}

.hero .product-frame-primary {
  inset: 0 18% 2% 5%;
}

.hero .product-frame-secondary {
  right: -2%;
  bottom: -1%;
  height: 75%;
}

.hero .product-caption {
  right: 5%;
  bottom: 4%;
}

.proof-grid .proof-customer strong {
  font-size: clamp(1.1rem, 1.75vw, 1.6rem);
}

.buyer-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.buyer-path {
  min-height: 250px;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fbfe;
  transition: background 160ms ease, transform 160ms ease;
}

.buyer-path:hover,
.buyer-path:focus-visible {
  z-index: 1;
  background: #eef6fd;
  transform: translateY(-3px);
}

.buyer-path strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.buyer-path span {
  color: var(--muted);
  line-height: 1.48;
}

.buyer-path em {
  margin-top: 1.2rem;
  color: var(--blue);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
}

.home-product-section {
  overflow: hidden;
}

.home-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2.5rem, 6vw, 5.4rem);
  align-items: center;
}

.home-product-collage {
  min-height: 620px;
}

.home-product-collage .product-frame-primary {
  inset: 0 32% 4% 0;
}

.home-product-collage .product-frame-secondary {
  right: 2%;
  bottom: 0;
  width: 42%;
  height: 80%;
}

.field-photo-figure.record-field-photo {
  min-height: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.record-field-photo img {
  position: absolute;
  inset: 0;
  object-position: 42% center;
}

.home-product-single .product-frame-primary {
  inset: 1% 15%;
}

.home-product-single .product-frame-primary img {
  object-position: bottom;
}

.home-product-single {
  width: min(430px, 100%);
  margin-inline: auto;
}

.home-record-points {
  margin: 1.5rem 0 1.7rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  list-style: none;
}

.home-record-points li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.home-record-points strong {
  display: block;
  margin-bottom: 0.2rem;
}

.home-record-points span {
  color: var(--muted);
}

.section-dark .home-record-points li {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.section-dark .home-record-points span {
  color: rgba(255, 255, 255, 0.68);
}

.use-card[href] {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.use-card[href]:hover,
.use-card[href]:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.use-card .card-link-label {
  display: inline-block;
  margin-top: 0.7rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.home-trust-callout {
  border-top: 1px solid var(--line);
}

.home-trust-callout .cta-band {
  align-items: center;
}

.contact .contact-panel .form-success {
  text-align: left;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .home-product-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 4vw, 3.25rem);
  }

  .home-product-collage {
    min-height: 540px;
  }

  .home-product-grid h2 {
    font-size: clamp(2.35rem, 4vw, 3rem);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    max-height: calc(100svh - 76px);
    display: none;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 20px 1.25rem;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    background: #fff;
    color: var(--ink);
    box-shadow: 0 20px 35px rgba(17, 24, 39, 0.14);
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 0.86rem 0;
  }

  .nav-dropdown summary {
    padding: 0.86rem 1.1rem 0.86rem 0;
  }

  .nav-dropdown summary::after {
    right: 1.1rem;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    padding: 0 0 0.55rem 0.85rem;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 0.72rem 0.8rem;
    font-size: 0.88rem;
  }

  .nav-links .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-grid,
  .two-column,
  .home-product-grid,
  .product-evidence-feature,
  .contact-page-hero .page-hero-grid,
  .report-intro-grid,
  .report-preview-grid {
    grid-template-columns: 1fr;
  }

  .field-story-layout,
  .field-photo-intro,
  .energy-infrastructure-layout {
    grid-template-columns: 1fr;
  }

  .energy-infrastructure-photo {
    min-height: 430px;
  }

  .field-story-photo {
    min-height: 760px;
  }

  .field-story-photo-image {
    object-position: 62% center;
  }

  .field-story-copy {
    max-width: 720px;
  }

  .field-photo-figure {
    min-height: 380px;
  }

  .product-device-stage {
    width: min(620px, 100%);
    min-height: 680px;
    margin: 0 auto;
  }

  .report-anatomy {
    position: static;
  }

  .page-hero-grid {
    padding-top: 8.4rem;
  }

  .product-stage {
    width: min(620px, 100%);
    min-height: 520px;
    margin: 0 auto;
  }

  .product-showcase {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .proof-band-grid,
  .step-list,
  .evidence-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-band-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .proof-band-item:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero-inner > div:first-child {
    order: 1;
  }

  .hero-inner > .proof-grid {
    order: 2;
  }

  .home-product-collage {
    width: min(620px, 100%);
    min-height: 610px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .page-wrap,
  .page-hero-grid,
  .proof-band-grid,
  .nav-wrap,
  .site-footer .footer-grid {
    width: min(100% - 28px, var(--max));
  }

  .brand,
  .brand img {
    width: 152px;
    min-width: 152px;
  }

  .brand-company {
    font-size: 0.5rem;
  }

  .page-section {
    padding: 4.4rem 0;
  }

  .field-story-photo {
    min-height: 650px;
    padding: 5rem 0;
  }

  .field-story-photo h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .field-story-layout {
    gap: 2rem;
  }

  .field-story-copy {
    padding-left: 1.1rem;
  }

  .field-photo-intro {
    gap: 2.2rem;
    margin-bottom: 3rem;
  }

  .field-photo-figure {
    min-height: 290px;
    border-radius: 16px;
  }

  .energy-infrastructure-layout {
    gap: 2.6rem;
  }

  .energy-infrastructure-photo {
    min-height: 320px;
    border-radius: 16px;
  }

  .energy-infrastructure-copy h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .product-device-stage {
    min-height: 530px;
  }

  .product-device-primary {
    left: 0;
    width: 61%;
  }

  .product-device-secondary {
    right: 0;
    width: 45%;
  }

  .product-device {
    padding: 15px 6px 9px;
    border-radius: 31px;
  }

  .product-device-screen {
    border-radius: 23px;
  }

  .product-device-screen img {
    border-radius: 18px;
  }

  .page-hero-grid {
    padding: 7.6rem 0 4rem;
    gap: 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1.02;
  }

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

  .product-stage,
  .hero .product-stage {
    min-height: 410px;
  }

  .product-showcase-window {
    aspect-ratio: 5 / 4;
    border-radius: 16px;
  }

  .product-frame-primary,
  .hero .product-frame-primary {
    inset: 0 26% 0 0;
  }

  .product-frame-secondary,
  .hero .product-frame-secondary {
    right: 0;
    bottom: -2%;
    width: 42%;
    height: 74%;
  }

  .product-caption,
  .hero .product-caption {
    right: 2%;
    bottom: 2%;
    max-width: 185px;
    font-size: 0.68rem;
  }

  .proof-band-grid,
  .step-list,
  .evidence-grid,
  .related-grid,
  .trust-checklist,
  .buyer-path-grid,
  .demo-form-grid {
    grid-template-columns: 1fr;
  }

  .proof-band-item,
  .proof-band-item:first-child,
  .proof-band-item:nth-child(3) {
    grid-column: auto;
    min-height: 122px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section-heading h2,
  .two-column h2,
  .cta-band h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .step-item {
    min-height: auto;
  }

  .evidence-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    align-items: start;
    width: 100%;
    margin-inline: auto;
  }

  .evidence-item img {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .evidence-item h3 {
    margin-top: 0;
  }

  .evidence-item p {
    grid-column: auto;
  }

  .field-photo-panel {
    min-height: 330px;
  }

  .report-shell {
    width: min(100% - 20px, 980px);
    padding-top: 1.2rem;
  }

  .report-paper {
    padding: 1.2rem;
  }

  .report-masthead,
  .report-evidence-grid {
    grid-template-columns: 1fr;
  }

  .report-sample-label {
    width: max-content;
  }

  .quote-block p {
    font-size: 1.42rem;
  }

  .home-product-collage {
    min-height: 430px;
  }

  .home-product-collage .product-frame-primary {
    inset: 0 28% 0 0;
  }

  .home-product-collage .product-frame-secondary {
    right: 0;
    width: 43%;
    height: 76%;
  }

  .home-product-single .product-frame-primary {
    inset: 0 15%;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer img {
    margin: 0 auto;
  }

  .site-footer .footer-links {
    grid-column: auto;
    justify-content: center;
  }
}

@media print {
  .site-header,
  .site-footer,
  .report-toolbar,
  .no-print {
    display: none !important;
  }

  body {
    background: #fff !important;
  }

  .report-intro {
    display: none !important;
  }

  .report-shell {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .report-paper {
    border: 0;
    box-shadow: none;
  }
}

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

  .is-enhanced [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
