:root {
  --midnight: #f6faf7;
  --midnight-2: #eaf2ee;
  --ink: #1f2930;
  --panel: #ffffff;
  --panel-soft: #eef7f0;
  --line: rgba(31, 41, 48, 0.12);
  --line-strong: rgba(0, 130, 203, 0.28);
  --white: #253039;
  --muted: #63727d;
  --blue: #0082cb;
  --blue-hot: #28c7ff;
  --green: #70c113;
  --green-hot: #9cfb34;
  --gold: #f7b84b;
  --danger: #ff795f;
  --shadow: 0 26px 80px rgba(31, 41, 48, 0.12);
  --radius: 8px;
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Afacad Flux", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 4%, rgba(112, 193, 19, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(0, 130, 203, 0.12), transparent 30rem),
    linear-gradient(180deg, #fbfdfb, #f1f7f4 52%, #eaf2ee);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--midnight);
  border-radius: 6px;
  transition: transform 260ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  width: min(100% - 32px, 1360px);
  margin: 16px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(31, 41, 48, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 48px rgba(31, 41, 48, 0.08);
  backdrop-filter: blur(18px);
  transition: background 320ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease), transform 320ms var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 18px 60px rgba(31, 41, 48, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 70px;
  padding: 5px 14px;
  border: 1px solid rgba(246, 251, 255, 0.86);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 247, 250, 0.92));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 130, 203, 0.16));
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 22px);
  color: rgba(31, 41, 48, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
  transition: color 220ms var(--ease);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--blue-hot), var(--green-hot));
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.nav-cta {
  padding: 0 16px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #ffffff;
  box-shadow: 0 14px 38px rgba(0, 130, 203, 0.25);
  white-space: nowrap;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:active,
.button:active,
.menu-toggle:active {
  transform: scale(0.97);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green-hot);
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(31, 41, 48, 0.04);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 260ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 88px 16px auto;
  z-index: 95;
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  padding: 12px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.mobile-nav a:hover {
  background: rgba(112, 193, 19, 0.08);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 134px 0 74px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0 44%, rgba(255, 255, 255, 0.56) 55%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 12% 86%, rgba(112, 193, 19, 0.12), transparent 28rem);
}

.hero-video,
.hero-scrim,
.energy-grid,
.orbital-glow {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -5;
  width: 63%;
  left: auto;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  filter: saturate(1.04) contrast(1.04) brightness(1.02);
  transform: scale(1.01);
}

.hero-scrim {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 45%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(246, 250, 247, 0.86));
}

.energy-grid {
  z-index: -3;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(31, 41, 48, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 41, 48, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 76% 42%, #000 0, transparent 58%);
}

.orbital-glow {
  z-index: -2;
  background:
    radial-gradient(circle at 76% 38%, rgba(40, 199, 255, 0.24), transparent 20rem),
    radial-gradient(circle at 57% 72%, rgba(112, 193, 19, 0.18), transparent 18rem);
  animation: glowDrift 8s ease-in-out infinite alternate;
}

.hero-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 430px);
  gap: clamp(36px, 6vw, 92px);
  align-items: end;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--blue-hot);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: normal;
}

h1 {
  font-size: clamp(3rem, 7.2vw, 7.1rem);
  max-width: 980px;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.45rem);
  font-weight: 800;
  max-width: 12ch;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 750;
}

.hero-subtitle {
  max-width: 710px;
  margin-top: 28px;
  color: rgba(31, 41, 48, 0.74);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hero-signature span {
  padding: 8px 11px;
  border: 1px solid rgba(31, 41, 48, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(31, 41, 48, 0.7);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-rail {
  position: absolute;
  right: 22px;
  bottom: 50%;
  z-index: 3;
  display: flex;
  gap: 26px;
  transform: translateY(50%) rotate(90deg);
  transform-origin: right center;
  color: rgba(31, 41, 48, 0.36);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.button {
  min-width: 190px;
  padding: 0 22px;
  border: 1px solid var(--line);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 130, 203, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.button.secondary:hover {
  border-color: var(--line-strong);
}

.hero-console {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(31, 41, 48, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 250, 0.76)),
    radial-gradient(circle at var(--spot-x, 30%) var(--spot-y, 0%), rgba(40, 199, 255, 0.22), transparent 18rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31, 41, 48, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(31, 41, 48, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 34%, #000, transparent 62%);
}

.hero-console::after,
.solution-card::before,
.ecosystem-layer::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(155, 230, 255, 0.24), transparent 13rem);
  opacity: 0;
  transition: opacity 180ms var(--ease);
}

.hero-console:hover::after,
.solution-card:hover::before,
.ecosystem-layer:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.console-top,
.dashboard-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.console-top strong,
.dashboard-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-hot);
}

.console-top i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-hot);
  box-shadow: 0 0 0 0 rgba(156, 251, 52, 0.55);
  animation: statusPulse 1.8s var(--ease) infinite;
}

.console-core {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 154px 1fr;
  gap: 20px;
  align-items: center;
  margin: 26px 0 22px;
  padding: 16px;
  border: 1px solid rgba(31, 41, 48, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.output-ring {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 136px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 54%, transparent 55%),
    conic-gradient(from 210deg, var(--green), var(--blue-hot), rgba(31, 41, 48, 0.08) 72%, rgba(31, 41, 48, 0.06));
  box-shadow: inset 0 0 24px rgba(40, 199, 255, 0.12);
  animation: floatSoft 5.2s ease-in-out infinite;
}

.output-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(155, 230, 255, 0.18);
  border-radius: inherit;
}

.output-ring span {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1;
}

.output-ring small {
  margin-top: 8px;
  color: var(--green-hot);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.console-readout p {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-readout h2 {
  margin-top: 10px;
  font-size: clamp(1.18rem, 2.2vw, 1.62rem);
  line-height: 1.1;
}

.console-line {
  height: 4px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(246, 251, 255, 0.08);
}

.console-line span {
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-hot), var(--green-hot));
  box-shadow: 0 0 18px rgba(40, 199, 255, 0.24);
  animation: scanLine 2.8s var(--ease) infinite alternate;
}

.telemetry-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 48, 0.08);
  border-radius: 8px;
  background: rgba(31, 41, 48, 0.08);
}

.telemetry-list article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.78);
}

.telemetry-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.telemetry-list strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-align: right;
}

.system-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(31, 41, 48, 0.1);
}

.system-strip span {
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(31, 41, 48, 0.62);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

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

.hero-stats article,
.dashboard-metrics article,
.solution-card,
.ecosystem-layer,
.impact-panel,
.timeline-step,
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 245, 0.78));
}

.hero-stats article {
  min-height: 112px;
  padding: 18px;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.52rem;
  color: var(--white);
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.25;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.trust-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 20px;
  color: rgba(31, 41, 48, 0.62);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.trust-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-track span::before {
  content: none;
}

.trust-track svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  position: relative;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 132px) 0;
}

.intro,
.solutions,
.ecosystem,
.projects,
.dashboard-section {
  width: min(100% - 48px, 1320px);
}

.solutions,
.impact,
.journey,
.dashboard-section {
  padding-inline: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(31, 41, 48, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 245, 0.82));
  box-shadow: 0 24px 80px rgba(31, 41, 48, 0.08);
}

.section-number {
  position: absolute;
  top: clamp(52px, 7vw, 92px);
  right: -10px;
  z-index: -1;
  color: rgba(31, 41, 48, 0.032);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 10.5rem);
  font-weight: 800;
  line-height: 0.8;
}

.section-grid,
.why,
.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.section-copy,
.why-copy,
.dashboard-copy,
.hero-copy,
.infrastructure-visual,
.solution-card,
.ecosystem-layer,
.timeline-step,
.project-card {
  min-width: 0;
}

.section-copy p:not(.eyebrow),
.dashboard-copy p:not(.eyebrow),
.sustainability-panel p,
.cta-inner p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.section-copy h2,
.why-copy h2,
.dashboard-copy h2 {
  margin-bottom: 26px;
}

.intro .section-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.intro .section-copy {
  position: relative;
  z-index: 2;
}

.intro .section-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 4vw, 4.05rem);
  line-height: 1;
}

.intro .section-copy p:not(.eyebrow) {
  max-width: 560px;
  line-height: 1.78;
}

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

.section-head h2 {
  max-width: 13ch;
}

.section-head.narrow {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.section-head.narrow h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.section-head.narrow .eyebrow {
  justify-content: center;
}

.infrastructure-visual {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 210px 160px 210px;
  gap: 16px;
  min-width: 0;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 140px;
  background-color: #0f1720;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 64px rgba(31, 41, 48, 0.13);
  transform: translateZ(0);
}

.visual-card::before,
.project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.05), rgba(7, 12, 18, 0.72)),
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 47% 48%, transparent 49%);
  opacity: 0.92;
}

.visual-card::after,
.project-image::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 18%;
  height: 36%;
  transform: skewY(-11deg);
  background:
    repeating-linear-gradient(90deg, rgba(246, 251, 255, 0.14) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, rgba(0, 130, 203, 0.28), rgba(112, 193, 19, 0.12));
  border-block: 1px solid rgba(246, 251, 255, 0.15);
}

.visual-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.solar-farm {
  grid-row: span 2;
  background-image: url("assets/solar-images/01-solar-farm-sunrise.png");
}

.rooftop {
  background-image: url("assets/solar-images/03-commercial-rooftop-solar-city.png");
}

.storage {
  grid-column: 1;
  background-image: url("assets/solar-images/04-battery-storage-cabinets.png");
}

.dashboard {
  grid-column: 2;
  grid-row: 2 / span 2;
  background-image: url("assets/solar-images/12-solar-monitoring-dashboard.png");
}

.dashboard.visual-card::after {
  transform: none;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 48%;
  background:
    linear-gradient(90deg, transparent, rgba(40, 199, 255, 0.62), transparent),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(246, 251, 255, 0.12) 22px 23px);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
  align-items: stretch;
}

.solution-card:nth-child(1),
.solution-card:nth-child(4) {
  grid-row: auto;
}

.solution-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  column-gap: 22px;
  align-content: start;
  min-height: 232px;
  padding: 30px;
  box-shadow: none;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.solution-card > *,
.ecosystem-layer > *,
.project-card > * {
  position: relative;
  z-index: 1;
}

.solution-card::after,
.ecosystem-layer::after,
.timeline-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-hot), var(--green-hot), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease);
}

.solution-card:hover,
.project-card:hover,
.timeline-step:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 234, 0.86));
}

.solution-card:hover::after,
.ecosystem-layer:hover::after,
.timeline-step:hover::after {
  transform: scaleX(1);
}

.icon,
.icon-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(0, 130, 203, 0.24), rgba(112, 193, 19, 0.12));
  box-shadow: inset 0 0 30px rgba(40, 199, 255, 0.1), 0 0 32px rgba(0, 130, 203, 0.12);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.icon-shell svg,
.timeline-step span svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(31, 41, 48, 0.65);
}

.icon-panel::before { inset: 14px 10px 19px; transform: skewX(-18deg); }
.icon-panel::after { left: 15px; right: 15px; top: 25px; height: 1px; border-width: 1px 0 0; }
.icon-field::before { left: 11px; right: 11px; bottom: 14px; height: 18px; transform: skewX(-24deg); }
.icon-field::after { left: 14px; right: 14px; top: 16px; height: 1px; border-width: 1px 0 0; }
.icon-battery::before { inset: 17px 12px; }
.icon-battery::after { right: 7px; top: 22px; width: 5px; height: 10px; }
.icon-monitor::before { inset: 13px 10px 19px; }
.icon-monitor::after { left: 21px; right: 21px; bottom: 12px; height: 6px; border-width: 0 0 1px; }
.icon-hybrid::before { inset: 12px; border-radius: 999px; }
.icon-hybrid::after { left: 26px; top: 8px; bottom: 8px; border-width: 0 0 0 1px; }
.icon-maintain::before { inset: 13px; transform: rotate(45deg); }
.icon-maintain::after { inset: 21px; border-radius: 999px; background: rgba(246, 251, 255, 0.5); }

.solution-card:hover .icon,
.solution-card:hover .icon-shell {
  transform: translateY(-3px) rotate(-2deg);
  border-color: rgba(156, 251, 52, 0.52);
  background: linear-gradient(145deg, rgba(0, 130, 203, 0.3), rgba(112, 193, 19, 0.2));
}

.solution-card:hover .icon-shell svg {
  stroke: #23401a;
}

.solution-card p {
  grid-column: 2;
  margin: 12px 0 22px;
  color: var(--muted);
}

.solution-card a,
.project-card a {
  grid-column: 2;
  color: var(--green-hot);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
}

.why {
  width: min(100% - 40px, var(--max));
  grid-template-columns: minmax(360px, 1.06fr) minmax(0, 0.94fr);
}

.why-map {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18)),
    url("assets/ai-images/ai-energy-ecosystem.webp") center / cover;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-map .node,
.why-map svg {
  display: none;
}

.why-map svg {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}

.why-map path {
  fill: none;
  stroke: url("#energyGradient");
  stroke-width: 1.4;
  stroke-dasharray: 10 12;
  animation: flow 7s linear infinite;
}

.why-map svg::before {
  content: "";
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 0 42px rgba(0, 130, 203, 0.18);
}

.node::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(112, 193, 19, 0.22);
}

.node.sun { left: 8%; top: 13%; }
.node.battery { right: 9%; top: 16%; }
.node.grid { right: 7%; bottom: 16%; }
.node.data { left: 38%; top: 38%; }
.node.support { left: 10%; bottom: 14%; }

.check-list {
  display: grid;
  gap: 16px;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: radial-gradient(circle, var(--green-hot) 0 25%, transparent 28%);
}

.ecosystem {
  width: min(100% - 40px, 1320px);
}

.ecosystem-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(31, 41, 48, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(31, 41, 48, 0.08);
}

.ecosystem-layer:first-child,
.ecosystem-layer:nth-child(3) {
  grid-row: auto;
}

.ecosystem-layer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  min-height: 132px;
  padding: 24px clamp(22px, 4vw, 42px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ecosystem-layer + .ecosystem-layer {
  border-top: 1px solid rgba(31, 41, 48, 0.08);
}

.ecosystem-layer span,
.timeline-step span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: var(--blue-hot);
  font-family: var(--font-display);
  font-weight: 800;
}

.timeline-step span svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
}

.ecosystem-layer p,
.timeline-step p,
.project-card span {
  margin-top: 0;
  color: var(--muted);
  font-size: 1rem;
}

.impact {
  width: min(100% - 40px, 1240px);
}

.impact-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 48, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.impact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.impact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(246, 251, 255, 0.08) 22px 23px);
  pointer-events: none;
}

.impact-panel.after {
  border-left: 1px solid rgba(31, 41, 48, 0.08);
  background: linear-gradient(145deg, rgba(112, 193, 19, 0.12), rgba(0, 130, 203, 0.06));
}

.impact-panel.before {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(246, 250, 247, 0.52));
}

.impact-panel h3 {
  margin-bottom: 22px;
}

.impact-panel li {
  position: relative;
  padding: 12px 0 12px 28px;
  color: rgba(31, 41, 48, 0.74);
  border-top: 1px solid rgba(31, 41, 48, 0.08);
}

.impact-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--danger);
}

.impact-panel.after li::before {
  background: var(--green-hot);
}

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

.industry-grid span {
  grid-column: auto;
  min-height: 96px;
  display: flex;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 245, 0.72)),
    radial-gradient(circle at 10% 10%, rgba(0, 130, 203, 0.14), transparent 10rem);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 750;
}

.industry-grid span:nth-child(3),
.industry-grid span:nth-child(7) {
  grid-column: auto;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40, 199, 255, 0.5), rgba(112, 193, 19, 0.5), transparent);
}

.timeline-step {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  background-color: rgba(255, 255, 255, 0.88);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease);
}

.timeline-step:nth-child(1),
.timeline-step:nth-child(6) {
  grid-column: auto;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.project-card:first-child {
  grid-row: auto;
}

.project-card:first-child .project-image {
  min-height: 260px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease);
}

.project-card > div:last-child {
  padding: 22px;
}

.project-card h3,
.solution-card h3,
.timeline-step h3,
.ecosystem-layer h3 {
  max-width: 15ch;
}

.project-card p {
  color: var(--blue-hot);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.project-card a {
  display: inline-block;
  margin-top: 22px;
}

.project-image {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.image-roof {
  background-image: url("assets/solar-images/14-industrial-rooftop-solar.png");
}

.image-utility {
  background-image: url("assets/solar-images/07-utility-scale-solar-aerial.png");
}

.image-hybrid {
  background-image: url("assets/solar-images/05-containerised-battery-storage.png");
}

.dashboard-section {
  width: min(100% - 40px, 1240px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.dashboard-copy h2 {
  max-width: 10ch;
}

.intelligence-card {
  margin-top: 28px;
  max-width: 520px;
  padding: 22px;
  border: 1px solid rgba(31, 41, 48, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 10%, rgba(112, 193, 19, 0.14), transparent 11rem),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 58px rgba(31, 41, 48, 0.08);
}

.intelligence-card span {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intelligence-card strong {
  display: block;
  max-width: 360px;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.intelligence-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.intelligence-card small {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(112, 193, 19, 0.1);
  color: #427c12;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
}

.dashboard-section .dashboard {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 12%, rgba(0, 130, 203, 0.28), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 245, 0.78));
  box-shadow: var(--shadow);
}

.dashboard-section::before {
  content: "";
  position: absolute;
  inset: 70px auto 70px 42%;
  width: min(58vw, 720px);
  background:
    linear-gradient(90deg, rgba(246, 250, 247, 0.94), rgba(246, 250, 247, 0.2)),
    url("assets/solar-images/06-energy-control-room-dashboard.png") center / cover;
  border: 1px solid rgba(155, 230, 255, 0.14);
  border-radius: 8px;
  opacity: 0.22;
  filter: saturate(1.08);
  pointer-events: none;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.dashboard-metrics article {
  min-height: 124px;
  padding: 18px;
}

.dashboard-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.dashboard-metrics strong {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.dashboard-metrics small {
  margin-left: 5px;
  color: var(--green-hot);
  font-family: var(--font-display);
  font-weight: 800;
}

.dashboard-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 170px;
  padding: 18px;
  border: 1px solid rgba(31, 41, 48, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(31, 41, 48, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 41, 48, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.7);
  background-size: 100% 25%, 12.5% 100%, auto;
}

.dashboard-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--green-hot) 46%, var(--blue-hot));
  box-shadow: 0 0 22px rgba(40, 199, 255, 0.18);
  animation: meter 3.1s ease-in-out infinite;
}

.dashboard-chart span:nth-child(1) { height: 42%; }
.dashboard-chart span:nth-child(2) { height: 56%; animation-delay: 120ms; }
.dashboard-chart span:nth-child(3) { height: 68%; animation-delay: 240ms; }
.dashboard-chart span:nth-child(4) { height: 84%; animation-delay: 360ms; }
.dashboard-chart span:nth-child(5) { height: 74%; animation-delay: 480ms; }
.dashboard-chart span:nth-child(6) { height: 91%; animation-delay: 600ms; }
.dashboard-chart span:nth-child(7) { height: 64%; animation-delay: 720ms; }
.dashboard-chart span:nth-child(8) { height: 78%; animation-delay: 840ms; }

.sustainability {
  width: min(100% - 40px, 1120px);
}

.sustainability-panel,
.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(112, 193, 19, 0.18), transparent 20rem),
    radial-gradient(circle at 16% 74%, rgba(0, 130, 203, 0.18), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 245, 0.78));
}

.sustainability-panel {
  padding: clamp(32px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.68)),
    url("assets/solar-images/13-mountain-solar-farm.png") center / cover;
}

.sustainability-panel h2,
.cta-inner h2 {
  margin-bottom: 24px;
}

.final-cta {
  width: min(100% - 40px, var(--max));
  margin: 0 auto clamp(80px, 10vw, 130px);
  padding: clamp(46px, 8vw, 96px);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    url("assets/solar-images/03-commercial-rooftop-solar-city.png") center / cover;
}

.final-cta::after,
.sustainability-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-hot), var(--green-hot), transparent);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 5vw, 62px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 64px max(20px, calc((100% - var(--max)) / 2)) 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #18202b;
  color: rgba(255, 255, 255, 0.66);
}

.footer-brand {
  max-width: 460px;
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 250, 0.94));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.14);
}

.footer-lockup img {
  width: 260px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 130, 203, 0.2));
}

.site-footer h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 0.92rem;
}

.site-footer > div:not(.footer-brand) a,
.site-footer > div:not(.footer-brand) span {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
}

.site-footer a:hover {
  color: #ffffff;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em;
  align-items: center;
  grid-column: 1 / -1;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.copyright span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 820ms var(--ease), transform 820ms var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes meter {
  0%, 100% { transform: scaleY(0.86); opacity: 0.8; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes glowDrift {
  from { transform: translate3d(-1.4%, 0, 0); }
  to { transform: translate3d(1.4%, -1.2%, 0); }
}

@keyframes flow {
  to { stroke-dashoffset: -160; }
}

@keyframes statusPulse {
  70% { box-shadow: 0 0 0 10px rgba(156, 251, 52, 0); }
  100% { box-shadow: 0 0 0 0 rgba(156, 251, 52, 0); }
}

@keyframes floatSoft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes scanLine {
  from { filter: saturate(0.8); transform: scaleX(0.92); transform-origin: left; }
  to { filter: saturate(1.18); transform: scaleX(1); transform-origin: left; }
}

.spotlight {
  --spot-x: 50%;
  --spot-y: 0%;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .nav-cta:hover {
    box-shadow: 0 18px 46px rgba(112, 193, 19, 0.22);
  }

  .industry-grid span:hover,
  .ecosystem-layer:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero-inner,
  .section-grid,
  .why,
  .dashboard-section {
    grid-template-columns: 1fr;
  }

  h2,
  .section-head h2,
  .section-head.narrow h2,
  .dashboard-copy h2,
  .intro .section-copy h2 {
    max-width: 13ch;
  }

  .intro .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-console {
    max-width: 560px;
  }

  .solution-grid,
  .industry-grid,
  .timeline,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card:nth-child(1),
  .solution-card:nth-child(4),
  .ecosystem-layer:first-child,
  .ecosystem-layer:nth-child(3),
  .project-card:first-child,
  .timeline-step,
  .timeline-step:nth-child(1),
  .timeline-step:nth-child(6),
  .industry-grid span,
  .industry-grid span:nth-child(3),
  .industry-grid span:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .ecosystem-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 8px 10px 8px 14px;
  }

  .brand {
    width: 176px;
    height: 58px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 118px;
  }

  .hero-inner,
  .section,
  .why,
  .ecosystem,
  .impact,
  .dashboard-section,
  .sustainability,
  .final-cta,
  .site-footer {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
  }

  h2,
  .intro .section-copy h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 1;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(246, 250, 247, 0.96)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.38));
  }

  .hero-video {
    width: 100%;
    opacity: 0.46;
    clip-path: none;
  }

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

  .hero-stats,
  .solution-grid,
  .impact-split,
  .industry-grid,
  .timeline,
  .project-grid,
  .dashboard-metrics,
  .ecosystem-stack,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-lockup img {
    width: min(250px, 72vw);
    height: auto;
    aspect-ratio: 260 / 92;
  }

  .console-core {
    grid-template-columns: 1fr;
  }

  .output-ring {
    width: 122px;
    margin-inline: auto;
  }

  .system-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .infrastructure-visual {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(160px, auto));
  }

  .solar-farm,
  .storage,
  .dashboard {
    grid-column: auto;
    grid-row: auto;
  }

  .why-map {
    min-height: 390px;
  }

  .node {
    width: 82px;
    height: 82px;
    font-size: 0.72rem;
  }

  .ecosystem-stack {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 24px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .section-head.narrow {
    text-align: left;
  }

  .section-head.narrow .eyebrow {
    justify-content: flex-start;
  }

  .trust-track {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .final-cta {
    padding: 34px 22px;
  }
}

/* AI-enhanced image direction for the premium post-hero sections. */
.rooftop {
  background-image: url("assets/ai-images/ai-commercial-rooftop.webp");
}

.storage,
.image-hybrid {
  background-image: url("assets/ai-images/ai-battery-storage.webp");
}

.dashboard {
  background-image: url("assets/ai-images/ai-control-centre.webp");
}

.image-roof {
  background-image: url("assets/ai-images/ai-commercial-rooftop.webp");
}

.image-utility {
  background-image: url("assets/ai-images/ai-utility-solar-farm.webp");
}

.dashboard-section::before {
  background:
    linear-gradient(90deg, rgba(246, 250, 247, 0.94), rgba(246, 250, 247, 0.2)),
    url("assets/ai-images/ai-control-centre.webp") center / cover;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68)),
    url("assets/ai-images/ai-commercial-rooftop.webp") center / cover;
}

.sustainability-panel {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.58)),
    url("assets/ai-images/ai-utility-solar-farm.webp") center / cover;
}

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

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

/* Premium post-hero redesign: clean Greenly-inspired conversion layout. */
main > section:not(.hero) {
  scroll-margin-top: 96px;
}

.trust-strip {
  background: #ffffff;
  border-color: rgba(31, 41, 48, 0.08);
  box-shadow: 0 14px 48px rgba(31, 41, 48, 0.06);
}

.section:not(.intro) {
  padding-top: clamp(76px, 8vw, 118px);
  padding-bottom: clamp(76px, 8vw, 118px);
}

.intro,
.solutions,
.why,
.ecosystem,
.impact,
.industries,
.journey,
.projects,
.dashboard-section,
.sustainability {
  width: min(100% - 48px, 1240px);
}

.section-head,
.section-head.narrow {
  max-width: 760px;
  margin-bottom: 42px;
  text-align: left;
}

.section-head.narrow {
  margin-inline: 0;
}

.section-head h2,
.section-head.narrow h2,
.dashboard-copy h2,
.why-copy h2 {
  max-width: 16ch;
  margin-inline: 0;
}

.section-head.narrow .eyebrow {
  justify-content: flex-start;
}

.section-number {
  display: none;
}

.intro .section-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
}

.intro .section-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 4vw, 4.15rem);
}

.infrastructure-visual {
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 220px 164px 220px;
  gap: 14px;
}

.visual-card {
  border-radius: 18px;
  border: 0;
  box-shadow: 0 26px 76px rgba(31, 41, 48, 0.16);
}

.solutions,
.impact,
.journey,
.dashboard-section {
  padding-inline: clamp(22px, 4vw, 54px);
  border: 1px solid rgba(31, 41, 48, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(112, 193, 19, 0.09), transparent 24rem),
    #ffffff;
  box-shadow: 0 28px 90px rgba(31, 41, 48, 0.08);
}

.solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.solutions .section-head {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.solutions .section-head .eyebrow {
  justify-content: center;
}

.solutions .section-head h2 {
  max-width: 15ch;
  margin-inline: auto;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.96;
}

.solution-card,
.timeline-step,
.project-card,
.ecosystem-layer,
.dashboard-metrics article {
  border: 1px solid rgba(31, 41, 48, 0.09);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
}

.solution-card,
.solution-card:nth-child(1),
.solution-card:nth-child(2),
.solution-card:nth-child(3),
.solution-card:nth-child(4),
.solution-card:nth-child(5),
.solution-card:nth-child(6) {
  display: grid;
  grid-column: auto;
  grid-row: auto;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 0 22px;
  min-height: 230px;
  padding: 30px;
}

.solution-card .icon {
  grid-row: span 3;
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 14px;
}

.solution-card h3,
.solution-card p,
.solution-card a {
  grid-column: 2;
}

.solution-card p {
  margin: 12px 0 18px;
}

.solution-card a,
.project-card a {
  color: #4e9f10;
}

.why {
  grid-template-columns: minmax(460px, 0.95fr) minmax(0, 1.05fr);
}

.why-map {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(31, 41, 48, 0.1);
}

.ecosystem-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 48, 0.09);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(31, 41, 48, 0.08);
}

.ecosystem-layer,
.ecosystem-layer:first-child,
.ecosystem-layer:nth-child(3) {
  display: grid;
  grid-row: auto;
  grid-template-columns: 86px minmax(180px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  min-height: 126px;
  padding: 24px clamp(22px, 4vw, 46px);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.ecosystem-layer + .ecosystem-layer {
  border-top: 1px solid rgba(31, 41, 48, 0.08);
}

.ecosystem-layer span {
  margin: 0;
}

.ecosystem-layer p {
  margin: 0;
}

.impact-split {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 48, 0.08);
  border-radius: 20px;
}

.impact-panel {
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.impact-panel.after {
  border-left: 1px solid rgba(31, 41, 48, 0.08);
  background: linear-gradient(145deg, rgba(112, 193, 19, 0.12), rgba(0, 130, 203, 0.055));
}

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

.industry-grid span,
.industry-grid span:nth-child(3),
.industry-grid span:nth-child(7) {
  grid-column: auto;
  min-height: 98px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(31, 41, 48, 0.055);
}

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

.timeline::before {
  display: none;
}

.timeline-step,
.timeline-step:nth-child(1),
.timeline-step:nth-child(6) {
  grid-column: auto;
  min-height: 224px;
  padding: 28px;
}

.timeline-step span {
  margin-bottom: 28px;
}

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

.project-card:first-child {
  grid-row: auto;
}

.project-card:first-child .project-image,
.project-image {
  min-height: 260px;
}

.project-card {
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 24px 72px rgba(31, 41, 48, 0.11);
}

.dashboard-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.dashboard-section .dashboard {
  border: 0;
  border-radius: 22px;
  background: #ffffff;
}

.sustainability-panel,
.final-cta {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(31, 41, 48, 0.11);
}

.final-cta {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .intro .section-grid,
  .why,
  .dashboard-section {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .industry-grid,
  .timeline,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .intro,
  .solutions,
  .why,
  .ecosystem,
  .impact,
  .industries,
  .journey,
  .projects,
  .dashboard-section,
  .sustainability,
  .section {
    width: calc(100% - 28px);
  }

  .solution-grid,
  .industry-grid,
  .timeline,
  .project-grid,
  .dashboard-metrics,
  .impact-split {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .solution-card:nth-child(1),
  .solution-card:nth-child(2),
  .solution-card:nth-child(3),
  .solution-card:nth-child(4),
  .solution-card:nth-child(5),
  .solution-card:nth-child(6),
  .ecosystem-layer,
  .ecosystem-layer:first-child,
  .ecosystem-layer:nth-child(3) {
    grid-template-columns: 1fr;
  }

  .solution-card h3,
  .solution-card p,
  .solution-card a {
    grid-column: auto;
  }

  .impact-panel.after {
    border-left: 0;
    border-top: 1px solid rgba(31, 41, 48, 0.08);
  }
}

/* Final heading alignment pass: keep large section titles centred and unsquashed. */
.section-head,
.section-head.narrow,
.solutions .section-head,
.ecosystem .section-head,
.impact .section-head,
.industries .section-head,
.journey .section-head,
.projects .section-head {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.section-head .eyebrow,
.section-head.narrow .eyebrow,
.solutions .section-head .eyebrow {
  justify-content: center;
  text-align: center;
}

.section-head h2,
.section-head.narrow h2,
.solutions .section-head h2,
.ecosystem .section-head h2,
.impact .section-head h2,
.industries .section-head h2,
.journey .section-head h2,
.projects .section-head h2 {
  max-width: min(100%, 1180px);
  margin-inline: auto;
  text-align: center;
  font-size: clamp(2.55rem, 4.1vw, 4.55rem);
  line-height: 1.02;
  text-wrap: balance;
}

.solutions .section-head h2 {
  max-width: 1120px;
}

.ecosystem .section-head h2 {
  max-width: 1200px;
  font-size: clamp(2.45rem, 3.85vw, 4.25rem);
}

.dashboard-copy h2,
.why-copy h2 {
  max-width: 13ch;
}

@media (max-width: 760px) {
  .section-head,
  .section-head.narrow,
  .solutions .section-head,
  .ecosystem .section-head,
  .impact .section-head,
  .industries .section-head,
  .journey .section-head,
  .projects .section-head {
    text-align: left;
  }

  .section-head .eyebrow,
  .section-head.narrow .eyebrow,
  .solutions .section-head .eyebrow {
    justify-content: flex-start;
    text-align: left;
  }

  .section-head h2,
  .section-head.narrow h2,
  .solutions .section-head h2,
  .ecosystem .section-head h2,
  .impact .section-head h2,
  .industries .section-head h2,
  .journey .section-head h2,
  .projects .section-head h2 {
    text-align: left;
  }
}
