@font-face {
  font-family: "Montserrat EL";
  src: url("/fonts/montserrat-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat EL";
  src: url("/fonts/montserrat-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope EL";
  src: url("/fonts/manrope-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Manrope EL";
  src: url("/fonts/manrope-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #231f20;
  --orange: #f15f24;
  --gray: #4d4d4e;
  --white: #fff;
  --paper: #f7f5f2;
  --warm: #efebe6;
  --line: rgba(35, 31, 32, .15);
  --line-light: rgba(255, 255, 255, .28);
  --shadow: 0 22px 60px rgba(35, 31, 32, .12);
  --gutter: clamp(14px, 1.5vw, 24px);
  --shell: min(1240px, calc(100% - clamp(36px, 8vw, 128px)));
  --radius-xl: clamp(30px, 3vw, 48px);
  --radius-lg: clamp(24px, 2.2vw, 36px);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 400 17px/1.68 "Manrope EL", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
main {
  overflow-x: clip;
}

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

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

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
strong,
summary,
.site-header,
.hero-kicker,
.section-label,
.product-overline,
.product-price,
.pill-button,
.text-link,
.card-index,
.footer-contact small,
.contact-details small {
  font-family: "Montserrat EL", Montserrat, Arial, sans-serif;
}

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow-shell {
  width: min(840px, calc(100% - clamp(36px, 12vw, 180px)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

/* Header and language navigation — behaviour mirrors Digital Logic. */
.site-header {
  position: sticky;
  z-index: 500;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(35, 31, 32, .09);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-shell {
  width: var(--shell);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  justify-self: start;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  justify-self: center;
  color: var(--gray);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a,
.language-switch a,
.language-switch span {
  position: relative;
}

.desktop-nav a {
  transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: 22px;
  color: #767071;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.language-switch a {
  transition: color .2s ease;
}

.language-switch a:hover,
.language-switch span {
  color: var(--ink);
}

.language-switch span::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
}

.language-switch i {
  width: 1px;
  height: 14px;
  display: block;
  background: var(--line);
}

.header-shell > .desktop-language-switch {
  justify-self: end;
  margin-left: 0;
}

.mobile-navigation {
  display: none;
}

/* Shared type and actions. */
.hero-kicker,
.section-label,
.product-overline {
  margin: 0;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-kicker,
.section-label {
  font-size: 12px;
}

.product-overline {
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: .045em;
}

.pill-button {
  min-width: 190px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 11px 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: box-shadow .2s ease, transform .2s ease;
}

.pill-button:hover {
  box-shadow: 0 13px 30px rgba(35, 31, 32, .16);
  transform: translateY(-2px);
}

.pill-button > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 19px;
  line-height: 1;
}

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

.pill-button--dark > span {
  color: var(--orange);
  background: var(--white);
}

.pill-button--light {
  color: var(--ink);
  background: var(--white);
}

.pill-button--light > span {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

/* Homepage. */
.home-hero {
  min-height: clamp(690px, calc(100svh - 140px), 840px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(58px, 7vh, 84px) clamp(24px, 7vw, 100px) clamp(90px, 11vh, 126px);
  background: var(--paper);
  text-align: center;
}

.signal-mark {
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 36px;
}

.signal-mark i {
  width: 24px;
  border-radius: 8px;
  background: var(--warm);
}

.signal-mark i:first-child {
  height: 48px;
  background: var(--gray);
}

.signal-mark i:nth-child(2) {
  height: 88px;
  background: var(--orange);
}

.signal-mark i:last-child {
  height: 66px;
  background: var(--ink);
}

.home-hero .signal-mark i {
  --signal-rest: .96;
  --signal-low: .88;
  transform-origin: center bottom;
  animation: signal-meter 4.8s ease-in-out infinite;
  will-change: transform;
}

.home-hero .signal-mark i:first-child {
  animation-delay: -.12s;
}

.home-hero .signal-mark i:nth-child(2) {
  animation-delay: 0s;
}

.home-hero .signal-mark i:last-child {
  animation-delay: -.24s;
}

@keyframes signal-meter {
  0%,
  100% {
    transform: scaleY(var(--signal-rest));
  }

  32% {
    transform: scaleY(1);
  }

  63% {
    transform: scaleY(var(--signal-low));
  }

  82% {
    transform: scaleY(.98);
  }
}

.home-hero h1 {
  max-width: 1050px;
  margin: 25px 0 0;
  font: 700 clamp(68px, 7.4vw, 108px)/.9 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.052em;
}

.home-hero h1 strong,
.service-hero h1 strong,
.legal-hero h1 strong,
.not-found h1 strong,
.section-heading h2 strong {
  color: var(--orange);
  font-weight: 400;
}

.hero-lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--gray);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.7;
}

.page-home main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: var(--gutter);
  background: var(--white);
}

.page-home .home-hero,
.solutions-intro,
.partners-section,
.contact-chapter {
  grid-column: 1 / -1;
}

.solutions-intro {
  width: auto;
  margin-inline: 0;
  padding: clamp(48px, 5vw, 64px) max(32px, calc((100vw - 1200px) / 2)) 24px;
}

.solutions-intro > .section-label {
  margin: 0;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: .17em;
}

.product-chapter {
  display: flex;
  padding: 0;
  background: var(--white);
}

.product-chapter--meter {
  padding-left: max(32px, calc((100vw - 1200px) / 2));
}

.product-chapter--flex {
  padding-right: max(32px, calc((100vw - 1200px) / 2));
}

.product-tile {
  width: 100%;
  height: 100%;
  min-height: 770px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 360px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.product-tile-copy {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 38px 42px 44px;
  background: var(--white);
}

.product-tile h2 {
  margin: 0 0 12px;
  font: 400 clamp(34px, 3.1vw, 46px)/1 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.04em;
}

.product-lead {
  max-width: 520px;
  margin: 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.68;
}

.product-tagline {
  max-width: 520px;
  margin: 0 0 24px;
  font: 700 clamp(21px, 1.8vw, 27px)/1.14 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.025em;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 11px;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.product-price > span {
  flex-basis: 100%;
  color: var(--gray);
}

.product-price > span,
.product-price > small {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.product-price > small {
  color: var(--gray);
}

.product-price > strong {
  white-space: nowrap;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.035em;
}

.product-tile .pill-button {
  align-self: flex-start;
  margin-top: auto;
}

.product-download-slot {
  display: flex;
  align-items: flex-start;
  margin-top: auto;
  padding-top: 22px;
}

.product-download {
  min-width: 210px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 20px;
  padding: 8px 16px;
  border: 0;
  border-bottom: 1px solid rgba(35, 31, 32, .28);
  border-radius: 0;
  color: var(--gray);
  background: transparent;
  font: 700 13px/1.2 "Montserrat EL", Montserrat, Arial, sans-serif;
  transition: border-color .2s ease, color .2s ease;
}

.product-download-slot .product-download {
  margin-top: 0;
}

.product-download:hover {
  border-color: var(--orange);
  color: var(--ink);
}

.product-download > .product-download__copy {
  width: auto;
  height: auto;
  display: grid;
  place-items: start;
  flex: 1 1 auto;
  gap: 2px;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  line-height: inherit;
}

.product-download__meta {
  display: block;
  color: inherit;
  font: 700 11px/1.2 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: .06em;
  opacity: .72;
  text-transform: uppercase;
}

.product-download > .product-download__icon {
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
  font-size: 18px;
  line-height: 1;
}

.product-tile-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 20px 28px;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, var(--white), var(--warm));
}

.product-tile-media img {
  width: 100%;
  height: 100%;
  max-width: 360px;
  max-height: 320px;
  object-fit: contain;
}

.product-tile--flex .product-tile-media img {
  max-width: 320px;
  max-height: 285px;
}

.product-tile-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  content: "";
  background: var(--orange);
}

/* Partner logos retained from the previous public Energy Logic site. */
.partners-section {
  margin-top: clamp(48px, 5vw, 64px);
  padding: clamp(96px, 9vw, 124px) var(--gutter);
  background: var(--warm);
}

.partners-shell {
  width: var(--shell);
  margin-inline: auto;
}

.partners-heading {
  margin-bottom: clamp(46px, 6vw, 76px);
  text-align: left;
}

.partners-heading h2 {
  max-width: 760px;
  margin: 0;
  font: 400 clamp(44px, 5vw, 68px)/1.02 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.045em;
}

.partners-heading p {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--gray);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(38px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.partner-card {
  min-width: 0;
  min-height: 128px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px;
}

.partner-card img {
  width: min(100%, 190px);
  height: 84px;
  object-fit: contain;
  transform: scale(.966);
  transform-origin: center;
}

.partner-card--large img {
  transform: scale(1.06);
}

.partner-card--medium img {
  transform: scale(.784);
}

.partner-card--restrained img {
  transform: scale(.686);
}

.partner-card--compact img {
  transform: scale(.532);
}

.partner-card--native img {
  transform: scale(.462);
}

.partner-card--offset-right img {
  position: relative;
  left: clamp(7px, .85vw, 12px);
}

@media (min-width: 1181px) {
  .partner-card {
    padding-block: 9px;
  }

  .partner-card img {
    width: min(100%, 247px);
    height: 109px;
  }

  .partner-card:nth-last-child(2) {
    grid-column: 2;
  }
}

/* Product and service page heroes. */
.page-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(360px, .93fr) minmax(360px, 1.07fr);
  gap: clamp(30px, 5vw, 86px);
  margin: var(--gutter);
  padding: clamp(56px, 7vw, 108px);
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.page-hero--paper {
  background: var(--warm);
}

.page-hero--accent {
  color: var(--white);
  background: var(--orange);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1,
.service-hero h1,
.contact-hero h1 {
  margin: 28px 0 24px;
  font: 700 clamp(58px, 6.2vw, 92px)/.92 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.048em;
}

.page-hero h1 strong {
  color: var(--orange);
  font-weight: 400;
}

.page-hero--accent h1 strong,
.page-hero--accent .page-hero-lead,
.page-hero--accent .product-price,
.page-hero--accent .product-price > span,
.page-hero--accent .product-price > small,
.page-hero--accent .price-note,
.page-hero--accent .text-link {
  color: var(--white);
}

.page-hero--accent .hero-kicker {
  align-self: flex-start;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
}

.page-hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--gray);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.6;
}

.price-note {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 17px;
  font-weight: 700;
}

.page-hero--accent .price-note {
  font-size: 19px;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.page-hero-media {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: clamp(30px, 4vw, 70px);
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 12px);
  background: var(--white);
}

.page-hero-media img {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
}

.service-hero,
.contact-hero {
  display: flex;
  align-items: center;
  min-height: 650px;
  padding-block: clamp(90px, 12vw, 160px);
  background: var(--paper);
}

.service-hero h1,
.contact-hero h1 {
  max-width: 1000px;
}

.service-hero .section-shell > p:not(.hero-kicker),
.contact-hero .section-shell > p:not(.hero-kicker) {
  max-width: 700px;
  color: var(--gray);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.65;
}

.service-hero .pill-button {
  margin-top: 26px;
}

/* Content system. */
.content-section {
  padding-block: clamp(100px, 11vw, 170px);
}

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

.content-section--paper {
  background: var(--paper);
}

.content-section--warm {
  background: var(--warm);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  margin-bottom: clamp(55px, 7vw, 94px);
}

.section-heading h2 {
  margin: 0;
  font: 700 clamp(46px, 5.2vw, 76px)/.98 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.045em;
}

.section-heading > div > p {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--gray);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.68;
}

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

.info-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.5vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.content-section--paper .info-card,
.content-section--warm .info-card {
  background: var(--white);
}

.card-index {
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.info-card h3 {
  margin: auto 0 16px;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.info-card p {
  margin: 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

.info-card .text-link {
  align-self: flex-start;
  margin-top: 24px;
}

/* Editorial diagrams. */
.measurement-explainer,
.platform-preview,
.energy-flow {
  margin: 0 0 14px;
  padding: 14px;
  border-radius: var(--radius-xl);
  background: var(--paper);
}

.measurement-explainer {
  display: grid;
  grid-template-columns: minmax(0, .82fr) 72px minmax(0, 1.18fr);
  align-items: stretch;
  gap: 14px;
}

.measurement-view {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) - 12px);
  background: var(--white);
}

.measurement-view--detail {
  background: var(--warm);
}

.measurement-view > span,
.platform-preview-copy > span,
.energy-flow small,
.contact-brief > div > p:first-child {
  color: var(--gray);
  font: 700 12px/1.35 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.measurement-view > strong {
  max-width: 430px;
  margin-top: 18px;
  font: 700 clamp(32px, 3.2vw, 48px)/1.02 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.04em;
}

.aggregate-signal {
  height: 120px;
  display: flex;
  align-items: end;
  gap: clamp(5px, .7vw, 10px);
  margin-top: auto;
  padding-top: 42px;
}

.aggregate-signal i {
  flex: 1 1 0;
  min-width: 4px;
  border-radius: 5px 5px 1px 1px;
  background: var(--gray);
}

.aggregate-signal i:nth-child(3n + 1) {
  height: 55%;
  background: var(--orange);
}

.aggregate-signal i:nth-child(3n + 2) {
  height: 82%;
}

.aggregate-signal i:nth-child(3n) {
  height: 68%;
  background: var(--ink);
}

.aggregate-signal i:nth-child(4),
.aggregate-signal i:nth-child(8) {
  height: 100%;
}

.measurement-shift {
  display: grid;
  place-items: center;
}

.measurement-shift span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--orange);
  font: 700 26px/1 "Montserrat EL", Montserrat, Arial, sans-serif;
}

.circuit-stack {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 40px;
}

.circuit-stack > div {
  min-height: 62px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  border-radius: 14px;
  background: var(--white);
}

.circuit-stack i {
  width: 8px;
  height: 30px;
  border-radius: 3px;
  background: var(--orange);
}

.circuit-stack span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.circuit-stack b {
  color: var(--gray);
  font: 700 11px/1 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: .08em;
}

.measurement-explainer figcaption,
.platform-preview figcaption {
  grid-column: 1 / -1;
  padding: 4px 8px 2px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
}

.platform-preview {
  display: grid;
  grid-template-columns: minmax(250px, .52fr) minmax(0, 1.48fr);
  gap: 14px;
}

.platform-preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 58px);
}

.platform-preview-copy > strong {
  margin-top: 18px;
  font: 700 clamp(32px, 3.5vw, 52px)/1.02 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.042em;
}

.platform-preview-screen {
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) - 12px);
  background: var(--white);
}

.platform-preview-toolbar {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.platform-preview-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.platform-preview-toolbar i:nth-child(2) {
  background: var(--orange);
}

.platform-chart {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--paper);
}

.platform-chart-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent calc(25% - 1px), rgba(35, 31, 32, .09) calc(25% - 1px), rgba(35, 31, 32, .09) 25%);
}

.platform-chart-bars {
  position: absolute;
  inset: 26px 26px 22px;
  display: grid;
  grid-template-columns: repeat(18, minmax(3px, 1fr));
  align-items: end;
  gap: clamp(3px, .65vw, 9px);
}

.platform-chart-bars i {
  min-height: 12%;
  border-radius: 5px 5px 1px 1px;
}

.platform-chart-bars i:nth-child(1) { height: 28%; }
.platform-chart-bars i:nth-child(2) { height: 47%; }
.platform-chart-bars i:nth-child(3) { height: 37%; }
.platform-chart-bars i:nth-child(4) { height: 34%; }
.platform-chart-bars i:nth-child(5) { height: 58%; }
.platform-chart-bars i:nth-child(6) { height: 44%; }
.platform-chart-bars i:nth-child(7) { height: 49%; }
.platform-chart-bars i:nth-child(8) { height: 72%; }
.platform-chart-bars i:nth-child(9) { height: 55%; }
.platform-chart-bars i:nth-child(10) { height: 43%; }
.platform-chart-bars i:nth-child(11) { height: 64%; }
.platform-chart-bars i:nth-child(12) { height: 51%; }
.platform-chart-bars i:nth-child(13) { height: 62%; }
.platform-chart-bars i:nth-child(14) { height: 91%; }
.platform-chart-bars i:nth-child(15) { height: 70%; }
.platform-chart-bars i:nth-child(16) { height: 53%; }
.platform-chart-bars i:nth-child(17) { height: 77%; }
.platform-chart-bars i:nth-child(18) { height: 61%; }

.series-0 {
  background: var(--orange);
}

.series-1 {
  background: var(--gray);
}

.series-2 {
  background: var(--ink);
}

.platform-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 18px;
}

.platform-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}

.platform-legend i {
  width: 20px;
  height: 6px;
  border-radius: 3px;
}

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

.energy-flow article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.7vw, 38px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--white);
}

.energy-flow article > span {
  align-self: flex-start;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--white);
  background: var(--ink);
  font: 700 11px/1 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: .08em;
}

.energy-flow article > div {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.energy-flow article strong {
  font: 700 clamp(22px, 2vw, 30px)/1.08 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.035em;
}

.energy-flow > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 25px clamp(24px, 3vw, 40px);
  border-radius: calc(var(--radius-lg) - 8px);
  color: var(--white);
  background: var(--orange);
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

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

.step-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.content-section--white .step-card {
  background: var(--paper);
}

.step-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font: 700 12px/1 "Montserrat EL", Montserrat, Arial, sans-serif;
}

.step-card > div {
  margin-top: auto;
}

.step-card h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.5vw, 39px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.step-card p {
  margin: 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

.statement-card {
  margin-bottom: 14px;
  padding: clamp(28px, 4vw, 58px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
}

.statement-card p {
  max-width: 900px;
  margin: 0;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.5;
}

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

.offer-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.3vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.offer-card > p:first-child {
  margin: 0;
  color: var(--gray);
  font: 700 13px/1.3 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 42px 0 4px;
  font-size: clamp(35px, 3.4vw, 52px);
  line-height: 1;
  letter-spacing: -.045em;
}

.offer-card > small {
  color: var(--gray);
  font-size: 15px;
  font-weight: 700;
}

.offer-card > p:not(:first-child) {
  margin: auto 0 26px;
  color: var(--gray);
  font-size: 17px;
}

.offer-card .text-link,
.offer-card .pill-button {
  align-self: stretch;
}

.offer-card--featured {
  color: var(--white);
  background: var(--ink);
}

.offer-card--featured > p:first-child,
.offer-card--featured > small,
.offer-card--featured > p:not(:first-child) {
  color: var(--white);
}

.qualification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.qualification-grid > article {
  min-height: 480px;
  padding: clamp(36px, 5vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.qualification-grid h3 {
  margin: 0 0 34px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--gray);
  font-size: 17px;
}

.check-list li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
}

.qualification-grid .qualification-note {
  color: var(--white);
  background: var(--ink);
}

.qualification-note p {
  color: var(--white);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.62;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 30px 4px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 700;
  line-height: 1.25;
}

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

.faq-list summary::after {
  justify-self: end;
  content: "+";
  color: var(--orange);
  font-size: 28px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span {
  color: var(--gray);
  font-size: 12px;
  letter-spacing: .1em;
}

.faq-list details > p {
  max-width: 820px;
  margin: 0 0 34px 82px;
  color: var(--gray);
  font-size: 17px;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.path-grid > article {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 5vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.path-grid > article > p:first-child {
  margin: 0;
  color: var(--gray);
  font: 700 13px/1.3 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.path-grid h3 {
  margin: auto 0 20px;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1;
  letter-spacing: -.045em;
}

.path-grid > article > p:not(:first-child) {
  margin: 0 0 30px;
  color: var(--gray);
  font-size: 18px;
}

.path-grid .text-link,
.path-grid .pill-button {
  align-self: flex-start;
}

.path-grid .path-card--accent {
  color: var(--white);
  background: var(--orange);
}

.path-grid .path-card--accent > p:first-child,
.path-grid .path-card--accent > p:not(:first-child) {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
}

/* Final contact call to action. */
.contact-chapter {
  padding: 0;
  background: var(--orange);
}

.contact-tile {
  width: var(--shell);
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr) auto;
  gap: clamp(30px, 4vw, 54px);
  align-items: center;
  margin-inline: auto;
  padding: clamp(66px, 7vw, 86px) 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
}

.contact-tile h2 {
  margin: 0;
  font: 400 clamp(38px, 4.4vw, 60px)/1 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.04em;
}

.contact-tile-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-tile .pill-button {
  margin-top: 0;
  border-radius: 0;
}

.contact-tile a:focus-visible {
  outline-color: var(--white);
}

@media (min-width: 981px) {
  .contact-tile-copy {
    justify-self: center;
    transform: translateX(-52px);
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .contact-tile-copy {
    transform: translateX(-64px);
  }
}

.contact-options {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--white);
}

.contact-brief {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  margin-bottom: 14px;
  padding: clamp(34px, 5vw, 70px);
  border-radius: var(--radius-lg);
  background: var(--warm);
}

.contact-brief h2 {
  max-width: 560px;
  margin: 18px 0 20px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.042em;
}

.contact-brief > div > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
}

.contact-brief ul {
  display: grid;
  gap: 9px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-brief li {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px 14px 48px;
  border-radius: 14px;
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-brief li::before {
  position: absolute;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  content: "";
  background: var(--orange);
}

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

.contact-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: box-shadow .2s ease, transform .2s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.contact-card--selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}

.contact-card > span {
  color: var(--gray);
  font: 700 12px/1.3 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: auto 0 16px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
}

.contact-card p {
  margin: 0;
  color: var(--gray);
  font-size: 16px;
}

.contact-card strong {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
  margin-top: 80px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-details > div {
  display: grid;
  gap: 8px;
}

.contact-details small {
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details address {
  font-style: normal;
  font-weight: 700;
}

.brand-caution {
  max-width: 800px;
  margin: 50px 0 0;
  color: var(--gray);
  font-size: 14px;
}

/* Legal and 404. */
.legal-hero {
  padding-block: clamp(100px, 12vw, 180px);
  background: var(--paper);
}

.legal-hero h1,
.not-found h1 {
  margin: 24px 0;
  font: 700 clamp(58px, 7vw, 98px)/.95 "Montserrat EL", Montserrat, Arial, sans-serif;
  letter-spacing: -.05em;
}

.legal-hero .narrow-shell > p:last-child {
  max-width: 680px;
  color: var(--gray);
  font-size: 18px;
}

.legal-content {
  padding-block: clamp(80px, 10vw, 150px);
}

.legal-content h2 {
  margin: 58px 0 14px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray);
}

.legal-content a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.not-found {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: var(--paper);
  text-align: center;
}

.not-found > p {
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.not-found-links a {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
}

/* Footer. */
.site-footer {
  padding: clamp(48px, 5vw, 68px) 0 32px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(60px, 10vw, 150px);
}

.footer-brand a {
  display: inline-flex;
}

.footer-brand img {
  width: 190px;
  height: auto;
}

.footer-brand p {
  margin: 2px 0 0;
  color: var(--gray);
  font-weight: 700;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.footer-contact small {
  margin-bottom: 8px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-contact a {
  font-size: 15px;
  font-weight: 700;
}

.footer-contact span {
  margin-top: 7px;
  color: var(--gray);
  font-size: 14px;
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: end;
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 12px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 17px;
    font-size: 13px;
  }

  .language-switch {
    margin-left: 14px;
    gap: 7px;
  }

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

  .info-card {
    min-height: 320px;
  }

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

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 840px);
  }

  .header-shell {
    display: flex;
  }

  .desktop-nav,
  .site-header > .desktop-language-switch,
  .header-shell > .desktop-language-switch {
    display: none;
  }

  .mobile-navigation {
    position: relative;
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .mobile-navigation summary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    list-style: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .11em;
    text-transform: uppercase;
  }

  .mobile-navigation summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation summary span,
  .mobile-navigation summary span::before {
    width: 16px;
    height: 1px;
    display: block;
    background: var(--orange);
  }

  .mobile-navigation summary span {
    position: relative;
  }

  .mobile-navigation summary span::before {
    position: absolute;
    top: -5px;
    left: 0;
    content: "";
    box-shadow: 0 10px 0 var(--orange);
  }

  .mobile-navigation[open] summary span {
    background: transparent;
  }

  .mobile-navigation[open] summary span::before {
    top: 0;
    box-shadow: none;
    transform: rotate(45deg);
  }

  .mobile-navigation[open] summary span::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 1px;
    content: "";
    background: var(--orange);
    transform: rotate(-45deg);
  }

  .mobile-navigation nav {
    position: absolute;
    z-index: 30;
    top: calc(100% + 42px);
    right: 0;
    width: 280px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 45px rgba(35, 31, 32, .16);
  }

  .mobile-navigation nav > a {
    padding: 13px 14px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-navigation nav > a:hover,
  .mobile-navigation nav > a[aria-current="page"] {
    background: var(--paper);
  }

  .mobile-navigation .mobile-language-switch {
    display: inline-flex;
    margin: 4px 14px 12px;
    padding: 0 0 14px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-navigation .mobile-language-switch a,
  .mobile-navigation .mobile-language-switch span {
    padding: 0;
  }

  .page-home main {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .page-home .home-hero,
  .solutions-intro,
  .partners-section,
  .contact-chapter {
    grid-column: 1;
  }

  .product-chapter--meter,
  .product-chapter--flex {
    padding-inline: 32px;
  }

  .product-chapter--flex .product-tile {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .product-tile,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .product-tile-media {
    min-height: 0;
    margin: 0;
  }

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

  .page-hero-copy {
    min-height: 600px;
  }

  .page-hero-media {
    min-height: 520px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .measurement-explainer,
  .platform-preview,
  .contact-brief {
    grid-template-columns: 1fr;
  }

  .measurement-shift {
    min-height: 50px;
  }

  .measurement-shift span {
    transform: rotate(90deg);
  }

  .measurement-view {
    min-height: 340px;
  }

  .platform-preview-copy {
    min-height: 260px;
  }

  .contact-brief {
    gap: 34px;
  }

  .step-grid,
  .offer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .offer-card,
  .contact-card {
    min-height: 330px;
  }

  .offer-card > p:not(:first-child) {
    margin-top: 55px;
  }

  .qualification-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .contact-tile {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px 40px;
  }

  .contact-tile-copy {
    grid-column: 1;
  }

  .contact-tile .pill-button {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-legal div {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 10px;
    --shell: calc(100% - 36px);
  }

  body {
    font-size: 16px;
  }

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

  .site-header {
    height: 74px;
  }

  .brand img {
    width: 145px;
  }

  .mobile-navigation nav {
    top: calc(100% + 40px);
  }

  .home-hero {
    min-height: 720px;
    padding: 58px 20px 84px;
  }

  .signal-mark {
    height: 72px;
    margin-bottom: 27px;
  }

  .signal-mark i {
    width: 19px;
  }

  .signal-mark i:first-child {
    height: 39px;
  }

  .signal-mark i:nth-child(2) {
    height: 70px;
  }

  .signal-mark i:last-child {
    height: 53px;
  }

  .home-hero h1 {
    font-size: clamp(45px, 13vw, 56px);
    letter-spacing: -.042em;
  }

  .solutions-intro {
    padding: 58px 18px 24px;
  }

  .product-chapter--meter,
  .product-chapter--flex {
    padding-inline: 18px;
  }

  .product-tile {
    grid-template-rows: 300px 1fr;
  }

  .product-tile-copy {
    padding: 32px 28px 36px;
  }

  .product-tile h2 {
    font-size: 40px;
  }

  .product-tile-media {
    min-height: 0;
    padding: 26px;
    border-radius: 0;
  }

  .product-tile .pill-button,
  .product-tile .product-download,
  .hero-links .pill-button {
    width: 100%;
  }

  .product-download {
    justify-content: space-between;
  }

  .product-price > strong {
    font-size: 34px;
  }

  .page-hero {
    gap: 10px;
    margin: 10px;
    padding: 44px 24px 24px;
  }

  .page-hero-copy {
    min-height: 540px;
  }

  .page-hero h1,
  .service-hero h1,
  .contact-hero h1 {
    font-size: clamp(45px, 13vw, 61px);
    letter-spacing: -.042em;
  }

  .page-hero-media {
    min-height: 310px;
    padding: 25px;
  }

  .service-hero,
  .contact-hero {
    min-height: 600px;
  }

  .content-section {
    padding-block: 90px;
  }

  .section-heading h2 {
    font-size: clamp(40px, 11vw, 52px);
  }

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

  .info-card {
    min-height: 300px;
  }

  .measurement-explainer,
  .platform-preview,
  .energy-flow {
    padding: 10px;
    border-radius: 28px;
  }

  .measurement-view {
    min-height: 300px;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .measurement-shift {
    min-height: 42px;
  }

  .measurement-shift span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .circuit-stack > div {
    grid-template-columns: 7px 1fr;
  }

  .circuit-stack b {
    display: none;
  }

  .platform-preview-copy {
    min-height: 220px;
    padding: 28px 22px;
  }

  .platform-preview-screen {
    padding: 18px;
    border-radius: 20px;
  }

  .platform-chart {
    height: 220px;
  }

  .platform-chart-bars {
    inset: 22px 14px 18px;
    gap: 3px;
  }

  .platform-legend {
    gap: 10px 14px;
  }

  .energy-flow {
    grid-template-columns: 1fr;
  }

  .energy-flow article {
    min-height: 220px;
  }

  .energy-flow > p {
    padding: 24px 22px;
  }

  .contact-brief {
    padding: 32px 24px;
  }

  .faq-list summary {
    grid-template-columns: 40px 1fr 22px;
    gap: 10px;
    padding-block: 25px;
  }

  .faq-list details > p {
    margin-left: 50px;
  }

  .qualification-grid > article,
  .path-grid > article {
    min-height: 390px;
    padding: 32px 26px;
  }

  .contact-tile {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 66px 0;
  }

  .contact-tile h2 {
    font-size: 42px;
  }

  .contact-tile-copy,
  .contact-tile .pill-button {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-tile .pill-button {
    justify-self: start;
  }

  .partners-section {
    padding-block: 82px;
  }

  .partners-heading h2 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 18px 12px;
    border-radius: 0;
  }

  .partner-card {
    min-height: 94px;
    padding: 12px 8px;
  }

  .partner-card img {
    height: 62px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-legal {
    font-size: 11px;
  }

  .narrow-shell {
    width: calc(100% - 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-hero .signal-mark i {
    animation: none;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .pill-button,
  .text-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
