:root {
  --night: #0a0f0c;
  --night-soft: #111713;
  --paper: #f2f4f1;
  --paper-deep: #e7ebe7;
  --white: #fbfcfa;
  --ink: #101512;
  --muted: #606963;
  --line: #cbd1cc;
  --line-dark: rgba(255, 255, 255, 0.2);
  --green: #128f50;
  --green-deep: #075937;
  --lime: #92d548;
  --orange: #ffad22;
  --display: "Noto Sans SC", sans-serif;
  --sans: "Noto Sans SC", sans-serif;
  --mono: "Noto Sans SC", sans-serif;
  --arabic: "IBM Plex Sans Arabic", "Noto Sans SC", sans-serif;
  --shell: min(1500px, calc(100vw - 96px));
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

html[dir="rtl"] body {
  font-family: var(--arabic);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
}

.skip-link:focus {
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

.button {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  padding: 0 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: #071008;
}

.button-primary:hover {
  background: #a5e55b;
}

.button-large {
  min-height: 58px;
  padding-inline: 31px;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(9, 14, 11, 0.14);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-index,
.eyebrow,
.media-disclaimer {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-index {
  display: inline-block;
  color: var(--green-deep);
}

.section-index-light {
  color: var(--lime);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 44px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease, min-height 250ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: color-mix(in oklch, var(--paper) 94%, transparent);
  color: var(--ink);
  border-bottom-color: rgba(16, 21, 18, 0.14);
  backdrop-filter: blur(18px) saturate(125%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand img {
  width: 78px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 220ms ease;
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.brand-name {
  display: grid;
  gap: 3px;
  padding-inline-start: 13px;
  border-inline-start: 1px solid currentColor;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.brand-name span {
  font-size: 10px;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.35vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding: 29px 0 26px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 19px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a.is-current {
  color: var(--lime);
}

.desktop-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  position: relative;
}

.language-button {
  min-width: 82px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-size: 12px;
}

.chevron {
  width: 7px;
  height: 7px;
  border-inline-end: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  inset: calc(100% + 10px) 0 auto auto;
  min-width: 150px;
  padding: 8px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(16, 21, 18, 0.14);
  box-shadow: 0 18px 42px rgba(5, 11, 7, 0.15);
}

.language-menu button {
  width: 100%;
  min-height: 42px;
  border: 0;
  background: transparent;
  text-align: start;
  padding-inline: 12px;
  cursor: pointer;
}

.language-menu button:hover {
  background: var(--paper-deep);
}

.button-header {
  min-height: 42px;
  background: var(--lime);
  color: #071008;
}

.site-header.is-scrolled .button-header {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: var(--night);
  color: var(--white);
  padding: 116px 28px 32px;
}

.mobile-panel nav {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.mobile-panel nav a {
  min-height: 62px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 24px;
}

.mobile-panel nav a.is-current,
.footer-nav a.is-current {
  color: var(--lime);
}

.mobile-panel > .button {
  width: 100%;
  margin-top: 28px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--night);
}

.hero-media,
.hero-media img,
.hero-media picture,
.hero::before,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 58%;
  filter: saturate(0.72) contrast(1.12) brightness(0.72);
  transform: scale(1.025);
  animation: heroDrift 16s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 1.15s ease-in-out;
  will-change: opacity, transform;
}

.hero-media img.is-active {
  opacity: 1;
}

.hero::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 9, 6, 0.87) 0%, rgba(4, 9, 6, 0.58) 42%, rgba(4, 9, 6, 0.12) 78%),
    linear-gradient(0deg, rgba(4, 9, 6, 0.82) 0%, transparent 46%, rgba(4, 9, 6, 0.2) 100%);
}

.hero-grain {
  z-index: 2;
  pointer-events: none;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

@keyframes heroDrift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1.2%, -0.6%, 0); }
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: var(--shell);
  margin-inline: auto;
  padding: 148px 0 180px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow-mark {
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.hero h1 {
  max-width: 1120px;
  margin-top: 0;
  font-size: clamp(64px, 7.6vw, 126px);
  font-weight: 520;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero h1 em,
.closing-cta h2 em {
  position: relative;
  display: inline-block;
  color: var(--lime);
  font-style: normal;
  font-weight: 500;
  transition: color 260ms ease;
}

.hero h1 em {
  cursor: default;
}

.hero h1 em:hover,
.hero h1 em.is-pointer-active {
  animation: hero-title-breathe 2.2s ease-in-out infinite;
}

@keyframes hero-title-breathe {
  0%,
  100% {
    color: var(--lime);
  }

  50% {
    color: #efffcf;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 em:hover,
  .hero h1 em.is-pointer-active {
    animation: none;
    color: #efffcf;
  }
}

.hero-summary {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-bottom {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  min-height: 126px;
  display: grid;
  grid-template-columns: 1.5fr minmax(170px, 0.5fr);
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(4, 9, 6, 0.62), rgba(4, 9, 6, 0.92)),
    radial-gradient(circle at 18% 0%, rgba(146, 213, 72, 0.11), transparent 30%);
  box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(120%);
}

.scroll-cue {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: uppercase;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(146, 213, 72, 0.08), rgba(4, 9, 6, 0.08));
  transition: color 220ms ease;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(146, 213, 72, 0.16), transparent 46%);
  opacity: 0.75;
  pointer-events: none;
}

.scroll-cue > span,
.scroll-cue > i {
  position: relative;
  z-index: 1;
}

.scroll-cue i {
  width: 36px;
  height: 16px;
  position: relative;
  flex: 0 0 36px;
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  inset: 50% 5px auto 0;
  height: 1px;
  background: var(--lime);
  transform: translateY(-50%);
  transition: width 220ms ease;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--lime);
  border-right: 1px solid var(--lime);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 220ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--lime);
}

.scroll-cue:hover i::before,
.scroll-cue:focus-visible i::before {
  width: 31px;
}

.scroll-cue:hover i::after,
.scroll-cue:focus-visible i::after {
  transform: translate(3px, -50%) rotate(45deg);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof > div {
  position: relative;
  overflow: hidden;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: center;
  padding: 22px clamp(22px, 3vw, 48px);
  border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  transition: background 220ms ease, transform 220ms ease;
}

.hero-proof > div:last-child {
  border-inline-end: 0;
}

.hero-proof > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 0%, rgba(146, 213, 72, 0.15), transparent 38%);
  opacity: 0.42;
  pointer-events: none;
}

.hero-proof > div::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 44px;
  height: 2px;
  background: var(--lime);
  transform-origin: left;
  transition: width 280ms ease;
}

.hero-proof > div:hover {
  background: linear-gradient(135deg, rgba(146, 213, 72, 0.12), rgba(255, 255, 255, 0.025));
  transform: translateY(-2px);
}

.hero-proof > div:hover::after {
  width: 100%;
}

.hero-proof > div > span,
.hero-proof > div > strong,
.hero-proof > div > small {
  position: relative;
  z-index: 1;
}

.hero-proof > div > span {
  grid-row: 1 / 3;
  font-family: var(--mono);
  color: var(--lime);
  font-size: 10px;
  padding-top: 4px;
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 550;
}

.hero-proof small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.media-disclaimer {
  position: absolute;
  z-index: 5;
  inset: 104px 44px auto auto;
  color: rgba(255, 255, 255, 0.48);
  writing-mode: vertical-rl;
}

/* Markets */
.markets {
  background: var(--paper);
}

.market-statement {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: end;
  gap: 44px;
  padding: 100px 0 72px;
}

.market-statement h2 {
  max-width: 1080px;
  font-size: clamp(44px, 5.8vw, 92px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.market-split {
  display: flex;
  min-height: 820px;
  overflow: hidden;
  background: var(--night);
}

/* Construction-site reality check */
.solution-context {
  background: var(--paper);
}

.solution-context-statement {
  min-height: 360px;
}

.challenge-grid {
  display: flex;
  min-height: 820px;
  overflow: hidden;
  background: var(--night);
}

.challenge-card {
  position: relative;
  flex: 1 1 33.333%;
  min-width: 0;
  min-height: 820px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px clamp(24px, 3.2vw, 54px) 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(146, 213, 72, 0.18), transparent 27%),
    linear-gradient(145deg, #18241a 0%, #0b120d 62%, #07100b 100%);
  isolation: isolate;
  transition: flex-basis 550ms cubic-bezier(.22, 1, .36, 1);
}

.challenge-image,
.challenge-image img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08);
  transform: scale(1.015);
  transition: transform 900ms cubic-bezier(.22, 1, .36, 1), filter 500ms ease;
}

.challenge-card > :not(.challenge-image) {
  position: relative;
  z-index: 1;
}

.challenge-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.94;
  background:
    linear-gradient(180deg, rgba(3, 10, 5, 0.1) 0%, rgba(3, 10, 5, 0.4) 42%, rgba(2, 6, 4, 0.92) 100%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42.1%, transparent 42.3%),
    repeating-linear-gradient(90deg, transparent 0 74px, rgba(255, 255, 255, 0.035) 74px 75px),
    repeating-linear-gradient(0deg, transparent 0 74px, rgba(255, 255, 255, 0.035) 74px 75px);
  pointer-events: none;
}

.challenge-card:hover {
  flex-basis: 38%;
}

.challenge-card:hover .challenge-image {
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.035);
}

.challenge-image img {
  object-fit: cover;
}

.challenge-card + .challenge-card {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.28);
}

.challenge-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.challenge-topline span:last-child {
  color: var(--lime);
}

.challenge-copy {
  max-width: 410px;
}

.challenge-label {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(146, 213, 72, 0.52);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
}

.challenge-card h3 {
  max-width: 380px;
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.challenge-card p {
  max-width: 390px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.market-panel {
  position: relative;
  flex: 1 1 33.333%;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  transition: flex-basis 550ms cubic-bezier(.22, 1, .36, 1);
}

.market-panel + .market-panel {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.28);
}

.market-panel:hover {
  flex-basis: 38%;
}

.market-panel > img,
.market-panel > .market-image,
.market-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.market-panel > img,
.market-panel > .market-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08);
  transition: transform 900ms cubic-bezier(.22, 1, .36, 1), filter 500ms ease;
}

.market-panel:hover > img,
.market-panel:hover > .market-image {
  transform: scale(1.035);
  filter: saturate(0.9) contrast(1.04);
}

.market-shade {
  background: linear-gradient(0deg, rgba(4, 8, 5, 0.9) 0%, rgba(4, 8, 5, 0.2) 65%, rgba(4, 8, 5, 0.45) 100%);
}

.market-topline {
  position: absolute;
  z-index: 2;
  inset: 30px 34px auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.market-content {
  position: absolute;
  z-index: 2;
  inset: auto clamp(30px, 4.5vw, 74px) 54px;
  max-width: 630px;
}

.market-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.market-content h3 {
  margin-top: 16px;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.market-content p {
  max-width: 570px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.market-topic-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 24px;
  margin-top: 28px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.market-highlight {
  display: block;
  margin: 0;
  padding: 0;
  border-top: 0;
  color: var(--lime);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.market-topic-row + p {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.7;
}

.market-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-content li {
  color: var(--lime);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
}

/* Solution offers */
.solution-offers {
  background: var(--paper);
}

.solution-offer-panel {
  min-height: 820px;
}

.solution-offer-panel .market-content {
  max-width: 690px;
}

.solution-offer-panel .market-content h3 {
  max-width: 600px;
}

.solution-offer-ppa .market-shade {
  background:
    linear-gradient(90deg, rgba(4, 8, 5, 0.88) 0%, rgba(4, 8, 5, 0.62) 42%, rgba(4, 8, 5, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 8, 5, 0.88) 0%, rgba(4, 8, 5, 0.12) 72%);
}

.solution-offer-ppa .market-content {
  inset: auto clamp(30px, 4.5vw, 74px) 62px;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(36px, 6vw, 104px);
  align-items: end;
}

.solution-offer-ppa .market-content h3 {
  max-width: 560px;
  margin-top: 0;
  font-size: clamp(54px, 5.1vw, 80px);
  line-height: 0.94;
}

.solution-offer-ppa .solution-offer-details {
  margin-top: 0;
  border-top: 0;
  display: grid;
  gap: 18px;
}

.solution-offer-ppa .solution-offer-detail,
.solution-offer-ppa .solution-offer-detail + .solution-offer-detail {
  margin-top: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.solution-offer-ppa .solution-offer-detail strong {
  font-size: 14px;
  font-weight: 500;
}

.solution-offer-ppa .solution-offer-detail p {
  max-width: 720px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.solution-offer-split .market-panel,
.solution-offer-split .market-panel:hover {
  flex-basis: 100%;
  width: 100%;
  transition: none;
}

.solution-offer-details {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.solution-offer-detail {
  padding: 17px 0 0;
}

.solution-offer-detail + .solution-offer-detail {
  margin-top: 16px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-offer-detail strong {
  display: block;
  color: var(--lime);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
}

.solution-offer-section-title {
  display: block;
  margin-top: 28px;
  color: var(--lime);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.solution-offer-section-title + .solution-offer-details,
.solution-offer-section-title + p {
  margin-top: 7px;
}

.solution-offer-detail p {
  max-width: 650px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.7;
}

/* Solutions */
.solutions {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 14, 10, 0.86) 0%, rgba(4, 14, 10, 0.62) 46%, rgba(4, 14, 10, 0.8) 100%),
    url("assets/img-v2/solution-ecosystem-construction.png") center 42% / cover no-repeat;
  padding: 150px 0;
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 14, 10, 0.12), rgba(4, 14, 10, 0.42));
  pointer-events: none;
}

.solutions-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(490px, 0.82fr) minmax(580px, 1.18fr);
  gap: clamp(64px, 6vw, 120px);
  align-items: start;
}

.solutions-intro {
  position: sticky;
  top: 120px;
}

.solutions-intro h2,
.section-heading h2,
.assessment-intro h2,
.investor-copy h2 {
  margin-top: 24px;
  font-size: clamp(52px, 5.8vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.solutions-title-line {
  display: inline-block;
  white-space: nowrap;
}

.solutions-intro > p,
.section-heading > p,
.assessment-intro > p,
.investor-copy > p {
  max-width: 550px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.solutions-intro > p {
  color: rgba(255, 255, 255, 0.76);
}

.solution-list {
  border-top: 1px solid rgba(255, 255, 255, 0.46);
}

.solution-row {
  display: grid;
  grid-template-columns: 40px 42px minmax(0, 1fr) minmax(118px, auto) 28px;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 26px 18px 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background-color 220ms ease, padding 220ms ease, border-color 220ms ease;
}

.solution-row:hover {
  background: rgba(146, 213, 72, 0.14);
  padding-left: 16px;
  padding-right: 16px;
  border-bottom-color: var(--lime);
}

.solution-number {
  align-self: start;
  padding-top: 5px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
}

.solution-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1;
  filter: saturate(0.9);
  transition: transform 220ms ease, border-color 220ms ease;
}

.solution-row:hover .solution-icon,
.solution-row:focus-within .solution-icon {
  border-color: var(--green);
  transform: rotate(-8deg) scale(1.05);
}

.solution-copy h3 {
  font-size: clamp(23px, 2.25vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.solution-copy p {
  max-width: 590px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.75;
  transition: color 220ms ease;
}

.solution-result {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: var(--lime);
  text-align: right;
}

.solution-result strong {
  font-family: var(--display);
  font-size: clamp(19px, 1.6vw, 27px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.solution-result span {
  font-family: var(--display);
  font-size: clamp(19px, 1.6vw, 27px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.solution-arrow {
  font-size: 23px;
  color: var(--lime);
  transition: transform 220ms ease;
}

.solution-row:hover .solution-arrow,
.solution-row:focus-within .solution-arrow {
  color: var(--lime);
  transform: translate(3px, -3px);
}

/* Technology */
.technology {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
  padding-bottom: 150px;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(610px, 1.18fr);
  gap: clamp(70px, 8vw, 132px);
  align-items: start;
  padding-top: 134px;
}

.tech-copy h2 {
  margin-top: 24px;
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.tech-copy > p {
  max-width: 540px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.85;
}

.tech-tabs {
  margin-top: 56px;
  border-top: 1px solid var(--line-dark);
}

.tech-tab {
  width: 100%;
  min-height: 62px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  text-align: start;
  cursor: pointer;
  padding: 0;
  transition: color 180ms ease, padding 180ms ease;
}

.tech-tab::after {
  content: "↗";
  font-size: 17px;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.tech-tab span {
  font-family: var(--mono);
  font-size: 10px;
}

.tech-tab b {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
}

.tech-tab:hover,
.tech-tab.is-active {
  color: var(--white);
  padding-inline: 8px;
}

.tech-tab.is-active span {
  color: var(--lime);
}

.tech-tab.is-active::after {
  color: var(--lime);
  opacity: 1;
  transform: translate(0, 0);
}

.tech-detail {
  margin-top: 34px;
  padding-inline-start: 26px;
  border-inline-start: 2px solid var(--lime);
}

.tech-detail-index {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.tech-detail h3 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.35;
}

.tech-detail p {
  max-width: 530px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.75;
}

.tech-detail.is-updating {
  animation: detailIn 430ms cubic-bezier(.22, 1, .36, 1);
}

@keyframes detailIn {
  from { opacity: 0.3; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tech-console {
  margin-top: 78px;
  background: #e9eeea;
  color: var(--ink);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45);
}

.console-head,
.console-caption {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  background: #151b17;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
}

.console-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(146, 213, 72, 0.13);
}

.load-chart {
  position: relative;
  height: 310px;
  margin-top: 18px;
  overflow: hidden;
  border-top: 1px solid #bac4bc;
  border-bottom: 1px solid #bac4bc;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 79, 47, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 79, 47, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
}

.load-chart svg {
  position: absolute;
  inset: 16px 0 30px;
  width: 100%;
  height: calc(100% - 46px);
}

.chart-area {
  fill: rgba(18, 143, 80, 0.13);
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  animation: drawLine 3.2s cubic-bezier(.22, 1, .36, 1) infinite alternate;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.chart-label {
  position: absolute;
  bottom: 9px;
  color: #647068;
  font-family: var(--mono);
  font-size: 10px;
}

.chart-label-a { left: 0; }
.chart-label-b { left: 50%; transform: translateX(-50%); }
.chart-label-c { right: 0; }

.console-caption {
  min-height: 42px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

/* Real-time EMS console */
.tech-console {
  overflow: hidden;
  background: #eef3ef;
  color: #10251a;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.console-head {
  min-height: 68px;
  padding: 0 26px;
}

.console-brand,
.console-head-meta,
.console-toolbar-data,
.console-panel-head,
.console-kpi-top,
.console-kpi-foot,
.console-bottom-head,
.console-chart-legend,
.console-chart-foot,
.dispatch-card > div {
  display: flex;
  align-items: center;
}

.console-brand { gap: 12px; }

.console-brand-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(146, 213, 72, 0.6);
  color: var(--lime);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}

.console-brand strong,
.console-brand small { display: block; }

.console-brand strong { color: rgba(255, 255, 255, 0.92); font-size: 10px; }
.console-brand small { margin-top: 4px; color: rgba(255, 255, 255, 0.38); font-size: 10px; }

.console-head-meta { gap: 20px; }
.console-site { color: rgba(255, 255, 255, 0.4); }

.console-menu {
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
}

.console-menu i { width: 11px; height: 1px; display: block; background: rgba(255, 255, 255, 0.6); }

.console-toolbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 26px;
  border-bottom: 1px solid #c2ccc5;
  background: #e8efea;
}

.console-eyebrow,
.console-toolbar-data,
.console-chart-legend,
.chart-unit,
.console-kpi-top,
.console-kpi-foot,
.console-count,
.asset-reading span,
.dispatch-card span,
.dispatch-card i,
.console-bottom-head,
.event-row time,
.event-row > span,
.alert-tag,
.console-caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.console-eyebrow { display: block; color: #557066; font-size: 10px; letter-spacing: 0.12em; }
.console-toolbar strong { display: block; margin-top: 6px; font-size: 14px; font-weight: 600; }

.console-toolbar-data { gap: 14px; color: #6d7c72; font-size: 10px; }

.console-mode {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  color: #13824e;
  border: 1px solid rgba(19, 130, 78, 0.24);
  background: rgba(19, 130, 78, 0.06);
}

.console-mode i,
.console-live-tag i,
.asset-online {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #168955;
  box-shadow: 0 0 0 3px rgba(22, 137, 85, 0.13);
}

.console-clock { color: #203e2b; font-weight: 600; }

.console-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #bdc9c0;
}

.console-kpi {
  min-width: 0;
  padding: 18px 20px 16px;
  border-inline-end: 1px solid #bdc9c0;
  background: #f2f6f3;
}

.console-kpi:last-child { border-inline-end: 0; }
.console-kpi-top, .console-kpi-foot { justify-content: space-between; }
.console-kpi-top { color: #4d675a; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; }

.console-kpi > strong {
  display: block;
  margin-top: 12px;
  color: #143d29;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.console-kpi > strong small { margin-left: 2px; font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0; }
.console-kpi-foot { gap: 8px; margin-top: 8px; color: #728278; font-family: var(--mono); font-size: 10px; white-space: nowrap; }
.console-kpi-foot b { color: #27734d; font-weight: 500; }
.trend-up { color: #1e9860 !important; }
.trend-down { color: #bd711f !important; }

.console-main,
.console-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 1px;
  background: #bdc9c0;
}

.console-panel { min-width: 0; background: #f2f6f3; }
.console-chart-panel { padding: 22px 24px 18px; }
.console-panel-head { justify-content: space-between; gap: 16px; }
.console-panel-head h3 { margin-top: 6px; color: #153c2a; font-size: 17px; font-weight: 600; }

.console-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  color: #1b8a55;
  border: 1px solid rgba(27, 138, 85, 0.25);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.console-chart-legend { gap: 14px; margin-top: 18px; color: #65776b; font-size: 10px; }
.console-chart-legend > span:not(.chart-unit) { display: inline-flex; align-items: center; gap: 5px; }
.console-chart-legend i { width: 13px; height: 2px; display: inline-block; background: #1a8d59; }
.console-chart-legend .legend-pv { background: #dd8a22; }
.console-chart-legend .legend-bess { background: #547d74; }
.chart-unit { margin-inline-start: auto; color: #87968b; font-size: 10px; }

.load-chart {
  position: relative;
  height: 272px;
  margin-top: 10px;
  overflow: hidden;
  border-top: 1px solid #bcc9c0;
  border-bottom: 1px solid #bcc9c0;
}

.chart-grid {
  position: absolute;
  inset: 0 0 25px;
  background-image: linear-gradient(rgba(14, 79, 47, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 79, 47, 0.12) 1px, transparent 1px);
  background-size: 45px 44px;
}

.chart-scale {
  position: absolute;
  z-index: 1;
  inset: 12px auto 34px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #8a998f;
  font-family: var(--mono);
  font-size: 10px;
}

.load-chart svg { position: absolute; inset: 12px 0 30px 24px; width: calc(100% - 24px); height: calc(100% - 42px); }
.chart-area-load { fill: rgba(18, 143, 80, 0.1); }

.chart-line {
  fill: none;
  stroke-width: 2.3;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  animation: drawLine 3.2s cubic-bezier(.22, 1, .36, 1) infinite alternate;
}

.chart-line-load { stroke: #168955; }
.chart-line-pv { stroke: #dd8a22; animation-delay: 0.25s; }
.chart-line-bess { stroke: #547d74; animation-delay: 0.5s; }

.chart-marker { stroke: rgba(18, 73, 48, 0.35); stroke-dasharray: 3 4; vector-effect: non-scaling-stroke; }
.chart-point { fill: #f2f6f3; stroke: #168955; stroke-width: 2; vector-effect: non-scaling-stroke; }

.chart-label { position: absolute; bottom: 8px; color: #697a6f; font-family: var(--mono); font-size: 10px; }
.chart-label-a { left: 24px; }
.chart-label-b { left: 25%; transform: translateX(-50%); }
.chart-label-c { left: 50%; transform: translateX(-50%); }
.chart-label-d { left: 75%; transform: translateX(-50%); }
.chart-label-e { right: 0; }

.console-chart-foot { justify-content: space-between; gap: 12px; margin-top: 12px; color: #718176; font-family: var(--mono); font-size: 10px; }
.console-chart-foot strong { font-weight: 500; }
.console-chart-foot b { color: #198d58; }

.console-assets { padding: 22px 0 0; }
.console-assets .console-panel-head { padding: 0 22px 18px; }
.console-count { color: #168955; font-size: 10px; }
.asset-list { border-top: 1px solid #c3cec6; }

.asset-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 12px 20px;
  border-bottom: 1px solid #c3cec6;
}

.asset-badge { width: 31px; height: 31px; display: grid; place-items: center; color: #fff; font-family: var(--mono); font-size: 10px; font-weight: 600; }
.asset-pv { background: #d48720; }
.asset-bess { background: #607e72; }
.asset-grid { background: #3b8062; }
.asset-load { background: #295845; }
.asset-name, .asset-reading { min-width: 0; }
.asset-name strong, .asset-name small, .asset-reading strong, .asset-reading span, .dispatch-card small { display: block; }
.asset-name strong { overflow: hidden; color: #183e2b; font-size: 11px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.asset-name small { margin-top: 5px; overflow: hidden; color: #74857a; font-family: var(--mono); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.asset-reading { text-align: end; }
.asset-reading strong { color: #19432e; font-family: var(--display); font-size: 15px; font-weight: 600; white-space: nowrap; }
.asset-reading strong small { font-family: var(--mono); font-size: 10px; font-weight: 500; }
.asset-reading span { margin-top: 4px; color: #168955; font-size: 10px; letter-spacing: 0.08em; }

.dispatch-card { margin: 16px 18px 20px; padding: 14px; border: 1px solid #bdcfc2; background: #e4eee7; }
.dispatch-card > div { justify-content: space-between; color: #5c7365; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; }
.dispatch-card i { padding: 3px 5px; color: #168955; border: 1px solid rgba(22, 137, 85, 0.26); font-size: 10px; font-style: normal; }
.dispatch-card strong { display: block; margin-top: 13px; color: #19432e; font-size: 13px; }
.dispatch-card small { margin-top: 6px; color: #6b7e71; font-family: var(--mono); font-size: 10px; }

.console-bottom { grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr); }
.console-log-panel, .console-alerts { min-width: 0; padding: 18px 22px 20px; background: #e8f0ea; }
.console-bottom-head { justify-content: space-between; color: #456052; font-size: 10px; letter-spacing: 0.12em; }
.console-bottom-head i { color: #168955; font-style: normal; }
.alert-count { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: #d4841e; color: #fff !important; font-size: 10px; }
.event-list { margin-top: 13px; }

.event-row { display: grid; grid-template-columns: 60px 8px minmax(0, 1fr) auto; align-items: center; gap: 9px; min-height: 27px; color: #445b4d; font-size: 11px; }
.event-row time { color: #168955; font-size: 10px; }
.event-row p, .alert-row p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.event-row > span { color: #7e9385; font-size: 10px; }
.event-dot { width: 6px; height: 6px; display: block; border-radius: 50%; background: #168955; }
.event-dot-orange { background: #d4841e; }

.alert-row { display: grid; grid-template-columns: 57px minmax(0, 1fr) auto; align-items: center; gap: 10px; min-height: 34px; margin-top: 8px; padding-top: 8px; border-top: 1px solid #c6d2c9; color: #455e4e; font-size: 11px; }
.alert-row strong { color: #bd711f; font-family: var(--mono); font-size: 10px; }
.alert-tag { font-size: 10px; letter-spacing: 0.06em; }
.alert-tag-warning { color: #bd711f; }
.alert-tag-good { color: #168955; }

.console-caption {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  font-size: 10px;
}

/* Cases */
.cases {
  background: var(--paper);
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading > p {
  justify-self: end;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: end;
}

.case-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  transition: transform 280ms ease, background-color 280ms ease;
}

.case-card:hover {
  transform: translateY(-6px);
  background: #f7faf7;
}

.case-card figure {
  position: relative;
  height: 138px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.case-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 9, 6, 0.34), transparent 58%);
}

.case-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 600ms cubic-bezier(.22, 1, .36, 1);
}

.case-card:hover figure img {
  transform: scale(1.06);
}

/* Case index: four projects per page */
.case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  margin-top: 64px;
}

.case-card {
  position: relative;
  min-height: 0;
  overflow: visible;
  border-radius: 18px;
  background: transparent;
  transition: transform 320ms ease;
}

.case-card[hidden] {
  display: none;
}

.case-card:hover {
  transform: translateY(-5px);
  background: transparent;
}

.case-card figure {
  position: relative;
  height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper-deep);
}

.case-card figure::after {
  background: linear-gradient(180deg, rgba(4, 9, 6, 0.08) 0%, rgba(4, 9, 6, 0.02) 37%, rgba(4, 9, 6, 0.58) 100%);
}

.case-card figure img {
  filter: saturate(0.88) contrast(1.04);
}

.case-card-index {
  position: absolute;
  z-index: 2;
  inset: 18px auto auto 20px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.case-card-overlay {
  position: absolute;
  z-index: 3;
  inset: auto 14px 14px;
  padding: 18px 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(8, 19, 13, 0.76);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px) saturate(110%);
  color: var(--white);
}

.case-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.case-card-title h3 {
  min-width: 0;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.case-card-title > span {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 22px;
  line-height: 1;
}

.case-card-overlay > p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.55;
}

.case-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.case-card-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-card-meta strong {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 10px;
  font-weight: 500;
}

.case-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: min(100%, 520px);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.case-page-button {
  position: relative;
  width: 48px;
  height: 48px;
  margin-inline-end: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-page-button:hover {
  border-color: var(--green);
  background: var(--paper-deep);
  color: var(--ink);
}

.case-page-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--lime);
}

.case-page-button:focus-visible,
.case-page-next:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.case-pagination-total {
  margin: 0 18px 0 4px;
  padding-inline-start: 18px;
  border-inline-start: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 24px;
}

.case-page-next {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  margin: 0;
  padding: 0 15px 0 18px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.case-page-next:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.case-page-next-arrow {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1;
  transition: transform 180ms ease;
}

.case-page-next:hover .case-page-next-arrow {
  transform: translateX(2px);
}

.case-page-next[disabled] {
  opacity: 0.35;
  cursor: default;
}

/* Assessment */
.assessment {
  background: var(--paper-deep);
  padding: 140px 0;
}

.assessment-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.assessment-intro .button {
  margin-top: 38px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.process-list li {
  min-height: 144px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
}

.process-list li > span {
  align-self: start;
  padding-top: 4px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
}

.process-list li div {
  display: grid;
  gap: 8px;
}

.process-list strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
}

.process-list small {
  color: var(--muted);
  font-size: 11px;
}

/* Investors */
.investors {
  background: var(--night-soft);
  color: var(--white);
  padding: 140px 0;
}

.investor-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}

.investor-copy {
  position: sticky;
  top: 120px;
}

.investor-copy > p {
  color: rgba(255, 255, 255, 0.5);
}

.investor-roadmap {
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.investor-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.investor-panel-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.roadmap-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--line-dark);
}

.roadmap-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  align-content: space-between;
  gap: 18px;
  min-height: 166px;
  min-width: 0;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  color: rgba(255, 255, 255, 0.46);
  text-align: start;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.roadmap-step-index {
  color: currentColor;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.roadmap-step strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(22px, 2.25vw, 34px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.roadmap-step:hover,
.roadmap-step.is-active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--lime);
  transform: translateY(-4px);
}

.roadmap-step.is-active strong {
  color: var(--ink);
}

.roadmap-step em {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.03em;
}

.roadmap-step.is-active em {
  color: var(--ink);
}

.roadmap-node {
  position: absolute;
  inset: auto 14px 14px auto;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  font-family: var(--mono);
  font-size: 10px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.roadmap-step.is-active .roadmap-node {
  background: var(--ink);
  color: var(--lime);
  transform: rotate(-10deg);
}

.roadmap-step:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.roadmap-detail {
  padding: 30px 0 28px;
  border-bottom: 1px solid var(--line-dark);
}

.roadmap-detail.is-updating {
  animation: roadmapReveal 360ms ease both;
}

@keyframes roadmapReveal {
  from { opacity: 0.35; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.roadmap-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.roadmap-detail-top strong {
  color: var(--lime);
  font-size: 13px;
  font-weight: 400;
}

.roadmap-detail h3 {
  max-width: 620px;
  margin-top: 28px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 56px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.roadmap-detail p {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.investor-download {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  text-align: start;
  cursor: pointer;
}

.investor-download > span:first-child {
  display: grid;
  gap: 8px;
}

.investor-download small {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.investor-download strong {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
}

.investor-download-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 16px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.investor-download:hover .investor-download-arrow {
  background: var(--lime);
  color: var(--ink);
  transform: translateX(4px);
}

.investor-download-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  line-height: 1.6;
}

.text-link {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--lime);
  font-size: 13px;
}

/* Closing */
.closing-cta {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--night);
}

.closing-cta > img,
.closing-cta > .closing-image,
.closing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-cta > img,
.closing-cta > .closing-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.75);
}

.closing-shade {
  background: linear-gradient(90deg, rgba(5, 9, 6, 0.88), rgba(5, 9, 6, 0.22) 75%), linear-gradient(0deg, rgba(5, 9, 6, 0.55), transparent 60%);
}

.closing-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
}

.closing-cta h2 {
  max-width: 1160px;
  margin-top: 26px;
  font-size: clamp(58px, 7.2vw, 114px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

/* Footer */
.site-footer {
  background: #050806;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1fr) minmax(300px, 1.35fr);
  gap: 70px;
  padding: 72px 48px 34px;
}

.footer-brand img {
  width: 96px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: normal;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0 44px;
  align-self: start;
}

.footer-nav a {
  min-height: 54px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-nav a:hover {
  color: var(--lime);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.55;
}

.footer-contact-title {
  margin-bottom: 3px;
  color: var(--lime);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.footer-contact a:hover {
  color: var(--lime);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

/* Modal */
.assessment-modal {
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100svh - 40px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  overflow: auto;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.contact-modal {
  width: min(820px, calc(100vw - 32px));
}

.assessment-modal::backdrop {
  background: rgba(3, 7, 4, 0.8);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.modal-intro {
  padding: 58px 58px 36px;
  border-bottom: 1px solid var(--line);
}

.modal-intro h2 {
  max-width: 580px;
  margin-top: 20px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.modal-intro p {
  max-width: 580px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

#assessmentForm,
#contactForm,
#investorForm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 38px 58px 54px;
}

#investorForm {
  grid-template-columns: 1fr;
}

#assessmentForm label,
#contactForm label,
#investorForm label {
  display: grid;
  gap: 9px;
}

#assessmentForm label span,
#contactForm label span,
#investorForm label span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#assessmentForm input,
#assessmentForm select,
#contactForm input,
#investorForm input {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid #9ea8a1;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  outline: none;
}

#assessmentForm input:focus,
#assessmentForm select:focus,
#contactForm input:focus,
#investorForm input:focus {
  border-bottom-color: var(--green);
}

#assessmentForm .button,
#contactForm .button,
#investorForm .button,
.form-note {
  grid-column: 1 / -1;
}

#assessmentForm .button,
#contactForm .button,
#investorForm .button {
  margin-top: 14px;
}

.contact-form-full {
  grid-column: 1 / -1;
}

#contactForm textarea {
  width: 100%;
  min-height: 108px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #9ea8a1;
  background: transparent;
  color: var(--ink);
  font: inherit;
  line-height: 1.6;
  outline: none;
  resize: vertical;
}

#contactForm textarea:focus {
  border-bottom-color: var(--green);
}

.form-note {
  color: var(--muted);
  font-size: 10px;
}

.prototype-toast {
  position: fixed;
  z-index: 210;
  inset: auto 24px 24px auto;
  max-width: 390px;
  background: var(--lime);
  color: #071008;
  padding: 18px 22px;
  font-size: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

/* RTL */
html[dir="rtl"] .language-menu {
  inset-inline: auto 0;
}

html[dir="rtl"] .hero::before,
html[dir="rtl"] .closing-shade {
  transform: scaleX(-1);
}

html[dir="rtl"] .scroll-cue i::after {
  transform: rotate(135deg);
}

html[dir="rtl"] .media-disclaimer {
  inset-inline: 44px auto;
  writing-mode: vertical-lr;
}

html[dir="rtl"] .solution-arrow,
html[dir="rtl"] .tech-tab::after {
  transform: scaleX(-1);
}

html[dir="rtl"] .tech-tab.is-active::after {
  transform: scaleX(-1);
}

/* Responsive */
@media (max-width: 1220px) {
  :root {
    --shell: min(100% - 64px, 1180px);
  }

  .site-header {
    padding-inline: 30px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .solutions-layout,
  .tech-layout {
    gap: 64px;
  }

  .solutions-layout {
    grid-template-columns: minmax(340px, 0.82fr) minmax(540px, 1.18fr);
  }

  .solution-row {
    grid-template-columns: 34px 38px minmax(0, 1fr) minmax(108px, auto) 24px;
    gap: 14px;
  }

  .tech-layout {
    grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
  }
}

@media (max-width: 940px) {
  :root {
    --shell: calc(100% - 48px);
  }

  .market-statement {
    grid-template-columns: 1fr;
  }

  .market-split {
    display: block;
  }

  .challenge-grid {
    flex-direction: column;
    min-height: auto;
  }

  .challenge-card {
    flex-basis: auto;
    min-height: 460px;
  }

  .challenge-card + .challenge-card {
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .market-panel {
    min-height: 680px;
  }

  .solution-offer-panel {
    min-height: 820px;
  }

  .solution-offer-ppa .market-content {
    display: block;
  }

  .solution-offer-ppa .solution-offer-details {
    margin-top: 34px;
  }

  .market-panel + .market-panel {
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .solutions-layout,
  .tech-layout,
  .assessment-layout,
  .investor-layout {
    grid-template-columns: 1fr;
  }

  .solutions-intro {
    position: static;
    margin-bottom: 30px;
  }

  .investor-copy {
    position: static;
  }

  .tech-console {
    margin-top: 0;
  }

  .section-heading,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    justify-self: start;
  }

}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 36px);
    --header-h: 68px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 68px;
    padding-inline: 18px;
  }

  .brand img {
    width: 66px;
    height: 32px;
  }

  .brand-name,
  .header-cta {
    display: none;
  }

  .roadmap-track {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0 22px;
  }

  .roadmap-track::before {
    display: none;
  }

  .roadmap-step {
    min-height: 132px;
    gap: 12px;
    padding: 16px;
  }

  .roadmap-node,
  .roadmap-step.is-active .roadmap-node {
    inset: auto 14px 14px auto;
    transform: none;
  }

  .roadmap-step.is-active .roadmap-node {
    transform: rotate(-10deg);
  }

  #assessmentForm,
  #contactForm,
  #investorForm {
    grid-template-columns: 1fr;
    padding: 30px 24px 42px;
  }

  .header-actions {
    gap: 2px;
  }

  .language-button {
    min-width: 72px;
  }

  .hero {
    min-height: 900px;
    align-items: flex-start;
  }

  .hero-media img {
    object-position: 63% 58%;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(4, 9, 6, 0.94) 0%, rgba(4, 9, 6, 0.35) 70%, rgba(4, 9, 6, 0.35) 100%);
  }

  .hero-copy {
    padding: 154px 0 320px;
  }

  .hero h1 {
    margin-top: 0;
    font-size: clamp(48px, 13vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.06em;
  }

  .hero-summary {
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .scroll-cue {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof > div {
    min-height: 74px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .media-disclaimer {
    inset: 84px 18px auto auto;
    font-size: 10px;
  }

  html[dir="rtl"] .media-disclaimer {
    inset-inline: 18px auto;
  }

  .market-statement {
    min-height: 300px;
    padding: 88px 0 50px;
  }

  .market-statement h2,
  .solutions-intro h2,
  .section-heading h2,
  .assessment-intro h2,
  .investor-copy h2,
  .tech-copy h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .market-panel {
    min-height: 660px;
  }

  .challenge-card {
    min-height: 390px;
    padding: 26px 22px 32px;
  }

  .challenge-card h3 {
    margin-top: 18px;
    font-size: clamp(38px, 12vw, 56px);
  }

  .challenge-card p {
    margin-top: 18px;
    font-size: 13px;
  }

  .solution-offer-panel {
    min-height: 780px;
  }

  .market-content {
    inset: auto 22px 34px;
  }

  .market-content h3 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .market-content p {
    font-size: 13px;
  }

  .solution-offer-detail strong {
    font-size: 12px;
  }

  .solution-offer-section-title {
    font-size: 12px;
  }

  .solution-offer-detail p {
    font-size: 12px;
  }

  .market-content ul {
    display: grid;
    gap: 9px;
  }

  .market-topline {
    inset: 22px 22px auto;
  }

  .market-topline > span:last-child {
    max-width: 130px;
    text-align: end;
  }

  .solutions,
  .cases,
  .assessment,
  .investors {
    padding: 96px 0;
  }

  .solutions-layout,
  .tech-layout,
  .assessment-layout,
  .investor-layout {
    gap: 62px;
  }

  .solution-row {
    grid-template-columns: 28px 34px minmax(0, 1fr) 68px 18px;
    gap: 8px;
    min-height: 148px;
    padding: 28px 0;
  }

  .solution-row:hover {
    padding-inline: 12px;
  }

  .solution-copy h3 {
    font-size: 22px;
  }

  .solution-copy p {
    font-size: 12px;
  }

  .solution-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .solution-result strong {
    font-size: 17px;
  }

  .solution-result span {
    white-space: normal;
  }

  .technology {
    padding-bottom: 96px;
  }

  .tech-layout {
    padding-top: 90px;
  }

  .tech-tabs {
    margin-top: 42px;
  }

  .tech-console {
    width: calc(100vw - 20px);
    margin-inline: calc((var(--shell) - (100vw - 20px)) / 2);
  }

  .console-head {
    padding-inline: 16px;
  }

  .console-head-meta .console-site {
    display: none;
  }

  .console-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px;
  }

  .console-toolbar-data {
    justify-content: space-between;
  }

  .console-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .console-kpi {
    padding: 15px 14px;
  }

  .console-kpi:nth-child(odd) {
    border-inline-end: 1px solid #bdc9c0;
  }

  .console-kpi:nth-child(n + 3) {
    border-top: 1px solid #bdc9c0;
  }

  .console-kpi > strong {
    font-size: 24px;
  }

  .console-main,
  .console-bottom {
    grid-template-columns: 1fr;
  }

  .console-chart-panel {
    padding: 20px 18px 16px;
  }

  .load-chart {
    height: 240px;
  }

  .console-chart-foot {
    font-size: 10px;
  }

  .console-chart-foot span:last-child {
    display: none;
  }

  .console-log-panel,
  .console-alerts {
    padding-inline: 18px;
  }

  .asset-row {
    padding-inline: 18px;
  }

  .load-chart {
    height: 250px;
  }

  .console-caption {
    padding-inline: 16px;
    font-size: 10px;
  }

  .console-brand small,
  .console-eyebrow,
  .console-toolbar-data,
  .console-kpi-top,
  .console-kpi-foot,
  .console-live-tag,
  .console-chart-legend,
  .chart-unit,
  .chart-scale,
  .chart-label,
  .console-chart-foot,
  .console-count,
  .asset-badge,
  .asset-name small,
  .asset-reading span,
  .dispatch-card > div,
  .dispatch-card i,
  .dispatch-card small,
  .console-bottom-head,
  .event-row time,
  .event-row > span,
  .alert-tag,
  .console-caption {
    font-size: 10px;
    line-height: 1.45;
  }

  .console-kpi-foot {
    flex-wrap: wrap;
    white-space: normal;
  }

  .event-row,
  .alert-row {
    font-size: 11px;
    line-height: 1.45;
  }

  .asset-reading strong small {
    font-size: 10px;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 48px;
  }

  .case-grid {
    gap: 60px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 118px;
    border-inline-end: 0;
  }

  .closing-cta {
    min-height: 820px;
    align-items: flex-end;
  }

  .closing-content {
    padding-bottom: 100px;
  }

  .closing-cta h2 {
    font-size: clamp(50px, 14vw, 70px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 64px 22px 28px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    grid-column: 1;
    display: grid;
  }

  .modal-intro,
  #assessmentForm {
    padding-inline: 26px;
  }

  #assessmentForm {
    grid-template-columns: 1fr;
  }

  #assessmentForm .button,
  .form-note {
    grid-column: 1;
  }
}

@media (max-width: 940px) {
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card figure {
    height: 300px;
  }

  .case-card-title h3 {
    font-size: 24px;
  }

}

@media (max-width: 700px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card figure {
    height: 340px;
  }

  .case-card-title h3 {
    font-size: 27px;
  }

  .case-card-overlay {
    inset-inline: 10px;
    bottom: 10px;
    padding: 16px 16px 13px;
  }

  .case-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .case-card figure {
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
