:root {
  color-scheme: dark;
  --canvas: #090909;
  --surface: #111111;
  --surface-raised: #181818;
  --surface-soft: #222222;
  --ink: #f7f7f2;
  --ink-muted: #b8b8b0;
  --line: #33332f;
  --accent: #ffcb2f;
  --accent-hover: #ffda62;
  --accent-soft: #342c10;
  --on-accent: #090909;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --header-bg: rgba(5, 5, 5, 0.92);
  --success: #ffcb2f;
  --font-sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", "Avenir Next", "Trebuchet MS", sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --page-gutter: clamp(1rem, 4vw, 4rem);
  --section-space: clamp(5rem, 10vw, 10rem);
  --container: 100%;
  --radius-control: 0.9rem;
  --radius-panel: 1.35rem;
  --radius-media: 2rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  color-scheme: light;
  --canvas: #f4f6f7;
  --surface: #eaeef0;
  --surface-raised: #fafbfc;
  --surface-soft: #dfe5e8;
  --ink: #101315;
  --ink-muted: #536067;
  --line: #cdd5d9;
  --accent: #f1b900;
  --accent-hover: #dca900;
  --accent-soft: #fff4c7;
  --on-accent: #090909;
  --shadow: 0 24px 80px rgba(24, 38, 46, 0.12);
  --header-bg: rgba(5, 5, 5, 0.94);
  --success: #8a6500;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 420ms var(--ease),
    color 300ms var(--ease);
}

button,
input,
select {
  font: inherit;
}

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

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

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

.power-curtain {
  display: none;
}

.js .power-curtain {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: auto;
  transition: visibility 0s linear 1.05s;
}

.power-curtain-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%;
  background: #0a0c0d;
  transition: transform 760ms var(--ease) 360ms;
  will-change: transform;
}

.power-curtain-panel-top {
  top: 0;
  transform-origin: top;
}

.power-curtain-panel-bottom {
  bottom: 0;
  transform-origin: bottom;
}

.power-curtain-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #f2f5f6;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    opacity 220ms ease 250ms,
    transform 360ms var(--ease) 220ms;
}

.curtain-logo {
  width: 5.5rem;
  height: 3.85rem;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.power-curtain-status::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 6.35rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: power-charge 430ms var(--ease) 80ms forwards;
}

.motion-loaded .power-curtain {
  visibility: hidden;
  pointer-events: none;
}

.motion-loaded .power-curtain-panel-top {
  transform: translateY(-100%);
}

.motion-loaded .power-curtain-panel-bottom {
  transform: translateY(100%);
}

.motion-loaded .power-curtain-status {
  opacity: 0;
  transform: translateY(-0.75rem);
}

.page-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

@supports (animation-timeline: scroll()) {
  .page-progress {
    animation: page-progress linear both;
    animation-timeline: scroll(root block);
  }
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-control);
  background: var(--accent);
  color: var(--on-accent);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 4.25rem;
  margin: 0;
  padding-inline: var(--page-gutter);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  display: block;
  width: 6.9rem;
  height: 3.55rem;
  object-fit: contain;
}

[data-theme="dark"] .brand-logo {
  filter: invert(1) hue-rotate(180deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  color: var(--ink-muted);
  font-size: 0.875rem;
}

.nav-links a,
.site-footer a,
.text-link {
  position: relative;
  transition: color 220ms var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--ink);
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle,
.menu-toggle {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.8125rem;
}

.theme-toggle {
  padding-inline: 0.875rem;
}

.menu-toggle {
  display: none;
  padding-inline: 1rem;
}

.button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 0.75rem 1.65rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 180ms var(--ease);
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
}

.button:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 20%, transparent);
}

.button:active {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) + 1px), 0) scale(0.98);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1.15rem;
  font-size: 0.875rem;
}

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

.button-secondary:hover {
  border-color: var(--ink-muted);
  background: var(--surface-raised);
}

.page-grid,
.section-shell,
.proof-strip,
.site-footer {
  width: min(calc(100% - clamp(2rem, 8vw, 8rem)), var(--container));
  margin-inline: auto;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero {
  min-height: calc(100dvh - 6.5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.hero-copy {
  grid-column: 1 / span 5;
  align-self: center;
}

.product-name,
.kicker {
  margin-bottom: 1.25rem;
  color: var(--ink-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-weight: 610;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.96;
}

.hero-word {
  display: inline-block;
  margin-right: 0.13em;
  will-change: transform, opacity;
}

.hero-word:last-child {
  margin-right: 0;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.hero-lead {
  max-width: 30rem;
  margin-top: 1.75rem;
  color: var(--ink-muted);
  font-size: clamp(1.125rem, 1.8vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.text-link span {
  display: inline-block;
}

.hero-media {
  grid-column: 7 / span 5;
  margin: 0;
}

.asset-slot {
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background:
    linear-gradient(135deg, transparent 0 45%, color-mix(in srgb, var(--line) 32%, transparent) 45% 45.25%, transparent 45.25%),
    linear-gradient(315deg, transparent 0 45%, color-mix(in srgb, var(--line) 24%, transparent) 45% 45.25%, transparent 45.25%),
    var(--surface);
  box-shadow: var(--shadow);
  transform: perspective(70rem) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    border-color 300ms var(--ease),
    box-shadow 360ms var(--ease),
    transform 280ms var(--ease);
  will-change: transform;
}

.asset-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    circle at var(--spot-x) var(--spot-y),
    color-mix(in srgb, var(--accent) 24%, transparent),
    transparent 34%
  );
  opacity: 0.42;
  pointer-events: none;
  transition: opacity 320ms var(--ease);
}

.asset-slot:hover {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 color-mix(in srgb, var(--ink) 8%, transparent);
}

.asset-slot:hover::before {
  opacity: 0.85;
}

.asset-slot::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid color-mix(in srgb, var(--ink-muted) 30%, transparent);
  border-radius: calc(var(--radius-media) - 0.5rem);
}

.asset-slot-product {
  min-height: min(66dvh, 42rem);
}

.asset-slot-detail {
  aspect-ratio: 16 / 10;
}

.asset-slot-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem;
  text-align: center;
  transform: translateZ(2rem);
}

.system-signature {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 4rem), 20rem);
  gap: 0.65rem;
  padding: 1.75rem;
  border: 1px solid color-mix(in srgb, var(--line) 74%, transparent);
  border-radius: var(--radius-panel);
  background: color-mix(in srgb, var(--surface-raised) 84%, transparent);
  backdrop-filter: blur(14px);
  text-align: left;
  transform: translate(-50%, -50%);
}

.system-signature span,
.system-signature small {
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.system-signature small {
  max-width: 24ch;
  line-height: 1.45;
}

.system-signature strong {
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 0.95;
  white-space: nowrap;
}

.system-signature i {
  color: var(--accent);
  font-style: normal;
  font-weight: 400;
}

.asset-slot-product .energy-core {
  display: none;
}

.system-stage-copy {
  max-width: 28rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--surface-raised) 82%, transparent);
  backdrop-filter: blur(12px);
}

.energy-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.energy-ring,
.energy-core,
.energy-scan {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.energy-ring {
  width: min(72%, 29rem);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  opacity: 0.24;
}

.energy-ring-one {
  animation: energy-breathe 5.5s var(--ease) infinite;
}

.energy-ring-two {
  width: min(48%, 19rem);
  animation: energy-breathe 5.5s var(--ease) 1.1s infinite reverse;
}

.energy-core {
  width: 0.7rem;
  aspect-ratio: 1;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 38%, transparent);
  animation: energy-core 2.6s var(--ease) infinite;
}

.energy-scan {
  width: 140%;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: translateY(-14rem) rotate(-12deg);
  animation: energy-scan 4.8s var(--ease) 1.2s infinite;
}

.energy-field-wide .energy-ring {
  width: min(48%, 20rem);
}

.asset-slot-copy strong {
  font-size: 1rem;
}

.asset-slot-copy span,
figcaption {
  color: var(--ink-muted);
  font-size: 0.8125rem;
}

figcaption {
  margin-top: 0.75rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.4fr;
  border-block: 1px solid var(--line);
}

.proof-strip > * {
  padding: 1.5rem 1.25rem;
}

.proof-strip > * + * {
  border-left: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  gap: 0.15rem;
}

.proof-strip strong,
.featured-specs strong {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.proof-strip strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.proof-strip span,
.proof-strip p {
  color: var(--ink-muted);
  font-size: 0.8125rem;
}

.proof-strip p {
  align-self: center;
}

.power-rail {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.power-rail-track {
  display: flex;
  width: max-content;
  animation: rail-run 26s linear infinite;
  will-change: transform;
}

.power-rail-set {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 1rem clamp(1.5rem, 4vw, 4rem);
  color: var(--ink-muted);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.power-rail-set i {
  display: block;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
}

.section-shell {
  padding-block: var(--section-space);
}

.statement {
  max-width: 78rem;
  text-align: left;
}

.statement h2 {
  max-width: 13ch;
}

.statement > p:last-child {
  max-width: 42rem;
  margin-top: 2rem;
  margin-left: min(14vw, 11rem);
  color: var(--ink-muted);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.system {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.system-copy h2 {
  max-width: 11ch;
}

.system-copy > p:not(.kicker) {
  max-width: 34rem;
  margin-top: 1.5rem;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.feature-list {
  display: grid;
  margin: 2.75rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.feature-list li > span,
.load-index {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.feature-list div {
  display: grid;
  gap: 0.15rem;
}

.feature-list small {
  color: var(--ink-muted);
  font-size: 0.875rem;
}

.detail-media {
  margin: 0;
}

.section-heading {
  max-width: 52rem;
}

.section-heading > p:last-child {
  max-width: 40rem;
  margin-top: 1.5rem;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.load-list {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.load-list article {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  grid-column: 1 / -1;
  gap: 1rem;
  align-items: baseline;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--line);
  transition:
    color 260ms var(--ease),
    transform 360ms var(--ease);
}

.load-list article:hover {
  color: var(--accent);
  transform: translateX(0.65rem);
}

.load-list article:nth-child(even) {
  padding-left: min(13vw, 11rem);
}

.load-list h3 {
  font-size: clamp(1.7rem, 3.5vw, 3.4rem);
}

.load-list p {
  color: var(--ink-muted);
}

.load-note {
  max-width: 38rem;
  margin-top: 2rem;
  margin-left: auto;
  color: var(--ink-muted);
  font-size: 0.875rem;
}

.benefits-intro {
  display: grid;
  max-width: 46rem;
  gap: 1.5rem;
}

.benefits-intro p {
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 7vw, 6rem);
}

.benefit-grid article {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--surface);
  transition:
    border-color 260ms var(--ease),
    box-shadow 320ms var(--ease),
    transform 360ms var(--ease);
}

.benefit-grid article:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow: 0 24px 70px color-mix(in srgb, var(--canvas) 82%, transparent);
  transform: translateY(-0.45rem);
}

.benefit-grid article > span {
  color: var(--ink-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.benefit-grid article p {
  max-width: 30rem;
  color: var(--ink-muted);
}

.benefit-large {
  grid-column: 1 / span 7;
  grid-row: span 2;
  min-height: 37rem !important;
}

.benefit-large h3 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.benefit-compact {
  grid-column: 8 / -1;
}

.benefit-accent {
  border-color: transparent !important;
  background: var(--accent-soft) !important;
  color: var(--accent);
}

.benefit-accent > span {
  color: var(--accent) !important;
}

.benefit-wide {
  grid-column: 1 / -1;
  min-height: 15rem !important;
}

.specifications {
  padding-inline: clamp(1rem, 4vw, 4rem);
  border-radius: var(--radius-media);
  background: var(--surface);
}

.featured-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.featured-specs article {
  padding: 2.25rem 1.5rem 2.25rem 0;
}

.featured-specs article + article {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.featured-specs article > span {
  color: var(--ink-muted);
  font-size: 0.875rem;
}

.featured-specs strong {
  display: block;
  margin-block: 1.4rem 0.65rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.9;
  transition:
    color 260ms var(--ease),
    transform 360ms var(--ease);
}

.featured-specs article:hover strong {
  color: var(--accent);
  transform: translateY(-0.2rem);
}

.featured-specs p,
.spec-groups p {
  color: var(--ink-muted);
}

.spec-details {
  border-top: 1px solid var(--line);
}

.spec-details summary,
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style-position: outside;
}

.spec-details summary {
  padding-block: 1.5rem;
}

.spec-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 0.5rem 0 2rem;
}

.financing {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.financing-copy {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.financing-copy p {
  margin-top: 1.5rem;
  color: var(--ink-muted);
}

.ownership-options {
  display: grid;
  gap: 1rem;
}

.ownership-options article {
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 21rem;
  align-content: end;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--surface-raised);
  transform: perspective(70rem) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    border-color 260ms var(--ease),
    box-shadow 320ms var(--ease),
    transform 280ms var(--ease);
  will-change: transform;
}

.ownership-options article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--spot-x) var(--spot-y),
    color-mix(in srgb, var(--accent) 16%, transparent),
    transparent 38%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}

.ownership-options article:hover {
  border-color: color-mix(in srgb, var(--accent) 52%, var(--line));
  box-shadow: 0 24px 70px color-mix(in srgb, var(--canvas) 76%, transparent);
}

.ownership-options article:hover::before {
  opacity: 1;
}

.ownership-options article > * {
  position: relative;
  z-index: 1;
  transform: translateZ(1.25rem);
}

.ownership-options article > span,
.partner span {
  align-self: start;
  color: var(--ink-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.ownership-options p {
  max-width: 34rem;
  color: var(--ink-muted);
}

.ownership-options a {
  width: max-content;
  color: var(--accent);
  font-weight: 650;
}

.partner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: var(--surface);
}

.partner h2 {
  max-width: 12ch;
  margin-top: 1.5rem;
}

.partner > div:last-child {
  display: grid;
  gap: 2rem;
  justify-items: start;
}

.partner p {
  max-width: 34rem;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.waitlist-copy {
  align-self: start;
}

.waitlist-copy h2 {
  max-width: 8ch;
}

.waitlist-copy > p:not(.kicker) {
  max-width: 34rem;
  margin-top: 1.5rem;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.waitlist-detail {
  display: grid;
  gap: 0.25rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.waitlist-detail span {
  color: var(--ink-muted);
  font-size: 0.875rem;
}

.form-panel {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

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

.field-grid label {
  display: grid;
  gap: 0.5rem;
  color: var(--ink-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  outline: none;
  background: var(--canvas);
  color: var(--ink);
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--canvas), 0 0 0 4px var(--accent);
  transform: translateY(-2px);
}

label small {
  display: none;
  color: var(--accent);
  font-weight: 500;
}

label.invalid small {
  display: block;
}

label.invalid input,
label.invalid select {
  border-color: var(--accent);
}

.consent-field {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-block: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.875rem;
}

.consent-field input {
  width: 1.15rem;
  min-height: auto;
  height: 1.15rem;
  margin: 0.2rem 0 0;
  accent-color: var(--accent);
}

.form-submit {
  width: 100%;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-error {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  color: var(--accent);
  font-size: 0.875rem;
}

.success-panel {
  min-height: 31rem;
  align-content: center;
  gap: 1rem;
}

.success-panel:not([hidden]) {
  display: grid;
  animation: success-in 520ms var(--ease) both;
}

.success-label {
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 650;
}

.success-panel p {
  max-width: 31rem;
  color: var(--ink-muted);
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading h2 {
  max-width: 9ch;
}

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

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

.faq-list summary {
  padding-block: 1.5rem;
  font-size: 1.05rem;
}

.faq-list p {
  max-width: 42rem;
  padding-bottom: 1.5rem;
  color: var(--ink-muted);
}

.faq-list details[open] p,
.spec-details[open] .spec-groups {
  animation: detail-in 420ms var(--ease) both;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: end;
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.875rem;
}

.site-footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.site-footer .brand {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 760ms var(--ease),
    transform 840ms var(--ease);
}

.reveal[data-reveal="left"] {
  transform: translateX(-2.75rem);
}

.reveal[data-reveal="right"] {
  transform: translateX(2.75rem);
}

.reveal[data-reveal="scale"] {
  transform: scale(0.94) translateY(1rem);
}

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

.reveal[data-reveal="left"].is-visible,
.reveal[data-reveal="right"].is-visible {
  transform: translateX(0);
}

.reveal[data-reveal="scale"].is-visible {
  transform: scale(1) translateY(0);
}

.js .stagger-group > *,
.js .stagger-children > * {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 620ms var(--ease),
    transform 700ms var(--ease);
}

.js .stagger-group.is-visible > *,
.js .is-visible .stagger-children > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-group > *:nth-child(2),
.stagger-children > *:nth-child(2) {
  transition-delay: 90ms;
}

.stagger-group > *:nth-child(3),
.stagger-children > *:nth-child(3) {
  transition-delay: 180ms;
}

.stagger-group > *:nth-child(4),
.stagger-children > *:nth-child(4) {
  transition-delay: 270ms;
}

.js .hero-copy .product-name,
.js .hero-copy .hero-lead,
.js .hero-copy .hero-actions {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 620ms var(--ease),
    transform 700ms var(--ease);
}

.js .hero-word {
  opacity: 0;
  transform: translateY(115%) rotate(1.5deg);
  transition:
    opacity 480ms var(--ease),
    transform 820ms var(--ease);
}

.js .hero-copy.is-visible .product-name,
.js .hero-copy.is-visible .hero-lead,
.js .hero-copy.is-visible .hero-actions,
.js .hero-copy.is-visible .hero-word {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.js .hero-copy.is-visible .hero-word:nth-child(1) {
  transition-delay: 130ms;
}

.js .hero-copy.is-visible .hero-word:nth-child(2) {
  transition-delay: 210ms;
}

.js .hero-copy.is-visible .hero-word:nth-child(3) {
  transition-delay: 290ms;
}

.js .hero-copy.is-visible .hero-word:nth-child(4) {
  transition-delay: 370ms;
}

.js .hero-copy.is-visible .product-name {
  transition-delay: 60ms;
}

.js .hero-copy.is-visible .hero-lead {
  transition-delay: 480ms;
}

.js .hero-copy.is-visible .hero-actions {
  transition-delay: 560ms;
}

@keyframes power-charge {
  to {
    transform: scaleX(1);
  }
}

@keyframes page-progress {
  to {
    transform: scaleX(1);
  }
}

@keyframes energy-breathe {
  0%,
  100% {
    opacity: 0.16;
    transform: scale(0.82);
  }
  50% {
    opacity: 0.44;
    transform: scale(1.08);
  }
}

@keyframes energy-core {
  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 38%, transparent);
    transform: scale(0.9);
  }
  50% {
    box-shadow: 0 0 0 1.5rem transparent;
    transform: scale(1.1);
  }
}

@keyframes energy-scan {
  0%,
  18% {
    opacity: 0;
    transform: translateY(-14rem) rotate(-12deg);
  }
  34% {
    opacity: 0.48;
  }
  64% {
    opacity: 0.12;
  }
  76%,
  100% {
    opacity: 0;
    transform: translateY(14rem) rotate(-12deg);
  }
}

@keyframes rail-run {
  to {
    transform: translateX(-50%);
  }
}

@keyframes success-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes detail-in {
  from {
    opacity: 0;
    transform: translateY(-0.6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .text-link span {
    animation: arrow-drift 1.8s var(--ease) infinite;
  }

  @keyframes arrow-drift {
    0%,
    100% {
      transform: translateY(-0.1rem);
    }
    50% {
      transform: translateY(0.3rem);
    }
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 1023px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    display: grid;
    width: min(22rem, calc(100vw - 2rem));
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    background: var(--surface-raised);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.75rem) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 220ms var(--ease),
      transform 300ms var(--ease),
      visibility 0s linear 300ms;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-links a {
    padding: 0.8rem 0.9rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .hero-copy {
    grid-column: 1 / span 6;
  }

  .hero-media {
    grid-column: 7 / -1;
  }

  .asset-slot-product {
    min-height: 32rem;
  }

  .system,
  .waitlist,
  .faq {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

  .financing-copy {
    position: static;
    max-width: 44rem;
  }

  .ownership-options {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 767px) {
  :root {
    --section-space: 5.5rem;
  }

  html {
    scroll-padding-top: 6rem;
  }

  .site-header {
    min-height: 3.75rem;
  }

  .site-header .button-small,
  .theme-toggle {
    display: none;
  }

  .brand-logo {
    width: 5.85rem;
    height: 3.15rem;
  }

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

  .hero {
    min-height: auto;
    padding-block: 4rem 2rem;
  }

  .hero-copy,
  .hero-media {
    grid-column: 1;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4rem);
  }

  .hero-media {
    margin-top: 2.5rem;
  }

  .hero-word {
    margin-right: 0.1em;
  }

  .asset-slot-product {
    min-height: 24rem;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip > * + * {
    border-left: 0;
  }

  .proof-strip > *:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .proof-strip > p {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .statement > p:last-child {
    margin-left: 0;
  }

  .system,
  .waitlist,
  .faq {
    grid-template-columns: 1fr;
  }

  .system {
    gap: 3rem;
  }

  .asset-slot-detail {
    aspect-ratio: 4 / 5;
  }

  .load-list {
    grid-template-columns: 1fr;
  }

  .load-list article,
  .load-list article:nth-child(even) {
    grid-template-columns: 2rem 1fr;
    padding-left: 0;
  }

  .load-list article p {
    grid-column: 2;
  }

  .load-note {
    margin-left: 0;
  }

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

  .benefit-grid article,
  .benefit-large,
  .benefit-compact,
  .benefit-wide {
    grid-column: 1;
    min-height: 18rem !important;
  }

  .benefit-large h3 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .specifications {
    width: calc(100% - 2rem);
  }

  .featured-specs,
  .spec-groups,
  .ownership-options,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .featured-specs article,
  .featured-specs article + article {
    padding: 1.75rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .featured-specs article:last-child {
    border-bottom: 0;
  }

  .financing,
  .partner {
    gap: 3rem;
  }

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

  .site-footer > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

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

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

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

  .power-curtain,
  .page-progress {
    display: none !important;
  }

  .power-rail-track,
  .energy-ring,
  .energy-core,
  .energy-scan,
  .text-link span {
    animation: none !important;
  }

  .js .hero-copy .product-name,
  .js .hero-copy .hero-lead,
  .js .hero-copy .hero-actions,
  .js .hero-word,
  .js .stagger-group > *,
  .js .stagger-children > * {
    opacity: 1;
    transform: none;
  }

  .asset-slot,
  .ownership-options article {
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--surface-raised);
    backdrop-filter: none;
  }
}

/* EGA family alignment: bold black framing, solar yellow, and clean whites. */
.site-header {
  min-height: 5rem;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.94);
  color: #f7f7f2;
}

.site-header .brand-logo,
.site-footer .brand-logo {
  filter: brightness(0) invert(1);
}

.nav-links {
  color: #d6d6d0;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #ffffff;
}

.nav-links a::after {
  height: 3px;
  bottom: -0.7rem;
  border-radius: 99px;
  background: #ffcb2f;
}

.site-header .theme-toggle,
.site-header .menu-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  color: #f7f7f2;
}

.button {
  border-color: #ffcb2f;
  background: #ffcb2f;
  color: #090909;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.button:hover {
  border-color: #ffda62;
  background: #ffda62;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100dvh - 5rem);
  width: 100%;
  padding-inline: var(--page-gutter);
  overflow: hidden;
  background: #090909;
  color: #f7f7f2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: url("assets/ega-power-hero-nigeria-v2.png") right center / cover no-repeat;
  transform-origin: right center;
  transform: scale(1.012);
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.9) 36%, rgba(5, 5, 5, 0.46) 66%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.08) 55%, rgba(5, 5, 5, 0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 1 / span 7;
  max-width: 50rem;
}

.product-name {
  display: inline-flex;
  width: max-content;
  margin-bottom: 1.75rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0.3rem;
  background: #ffcb2f;
  color: #090909;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 6.5vw, 6.9rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero-word {
  display: block;
  margin-right: 0;
}

.hero-word-accent {
  color: #ffcb2f;
}

.hero-lead {
  color: #c8c8c0;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 500;
}

.hero .text-link {
  color: #f7f7f2;
}

.hero-media {
  grid-column: 8 / -1;
}

.hero .asset-slot {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 203, 47, 0.18), transparent 34%),
    linear-gradient(145deg, #171713, #0e0e0d 72%);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.hero .asset-slot::after {
  border-color: rgba(255, 255, 255, 0.14);
}

.hero .asset-slot::before {
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 203, 47, 0.28), transparent 36%);
}

.hero .energy-ring {
  border-color: rgba(255, 203, 47, 0.68);
}

.hero .energy-ring-two {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero .energy-scan {
  background: linear-gradient(90deg, transparent, #ffcb2f, transparent);
}

.hero .system-signature {
  left: 2rem;
  top: auto;
  bottom: 2rem;
  width: min(calc(100% - 4rem), 22rem);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(9, 9, 9, 0.82);
  transform: none;
}

.hero .system-signature span,
.hero .system-signature small,
.hero figcaption {
  color: #aaa9a2;
}

.hero .system-signature strong {
  color: #fff;
}

.hero .system-signature i {
  color: #ffcb2f;
}

@media (max-width: 1023px) {
  .hero-copy {
    grid-column: 1 / span 8;
  }

  .hero-media {
    grid-column: 7 / -1;
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 4.25rem;
  }

  .hero {
    padding-inline: var(--page-gutter);
  }

  .hero::before {
    background-position: 68% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.74) 58%, rgba(5, 5, 5, 0.38) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.36) 48%, rgba(5, 5, 5, 0.94) 100%);
  }

  .hero-copy,
  .hero-media {
    grid-column: 1;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .hero .system-signature {
    left: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }
}

.proof-strip {
  width: 100%;
  padding-inline: var(--page-gutter);
  border: 0;
  background: #ffcb2f;
  color: #090909;
}

.proof-strip > * {
  padding-block: 1.8rem;
}

.proof-strip > * + * {
  border-left-color: rgba(9, 9, 9, 0.2);
}

.proof-strip strong {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 800;
}

.proof-strip span,
.proof-strip p {
  color: rgba(9, 9, 9, 0.7);
  font-weight: 650;
}

.power-rail {
  border-color: rgba(255, 255, 255, 0.1);
  background: #090909;
}

.power-rail-set {
  color: #f7f7f2;
  font-size: 0.82rem;
  font-weight: 800;
}

.power-rail-set i {
  width: 0.55rem;
  height: 0.55rem;
  background: #ffcb2f;
}

.kicker {
  display: inline-flex;
  width: max-content;
  margin-bottom: 1.5rem;
  padding: 0.42rem 0.68rem;
  border-radius: 0.26rem;
  background: #ffcb2f;
  color: #090909;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.statement {
  width: 100%;
  max-width: none;
  padding-inline: var(--page-gutter);
  background: #f1f1ed;
  color: #090909;
}

.statement h2 {
  max-width: 14ch;
  font-weight: 780;
}

.statement > p:last-child {
  color: #5f5f59;
  font-weight: 500;
}

.system,
.loads {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.system::before,
.loads::before {
  content: attr(data-watermark);
  position: absolute;
  top: clamp(1.25rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: -1;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.8;
  white-space: nowrap;
}

.system {
  width: calc(100% - clamp(2rem, 8vw, 8rem));
  padding-inline: clamp(1.5rem, 4vw, 4rem);
  border-radius: 2rem;
  background: #11110f;
  color: #f7f7f2;
}

.system-copy > p:not(.kicker),
.system .feature-list small,
.system figcaption {
  color: #b9b9b1;
}

.system .feature-list li {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.system .feature-list li > span {
  color: #ffcb2f;
  font-family: var(--font-sans);
  font-weight: 800;
}

.system .asset-slot {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 203, 47, 0.16), transparent 32%),
    #090909;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.system .energy-ring {
  border-color: rgba(255, 203, 47, 0.62);
}

.system .energy-ring-two {
  border-color: rgba(255, 255, 255, 0.24);
}

.system-stage-copy {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(17, 17, 15, 0.84);
}

.system .system-product-visual {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background: #d7d9dd;
}

.system .system-product-visual::before {
  z-index: 2;
  background: radial-gradient(
    circle at var(--spot-x) var(--spot-y),
    rgba(255, 203, 47, 0.16),
    transparent 32%
  );
}

.system .system-product-visual::after {
  z-index: 3;
  border-color: rgba(9, 9, 9, 0.14);
}

.system-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 700ms var(--ease);
}

.system-product-visual:hover .system-product-image {
  transform: scale(1.018);
}

.system-product-label {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 4;
  padding: 0.55rem 0.75rem;
  border-radius: 0.35rem;
  background: #090909;
  color: #ffcb2f;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.loads {
  width: 100%;
  padding-inline: var(--page-gutter);
  background: #f7f7f2;
  color: #090909;
}

.loads::before {
  color: rgba(9, 9, 9, 0.04);
}

.loads .section-heading > p:last-child,
.loads .load-list p,
.loads .load-note {
  color: #676760;
}

.load-list {
  border-top: 2px solid #111;
}

.load-list article {
  border-bottom-color: rgba(9, 9, 9, 0.18);
}

.load-index {
  color: #9a7100;
  font-family: var(--font-sans);
  font-weight: 850;
}

.load-list article:hover {
  color: #9a7100;
}

.benefits {
  width: calc(100% - clamp(2rem, 8vw, 8rem));
}

.benefits-intro h2,
.section-heading h2,
.financing h2,
.waitlist h2,
.faq h2 {
  font-weight: 780;
}

.benefit-grid article {
  border: 0;
  border-radius: 1.55rem;
  background: #f7f7f2;
  color: #090909;
  box-shadow: none;
}

.benefit-grid article > span,
.benefit-grid article p {
  color: #62625c;
}

.benefit-large {
  background: #ffcb2f !important;
}

.benefit-large > span,
.benefit-large p {
  color: rgba(9, 9, 9, 0.68) !important;
}

.benefit-compact:nth-child(2) {
  background: #f7f7f2;
}

.benefit-compact:nth-child(2) > span {
  color: rgba(9, 9, 9, 0.66);
}

.benefit-accent {
  background: #ffcb2f !important;
  color: #090909 !important;
}

.benefit-accent > span {
  color: rgba(9, 9, 9, 0.68) !important;
}

.benefit-wide {
  background: #20201d !important;
  color: #f7f7f2 !important;
}

.benefit-wide > span,
.benefit-wide p {
  color: #bcbcb5 !important;
}

.specifications {
  padding-inline: clamp(1.5rem, 5vw, 5rem);
  border-radius: 2rem;
  background: #ffcb2f;
  color: #090909;
}

.specifications .kicker {
  background: #090909;
  color: #ffcb2f;
}

.specifications .section-heading > p:last-child,
.specifications .featured-specs p,
.specifications .spec-groups p,
.specifications .featured-specs article > span {
  color: rgba(9, 9, 9, 0.68);
}

.featured-specs,
.spec-details {
  border-color: rgba(9, 9, 9, 0.24);
}

.featured-specs article + article {
  border-left-color: rgba(9, 9, 9, 0.24);
}

.featured-specs strong {
  font-family: var(--font-sans);
  font-weight: 820;
}

.featured-specs article:hover strong {
  color: #090909;
}

.financing {
  width: 100%;
  padding-inline: var(--page-gutter);
  background: #0c0c0b;
  color: #f7f7f2;
}

.financing-copy p,
.financing .ownership-options p,
.financing .ownership-options article > span {
  color: #b9b9b1;
}

.ownership-options article {
  min-height: 24rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: #181816;
}

.ownership-options article:nth-child(2) {
  border-color: transparent;
  background: #f7f7f2;
  color: #090909;
}

.ownership-options article:nth-child(2) > span,
.ownership-options article:nth-child(2) p {
  color: #62625c;
}

.ownership-options a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffcb2f;
  font-weight: 800;
}

.ownership-options article:nth-child(2) a {
  color: #090909;
}

.ownership-options a::after {
  content: "→";
}

.ownership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.35rem;
  align-items: center;
}

.ownership-options .finance-provider-link {
  color: #090909;
  text-decoration: underline;
  text-decoration-color: rgba(9, 9, 9, 0.28);
  text-underline-offset: 0.28rem;
}

.partner {
  border: 0;
  background: #ffcb2f;
  color: #090909;
}

.partner span,
.partner p {
  color: rgba(9, 9, 9, 0.68);
}

.partner .button-secondary {
  border-color: #fff;
  background: #fff;
  color: #090909;
}

.partner > div:last-child {
  justify-items: stretch;
}

.partner-directory {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.partner-card {
  display: grid;
  min-height: 11rem;
  align-content: space-between;
  gap: 0.55rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.15rem;
  transition:
    transform 260ms var(--ease),
    border-color 220ms var(--ease);
}

.partner-card-current {
  border-color: transparent;
  background: #fff;
  color: #090909;
}

.partner-card-current:hover {
  transform: translateY(-0.3rem);
}

.partner-card-coming {
  border-color: #090909;
  background: #090909;
  color: #f7f7f2;
}

.partner .partner-card span {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.64;
}

.partner-card strong {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
}

.partner-card small {
  color: inherit;
  font-size: 0.82rem;
  opacity: 0.72;
}

.waitlist {
  width: calc(100% - clamp(2rem, 8vw, 8rem));
}

.waitlist .form-panel {
  border: 0;
  background: #ffcb2f;
  color: #090909;
  box-shadow: none;
}

.waitlist .field-grid label,
.waitlist .consent-field {
  color: rgba(9, 9, 9, 0.72);
}

.waitlist input,
.waitlist select {
  border-color: rgba(9, 9, 9, 0.22);
  background: #fffdf5;
  color: #090909;
}

.waitlist input:focus,
.waitlist select:focus {
  border-color: #090909;
  box-shadow: 0 0 0 2px #ffcb2f, 0 0 0 4px #090909;
}

.waitlist .form-submit {
  border-color: #090909;
  background: #090909;
  color: #fff;
}

.faq {
  width: 100%;
  padding-inline: var(--page-gutter);
  background: #f1f1ed;
  color: #090909;
}

.faq-list {
  border-top: 2px solid #090909;
}

.faq-list details {
  border-bottom-color: rgba(9, 9, 9, 0.2);
}

.faq-list summary {
  position: relative;
  padding-right: 3rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  color: #9a7100;
  font-size: 1.5rem;
  transform: translateY(-50%);
}

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

.faq-list p {
  color: #62625c;
}

.site-footer {
  width: 100%;
  padding: 3.5rem var(--page-gutter);
  border-color: rgba(255, 255, 255, 0.12);
  background: #090909;
  color: #aaa9a2;
}

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

/* Brand typography shared with the EGA Tech and Geo Drops family. */
h1,
h2,
h3,
.nav-links,
.button,
.theme-toggle,
.menu-toggle,
.product-name,
.kicker,
.power-rail-set,
.proof-strip strong,
.featured-specs strong,
.system-signature strong,
.system .feature-list li > span,
.load-index,
.partner-card strong,
.ownership-options a,
.faq-list summary {
  font-family: var(--font-display);
}

@media (max-width: 1023px) {
  .system,
  .waitlist {
    width: calc(100% - 2rem);
  }
}

@media (max-width: 767px) {
  .proof-strip {
    padding-inline: 1rem;
  }

  .proof-strip > *:nth-child(even) {
    border-left-color: rgba(9, 9, 9, 0.2);
  }

  .proof-strip > p {
    border-top-color: rgba(9, 9, 9, 0.2);
  }

  .system,
  .specifications,
  .waitlist {
    width: calc(100% - 1rem);
    border-radius: 1.35rem;
  }

  .loads,
  .financing,
  .faq,
  .site-footer {
    padding-inline: 1rem;
  }

  .system::before,
  .loads::before {
    font-size: 4rem;
  }

  .site-header .nav-links {
    right: 1rem;
    border-color: rgba(255, 255, 255, 0.14);
    background: #11110f;
    color: #f7f7f2;
  }

  .partner-directory {
    grid-template-columns: 1fr;
  }

  .system-product-label {
    top: 1rem;
    left: 1rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: hero-scene-drift 18s ease-in-out infinite alternate;
  }
}

@keyframes hero-scene-drift {
  from {
    transform: scale(1.012) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.03) translate3d(0, -0.1%, 0);
  }
}

/* Image-led story sections */
.statement {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(34rem, 68vw, 50rem);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 7, 11, 0.96) 0%, rgba(4, 7, 11, 0.82) 39%, rgba(4, 7, 11, 0.24) 72%, rgba(4, 7, 11, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 7, 11, 0.08) 45%, rgba(4, 7, 11, 0.58) 100%),
    url("assets/concepts/ega-power-grid-continuity.png") center / cover no-repeat;
  color: #f7f7f2;
}

.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 72%, rgba(255, 203, 47, 0.08));
}

.statement h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  text-wrap: balance;
}

.statement > p:last-child {
  max-width: 37rem;
  margin-left: 0;
  color: #c8c8c0;
}

.loads {
  min-height: clamp(50rem, 76vw, 64rem);
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.98) 0%, rgba(6, 6, 6, 0.91) 34%, rgba(6, 6, 6, 0.57) 57%, rgba(6, 6, 6, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.08) 55%, rgba(6, 6, 6, 0.82) 100%),
    url("assets/concepts/ega-power-everyday-home.png") center / cover no-repeat;
  color: #f7f7f2;
}

.loads::before {
  z-index: 0;
  color: rgba(255, 255, 255, 0.055);
}

.loads > * {
  position: relative;
  z-index: 1;
}

.loads .section-heading {
  max-width: 44rem;
}

.loads .section-heading > p:last-child,
.loads .load-list p,
.loads .load-note {
  color: #bdbdb5;
}

.loads .load-list {
  width: min(62%, 52rem);
  margin-right: auto;
  border-top-color: rgba(255, 255, 255, 0.48);
}

.loads .load-list article {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.loads .load-list article:nth-child(even) {
  padding-left: clamp(1.5rem, 5vw, 5rem);
}

.loads .load-list article:hover {
  color: #ffcb2f;
}

.loads .load-note {
  width: min(62%, 38rem);
  margin-right: auto;
  margin-left: 0;
}

@media (max-width: 1023px) {
  .statement {
    min-height: 42rem;
    background-position: 58% center;
  }

  .loads {
    background-position: 58% center;
  }

  .loads .load-list,
  .loads .load-note {
    width: min(72%, 45rem);
  }
}

@media (max-width: 767px) {
  .statement {
    min-height: 40rem;
    justify-content: flex-end;
    padding-bottom: 4.5rem;
    background:
      linear-gradient(180deg, rgba(4, 7, 11, 0.05) 16%, rgba(4, 7, 11, 0.54) 47%, rgba(4, 7, 11, 0.98) 86%),
      url("assets/concepts/ega-power-grid-continuity.png") 70% center / cover no-repeat;
  }

  .statement h2 {
    font-size: clamp(2.85rem, 13vw, 4.4rem);
  }

  .statement > p:last-child {
    margin-top: 1.5rem;
  }

  .loads {
    min-height: auto;
    padding-block: 24rem 5.5rem;
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.04) 8%, rgba(6, 6, 6, 0.62) 34%, rgba(6, 6, 6, 0.98) 58%),
      url("assets/concepts/ega-power-everyday-home.png") 72% top / auto 34rem no-repeat,
      #090909;
  }

  .loads .load-list,
  .loads .load-note {
    width: 100%;
  }

  .loads .load-list article:nth-child(even) {
    padding-left: 0;
  }
}

/* Tighter page rhythm and a coherent warm light theme. */
:root {
  --section-space: clamp(3.5rem, 4vw, 4.5rem);
}

.load-list,
.benefit-grid,
.featured-specs {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.statement {
  min-height: clamp(32rem, 54vw, 42rem);
}

.loads {
  min-height: clamp(44rem, 64vw, 54rem);
}

.benefit-large {
  min-height: 31rem !important;
}

.ownership-options article {
  min-height: 20rem;
}

[data-theme="light"] {
  --canvas: #f2f0e9;
  --surface: #fffdf7;
  --surface-raised: #ffffff;
  --surface-soft: #e8e4da;
  --ink: #11110f;
  --ink-muted: #67645c;
  --line: #d5d0c5;
  --accent: #e7ad00;
  --accent-hover: #cc9900;
  --accent-soft: #fff0b3;
  --on-accent: #090909;
  --shadow: 0 24px 70px rgba(45, 39, 23, 0.11);
}

[data-theme="light"] body {
  background: var(--canvas);
  color: var(--ink);
}

/* The header, hero and image stories stay dark as deliberate brand anchors. */
[data-theme="light"] .system {
  background: #fffdf7;
  color: #11110f;
  box-shadow: 0 22px 70px rgba(45, 39, 23, 0.08);
}

[data-theme="light"] .system::before {
  color: rgba(17, 17, 15, 0.045);
}

[data-theme="light"] .system-copy > p:not(.kicker),
[data-theme="light"] .system .feature-list small,
[data-theme="light"] .system figcaption {
  color: #6a675f;
}

[data-theme="light"] .system .feature-list li {
  border-bottom-color: rgba(17, 17, 15, 0.15);
}

[data-theme="light"] .system .feature-list li > span {
  color: #8b6700;
}

[data-theme="light"] .system .system-product-visual {
  border-color: rgba(17, 17, 15, 0.12);
  background: #e2e2df;
  box-shadow: 0 28px 65px rgba(45, 39, 23, 0.12);
}

[data-theme="light"] .benefit-grid article {
  background: #fffdf7;
  color: #11110f;
}

[data-theme="light"] .benefit-grid article > span,
[data-theme="light"] .benefit-grid article p {
  color: #67645c;
}

[data-theme="light"] .benefit-wide {
  background: #dedacf !important;
  color: #11110f !important;
}

[data-theme="light"] .benefit-wide > span,
[data-theme="light"] .benefit-wide p {
  color: #625f57 !important;
}

[data-theme="light"] .financing {
  background: #e9e6dd;
  color: #11110f;
}

[data-theme="light"] .financing-copy p,
[data-theme="light"] .financing .ownership-options p,
[data-theme="light"] .financing .ownership-options article > span {
  color: #67645c;
}

[data-theme="light"] .ownership-options article {
  border-color: rgba(17, 17, 15, 0.1);
  background: #fffdf7;
  color: #11110f;
  box-shadow: 0 18px 50px rgba(45, 39, 23, 0.07);
}

[data-theme="light"] .ownership-options article:nth-child(2) {
  background: #ffcb2f;
}

[data-theme="light"] .ownership-options a,
[data-theme="light"] .ownership-options .finance-provider-link {
  color: #11110f;
}

[data-theme="light"] .faq {
  background: #fffdf7;
}

[data-theme="light"] .waitlist-detail,
[data-theme="light"] .faq-list,
[data-theme="light"] .faq-list details {
  border-color: rgba(17, 17, 15, 0.18);
}

@media (max-width: 767px) {
  :root {
    --section-space: 4rem;
  }

  .statement {
    min-height: 36rem;
    padding-bottom: 4rem;
  }

  .loads {
    padding-block: 20rem 4.5rem;
  }

  .benefit-large,
  .ownership-options article {
    min-height: 17rem !important;
  }
}

/* Product section: tighter framing with less unused perimeter space. */
.system {
  width: calc(100% - clamp(1.25rem, 2.5vw, 3rem));
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(2.75rem, 3.5vw, 3.75rem);
  padding-inline: clamp(1.5rem, 3vw, 3rem);
}

.system .feature-list {
  margin-top: clamp(1.75rem, 2.5vw, 2.25rem);
}

@media (max-width: 767px) {
  .system {
    width: calc(100% - 0.75rem);
    gap: 2.5rem;
    padding: 2.5rem 1.25rem 1.25rem;
  }
}
