/* ============================================================================
   Horonda v2 — styles.css  ·  MAP & CONVENTIONS   (index added 2026-06-15)
   ----------------------------------------------------------------------------
   One hand-written stylesheet for the 4-page static site (index/port/park/
   energy). Rules ACCRETED over iterative passes: the base sits up top, later
   passes OVERRIDE it further down — a selector's final state can be the SUM of
   several blocks, so to find every rule for a selector grep the WHOLE file,
   don't trust the first hit.   e.g.  grep -n 'route-nav' src/styles.css
   → base + ~4 overrides (78px base, 84px/transparent later).

   TOKENS — all in :root (just below), locked 1:1 to Figma "Horonda_Master_Site"
   variables (paper/bg/ink/muted/line/accent/dark/white + space scale). Figma is
   the source of truth — change a token here AND in Figma.

   SECTION ORDER (grep the marker text to jump; line numbers omitted on purpose
   — they drift on every edit):
     :root ............................ color + spacing tokens (Figma SoT)
     "Energy route / v3.3 Source" ..... energy page base
     "Route pages: Port + Park v1" .... route (port/park) base
     "Energy route / v3.3 final" ...... energy cascade
     "platform story and Energy" ...... umbrella + energy pitch refresh
     "Energy v4.2" … "Energy v4.9" .... energy iterative polish passes
     "Final layout QA contract" ....... route + energy layout QA
     "Route design refinement" ........ hero parity + wide-screen polish
     "Blueprint illustrations" ........ isometric line-drawing image cards
     "Subpage QA refactor (2026-06-14)"  the shipped pattern language, markers (b)–(u)

   PATTERN → CLASS  (the centralized приёмы; mirror of vault
   Applied-Design-Patterns.md and Figma "04 Section Patterns / Library"):
     Immersive hero nav ...... .route-nav / .energy-nav  +  .is-scrolled   [g, l]
     Stacked section ......... .route-stack / .energy-stack                [i, j]
     Embedded illustration ... .route-embed (+ -head / -body)              [m, t]
     Stat strip .............. .route-stat-row (3-col) / .route-stat-grid (2-col)
     Phased build-out ........ .energy-phase-track  (+ .bar i fills)       [u]
     Economics comparison .... .energy-cold-compare / .energy-saving       [u]
     Blueprint image card .... .route-blueprint / .energy-blueprint / .route-figure-band
     Section heading weight .. every h2 is bold 700 (energy fixed)         [q]

   OPS: styles.css is served max-age=14400 (4h) — bump the <link>'s ?v= token on
   every visual change. Deploy: wrangler pages deploy dist --branch=main (the
   --branch=main is mandatory, else it lands as a non-live preview).

   ⚠ DEFERRED (do as a dedicated pass): de-duplicating / merging the override
   layers into one block per selector. Risky on a live 9k-line file — only with
   full overflow + visual QA at 375/768/1440/1920 and a cache-bust.
   ============================================================================ */

:root {
      /* Figma-aligned primitives — WEB code syntax uses --color-* (SoT 2026-06-20). */
      --color-bg: #f1ece3;             /* Figma bg — page background */
      --color-paper: #fbf7ee;          /* Figma paper — raised light panels */
      --color-warm: #f3ecda;           /* Figma warm — reserved layer cue */
      --color-white: #fffef6;          /* Figma white — pure raised */
      --color-ink: #201f1b;            /* Figma ink */
      --color-muted: #6e6659;          /* Figma muted */
      --color-line: #d2cbba;           /* Figma line */
      --color-line-soft: rgba(33, 31, 26, 0.18);
      --color-line-strong: rgba(33, 31, 26, 0.34);
      --color-accent-red: #f54125;     /* Figma accent-red — brand signal */
      --color-accent: var(--color-accent-red);
      --color-green: #87957f;
      --color-park: #dfe9d7;           /* extended layer cue */
      --color-dry: #d9e2e8;
      --color-energy: #ebdccb;
      --color-deep-ink: #0b2029;       /* Figma deep-ink — dark bands / closures */
      --color-dark: var(--color-deep-ink);
      --color-dark-muted: #c7bfad;

      /* Compatibility aliases — legacy production CSS remains stable while Figma uses --color-* names. */
      --paper: var(--color-bg);
      --paper-2: var(--color-paper);
      --warm: var(--color-warm);
      --white: var(--color-white);
      --ink: var(--color-ink);
      --muted: var(--color-muted);
      --line: var(--color-line-soft);
      --line-strong: var(--color-line-strong);
      --accent: var(--color-accent);
      --green: var(--color-green);
      --park: var(--color-park);
      --dry: var(--color-dry);
      --energy: var(--color-energy);
      --dark: var(--color-dark);
      --dark-muted: var(--color-dark-muted);

      /* Shared semantic primitives for CSS/Figma component sync. */
      --surface-page: var(--color-bg);
      --surface-panel: var(--color-paper);
      --surface-raised: var(--color-white);
      --text-primary: var(--color-ink);
      --text-secondary: var(--color-muted);
      --stroke-default: var(--color-line-soft);
      --stroke-strong: var(--color-line-strong);
      --radius-card: 8px;
      --shadow-panel: 0 22px 70px rgba(33, 31, 26, 0.045);
      --shadow-visual: 0 28px 90px rgba(33, 31, 26, 0.06);
      --max: 1440px;
      /* Spacing primitives — Figma "Horonda / Spacing" */
      --space-2xs: 4px;  --space-xs: 8px;   --space-sm: 12px; --space-md: 20px;
      --space-lg: 32px;  --space-xl: 48px;  --space-2xl: 72px; --space-3xl: 112px;
      --section-pad-x: clamp(22px, 4.86vw, 70px);
      --section-pad-x-cap: max(var(--section-pad-x), calc((100vw - var(--max)) / 2 + 70px));
      --section-pad-y-start: clamp(76px, 7vw, 104px);
      --section-pad-y-end: clamp(82px, 7.6vw, 112px);
    }

html { scroll-behavior: smooth; overscroll-behavior-y: none; }

/* Energy route / v3.3 Source implementation */
body.energy-page {
  background: var(--paper);
}

/* Route pages: Port + Park v1 */
.route-page {
  background: var(--paper);
  color: var(--ink);
}
.route-shell {
  overflow: hidden;
}
.route-page main > section,
.route-page main > header {
  scroll-margin-top: 92px;
}
.route-page .route-nav {
  position: fixed;
  height: 78px;
  background: rgba(243, 238, 228, 0.78);
  border-bottom: 1px solid rgba(33, 31, 26, 0.10);
  backdrop-filter: blur(10px);
}
.route-page .brand {
  display: flex;
  width: 116px;
  height: 56px;
  position: absolute;
  left: max(32px, calc((100vw - var(--max)) / 2 + 32px));
}
.route-page .nav > .button {
  display: inline-flex;
  position: absolute;
  right: max(32px, calc((100vw - var(--max)) / 2 + 32px));
  background: var(--paper-2);
}
.route-page .nav-links {
  color: rgba(33, 31, 26, 0.78);
}
.route-page .nav-links a[href="#top"] {
  color: var(--accent);
  font-weight: 700;
}
.route-hero {
  position: relative;
  min-height: 760px;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  background: var(--dark);
}
.route-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.03);
}
.port-hero .route-hero-bg {
  object-position: center;
}
.park-hero .route-hero-bg {
  object-position: 52% center;
}
.route-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 19% 74%, rgba(243,238,228,0.80), rgba(243,238,228,0.44) 32%, rgba(243,238,228,0) 58%),
    linear-gradient(180deg, rgba(33,31,26,0.22), rgba(33,31,26,0.02) 42%, rgba(243,238,228,0.66) 100%),
    linear-gradient(90deg, rgba(243,238,228,0.36), rgba(243,238,228,0.04) 58%, rgba(33,31,26,0.10));
  pointer-events: none;
}
.route-hero-copy {
  position: absolute;
  z-index: 2;
  left: max(70px, calc((100vw - var(--max)) / 2 + 70px));
  bottom: 92px;
  width: min(760px, calc(100vw - 140px));
}
.route-hero-copy .section-label {
  margin-bottom: 28px;
}
.route-hero h1 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(74px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: 0;
}
.route-hero p {
  margin: 24px 0 0;
  max-width: 620px;
  font-size: 23px;
  line-height: 1.36;
  color: rgba(33, 31, 26, 0.84);
  font-weight: 500;
}
.route-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.route-actions .button {
  min-width: 218px;
}
.route-thesis-panel {
  position: absolute;
  z-index: 2;
  right: max(70px, calc((100vw - var(--max)) / 2 + 70px));
  bottom: 100px;
  width: 370px;
  padding: 24px 26px 25px;
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(33, 31, 26, 0.18);
}
.route-thesis-panel .mono {
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 18px;
}
.route-thesis-panel strong {
  display: grid;
  gap: 10px;
  font-size: 20px;
  line-height: 1.12;
}
.route-thesis-panel span {
  display: block;
}
.route-bridge,
.route-section,
.route-partner-section {
  padding: 90px 70px;
  border-bottom: 1px solid var(--line);
}
.route-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 76px;
  align-items: start;
}
.route-bridge h2,
.route-section h2 {
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 0.98;
  margin: 0;
  letter-spacing: 0;
}
.route-bridge-copy {
  display: grid;
  gap: 34px;
}
.route-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.route-proof-strip article {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.route-proof-strip article:last-child {
  border-right: 0;
}
.route-proof-strip b,
.route-grid-compact b,
.route-resident-grid b,
.route-partner-grid b {
  display: block;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.route-proof-strip span,
.route-grid-compact span,
.route-resident-grid span {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.38;
}
.route-section {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 76px;
  align-items: start;
}
.route-section-invert {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  align-items: start;
}
.route-copy {
  display: grid;
  gap: 32px;
}
.route-visual-card,
.route-visual-plate {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.route-visual-card {
  min-height: 0;
}
.route-visual-card img,
.route-visual-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.route-visual-card img {
  position: absolute;
  inset: 0;
}
.route-visual-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  background: rgba(255, 252, 246, 0.88);
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
  border-left: 2px solid var(--accent);
}
.route-visual-plate {
  min-height: 0;
}
.route-grid-compact,
.route-resident-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--paper-2);
  margin-top: 34px;
}
.route-resident-grid {
  grid-template-columns: repeat(2, 1fr);
}
.route-grid-compact article,
.route-resident-grid article {
  min-height: 146px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.route-grid-compact article:last-child,
.route-resident-grid article:nth-child(2n) {
  border-right: 0;
}
.route-resident-grid article:nth-last-child(-n+2) {
  border-bottom: 0;
}
.route-grid-compact article {
  border-bottom: 0;
}
.route-metric-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.route-metric-board article {
  min-height: 134px;
  padding: 24px 18px;
  display: grid;
  align-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}
.route-metric-board article:last-child {
  border-right: 0;
}
.route-metric-board strong {
  display: block;
  color: var(--accent);
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.05;
  margin-bottom: 13px;
}
.route-metric-board span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.34;
}
.route-readiness-list {
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.66);
}
.route-readiness-list div {
  min-height: 80px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  align-items: center;
}
.route-readiness-list div:last-child {
  border-bottom: 0;
}
.route-readiness-list b {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}
.route-readiness-list span {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.32;
}
.route-partner-section {
  padding-top: 74px;
}
.route-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.route-partner-grid article {
  min-height: 286px;
  padding: 32px;
  border-right: 1px solid var(--line);
}
.route-partner-grid article:last-child {
  border-right: 0;
}
.route-partner-grid h3 {
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1.05;
}
.route-partner-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.46;
}
.route-contact-cta {
  border-bottom: 1px solid var(--line);
}
.route-evidence-section {
  padding: 74px 70px 82px;
  border-bottom: 1px solid var(--line);
}
.port-evidence-board,
.port-service-grid {
  display: grid;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.port-evidence-board {
  grid-template-columns: repeat(3, 1fr);
}
.port-evidence-board article {
  min-height: 168px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  align-content: end;
}
.port-evidence-board article:nth-child(3n) {
  border-right: 0;
}
.port-evidence-board article:nth-last-child(-n+3) {
  border-bottom: 0;
}
.port-evidence-board strong {
  color: var(--accent);
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 0.96;
  margin-bottom: 22px;
}
.port-evidence-board span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}
.port-service-grid {
  grid-template-columns: repeat(3, 1fr);
}
.port-service-grid article {
  min-height: 160px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.port-service-grid article:nth-child(3n) {
  border-right: 0;
}
.port-service-grid article:nth-last-child(-n+3) {
  border-bottom: 0;
}
.port-service-grid b {
  display: block;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.port-service-grid span {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.38;
}

@media (max-width: 1180px) {
  .route-thesis-panel {
    right: 42px;
    width: 320px;
  }
  .route-bridge,
  .route-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .route-section-invert {
    grid-template-columns: 1fr;
  }
  .route-section-invert .route-visual-plate {
    order: 2;
  }
  .route-metric-board {
    grid-template-columns: repeat(2, 1fr);
  }
  .route-metric-board article:nth-child(2) {
    border-right: 0;
  }
  .route-metric-board article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .route-page .route-nav {
    position: absolute;
    justify-content: center;
    padding: 0 18px;
  }
  .route-page .brand,
  .route-page .nav > .button {
    display: none;
  }
  .route-page .nav-links {
    gap: 12px;
    font-size: 10px;
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .route-hero {
    min-height: 720px;
  }
  .route-hero-copy {
    left: 24px;
    right: 24px;
    bottom: 190px;
    width: auto;
  }
  .route-hero h1 {
    font-size: clamp(56px, 18vw, 82px);
  }
  .route-hero p {
    font-size: 19px;
    max-width: 92vw;
  }
  .route-actions {
    gap: 10px;
  }
  .route-actions .button {
    min-width: 0;
    width: calc(50% - 5px);
    padding: 0 12px;
  }
  .route-thesis-panel {
    left: 24px;
    right: 24px;
    bottom: 28px;
    width: auto;
    padding: 18px;
  }
  .route-thesis-panel strong {
    font-size: 17px;
    grid-template-columns: 1fr;
  }
  .route-bridge,
  .route-section,
  .route-partner-section,
  .route-evidence-section {
    padding: 62px 24px;
  }
  .route-bridge h2,
  .route-section h2 {
    font-size: clamp(38px, 11vw, 54px);
  }
  .route-proof-strip,
  .route-grid-compact,
  .route-resident-grid,
  .route-partner-grid,
  .port-evidence-board,
  .port-service-grid {
    grid-template-columns: 1fr;
  }
  .route-proof-strip article,
  .route-grid-compact article,
  .route-resident-grid article,
  .route-partner-grid article,
  .port-evidence-board article,
  .port-service-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .route-proof-strip article:last-child,
  .route-grid-compact article:last-child,
  .route-resident-grid article:last-child,
  .route-partner-grid article:last-child,
  .port-evidence-board article:last-child,
  .port-service-grid article:last-child {
    border-bottom: 0;
  }
  .port-evidence-board article,
  .port-service-grid article {
    min-height: 132px;
  }
  .route-visual-card {
    min-height: 0;
  }
  .route-metric-board {
    grid-template-columns: 1fr;
  }
  .route-metric-board article,
  .route-metric-board article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .route-metric-board article:last-child {
    border-bottom: 0;
  }
  .route-readiness-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.energy-page .energy-shell {
  max-width: 1226px;
  overflow: clip;
}

.energy-page [id] {
  scroll-margin-top: 96px;
}

.energy-page .energy-nav {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  width: auto;
  height: 72px;
  transform: none;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(255, 252, 246, 0.96);
  border-bottom: 1px solid var(--line);
  z-index: 60;
}

.energy-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 136px;
  color: var(--ink);
  font-size: 13px;
}

.energy-brand span {
  width: 18px;
  height: 12px;
  background: var(--accent);
  display: inline-block;
}

.energy-brand b {
  font-weight: 600;
}

.energy-page .energy-nav .nav-links {
  display: flex;
  gap: 24px;
  font-size: 10px;
}

.energy-page .energy-nav > .button {
  display: inline-flex;
  min-width: 150px;
  color: var(--paper-2);
  background: var(--accent);
  border: 0;
}

.energy-hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.energy-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02) brightness(0.8);
}

.energy-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 10, 8, 0.78), rgba(13, 10, 8, 0.38) 52%, rgba(13, 10, 8, 0.22)),
    linear-gradient(180deg, rgba(13, 10, 8, 0.10), rgba(13, 10, 8, 0.48));
  z-index: 1;
}

.energy-dot-field {
  position: absolute;
  right: 118px;
  top: 94px;
  width: 360px;
  height: 280px;
  opacity: 0.55;
  z-index: 2;
  background-image: radial-gradient(rgba(255, 252, 246, 0.18) 1px, transparent 1.5px);
  background-size: 18px 18px;
}

.energy-hero-copy {
  position: relative;
  z-index: 3;
  padding: 76px 72px 0;
  max-width: 760px;
}

.energy-label {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--accent);
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  margin-bottom: 42px;
}

.energy-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  flex: 0 0 auto;
}

.energy-hero h1 {
  margin: 0;
  color: var(--paper-2);
  font-size: 102px;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

.energy-hero-sub {
  color: var(--paper-2);
  font-size: 25px;
  line-height: 1.4;
  max-width: 600px;
  margin: 42px 0 0;
}

.energy-hero-body {
  color: var(--dark-muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 520px;
  margin: 20px 0 0;
}

.energy-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.investor-signal {
  margin-top: 86px;
  width: min(710px, calc(100vw - 144px));
  min-height: 116px;
  background: var(--paper-2);
  padding: 20px 24px;
  display: grid;
  align-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.investor-signal:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(33, 31, 26, 0.08);
}

.investor-signal span {
  color: var(--accent);
  font-size: 11px;
  line-height: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.investor-signal strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.14;
  font-weight: 600;
}

.investor-signal i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 12px 4px;
  background: var(--accent);
  vertical-align: middle;
}

.energy-coordinate {
  position: absolute;
  right: 72px;
  bottom: 165px;
  width: 250px;
  color: var(--dark-muted);
  font-size: 12px;
  line-height: 1.5;
  z-index: 3;
}

.energy-scale {
  min-height: 190px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background:
    linear-gradient(rgba(255, 252, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 252, 246, 0.03) 1px, transparent 1px),
    #0d0a08;
  background-size: 102px 62px, 41px 62px, auto;
}

.energy-metric {
  min-height: 190px;
  padding: 40px 24px;
  border-right: 1px solid rgba(255, 252, 246, 0.08);
  display: grid;
  align-content: center;
}

.energy-metric:last-child {
  border-right: 0;
}

.energy-metric strong {
  color: var(--accent);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 18px;
}

.energy-metric span {
  color: var(--dark-muted);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-section {
  padding: 88px 72px 96px;
  border-bottom: 1px solid var(--line);
}

.energy-section-light {
  background: var(--paper-2);
}

.energy-split {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: 76px;
  align-items: start;
}

.energy-split h2,
.readiness-copy h2,
.roadmap-section h2,
.energy-contact h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: 0;
}

.energy-split p,
.readiness-copy p,
.roadmap-section p,
.energy-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.energy-proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.energy-proof-row > div {
  min-height: 130px;
  padding: 26px 22px;
}

.energy-proof-row strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 16px;
}

.energy-proof-row span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.energy-system-visual {
  margin-top: 70px;
  height: 470px;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}

.energy-system-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(0.96) brightness(1.04);
}

.energy-system-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 246, 0.18);
}

.energy-system-visual .route {
  position: absolute;
  border-top: 2px solid rgba(236, 74, 36, 0.72);
  border-right: 2px solid rgba(236, 74, 36, 0.72);
  z-index: 2;
}

.energy-system-visual .route::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  background: var(--accent);
}

.route-a { left: 132px; top: 160px; width: 186px; height: 110px; }
.route-b { left: 524px; top: 112px; width: 114px; height: 122px; }
.route-c { left: 800px; top: 170px; width: 142px; height: 116px; }

.energy-cell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.energy-cell {
  background: var(--paper-2);
  min-height: 170px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.energy-cell:last-child {
  border-right: 0;
}

.energy-cell b,
.energy-dark-cards b,
.contact-cells b {
  display: block;
  color: var(--accent);
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.energy-cell h3,
.energy-dark-cards h3,
.contact-cells h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 400;
}

.energy-cell p,
.energy-dark-cards p,
.contact-cells p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.energy-dark {
  color: var(--paper-2);
  background:
    linear-gradient(rgba(255, 252, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 252, 246, 0.03) 1px, transparent 1px),
    #0d0a08;
  background-size: 75px 75px, 41px 75px, auto;
}

.energy-dark .energy-split p,
.energy-dark p {
  color: var(--dark-muted);
}

.energy-revenue {
  padding: 88px 72px 96px;
}

.energy-dark-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
}

.energy-dark-cards article,
.contact-cells article {
  min-height: 210px;
  padding: 20px 18px;
  background: rgba(31, 29, 24, 0.88);
  border-right: 1px solid rgba(255, 252, 246, 0.08);
  border-top: 1px solid rgba(255, 252, 246, 0.08);
}

.energy-dark-cards h3,
.contact-cells h3 {
  color: var(--paper-2);
}

.energy-dark-cards p,
.contact-cells p {
  color: var(--dark-muted);
}

.energy-dark-proof {
  display: grid;
  grid-template-columns: 300px 300px 300px 154px;
  margin-top: 46px;
  gap: 0;
}

.energy-dark-proof > div,
.energy-dark-proof aside {
  min-height: 132px;
  padding: 20px 18px;
  background: rgba(31, 29, 24, 0.88);
  border-right: 1px solid rgba(255, 252, 246, 0.08);
}

.energy-dark-proof strong {
  display: block;
  color: var(--accent);
  font-size: 31px;
  line-height: 1;
  margin-bottom: 16px;
}

.energy-dark-proof span,
.energy-dark-proof b {
  color: var(--dark-muted);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-dark-proof aside b {
  color: var(--accent);
  display: block;
  margin-bottom: 15px;
}

.energy-dark-proof aside p {
  font-size: 12px;
  line-height: 1.42;
  margin: 0;
}

.readiness-section {
  display: grid;
  grid-template-columns: 610px minmax(0, 1fr);
  gap: 48px;
  background: var(--paper);
}

.readiness-visual {
  height: 455px;
  overflow: hidden;
}

.readiness-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.readiness-copy h2 {
  font-size: 48px;
  line-height: 1.14;
}

.readiness-copy p {
  margin-top: 78px;
}

.readiness-section .energy-proof-row {
  grid-column: 1 / -1;
  margin-top: 0;
  background: var(--paper-2);
}

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

.finance-row {
  margin-top: 54px;
}

.stress-panel {
  margin-top: 52px;
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(420px, 0.48fr);
  gap: 48px;
  align-items: center;
  background: var(--paper);
  padding: 26px;
}

.stress-panel h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 600;
}

.stress-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.heat-strip i {
  height: 72px;
  display: grid;
  align-content: end;
  padding-bottom: 18px;
  font-style: normal;
  text-align: center;
  color: var(--ink);
}

.heat-strip i:nth-child(1) { background: rgba(235, 220, 203, 0.64); }
.heat-strip i:nth-child(2) { background: rgba(212, 201, 186, 0.68); }
.heat-strip i:nth-child(3) { background: rgba(175, 163, 146, 0.68); }
.heat-strip i:nth-child(4) { background: rgba(236, 74, 36, 0.86); color: var(--paper-2); }

.heat-strip span {
  font-size: 12px;
}

.roadmap-section {
  min-height: 620px;
  padding: 88px 72px 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(460px, 0.48fr);
  gap: 60px;
  align-items: center;
}

.roadmap-section h2 {
  font-size: 62px;
  line-height: 1.08;
}

.roadmap-section p {
  margin-top: 20px;
  max-width: 500px;
}

.energy-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  padding: 38px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 252, 246, 0.28);
  color: var(--dark-muted);
  position: relative;
}

.energy-timeline li {
  position: relative;
  min-height: 92px;
  padding-top: 26px;
}

.energy-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -7px;
  width: 13px;
  height: 13px;
  background: var(--accent);
}

.energy-timeline b {
  color: var(--paper-2);
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
}

.energy-timeline span {
  font-size: 12px;
  line-height: 1.35;
}

.energy-contact {
  min-height: 748px;
  padding: 88px 72px 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(430px, 0.48fr);
  gap: 60px;
  align-items: start;
}

.energy-contact h2 {
  font-size: 56px;
  line-height: 1.12;
  max-width: 520px;
}

.energy-contact p {
  margin-top: 34px;
  max-width: 440px;
}

.contact-cells {
  display: grid;
  gap: 15px;
}

.contact-cells article {
  min-height: 140px;
  border-right: 0;
}

.energy-form {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.energy-form label {
  display: grid;
  min-height: 40px;
  background: rgba(31, 29, 24, 0.82);
  border-bottom: 1px solid rgba(255, 252, 246, 0.14);
}

.energy-form label span {
  display: none;
}

.energy-form input {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  color: var(--dark-muted);
  background: transparent;
  border: 0;
  outline: 0;
}

.energy-form input:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}

.energy-form input::placeholder {
  color: rgba(255, 252, 246, 0.38);
}

.energy-form-bottom {
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 10px;
}

.energy-form-bottom p {
  margin: 0;
  color: rgba(255, 252, 246, 0.42);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.energy-footer {
  background: var(--paper);
}

@media (max-width: 900px) {
  .energy-page .energy-shell {
    max-width: 390px;
  }

  .energy-page [id] {
    scroll-margin-top: 64px;
  }

  .energy-page .energy-nav {
    position: sticky;
    height: 64px;
    padding: 0 14px;
    justify-content: space-between;
    background: var(--paper-2);
  }

  .energy-page .energy-nav::after {
    content: none;
  }

  .energy-page .energy-nav .nav-links {
    display: none;
  }

  .energy-page .energy-nav > .button {
    display: inline-flex;
    min-width: 128px;
    height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

  .energy-brand {
    min-width: 110px;
    font-size: 12px;
  }

  .energy-hero {
    min-height: 748px;
  }

  .energy-hero > img {
    object-position: 55% center;
  }

  .energy-dot-field,
  .energy-coordinate {
    display: none;
  }

  .energy-hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 10, 8, 0.44), rgba(13, 10, 8, 0.72)),
      linear-gradient(90deg, rgba(13, 10, 8, 0.68), rgba(13, 10, 8, 0.20));
  }

  .energy-hero-copy {
    padding: 46px 18px 0;
  }

  .energy-label {
    font-size: 10px;
    margin-bottom: 34px;
  }

  .energy-label::before {
    width: 34px;
  }

  .energy-hero h1 {
    font-size: 54px;
    line-height: 1.04;
  }

  .energy-hero-sub {
    font-size: 19px;
    line-height: 1.42;
    margin-top: 34px;
  }

  .energy-hero-body {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 18px;
  }

  .energy-actions {
    gap: 12px;
    margin-top: 30px;
  }

  .energy-actions .button {
    min-width: 132px;
  }

  .investor-signal {
    width: 100%;
    min-height: 104px;
    margin-top: 52px;
    padding: 16px 18px;
  }

  .investor-signal strong {
    font-size: 21px;
    line-height: 1.28;
  }

  .investor-signal i {
    margin: 0 7px 3px;
  }

  .energy-scale {
    grid-template-columns: repeat(2, 1fr);
    min-height: 500px;
  }

  .energy-metric {
    min-height: 126px;
    padding: 24px 18px;
  }

  .energy-metric:nth-child(5) {
    grid-column: 1 / -1;
  }

  .energy-metric strong {
    font-size: 25px;
    margin-bottom: 13px;
  }

  .energy-section,
  .energy-revenue,
  .roadmap-section,
  .energy-contact {
    padding: 70px 18px 76px;
  }

  .energy-split,
  .readiness-section,
  .roadmap-section,
  .energy-contact,
  .stress-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .energy-split h2,
  .readiness-copy h2,
  .roadmap-section h2,
  .energy-contact h2 {
    font-size: 36px;
    line-height: 1.16;
  }

  .energy-split p,
  .readiness-copy p,
  .roadmap-section p,
  .energy-contact p {
    font-size: 16px;
    line-height: 1.55;
  }

  .energy-proof-row,
  .finance-row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .energy-proof-row > div {
    min-height: 118px;
    padding: 22px 18px;
  }

  .energy-proof-row strong {
    font-size: 25px;
  }

  .energy-system-visual {
    height: 260px;
    margin-top: 44px;
  }

  .energy-system-visual .route {
    display: none;
  }

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

  .energy-cell {
    min-height: 132px;
    padding: 15px;
  }

  .energy-cell h3,
  .energy-dark-cards h3,
  .contact-cells h3 {
    font-size: 18px;
  }

  .energy-cell p,
  .energy-dark-cards p,
  .contact-cells p {
    font-size: 12px;
  }

  .energy-dark-cards {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .energy-dark-cards article {
    min-height: 145px;
    border-right: 0;
  }

  .energy-dark-proof {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }

  .energy-dark-proof > div,
  .energy-dark-proof aside {
    min-height: 116px;
    padding: 18px 12px;
  }

  .energy-dark-proof strong {
    font-size: 24px;
  }

  .energy-dark-proof aside {
    grid-column: 1 / -1;
  }

  .readiness-visual {
    height: 260px;
    order: 1;
  }

  .readiness-copy {
    order: 2;
  }

  .readiness-copy p {
    margin-top: 22px;
  }

  .readiness-section .energy-proof-row {
    order: 3;
  }

  .stress-panel {
    padding: 18px;
    margin-top: 40px;
  }

  .stress-panel h3 {
    font-size: 23px;
  }

  .heat-strip {
    gap: 0;
  }

  .heat-strip i {
    height: 54px;
  }

  .roadmap-section {
    min-height: 700px;
  }

  .energy-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 0;
    padding-top: 0;
  }

  .energy-timeline li {
    min-height: 34px;
    padding: 0 0 0 66px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: start;
  }

  .energy-timeline li::before {
    left: 18px;
    top: 2px;
  }

  .energy-contact {
    min-height: 1018px;
  }

  .contact-cells article {
    min-height: 140px;
  }

  .energy-form-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .energy-form-bottom .button {
    width: 154px;
  }

  .energy-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overscroll-behavior-y: none; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      text-rendering: geometricPrecision;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button, input, select {
      font: inherit;
    }
    .mono {
      font-family: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
      letter-spacing: 0;
      text-transform: none;
    }
    .shell {
      max-width: var(--max);
      margin: 0 auto;
      background: var(--paper);
      position: relative;
    }
    .nav {
      height: 84px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-bottom: 0;
      padding: 0 max(42px, calc((100vw - var(--max)) / 2 + 42px));
      position: absolute;
      left: 50%;
      right: auto;
      width: 100vw;
      transform: translateX(-50%);
      top: 0;
      z-index: 20;
      background: linear-gradient(180deg, rgba(243,238,228,0.78), rgba(243,238,228,0.34) 58%, rgba(243,238,228,0));
      backdrop-filter: none;
    }
    .brand {
      display: none;
      align-items: center;
      width: 182px;
      height: 78px;
      line-height: 1;
    }
    .brand img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: left center;
      display: block;
    }
    .nav-links {
      display: flex;
      gap: 24px;
      color: rgba(33,31,26,0.72);
      font-size: 12px;
      justify-content: center;
      text-transform: uppercase;
    }
    .nav-links a {
      text-shadow: 0 1px 16px rgba(255,252,246,0.44);
    }
    .nav > .button {
      display: none;
      background: rgba(255,252,246,0.34);
      color: var(--ink);
      border: 1px solid rgba(33,31,26,0.42);
      min-width: 126px;
      text-shadow: none;
    }
    .nav > .button:hover {
      background: var(--accent);
      color: var(--paper-2);
      border-color: var(--accent);
      text-shadow: none;
    }
    .button {
      border: 0;
      border-radius: 0;
      min-height: 48px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: var(--paper-2);
      cursor: pointer;
      transition: transform 180ms ease, background 180ms ease;
      font-size: 12px;
      text-transform: uppercase;
    }
    .button:hover { transform: translateY(-1px); background: #d94320; }
    .button.dark { background: var(--ink); }
    .button.light {
      background: var(--paper-2);
      color: var(--ink);
      border: 1px solid var(--line);
    }
    .section-label {
      display: flex;
      gap: 12px;
      align-items: center;
      color: var(--accent);
      font-size: 13px;
      margin-bottom: 34px;
      text-transform: uppercase;
    }
    .section-label::before {
      content: "";
      width: 42px;
      height: 2px;
      background: var(--accent);
      display: block;
    }
    .hero {
      position: relative;
      min-height: 100svh;
      border-bottom: 0;
      overflow: hidden;
      scroll-margin-top: 0;
      width: 100vw;
      left: 50%;
      transform: translateX(-50%);
    }
    .hero-picture {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }
    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 58% center;
      filter: saturate(1.04) contrast(1.04) brightness(1.01);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(circle at 76% 18%, rgba(243,238,228,0.08), rgba(243,238,228,0) 30%),
        linear-gradient(180deg, rgba(243,238,228,0.20), rgba(243,238,228,0.02) 28%, rgba(243,238,228,0.14));
      pointer-events: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse at 18% 76%, rgba(243,238,228,0.84), rgba(243,238,228,0.50) 30%, rgba(243,238,228,0) 58%),
        linear-gradient(180deg, rgba(243,238,228,0.12), rgba(243,238,228,0.02) 32%, rgba(243,238,228,0.72) 84%, var(--paper) 100%),
        linear-gradient(90deg, rgba(243,238,228,0.50), rgba(243,238,228,0.08) 58%, rgba(33,31,26,0.04));
      pointer-events: none;
    }
    .hero-copy {
      position: absolute;
      left: max(72px, calc((100vw - var(--max)) / 2 + 72px));
      right: max(72px, calc((100vw - var(--max)) / 2 + 72px));
      bottom: 104px;
      z-index: 2;
      width: auto;
      padding: 0;
      display: grid;
      grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
      column-gap: 72px;
      align-items: end;
    }
    .hero .section-label {
      grid-column: 1;
      margin-bottom: 28px;
      color: var(--accent);
    }
    .hero h1 {
      grid-column: 1;
      margin: 0;
      font-size: clamp(92px, 10.4vw, 150px);
      line-height: 0.9;
      letter-spacing: 0;
      padding-bottom: 0.05em;
      color: var(--accent);
      text-shadow: 0 10px 34px rgba(255,252,246,0.36);
    }
    .hero .subline {
      display: none;
    }
    .hero p {
      grid-column: 1;
      max-width: 640px;
      color: rgba(33,31,26,0.82);
      font-size: 22px;
      line-height: 1.38;
      font-weight: 500;
      margin: 18px 0 0;
    }
    .hero p span {
      color: var(--accent);
    }
    .hero-actions {
      grid-column: 2;
      grid-row: 2 / span 2;
      justify-self: end;
      align-self: end;
      display: flex;
      gap: 14px;
      margin: 0 0 10px;
      flex-wrap: wrap;
    }
    .hero-actions .button.dark {
      min-width: 220px;
      min-height: 56px;
      background: var(--paper-2);
      color: var(--ink);
      border-color: rgba(236,74,36,0.72);
      box-shadow: 0 18px 56px rgba(33,31,26,0.12);
    }
    .hero-actions .button.light {
      display: none;
    }
    .hero-caption {
      display: none;
      position: absolute;
      z-index: 2;
      right: 64px;
      bottom: 54px;
      width: 360px;
      padding: 18px 20px;
      border-left: 2px solid var(--accent);
      background: rgba(243, 238, 228, 0.76);
      color: #544e46;
      font-size: 12px;
      line-height: 1.45;
      text-transform: uppercase;
    }
    .metrics {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      padding: 32px 70px 34px;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
    }
    .why-horonda .wh-label {
      grid-column: 1 / -1;
      font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 4px;
    }
    .metric {
      min-height: 130px;
      padding: 22px 20px;
      background: var(--paper-2);
      display: grid;
      align-content: center;
      justify-items: center;
      text-align: center;
    }
    .metric strong {
      display: block;
      color: var(--accent);
      font-size: clamp(30px, 2.7vw, 40px);
      line-height: 1.05;
      margin-bottom: 14px;
    }
    .metric span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.38;
      display: block;
      max-width: 260px;
    }
    .metric-location strong {
      white-space: nowrap;
      font-size: clamp(25px, 2.15vw, 33px);
    }
    .section {
      padding: 76px 70px 96px;
      border-bottom: 1px solid var(--line);
      scroll-margin-top: 84px;
    }
    .section-readiness {
      padding-bottom: 118px;
    }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
      gap: 76px;
      margin-bottom: 60px;
    }
    h2 {
      font-size: clamp(42px, 4.7vw, 68px);
      line-height: 0.98;
      margin: 0;
      letter-spacing: 0;
      padding-bottom: 0.12em;
    }
    .lead {
      color: var(--muted);
      font-size: 21px;
      line-height: 1.46;
      margin: 0;
    }
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1.03fr;
      gap: 34px;
    }
    .location-corridor {
      display: grid;
      grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
      gap: 46px;
      align-items: center;
      background: var(--paper-2);
      border: 1px solid var(--line);
      padding: 38px 48px 42px;
      min-height: 430px;
    }
    .location-corridor h3 {
      font-size: 32px;
      line-height: 1.08;
      margin: 0 0 24px;
      max-width: 460px;
    }
    .location-corridor p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.52;
      margin: 0;
      max-width: 470px;
    }
    .panel {
      background: var(--paper-2);
      border: 1px solid var(--line);
      padding: 28px;
      min-height: 360px;
      position: relative;
    }
    .panel h3 {
      font-size: 32px;
      line-height: 1.08;
      margin: 0 0 20px;
    }
    .panel p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
      margin: 0;
    }
    .route-board {
      height: 342px;
      position: relative;
      border: 1px solid var(--line);
      background: var(--paper-2);
      overflow: hidden;
    }
    .route-map-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    .route-line {
      position: absolute;
      left: 42px;
      right: 44px;
      top: 110px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--accent) 70%, var(--green));
    }
    .route-node {
      position: absolute;
      top: 74px;
      width: 140px;
      font-size: 12px;
      font-weight: 800;
    }
    .route-node small {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-weight: 400;
      font-size: 10px;
    }
    .route-node:nth-child(2) { left: 38px; }
    .route-node:nth-child(3) { left: 190px; top: 42px; }
    .route-node:nth-child(4) { right: 130px; top: 32px; }
    .route-node:nth-child(5) { right: 22px; top: 135px; }
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      margin: 24px -28px -28px;
      border-top: 1px solid var(--line);
    }
    .proof {
      min-height: 114px;
      padding: 18px 20px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .proof:nth-child(2n) { border-right: 0; }
    .proof b {
      color: var(--accent);
      font-size: 13px;
      display: block;
      margin-bottom: 10px;
    }
    .proof p {
      font-size: 16px;
      line-height: 1.4;
    }
    .qualified-review {
      background: var(--paper);
      padding: 58px 70px;
      border-bottom: 1px solid var(--line);
      scroll-margin-top: 84px;
    }
    .qualified-review-panel {
      background: rgba(255, 252, 246, 0.62);
      border: 1px solid var(--line);
      min-height: 384px;
      padding: 32px 34px 28px 30px;
      display: grid;
      grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
      gap: 76px;
      align-items: center;
    }
    .qualified-review-copy h2 {
      font-size: 41px;
      line-height: 42px;
      margin: 34px 0 28px;
      max-width: 470px;
    }
    .qualified-review-copy p {
      color: var(--muted);
      font-size: 18px;
      line-height: 1.46;
      margin: 0;
      max-width: 450px;
    }
    .review-proof-panel {
      border: 1px solid var(--line);
      background: rgba(255, 252, 246, 0.82);
    }
    .review-row {
      min-height: 88px;
      padding: 15px 22px 13px;
      border-bottom: 1px solid var(--line);
      display: grid;
      align-content: center;
      gap: 5px;
    }
    .review-row:last-child {
      border-bottom: 0;
    }
    .review-row b {
      color: var(--accent);
      font-size: 13px;
      line-height: 1.35;
    }
    .review-row p {
      color: var(--ink);
      font-size: 16px;
      line-height: 1.24;
      margin: 0;
    }
    .system-map {
      min-height: 600px;
      background: rgba(255, 252, 246, 0.42);
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
    }
    .system-map-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.94) contrast(0.98);
    }
    .system-map::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(243,238,228,0.12), rgba(243,238,228,0) 34%, rgba(243,238,228,0.18)),
        linear-gradient(0deg, rgba(243,238,228,0.24), rgba(243,238,228,0) 42%, rgba(243,238,228,0.16));
      pointer-events: none;
      z-index: 1;
    }
    .map-tag {
      position: absolute;
      z-index: 3;
      display: grid;
      grid-template-columns: 8px 1fr;
      column-gap: 8px;
      width: 148px;
      min-height: 46px;
      padding: 9px 11px 8px 10px;
      background: rgba(255, 252, 246, 0.86);
      color: var(--ink);
      border: 1px solid rgba(33, 31, 26, 0.22);
      box-shadow: 0 8px 22px rgba(33, 31, 26, 0.08);
      text-transform: uppercase;
      backdrop-filter: blur(2px);
    }
    .map-tag::before {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: 3px;
      background: var(--accent);
      flex: 0 0 auto;
      grid-row: 1 / span 2;
    }
    .map-tag b {
      font-size: 11px;
      line-height: 1;
      font-weight: 600;
    }
    .map-tag span {
      margin-top: 5px;
      color: var(--muted);
      font-size: 10px;
      line-height: 1.18;
      text-transform: none;
    }
    .tag-rail { left: 13%; bottom: 22%; }
    .tag-energy { left: 42%; top: 11%; }
    .tag-park { right: 13%; top: 29%; }
    .callout-roadmap {
      display: none;
    }
    .rail {
      position: absolute;
      left: 40px;
      top: 360px;
      width: 1120px;
      height: 5px;
      background: var(--ink);
      transform: rotate(12deg);
      transform-origin: left center;
      z-index: 2;
    }
    .rail::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 18px;
      border-top: 3px dashed rgba(33,31,26,0.62);
    }
    .zone {
      position: absolute;
      border: 1.5px solid;
      padding: 10px;
      z-index: 3;
    }
    .zone .label {
      background: rgba(255,255,255,0.92);
      display: inline-block;
      padding: 7px 10px;
      font-size: 11px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .park-zone {
      right: 118px;
      top: 76px;
      width: 610px;
      height: 326px;
      background: rgba(223,233,215,0.92);
      border-color: #5b6e4d;
      transform: rotate(-3deg);
    }
    .dry-zone {
      left: 118px;
      bottom: 78px;
      width: 520px;
      height: 150px;
      background: rgba(217,226,232,0.92);
      border-color: #486275;
      transform: rotate(10deg);
    }
    .energy-zone {
      left: 356px;
      top: 246px;
      width: 350px;
      height: 50px;
      background: rgba(235,220,203,0.96);
      border-color: #9b7a55;
      transform: rotate(22deg);
    }
    .village-zone {
      left: 56px;
      bottom: 30px;
      width: 300px;
      height: 58px;
      background: rgba(231,224,214,0.8);
      border-color: #9a9082;
    }
    .warehouse-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 8px;
    }
    .warehouse-grid i {
      display: block;
      height: 42px;
      background: var(--paper-2);
      border: 1px solid rgba(91,110,77,0.4);
    }
    .containers {
      display: grid;
      grid-template-columns: repeat(6, 32px);
      gap: 8px;
      margin: 24px 0 0 60px;
    }
    .containers i {
      display: block;
      height: 12px;
      background: var(--paper-2);
      border: 1px solid rgba(72,98,117,0.4);
    }
    .energy-modules {
      display: flex;
      gap: 10px;
      margin-top: 6px;
    }
    .energy-modules i {
      width: 20px;
      height: 14px;
      background: #f5eee3;
      border: 1px solid rgba(155,122,85,0.5);
    }
    .road {
      position: absolute;
      right: 126px;
      top: 54px;
      width: 13px;
      height: 330px;
      background: #eee3d2;
      border: 1px solid #b9aa95;
      transform: rotate(7deg);
      z-index: 1;
    }
    .road::before {
      content: "";
      position: absolute;
      right: -12px;
      top: -28px;
      width: 154px;
      height: 8px;
      background: rgba(126,117,104,0.5);
      transform: rotate(28deg);
    }
    .project-tabs {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .tabs {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .tab {
      width: 160px;
      height: 52px;
      border: 1px solid var(--line);
      background: var(--paper-2);
      cursor: pointer;
      color: var(--ink);
      font-size: 12px;
      text-transform: uppercase;
      transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
    }
    .tab[aria-selected="true"] {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--paper-2);
      box-shadow: inset 0 -3px 0 rgba(33,31,26,0.18);
    }
    .tab.village { color: var(--green); }
    .layer-panel {
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-top: 3px solid var(--accent);
      display: grid;
      grid-template-columns: 0.52fr 0.48fr;
      min-height: 430px;
      padding: 40px;
      gap: 44px;
      position: relative;
    }
    .layer-panel::before {
      content: attr(data-active-layer);
      position: absolute;
      right: 39px;
      top: -27px;
      padding: 7px 10px 6px;
      background: var(--accent);
      color: var(--paper-2);
      font-family: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
      font-size: 10px;
      line-height: 1;
      text-transform: uppercase;
    }
    .layer-label {
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 26px;
    }
    .layer-panel h3 {
      font-size: clamp(38px, 3.8vw, 52px);
      margin: 0 0 22px;
      line-height: 1.04;
      padding-bottom: 0.08em;
    }
    .layer-panel p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.54;
      margin: 0;
      max-width: 620px;
    }
    .layer-actions {
      display: flex;
      margin-top: 30px;
    }
    .layer-visual {
      background: var(--paper);
      border: 1px solid var(--line);
      min-height: 250px;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
    }
    .layer-visual::before {
      content: "";
      display: none;
    }
    .layer-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(243,238,228,0.02), rgba(33,31,26,0.10));
      pointer-events: none;
      z-index: 1;
    }
    .layer-visual.has-image .shape-a,
    .layer-visual.has-image .shape-b,
    .layer-visual.has-image .shape-c {
      display: none;
    }
    .layer-visual .shape-a,
    .layer-visual .shape-b,
    .layer-visual .shape-c {
      position: absolute;
      display: block;
      border: 1px solid var(--line-strong);
    }
    .shape-a { left: 68px; top: 96px; width: 230px; height: 42px; background: var(--energy); }
    .shape-b { right: 62px; top: 82px; width: 180px; height: 96px; background: var(--park); }
    .shape-c { left: 74px; bottom: 46px; width: 270px; height: 4px; background: var(--ink); }
    .layer-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 28px;
    }
    .mini-metric {
      border: 1px solid var(--line);
      background: var(--paper-2);
      min-height: 88px;
      padding: 16px 14px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .mini-metric strong {
      color: var(--accent);
      display: block;
      font-size: 19px;
      line-height: 1.05;
      margin-bottom: 8px;
      white-space: nowrap;
      overflow-wrap: normal;
    }
    .mini-metric span {
      color: var(--muted);
      font-size: 9.5px;
      line-height: 1.32;
      display: block;
      max-width: 136px;
    }
    .accordion { display: none; }
    .developer-section {
      background: var(--paper);
      padding-top: 48px;
      padding-bottom: 58px;
    }
    .developer-card {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,252,246,0.82), rgba(255,252,246,0.58));
      display: grid;
      grid-template-columns: 320px minmax(0, 1fr);
      align-items: stretch;
      min-height: 224px;
    }
    .developer-intro {
      padding: 28px 28px;
      border-right: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
    }
    .developer-logo {
      width: 72px;
      height: 72px;
      object-fit: contain;
      display: block;
    }
    .developer-intro h3 {
      font-size: 16px;
      line-height: 1;
      margin: 0;
      color: var(--accent);
      text-transform: uppercase;
      font-family: "Roboto Mono", monospace;
      white-space: nowrap;
    }
    .developer-intro p {
      display: none;
    }
    .developer-grid {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr auto;
    }
    .developer-statement {
      padding: 32px 34px 34px;
      display: grid;
      align-content: center;
      border-bottom: 1px solid var(--line);
    }
    .developer-statement p {
      margin: 0;
      max-width: 820px;
      font-size: clamp(23px, 1.9vw, 30px);
      line-height: 1.18;
      color: var(--ink);
    }
    .developer-markers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    .developer-marker {
      min-height: 96px;
      padding: 22px 24px 26px;
      border-right: 0;
      display: grid;
      align-content: start;
      gap: 10px;
    }
    .developer-marker + .developer-marker {
      border-left: 1px solid var(--line);
    }
    .developer-marker b {
      display: block;
      color: var(--accent);
      font-size: 11px;
      line-height: 1;
      text-transform: uppercase;
    }
    .developer-marker span {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.35;
    }
    .utilities {
      display: grid;
      grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
      gap: 76px;
      align-items: start;
    }
    .utilities h2 {
      margin-bottom: 28px;
    }
    .status-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      margin-top: 28px;
    }
    .status-card {
      padding: 22px;
      min-height: 120px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--paper-2);
    }
    .status-card b {
      color: var(--accent);
      display: block;
      margin-bottom: 14px;
      font-size: 13px;
    }
    .status-card p {
      color: var(--muted);
      margin: 0;
      font-size: 16px;
      line-height: 1.45;
    }
    .cta {
      background: var(--dark);
      color: var(--paper-2);
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      min-height: 390px;
      margin: 72px var(--section-pad-x);
      border: 1px solid var(--dark);
    }
    .cta-copy {
      padding: 34px 36px;
      border-right: 1px solid rgba(255,252,246,0.18);
      display: grid;
      align-content: start;
    }
    .cta-brand-lockup {
      margin-top: 30px;
      display: flex;
      align-items: center;
      gap: 18px;
      color: rgba(255,252,246,0.78);
    }
    .cta-logo {
      width: 78px;
      height: 78px;
      object-fit: contain;
      flex: 0 0 auto;
    }
    .cta-brand-lockup span {
      max-width: 260px;
      font-size: 11px;
      line-height: 1.42;
      color: rgba(255,252,246,0.55);
      text-transform: uppercase;
    }
    .cta h2 {
      color: var(--paper-2);
      font-size: 50px;
      line-height: 1.02;
      margin: 28px 0 18px;
    }
    .cta p { color: var(--dark-muted); font-size: 17px; line-height: 1.5; margin: 0; }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      align-content: start;
    }
    .field {
      min-height: 110px;
      padding: 22px 24px;
      border-right: 1px solid rgba(255,252,246,0.18);
      border-bottom: 1px solid rgba(255,252,246,0.18);
    }
    .field:nth-child(even) { border-right: 0; }
    .field-wide {
      grid-column: span 2;
      min-height: 132px;
    }
    .field label {
      display: block;
      color: #ff7a55;
      font-size: 11px;
      margin-bottom: 18px;
      text-transform: uppercase;
    }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--dark-muted);
      outline: 0;
      resize: vertical;
      min-height: 24px;
    }
    .field textarea {
      min-height: 56px;
      line-height: 1.4;
    }
    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255,252,246,0.44);
    }
    .form-actions {
      grid-column: span 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      padding: 22px 24px;
    }
    .privacy {
      max-width: 410px;
      color: rgba(255,252,246,0.52);
      font-size: 10px;
      line-height: 1.35;
      text-transform: uppercase;
    }
    .form-actions .button {
      min-width: 190px;
    }
    .footer {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 42px;
      align-items: start;
      padding: 34px 70px 42px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      background: var(--paper);
    }
    .footer-note {
      font-size: 11px;
      line-height: 1.45;
      text-transform: uppercase;
    }
    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      color: var(--ink);
      font-size: 12px;
      text-transform: uppercase;
    }
    .footer-note {
      max-width: 330px;
      text-align: right;
    }
    @media (max-width: 900px) {
      .shell { border: 0; }
      :root {
        --mobile-browser-chrome-guard: 128px;
      }
      .nav {
        height: 60px;
        display: flex;
        justify-content: space-between;
        padding: 0 18px;
        position: absolute;
        left: 0;
        right: 0;
        width: auto;
        transform: none;
        top: 0;
        background: linear-gradient(180deg, rgba(31,29,24,0.48), rgba(31,29,24,0));
        border-bottom: 0;
        backdrop-filter: none;
      }
      .brand { width: 112px; height: 52px; }
      .nav-links, .nav .button { display: none; }
      body:not(.energy-page) .nav::before {
        content: "Horonda";
        padding-left: 28px;
        background: linear-gradient(var(--accent), var(--accent)) left center / 18px 12px no-repeat;
        color: rgba(255,252,246,0.92);
        font-size: 13px;
        font-weight: 600;
        line-height: 1;
        text-shadow: 0 1px 18px rgba(13,10,8,0.36);
      }
      .nav::after {
        content: "Menu";
        color: rgba(255,252,246,0.88);
        font-size: 11px;
        font-family: "Roboto Mono", monospace;
      }
      .hero {
        min-height: calc(100svh + var(--mobile-browser-chrome-guard));
        scroll-margin-top: 60px;
        width: auto;
        left: auto;
        transform: none;
      }
      @supports (height: 100dvh) {
        .hero { min-height: calc(100dvh + var(--mobile-browser-chrome-guard)); }
      }
      .hero-image {
        object-position: 68% center;
      }
      .hero::after {
        background:
          linear-gradient(180deg, rgba(245,240,230,0.04) 0%, rgba(245,240,230,0.00) 34%, rgba(245,240,230,0.30) 54%, rgba(245,240,230,0.72) 78%, var(--paper) 100%),
          radial-gradient(ellipse at 50% 76%, rgba(245,240,230,0.42), rgba(245,240,230,0.24) 28%, rgba(245,240,230,0) 58%),
          linear-gradient(90deg, rgba(245,240,230,0.10), rgba(245,240,230,0.06), rgba(245,240,230,0.10));
      }
      .hero::before {
        background:
          radial-gradient(circle at 70% 28%, rgba(243,238,228,0.14), rgba(33,31,26,0) 35%),
          linear-gradient(180deg, rgba(33,31,26,0.10), rgba(33,31,26,0) 30%, rgba(33,31,26,0.08));
      }
      .hero-copy {
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(var(--mobile-browser-chrome-guard) + env(safe-area-inset-bottom) + 72px);
        width: auto;
        padding: 0 20px;
        display: block;
      }
      .hero .section-label {
        color: var(--accent);
        margin-bottom: 20px;
        font-size: 12px;
        text-shadow: 0 1px 18px rgba(245,240,230,0.72);
      }
      .hero h1 {
        color: var(--accent);
        font-size: clamp(66px, 18.2vw, 82px);
        line-height: 0.94;
        margin: 0;
        text-align: left;
        text-shadow: 0 16px 42px rgba(245,240,230,0.56);
      }
      .hero .subline { display: none; }
      .hero p {
        color: rgba(33,31,26,0.84);
        font-size: clamp(18px, 5.2vw, 22px);
        line-height: 1.34;
        font-weight: 600;
        margin: 18px 0 0;
        max-width: 360px;
        text-shadow: 0 12px 30px rgba(245,240,230,0.60);
      }
      .hero-actions {
        display: none;
      }
      .hero-actions .button {
        min-height: 62px;
        width: 100%;
        background: var(--paper-2);
        color: var(--ink);
        border: 1px solid rgba(33,31,26,0.12);
        font-size: 12px;
        box-shadow: 0 18px 52px rgba(31,29,24,0.12);
      }
      .hero-actions .button.light { display: none; }
      .button { min-height: 44px; padding: 0 12px; font-size: 10px; }
      .metrics {
        grid-template-columns: 1fr;
        padding: 20px 18px 24px;
      }
      .metric {
        min-height: 82px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 15px 18px;
      }
      .metric strong { font-size: 29px; margin-bottom: 9px; }
      .metric-location strong { font-size: 26px; white-space: nowrap; }
      .metric span { font-size: 11px; line-height: 1.34; }
      .section { padding: 44px 18px 56px; scroll-margin-top: 60px; }
      .qualified-review { padding: 40px 18px 48px; scroll-margin-top: 60px; }
      .section-label { margin-bottom: 24px; font-size: 11px; }
      .section-label::before { width: 34px; }
      .section-head {
        display: block;
        margin-bottom: 30px;
      }
      h2 { font-size: 34px; line-height: 1.05; margin-bottom: 18px; }
      .lead { font-size: 15.5px; line-height: 1.48; }
      .two-col, .utilities, .location-corridor, .qualified-review-panel {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .location-corridor { padding: 20px 16px; min-height: 0; }
      .panel { min-height: 0; padding: 20px 16px; }
      .panel h3, .location-corridor h3 { font-size: 23px; line-height: 1.12; }
      .location-corridor p { font-size: 15px; line-height: 1.48; }
      .route-board {
        aspect-ratio: 1376 / 768;
        height: auto;
      }
      .route-map-img {
        width: 100%;
        height: 100%;
        transform: none;
      }
      .route-line {
        left: 10px;
        right: auto;
        top: 8px;
        bottom: 4px;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, var(--accent), var(--accent) 70%, var(--green));
      }
      .route-node {
        left: 34px !important;
        right: auto !important;
        width: 230px;
        font-size: 11px;
        line-height: 1.1;
      }
      .route-node small {
        margin-top: 3px;
        font-size: 9px;
      }
      .route-node:nth-child(2) { top: 0; }
      .route-node:nth-child(3) { top: 42px; }
      .route-node:nth-child(4) { top: 84px; }
      .route-node:nth-child(5) { top: 126px; }
      .proof-grid { grid-template-columns: 1fr; margin-left: -20px; margin-right: -20px; margin-bottom: -22px; }
      .proof { border-right: 0; }
      .qualified-review-panel {
        padding: 28px 18px 20px;
      }
      .qualified-review-copy h2 {
        font-size: 32px;
        line-height: 1.04;
        margin: 24px 0 18px;
      }
      .qualified-review-copy p {
        font-size: 15px;
        line-height: 1.48;
      }
      .review-row {
        min-height: 92px;
        padding: 16px 18px 14px;
      }
      .review-row p {
        font-size: 15px;
        line-height: 1.32;
      }
      .system-map {
        min-height: 305px;
      }
      .system-map-image { height: 285px; object-position: center top; }
      .system-map::after {
        height: 285px;
        bottom: auto;
      }
      .map-tag {
        grid-template-columns: 7px 1fr;
        column-gap: 7px;
        width: 112px;
        min-height: 34px;
        padding: 6px 7px;
      }
      .map-tag::before {
        width: 6px;
        height: 6px;
        margin-top: 2px;
      }
      .map-tag b { font-size: 9px; }
      .map-tag span {
        margin-top: 3px;
        font-size: 8px;
        line-height: 1.12;
      }
      .tag-rail { left: 12px; bottom: auto; top: 170px; }
      .tag-energy { left: 132px; top: 44px; }
      .tag-park { right: 14px; top: 122px; }
      .tabs, .layer-panel { display: none; }
      .accordion { display: block; }
      .acc-item {
        border: 1px solid var(--line);
        background: var(--paper-2);
        margin-bottom: -1px;
      }
      .acc-head {
        width: 100%;
        min-height: 62px;
        background: transparent;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        cursor: pointer;
        color: var(--ink);
      }
      .acc-head b { font-size: 22px; }
      .acc-head span { color: var(--muted); font-size: 10px; }
      .acc-panel {
        display: none;
        padding: 0 18px 24px;
      }
      .acc-item.open .acc-panel { display: block; }
      .acc-visual {
        min-height: 156px;
        margin: 0 0 18px;
        border: 1px solid var(--line);
        background-size: cover;
        background-position: center;
      }
      .acc-panel p { color: var(--muted); font-size: 15px; line-height: 1.46; margin: 0 0 18px; }
      .layer-metrics { grid-template-columns: 1fr; gap: 8px; margin-top: 20px; }
      .mini-metric {
        min-height: 42px;
        padding: 14px;
      }
      .mini-metric strong { font-size: 18px; margin: 0 0 6px; white-space: normal; }
      .developer-card {
        grid-template-columns: 1fr;
        min-height: 0;
      }
      .developer-intro {
        padding: 20px 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
      }
      .developer-logo {
        width: 58px;
        height: 58px;
      }
      .developer-intro h3 {
        font-size: 12px;
        margin-bottom: 0;
        white-space: normal;
      }
      .developer-statement {
        padding: 22px 18px 24px;
      }
      .developer-statement p {
        font-size: 20px;
        line-height: 1.22;
      }
      .developer-markers {
        grid-template-columns: 1fr;
      }
      .developer-marker {
        padding: 18px 18px 20px;
        min-height: 78px;
      }
      .developer-marker + .developer-marker {
        border-left: 0;
        border-top: 1px solid var(--line);
      }
      .developer-marker span {
        font-size: 16px;
      }
      .status-grid { grid-template-columns: 1fr; }
      .cta {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 42px var(--section-pad-x) 50px;
      }
      .cta-copy {
        padding: 28px 18px 0;
        border-right: 0;
      }
      .cta-brand-lockup { margin-top: 24px; align-items: flex-start; gap: 14px; }
      .cta-logo { width: 66px; height: 66px; }
      .cta h2 { font-size: 31px; line-height: 1.06; }
      .cta p { font-size: 15px; }
      .form-grid { grid-template-columns: 1fr; }
      .field,
      .field:nth-child(even) {
        border-right: 0;
        min-height: 86px;
        padding: 17px 18px;
      }
      .field-wide { grid-column: span 1; }
      .field textarea { min-height: 44px; }
      .form-actions {
        grid-column: span 1;
        display: grid;
        gap: 18px;
        padding: 18px 18px 22px;
      }
      .form-actions .button {
        width: 100%;
      }
      .footer {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 18px 38px;
      }
      .footer-note { text-align: left; }
      .footer-links { gap: 18px; }
    }

/* Energy route / v3.3 final cascade */
.energy-page {
  --energy-copper: #d98263;
  --energy-deep: #0d0a08;
}

.energy-page .energy-shell {
  max-width: 1226px;
}

.energy-page .energy-nav {
  background: rgba(255, 252, 246, 0.96);
  backdrop-filter: saturate(1.1) blur(10px);
}

.energy-hero {
  min-height: 900px;
  background: var(--paper-2);
}

.energy-hero > img {
  filter: saturate(0.98) contrast(1.04) brightness(0.98);
  object-position: 58% center;
}

.energy-hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,252,246,0.95) 0%, rgba(255,252,246,0.84) 36%, rgba(255,252,246,0.48) 58%, rgba(255,252,246,0.12) 100%),
    linear-gradient(180deg, rgba(243,238,228,0.10), rgba(35,28,22,0.24));
}

.energy-dot-field {
  opacity: 0.58;
  background-image: radial-gradient(rgba(33, 31, 26, 0.16) 1px, transparent 1.5px);
}

.energy-hero h1 {
  color: var(--ink);
  max-width: 720px;
}

.energy-hero-sub {
  color: rgba(33, 31, 26, 0.86);
}

.energy-hero-body,
.energy-coordinate {
  color: var(--muted);
}

.energy-territory-card {
  position: absolute;
  right: 72px;
  bottom: 78px;
  z-index: 4;
  width: 310px;
  height: 184px;
  overflow: hidden;
  background: var(--energy-deep);
  border: 1px solid rgba(255, 252, 246, 0.22);
  box-shadow: 0 28px 82px rgba(13, 10, 8, 0.22);
}

.energy-territory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
  filter: saturate(0.82) contrast(0.98) brightness(0.76);
  transform: none;
}

.energy-territory-card::before,
.energy-territory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.energy-territory-card::before {
  z-index: 1;
  background:
    linear-gradient(rgba(255, 252, 246, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 252, 246, 0.10) 1px, transparent 1px);
  background-size: 62px 42px, 62px 42px;
  opacity: 0.48;
}

.energy-territory-card::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(13, 10, 8, 0.06), rgba(13, 10, 8, 0.78)),
    linear-gradient(90deg, rgba(13, 10, 8, 0.28), rgba(13, 10, 8, 0.10));
}

.territory-card-copy {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 16px;
}

.territory-card-copy span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 252, 246, 0.62);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
}

.territory-card-copy b {
  display: block;
  color: var(--paper-2);
  font-size: 15px;
  line-height: 1.24;
  font-weight: 600;
}

.territory-card-copy p {
  margin: 9px 0 0;
  color: var(--energy-copper);
  font-size: 9px;
  line-height: 1.45;
  text-transform: uppercase;
}

.investor-signal {
  width: min(760px, calc(100vw - 144px));
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 24px 80px rgba(31, 29, 24, 0.10);
}

.investor-signal strong {
  font-size: 23px;
  line-height: 1.18;
}

.energy-scale,
.energy-dark {
  background:
    linear-gradient(rgba(255, 252, 246, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 252, 246, 0.035) 1px, transparent 1px),
    var(--energy-deep);
}

.energy-metric strong,
.energy-dark-proof strong {
  color: var(--paper-2);
}

.energy-label,
.energy-cell b,
.energy-dark-cards b,
.contact-cells b,
.energy-dark-proof aside b {
  color: var(--energy-copper);
}

.energy-system-visual {
  isolation: isolate;
  background: var(--energy-deep);
  border: 1px solid rgba(31, 29, 24, 0.10);
  box-shadow: 0 30px 92px rgba(31, 29, 24, 0.08);
}

.energy-system-visual img {
  filter: saturate(0.88) contrast(1.04) brightness(0.94);
  transform: none;
}

.energy-system-visual::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,252,246,0.06), rgba(13,10,8,0.22)),
    linear-gradient(90deg, rgba(255,252,246,0.12), rgba(255,252,246,0.02) 48%, rgba(13,10,8,0.16));
}

.energy-system-visual .route {
  z-index: 2;
  border-color: rgba(236, 74, 36, 0.56);
}

.system-tag,
.readiness-tag {
  position: absolute;
  z-index: 4;
  min-height: 46px;
  padding: 10px 12px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(236, 74, 36, 0.32);
  color: var(--accent);
  font-size: 10px;
  line-height: 1.28;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(31, 29, 24, 0.08);
}

.system-pin {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 252, 246, 0.78);
}

.tag-bess { left: 40px; top: 86px; width: 158px; }
.tag-kgu { right: 92px; top: 82px; width: 174px; }
.tag-park { right: 28px; top: 26px; width: 178px; }
.tag-port { left: 40px; bottom: 132px; width: 182px; }
.tag-substation { left: 48%; bottom: 102px; width: 178px; transform: translateX(-50%); }
.pin-bess { left: 292px; top: 246px; }
.pin-kgu { right: 248px; top: 250px; }
.pin-park { right: 252px; top: 180px; }
.pin-port { left: 338px; bottom: 88px; }
.pin-substation { left: 50%; bottom: 76px; }

.system-proof-rail {
  position: absolute;
  z-index: 5;
  left: 20px;
  bottom: 24px;
  width: min(614px, calc(100% - 40px));
  min-height: 36px;
  padding: 11px 18px;
  background: rgba(13, 10, 8, 0.92);
  color: var(--energy-copper);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.system-proof-rail::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
}

.readiness-visual {
  position: relative;
  background: var(--energy-deep);
  box-shadow: 0 28px 78px rgba(31, 29, 24, 0.10);
}

.readiness-visual img {
  filter: saturate(0.94) contrast(1.02) brightness(0.92);
  object-position: 58% 48%;
}

.readiness-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,252,246,0.02), rgba(13,10,8,0.18)),
    linear-gradient(90deg, rgba(255,252,246,0.08), rgba(255,252,246,0.00) 58%);
  pointer-events: none;
}

.readiness-tag {
  color: var(--paper-2);
  background: rgba(13, 10, 8, 0.84);
  border-color: rgba(255, 252, 246, 0.14);
}

.readiness-grid { left: 26px; top: 54px; width: 170px; }
.readiness-dispatch { right: 30px; top: 150px; width: 188px; }
.readiness-access { right: 42px; bottom: 54px; width: 166px; }

.readiness-context-rail {
  position: absolute;
  z-index: 4;
  left: 24px;
  bottom: 26px;
  width: min(374px, calc(100% - 214px));
  min-height: 42px;
  padding: 12px 16px;
  background: rgba(13, 10, 8, 0.86);
  border: 1px solid rgba(255, 252, 246, 0.14);
  color: var(--energy-copper);
  font-size: 9px;
  line-height: 1.45;
  text-transform: uppercase;
}

.source-gate {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.stress-panel {
  background: #eee7db;
}

.energy-contact .contact-side {
  width: 100%;
}

@media (min-width: 901px) and (max-width: 1120px) {
  .energy-hero-copy {
    padding-left: 56px;
    padding-right: 56px;
    max-width: 690px;
  }

  .energy-hero h1 {
    font-size: 92px;
    max-width: 640px;
  }

  .investor-signal {
    width: min(570px, calc(100vw - 420px));
  }

  .investor-signal strong {
    font-size: 20px;
    line-height: 1.3;
  }

  .energy-territory-card {
    right: 40px;
    width: 280px;
    height: 168px;
  }
}

@media (max-width: 900px) {
  .energy-page .energy-shell {
    max-width: 100%;
  }

  .energy-hero {
    min-height: 780px;
  }

  .energy-hero > img {
    object-position: 66% center;
  }

  .energy-hero-overlay {
    background:
      linear-gradient(180deg, rgba(255,252,246,0.94) 0%, rgba(255,252,246,0.78) 48%, rgba(255,252,246,0.42) 100%),
      linear-gradient(90deg, rgba(255,252,246,0.96), rgba(255,252,246,0.30));
  }

  .energy-hero h1 {
    font-size: 54px;
    line-height: 1.04;
  }

  .energy-hero-sub {
    font-size: 17px;
    line-height: 1.46;
  }

  .energy-hero-body {
    font-size: 13px;
  }

  .energy-territory-card {
    left: 24px;
    right: 24px;
    bottom: 28px;
    width: auto;
    height: 118px;
  }

  .territory-card-copy {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .territory-card-copy span {
    margin-bottom: 8px;
    font-size: 7px;
  }

  .territory-card-copy b {
    font-size: 12px;
    line-height: 1.22;
  }

  .territory-card-copy p {
    margin-top: 6px;
    font-size: 7px;
    line-height: 1.35;
  }

  .investor-signal strong {
    font-size: 15px;
    line-height: 1.55;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
  }

  .investor-signal {
    width: 100%;
    max-width: 100%;
  }

  .investor-signal i {
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    margin: 0 2px;
  }

  .energy-actions .button {
    flex: 1 1 0;
    min-width: 0;
  }

  .energy-scale {
    min-height: 500px;
  }

  .energy-system-visual {
    height: 260px;
    overflow: hidden;
  }

  .system-tag {
    min-height: 28px;
    padding: 5px 6px;
    font-size: 7px;
    line-height: 1.2;
    max-width: 104px;
  }

  .system-pin {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 3px rgba(255, 252, 246, 0.75);
  }

  .tag-bess { left: 22px; top: 56px; width: 86px; }
  .tag-kgu { right: 20px; top: 60px; width: 90px; }
  .tag-park { right: 16px; top: 18px; width: 92px; }
  .tag-port { left: 18px; bottom: 72px; width: 92px; }
  .tag-substation { left: 50%; bottom: 52px; width: 92px; }
  .pin-bess { left: 118px; top: 136px; }
  .pin-kgu { right: 116px; top: 138px; }
  .pin-park { right: 118px; top: 100px; }
  .pin-port { left: 128px; bottom: 58px; }
  .pin-substation { left: 50%; bottom: 42px; }

  .system-proof-rail {
    left: 18px;
    bottom: 12px;
    width: calc(100% - 36px);
    min-height: 34px;
    padding: 10px 12px;
    font-size: 8px;
  }

  .system-proof-rail::before {
    width: 20px;
    margin-right: 8px;
  }

  .readiness-tag {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 8px;
  }

  .readiness-grid { left: 14px; top: 26px; width: 124px; }
  .readiness-dispatch { right: 14px; top: 112px; width: 132px; }
  .readiness-access { right: 22px; bottom: 28px; width: 118px; }

  .readiness-context-rail {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 154px);
    min-height: 30px;
    padding: 8px 10px;
    font-size: 7px;
    line-height: 1.35;
  }

  .source-gate {
    order: 4;
    margin-top: -18px;
    font-size: 8px;
  }

  .energy-contact {
    min-height: 1126px;
  }
}

@media (min-width: 560px) and (max-width: 900px) {
  .energy-page .energy-nav {
    padding-left: 32px;
    padding-right: 32px;
  }

  .energy-hero {
    min-height: 820px;
  }

  .energy-hero-copy {
    padding: 58px 48px 0;
    max-width: 620px;
  }

  .energy-hero h1 {
    font-size: 76px;
    max-width: 620px;
  }

  .energy-hero-sub {
    max-width: 540px;
    font-size: 21px;
  }

  .energy-hero-body {
    max-width: 500px;
    font-size: 14px;
  }

  .investor-signal {
    max-width: 520px;
  }

  .energy-territory-card {
    left: auto;
    right: 48px;
    bottom: 40px;
    width: 330px;
    height: 132px;
  }

  .energy-scale {
    min-height: 260px;
  }

  .energy-metric {
    min-height: 122px;
    padding: 24px 28px;
  }

  .energy-section,
  .energy-revenue,
  .roadmap-section,
  .energy-contact {
    padding-left: 48px;
    padding-right: 48px;
  }

  .energy-system-visual,
  .readiness-visual {
    height: 360px;
  }

  .system-tag {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 8px;
    max-width: 134px;
  }

  .tag-bess { left: 32px; top: 70px; width: 118px; }
  .tag-kgu { right: 38px; top: 72px; width: 122px; }
  .tag-park { right: 32px; top: 24px; width: 128px; }
  .tag-port { left: 32px; bottom: 94px; width: 126px; }
  .tag-substation { bottom: 76px; width: 132px; }
}

@media (max-width: 430px) {
  .energy-dark-proof {
    grid-template-columns: 1fr;
  }

  .energy-dark-proof > div,
  .energy-dark-proof aside {
    min-height: 94px;
    padding: 18px 18px;
  }
}

@media (max-width: 360px) {
  .energy-hero {
    min-height: 790px;
  }

  .energy-hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .energy-hero h1 {
    font-size: 48px;
  }

  .energy-hero-sub {
    font-size: 16px;
  }

  .energy-actions {
    gap: 10px;
  }

  .energy-actions .button {
    font-size: 9px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .investor-signal {
    min-height: 116px;
    padding: 14px 16px;
  }

  .energy-territory-card {
    left: 18px;
    right: 18px;
  }

}

/* 2026-06-11 platform story and Energy public pitch refresh */
.about-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.about-platform-grid article {
  min-height: 196px;
  padding: 22px 22px 24px;
  border-right: 1px solid var(--line);
}
.about-platform-grid article:last-child {
  border-right: 0;
}
.about-platform-grid b {
  display: block;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.35;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.about-platform-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 400;
}
.about-platform-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.46;
}

body.energy-page {
  overflow-x: hidden;
  background: var(--paper);
}
.energy-page .shell,
.energy-page .energy-shell {
  max-width: none;
  width: 100%;
  border-left: 0;
  border-right: 0;
  /* clip (not hidden): still clips horizontal bleed but does NOT establish a
     scroll container, so the sticky energy nav inside the shell can pin. body's
     overflow-x:hidden backstops horizontal scroll on pre-16 Safari. */
  overflow: clip;
}
.energy-page .energy-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 78px;
  transform: none;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2 + 48px));
  z-index: 60;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.94);
  backdrop-filter: blur(14px);
}
.energy-page .energy-nav .nav-links {
  display: flex;
  gap: 36px;
  color: rgba(33, 31, 26, 0.68);
  font-size: 13px;
}
.energy-page .energy-nav > .button {
  display: inline-flex;
  min-width: 178px;
  color: var(--paper-2);
  background: var(--accent);
  border-color: var(--accent);
}
.energy-page .energy-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
}
.energy-page .energy-mark {
  width: 42px;
  height: 24px;
  display: block;
  background: var(--accent);
  clip-path: polygon(50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
}
.energy-page .energy-hero {
  position: relative;
  display: block;
  width: 100vw;
  min-height: 900px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
  background: var(--dark);
}
.energy-page .energy-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.02);
}
.energy-page .energy-hero::before,
.energy-page .energy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.energy-page .energy-hero::before {
  background:
    linear-gradient(90deg, rgba(31, 29, 24, 0.84) 0%, rgba(31, 29, 24, 0.58) 38%, rgba(31, 29, 24, 0.08) 72%),
    linear-gradient(180deg, rgba(31, 29, 24, 0.20), rgba(31, 29, 24, 0.04) 42%, rgba(31, 29, 24, 0.56) 100%);
}
.energy-page .energy-hero::after {
  background:
    radial-gradient(ellipse at 76% 18%, rgba(236, 74, 36, 0.18), rgba(236, 74, 36, 0) 34%),
    linear-gradient(180deg, rgba(243, 238, 228, 0.02), rgba(243, 238, 228, 0) 64%, var(--paper) 100%);
}
.energy-page .energy-hero-copy {
  position: absolute;
  left: max(54px, calc((100vw - var(--max)) / 2 + 78px));
  top: 134px;
  z-index: 3;
  width: min(690px, calc(100vw - 108px));
  display: block;
  padding: 0 !important;
  color: var(--paper-2);
}
.energy-page .energy-hero-copy .section-label {
  margin-bottom: 28px;
  color: var(--paper-2);
  text-shadow: 0 8px 26px rgba(31, 29, 24, 0.58);
}
.energy-page .energy-hero-copy .section-label::before {
  background: var(--accent);
}
.energy-page .energy-hero-copy h1 {
  margin: 0 0 22px;
  color: var(--paper-2);
  font-size: 92px;
  line-height: 0.98;
  font-weight: 400;
  text-shadow: 0 18px 42px rgba(31, 29, 24, 0.52);
}
.energy-page .energy-subline {
  max-width: 620px;
  margin: 0 0 18px;
  color: rgba(255, 252, 246, 0.92);
  font-size: 26px;
  line-height: 1.24;
}
.energy-page .energy-body {
  max-width: 600px;
  margin: 0 0 26px;
  color: rgba(255, 252, 246, 0.74);
  font-size: 17px;
  line-height: 1.58;
}
.energy-page .energy-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.energy-page .energy-actions .button {
  min-width: 166px;
  border: 1px solid rgba(255, 252, 246, 0.22);
}
.energy-page .energy-actions .button.light {
  color: var(--paper-2);
  background: rgba(31, 29, 24, 0.38);
  border-color: rgba(255, 252, 246, 0.26);
}
.energy-page .energy-thesis-panel {
  position: absolute;
  left: max(54px, calc((100vw - var(--max)) / 2 + 78px));
  bottom: 64px;
  z-index: 3;
  width: min(770px, calc(100vw - 108px));
  padding: 22px 24px 24px;
  color: var(--paper-2);
  background: rgba(31, 29, 24, 0.76);
  border: 1px solid rgba(255, 252, 246, 0.24);
  backdrop-filter: blur(12px);
}
.energy-page .energy-thesis-panel > div {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}
.energy-page .energy-thesis-panel strong {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.15fr;
  gap: 14px;
  align-items: start;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 400;
}
.energy-page .energy-thesis-panel span {
  display: block;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 252, 246, 0.22);
  color: rgba(255, 252, 246, 0.80);
}
.energy-page .energy-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  padding: 0;
  background: var(--dark);
  color: var(--paper-2);
  border-top: 0;
  border-bottom: 0;
}
.energy-page .energy-metrics .metric {
  min-height: 154px;
  justify-items: start;
  text-align: left;
  background: transparent;
  border-right: 1px solid rgba(255, 252, 246, 0.16);
  border-bottom: 0;
}
.energy-page .energy-metrics .metric:last-child {
  border-right: 0;
}
.energy-page .energy-metrics strong {
  color: var(--paper-2);
  font-size: 42px;
}
.energy-page .energy-metrics span {
  color: var(--dark-muted);
}
.energy-page .energy-story-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 82px;
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
  padding: 96px 72px 104px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.energy-page .energy-story-bridge h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 400;
}
.energy-page .energy-story-copy {
  display: grid;
  align-content: start;
  gap: 24px;
  padding-top: 8px;
}
.energy-page .energy-story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.energy-page .energy-story-copy .lead {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.42;
}
.energy-page .energy-section,
.energy-page .energy-proof-section,
.energy-page .energy-diagram-section,
.energy-page .energy-developer,
.energy-page .energy-cta,
.energy-page .energy-cluster,
.energy-page .energy-cold,
.energy-page .footer {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}
.energy-page .energy-section,
.energy-page .energy-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 82px;
  padding: 92px 72px;
  border-bottom: 1px solid var(--line);
}
.energy-page .energy-section h2,
.energy-page .energy-proof-section h2,
.energy-page .energy-diagram-section h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1;
  font-weight: 400;
}
.energy-page .energy-role {
  min-height: 590px;
  background: var(--paper);
}
.energy-page .energy-card-stack {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.energy-page .energy-card {
  min-height: 126px;
  padding: 24px 24px 26px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.energy-page .energy-card b {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.34;
  text-transform: uppercase;
}
.energy-page .energy-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 400;
}
.energy-page .energy-card p,
.energy-page .energy-proof-section p,
.energy-page .energy-developer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}
.energy-page .energy-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}
.energy-page .energy-wide-grid {
  grid-column: 1 / -1;
}
.energy-page .energy-card-grid .energy-card {
  border-right: 0;
}
.energy-page .energy-card-grid .energy-card:last-child {
  border-right: 1px solid var(--line);
}
.energy-page .energy-diagram-section {
  padding: 92px 72px 104px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.energy-page .energy-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 82px;
  margin-bottom: 40px;
}
.energy-page .energy-revenue-copy {
  display: grid;
  align-content: start;
  gap: 26px;
}
.energy-page .energy-investor-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--paper-2);
}
.energy-page .energy-investor-strip div {
  min-height: 124px;
  padding: 20px 18px;
  border-right: 1px solid rgba(255, 252, 246, 0.16);
}
.energy-page .energy-investor-strip div:last-child {
  border-right: 0;
}
.energy-page .energy-investor-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: clamp(26px, 1.9vw, 28px);
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}
.energy-page .energy-investor-strip span {
  display: block;
  color: var(--dark-muted);
  font-size: 11px;
  line-height: 1.4;
}
.energy-page .energy-revenue-grid .energy-card {
  min-height: 178px;
}
.energy-page .energy-topology-diagram {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 56px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.78), rgba(243, 238, 228, 0.92)),
    var(--paper-2);
  color: var(--ink);
}
.energy-page .topology-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
  color: rgba(33, 31, 26, 0.72);
}
.energy-page .topology-grid-fill {
  fill: url(#topology-grid);
}
.energy-page .topology-site {
  fill: rgba(236, 74, 36, 0.045);
  stroke: rgba(33, 31, 26, 0.36);
  stroke-width: 1.4;
}
.energy-page .topology-road {
  fill: none;
  stroke: rgba(33, 31, 26, 0.20);
  stroke-width: 1.2;
}
.energy-page .topology-flow {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.energy-page .topology-flow-gas {
  stroke: rgba(33, 31, 26, 0.58);
  stroke-dasharray: 7 7;
}
.energy-page .topology-flow-future {
  stroke: rgba(236, 74, 36, 0.56);
  stroke-dasharray: 2 8;
}
.energy-page .topology-node rect,
.energy-page .topology-node path,
.energy-page .topology-node circle {
  fill: rgba(255, 252, 246, 0.74);
  stroke: rgba(33, 31, 26, 0.62);
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
}
.energy-page .node-core rect {
  fill: rgba(236, 74, 36, 0.92);
  stroke: rgba(236, 74, 36, 0.96);
}
.energy-page .node-future rect {
  fill: rgba(33, 31, 26, 0.055);
}
.energy-page .topology-node text {
  fill: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}
.energy-page .node-core text {
  fill: var(--paper-2);
}
.energy-page .topology-node .topology-subtext {
  fill: rgba(33, 31, 26, 0.66);
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  font-weight: 400;
}
.energy-page .node-core .topology-subtext {
  fill: rgba(255, 252, 246, 0.86);
}
.energy-page .topology-draw {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  opacity: 0.18;
  transition:
    stroke-dashoffset 1300ms cubic-bezier(.2,.8,.2,1),
    opacity 420ms ease;
}
.energy-page .topology-node {
  opacity: 0;
  transition: opacity 520ms ease;
}
.energy-page .energy-scroll-reveal.is-visible .topology-draw {
  stroke-dashoffset: 0;
  opacity: 1;
}
.energy-page .energy-scroll-reveal.is-visible .topology-node {
  opacity: 1;
}
.energy-page .draw-2 { transition-delay: 90ms; }
.energy-page .draw-3 { transition-delay: 140ms; }
.energy-page .draw-4 { transition-delay: 260ms; }
.energy-page .draw-5 { transition-delay: 360ms; }
.energy-page .draw-6 { transition-delay: 460ms; }
.energy-page .draw-7 { transition-delay: 560ms; }
.energy-page .draw-8 { transition-delay: 660ms; }
.energy-page .draw-9 { transition-delay: 760ms; }
.energy-page .node-core { transition-delay: 220ms; }
.energy-page .node-bess,
.energy-page .node-chp,
.energy-page .node-substation { transition-delay: 360ms; }
.energy-page .node-grid,
.energy-page .node-gas,
.energy-page .node-park { transition-delay: 560ms; }
.energy-page .node-cold,
.energy-page .node-logistics,
.energy-page .node-future { transition-delay: 740ms; }
.energy-page .topology-mobile-list {
  display: none;
}
.energy-page .topology-note {
  position: absolute;
  left: 28px;
  bottom: 18px;
  max-width: 590px;
  margin: 0;
  color: rgba(33, 31, 26, 0.58);
  font-size: 10px;
  line-height: 1.45;
}
.energy-page .energy-core-diagram {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 252, 246, 0.06) 1px, transparent 1px),
    var(--dark);
  background-size: 72px 72px;
  border: 1px solid var(--dark);
  color: var(--paper-2);
}
.energy-page .energy-core-diagram::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(255, 252, 246, 0.12);
  pointer-events: none;
}
.energy-page .energy-core-node {
  position: absolute;
  z-index: 3;
  width: 214px;
  min-height: 112px;
  padding: 18px 18px 16px;
  background: #fffaf0;
  border: 2px solid var(--dark);
  box-shadow: 8px 8px 0 rgba(236, 74, 36, 0.92);
  color: var(--ink);
}
.energy-page .energy-core-node b {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 600;
}
.energy-page .energy-core-node span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.energy-page .energy-core-main {
  left: 50%;
  top: 50%;
  width: 266px;
  min-height: 148px;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: var(--paper-2);
  box-shadow: 10px 10px 0 rgba(255, 252, 246, 0.92);
}
.energy-page .energy-core-main b {
  font-size: 30px;
}
.energy-page .energy-core-main span {
  color: rgba(255, 252, 246, 0.86);
  font-size: 13px;
}
.energy-page .node-bess { left: 8%; top: 15%; }
.energy-page .node-chp { left: 10%; bottom: 15%; }
.energy-page .node-grid { left: 41%; top: 8%; }
.energy-page .node-park { right: 8%; top: 17%; }
.energy-page .node-logistics { right: 9%; bottom: 15%; }
.energy-page .node-market { left: 42%; bottom: 8%; }
.energy-page .route {
  position: absolute;
  z-index: 1;
  height: 3px;
  background: var(--accent);
  transform-origin: left center;
  opacity: 0.78;
}
.energy-page .route-left-a { left: 24%; top: 30%; width: 24%; transform: rotate(18deg); }
.energy-page .route-left-b { left: 25%; bottom: 30%; width: 23%; transform: rotate(-18deg); }
.energy-page .route-right-a { right: 24%; top: 32%; width: 23%; transform: rotate(-16deg); }
.energy-page .route-right-b { right: 25%; bottom: 31%; width: 23%; transform: rotate(16deg); }
.energy-page .route-top { left: 48%; top: 25%; width: 3px; height: 132px; }
.energy-page .route-bottom { left: 50%; bottom: 26%; width: 3px; height: 132px; }
.energy-page .energy-proof-section {
  align-items: center;
  min-height: 650px;
}
.energy-page .energy-proof-visual {
  height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.energy-page .energy-proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.energy-page .energy-cold-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}
.energy-page .cold-rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--dark);
}
.energy-page .cold-rate-grid article {
  min-height: 126px;
  padding: 22px 20px;
  background: var(--paper-2);
  border-right: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
}
.energy-page .cold-rate-grid article:nth-child(2n) {
  border-right: 0;
}
.energy-page .cold-rate-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.energy-page .cold-rate-grid b {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}
.energy-page .cold-rate-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.38;
}
.energy-page .energy-cold-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.energy-page .energy-developer {
  display: grid;
  grid-template-columns: 220px 1fr;
  width: min(calc(100% - 144px), calc(var(--max) - 144px));
  margin-top: 72px;
  margin-bottom: 72px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.energy-page .energy-nsv {
  display: grid;
  place-items: center;
  min-height: 140px;
  color: var(--accent);
  font-size: 42px;
  border-right: 1px solid var(--line);
}
.energy-page .energy-developer > div:last-child {
  display: grid;
  align-content: center;
  padding: 28px 34px;
}
.energy-page .energy-developer h2 {
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 400;
}
.energy-page .energy-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 82px;
  min-height: 520px;
  padding: 86px 72px;
  background: var(--dark);
  color: var(--paper-2);
}
.energy-page .energy-cta h2 {
  margin: 34px 0 18px;
  color: var(--paper-2);
  font-size: 50px;
  line-height: 1.04;
  font-weight: 400;
}
.energy-page .energy-cta p {
  max-width: 460px;
  color: var(--dark-muted);
  font-size: 11px;
  line-height: 1.55;
}
.energy-page .energy-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 12px;
}
.energy-page .energy-form label {
  display: grid;
  gap: 8px;
}
.energy-page .energy-form input {
  width: 100%;
  height: 58px;
  padding: 0 16px;
  background: var(--dark);
  border: 1px solid rgba(255, 252, 246, 0.22);
  color: var(--dark-muted);
}
.energy-page .energy-form-bottom {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

@media (min-width: 1601px) {
  .energy-page .energy-thesis-panel {
    left: auto;
    right: max(54px, calc((100vw - var(--max)) / 2 + 78px));
    width: 560px;
  }
  .energy-page .energy-thesis-panel strong {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .energy-page .energy-thesis-panel span:nth-child(2n) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (min-width: 1181px) and (max-width: 1600px) {
  .energy-page .energy-hero-copy {
    top: 118px;
    width: min(860px, calc(100vw - 108px));
  }
  .energy-page .energy-hero-copy h1 {
    font-size: 78px;
  }
  .energy-page .energy-subline {
    font-size: 24px;
  }
  .energy-page .energy-body {
    max-width: 560px;
    margin-bottom: 20px;
    font-size: 15.5px;
  }
  .energy-page .energy-thesis-panel {
    bottom: 92px;
  }
}

@media (max-width: 1180px) {
  .about-platform {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 70px 46px 78px;
  }
  .about-platform-copy h2 {
    font-size: 52px;
  }
  .about-platform-story {
    padding-top: 0;
  }
  .energy-page .energy-story-bridge {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 76px 46px 84px;
  }
  .energy-page .energy-story-bridge h2 {
    font-size: 46px;
  }
  .energy-page .energy-story-copy {
    padding-top: 0;
  }
  .energy-page .energy-hero {
    min-height: 830px;
  }
  .energy-page .energy-hero-copy h1 {
    font-size: 72px;
  }
  .energy-page .energy-thesis-panel strong {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .energy-page .energy-thesis-panel span:nth-child(2n) {
    border-left: 0;
    padding-left: 0;
  }
  .energy-page .energy-section,
  .energy-page .energy-proof-section,
  .energy-page .energy-diagram-section,
  .energy-page .energy-cta {
    padding-left: 46px;
    padding-right: 46px;
  }
  .energy-page .energy-section h2,
  .energy-page .energy-proof-section h2,
  .energy-page .energy-diagram-section h2 {
    font-size: 46px;
  }
  .energy-page .energy-core-node {
    width: 190px;
  }
  .energy-page .energy-core-main {
    width: 238px;
  }
  .energy-page .energy-topology-diagram {
    padding: 18px 18px 50px;
  }
  .energy-page .topology-svg {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .about-platform {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 18px 56px;
  }
  .about-platform-copy h2 {
    font-size: 34px;
    line-height: 1.05;
  }
  .about-platform-story > p {
    font-size: 15.5px;
    line-height: 1.5;
  }
  .about-platform-grid {
    grid-template-columns: 1fr;
  }
  .about-platform-grid article {
    min-height: 0;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-platform-grid article:last-child {
    border-bottom: 0;
  }
  .about-platform-grid b {
    margin-bottom: 18px;
  }
  .energy-page .energy-nav {
    height: 60px;
    padding: 0 18px;
  }
  .energy-page .energy-nav .nav-links,
  .energy-page .energy-nav > .button {
    display: none;
  }
  .energy-page .energy-nav::after {
    display: none;
  }
  .energy-page .energy-brand {
    font-size: 16px;
  }
  .energy-page .energy-mark {
    width: 34px;
    height: 20px;
  }
  .energy-page .energy-hero {
    width: 100%;
    left: auto;
    transform: none;
    min-height: 780px;
  }
  .energy-page .energy-hero::before {
    background:
      linear-gradient(180deg, rgba(31, 29, 24, 0.82) 0%, rgba(31, 29, 24, 0.58) 52%, rgba(31, 29, 24, 0.30) 78%, rgba(31, 29, 24, 0.66) 100%),
      linear-gradient(90deg, rgba(31, 29, 24, 0.72), rgba(31, 29, 24, 0.14));
  }
  .energy-page .energy-hero-bg {
    object-position: 56% center;
  }
  .energy-page .energy-hero-copy {
    left: 18px;
    right: 18px;
    top: 88px;
    width: auto;
  }
  .energy-page .energy-hero-copy .section-label {
    margin-bottom: 20px;
    font-size: 11px;
  }
  .energy-page .energy-hero-copy h1 {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 18px;
  }
  .energy-page .energy-subline {
    font-size: 20px;
    line-height: 1.28;
  }
  .energy-page .energy-body {
    font-size: 14.5px;
    line-height: 1.52;
  }
  .energy-page .energy-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .energy-page .energy-actions .button {
    width: 100%;
  }
  .energy-page .energy-actions .button.light {
    display: none;
  }
  .energy-page .energy-thesis-panel {
    left: 18px;
    right: 18px;
    bottom: 10px;
    width: auto;
    padding: 16px;
  }
  .energy-page .energy-thesis-panel strong {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 17px;
  }
  .energy-page .energy-thesis-panel span {
    padding-left: 0;
    border-left: 0;
  }
  .energy-page .energy-metrics {
    grid-template-columns: 1fr;
  }
  .energy-page .energy-metrics .metric {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 252, 246, 0.14);
  }
  .energy-page .energy-metrics strong {
    font-size: 30px;
  }
  .energy-page .energy-story-bridge {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 48px 18px 54px;
  }
  .energy-page .energy-story-bridge h2 {
    font-size: 34px;
    line-height: 1.05;
  }
  .energy-page .energy-story-copy {
    gap: 18px;
  }
  .energy-page .energy-story-copy .lead {
    font-size: 17px;
    line-height: 1.45;
  }
  .energy-page .energy-story-copy p {
    font-size: 15px;
  }
  .energy-page .energy-section,
  .energy-page .energy-proof-section,
  .energy-page .energy-section-head,
  .energy-page .energy-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .energy-page .energy-section,
  .energy-page .energy-proof-section,
  .energy-page .energy-diagram-section,
  .energy-page .energy-cta {
    padding: 46px 18px 56px;
  }
  .energy-page .energy-section h2,
  .energy-page .energy-proof-section h2,
  .energy-page .energy-diagram-section h2,
  .energy-page .energy-cta h2 {
    font-size: 34px;
    line-height: 1.05;
  }
  .energy-page .energy-card-grid {
    grid-template-columns: 1fr;
  }
  .energy-page .energy-card-grid .energy-card,
  .energy-page .energy-card-grid .energy-card:last-child {
    border-right: 1px solid var(--line);
    margin-bottom: -1px;
  }
  .energy-page .energy-core-diagram {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 18px;
    background-size: 48px 48px;
  }
  .energy-page .energy-core-diagram::before,
  .energy-page .route {
    display: none;
  }
  .energy-page .energy-core-node,
  .energy-page .energy-core-main {
    position: static;
    width: 100%;
    min-height: 96px;
    transform: none;
    box-shadow: 6px 6px 0 rgba(236, 74, 36, 0.92);
  }
  .energy-page .energy-core-main {
    order: -1;
    box-shadow: 6px 6px 0 rgba(255, 252, 246, 0.92);
  }
  .energy-page .energy-investor-strip {
    grid-template-columns: 1fr;
  }
  .energy-page .energy-investor-strip div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 252, 246, 0.16);
  }
  .energy-page .energy-investor-strip div:last-child {
    border-bottom: 0;
  }
  .energy-page .energy-investor-strip strong {
    font-size: 30px;
  }
  .energy-page .energy-topology-diagram {
    padding: 18px;
  }
  .energy-page .topology-svg {
    min-height: 0;
    aspect-ratio: 1180 / 620;
  }
  .energy-page .topology-node text {
    font-size: 21px;
  }
  .energy-page .topology-mobile-list {
    display: grid;
    gap: 0;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
  }
  .energy-page .topology-mobile-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .energy-page .topology-mobile-list b {
    color: var(--accent);
    font-size: 11px;
  }
  .energy-page .topology-mobile-list span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
  }
  .energy-page .topology-note {
    position: static;
    max-width: none;
    margin-top: 16px;
  }
  .energy-page .cold-rate-grid {
    grid-template-columns: 1fr;
  }
  .energy-page .cold-rate-grid article,
  .energy-page .cold-rate-grid article:nth-child(2n),
  .energy-page .cold-rate-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--dark);
  }
  .energy-page .cold-rate-grid article:last-child {
    border-bottom: 0;
  }
  .energy-page .energy-proof-section {
    min-height: 0;
  }
  .energy-page .energy-proof-visual {
    height: auto;
    aspect-ratio: 560 / 420;
  }
  .energy-page .energy-developer {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    margin-top: 42px;
    margin-bottom: 42px;
  }
  .energy-page .energy-nsv {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .energy-page .energy-developer > div:last-child {
    padding: 24px 18px;
  }
  .energy-page .energy-developer h2 {
    font-size: 28px;
  }
  .energy-page .energy-form-bottom {
    grid-template-columns: 1fr;
  }
  .energy-page .energy-form .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .energy-page .topology-draw,
  .energy-page .topology-node {
    transition: none;
  }
  .energy-page .energy-scroll-reveal .topology-draw {
    stroke-dashoffset: 0;
  }
  .energy-page .energy-scroll-reveal .topology-node {
    opacity: 1;
  }
}

/* Energy v4.2 final polish: clean hero + branded isometric topology */
.energy-page .energy-hero {
  height: calc(100svh - 78px);
  min-height: 780px;
  background: #0b2029;
}
@supports (height: 100dvh) {
  .energy-page .energy-hero {
    height: calc(100dvh - 78px);
  }
}
.energy-page .energy-hero-copy {
  top: clamp(108px, 13vh, 146px);
  width: min(640px, calc(100vw - 108px));
}
.energy-page .energy-hero-copy h1 {
  font-size: clamp(70px, 5.6vw, 96px);
  line-height: 0.98;
  margin-bottom: 20px;
}
.energy-page .energy-subline {
  max-width: 560px;
  font-size: clamp(22px, 1.55vw, 28px);
}
.energy-page .energy-body {
  max-width: 570px;
  font-size: 16px;
}
.energy-page .energy-thesis-panel {
  bottom: clamp(36px, 6vh, 68px);
}
.energy-page .energy-topology-diagram.energy-isometry {
  padding: 28px 28px 58px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.82), rgba(243, 238, 228, 0.96)),
    var(--paper-2);
}
.energy-page .energy-topology-plate {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 0;
  aspect-ratio: 1376 / 768;
  background: var(--paper-2);
  border: 1px solid rgba(217, 209, 195, 0.74);
}
.energy-page .energy-topology-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0), rgba(236, 74, 36, 0.10), rgba(255, 252, 246, 0));
  transform: translateX(-120%);
  transition: transform 1500ms cubic-bezier(.2, .7, .2, 1);
}
.energy-page .energy-scroll-reveal.is-visible .energy-topology-plate::after {
  transform: translateX(120%);
}
.energy-page .energy-topology-plate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}
.energy-page .energy-isometry-svg {
  display: none;
  min-height: 620px;
  color: rgba(33, 31, 26, 0.68);
}
.energy-page .iso-grid-fill {
  fill: url(#iso-grid);
}
.energy-page .iso-plate {
  fill: rgba(236, 74, 36, 0.045);
  stroke: rgba(33, 31, 26, 0.32);
  stroke-width: 1.1;
}
.energy-page .iso-road {
  fill: none;
  stroke: rgba(33, 31, 26, 0.16);
  stroke-width: 1.4;
}
.energy-page .iso-building polygon,
.energy-page .yard-base,
.energy-page .container polygon,
.energy-page .chp-block polygon,
.energy-page .substation polygon,
.energy-page .boiler polygon {
  fill: rgba(255, 252, 246, 0.76);
  stroke: rgba(33, 31, 26, 0.38);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.energy-page .iso-building path,
.energy-page .container path,
.energy-page .chp-block path,
.energy-page .substation path,
.energy-page .boiler path,
.energy-page .chp-block circle,
.energy-page .substation rect {
  fill: none;
  stroke: rgba(33, 31, 26, 0.48);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.energy-page .yard-base {
  fill: rgba(255, 252, 246, 0.36);
}
.energy-page .yard-fence {
  fill: none;
  stroke: rgba(33, 31, 26, 0.30);
  stroke-dasharray: 7 7;
}
.energy-page .chp-block .stack,
.energy-page .boiler path {
  stroke: rgba(33, 31, 26, 0.54);
  stroke-width: 1.4;
}
.energy-page .iso-route {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.energy-page .route-gas {
  stroke: rgba(33, 31, 26, 0.58);
  stroke-dasharray: 8 8;
}
.energy-page .route-steam,
.energy-page .route-future {
  stroke: rgba(236, 74, 36, 0.58);
  stroke-dasharray: 4 8;
}
.energy-page .iso-label path:first-child {
  fill: rgba(255, 252, 246, 0.90);
  stroke: rgba(217, 209, 195, 0.92);
  stroke-width: 1;
}
.energy-page .iso-label path:last-child {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.2;
}
.energy-page .iso-label text {
  fill: var(--accent);
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  letter-spacing: 0;
}
.energy-page .iso-label .topology-subtext {
  fill: var(--accent);
  font-size: 10px;
}
.energy-page .topology-draw {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.energy-page .energy-scroll-reveal.is-visible .topology-draw {
  stroke-dashoffset: 0;
}
.energy-page .draw-10 {
  transition-delay: 860ms;
}

@media (min-width: 1601px) {
  .energy-page .energy-hero-copy {
    width: min(720px, calc(100vw - 108px));
  }
  .energy-page .energy-thesis-panel {
    width: 620px;
  }
}

@media (max-width: 1180px) {
  .energy-page .energy-hero {
    height: calc(100svh - 78px);
    min-height: 760px;
  }
  @supports (height: 100dvh) {
    .energy-page .energy-hero {
      height: calc(100dvh - 78px);
    }
  }
  .energy-page .energy-isometry-svg {
    min-height: 540px;
  }
}

@media (max-width: 900px) {
  .energy-page [id] {
    scroll-margin-top: 72px;
  }
  .energy-page .energy-hero {
    height: calc(100svh - 60px);
    min-height: 760px;
  }
  @supports (height: 100dvh) {
    .energy-page .energy-hero {
      height: calc(100dvh - 60px);
    }
  }
  .energy-page .energy-hero-copy {
    top: 92px;
  }
  .energy-page .energy-hero-copy h1 {
    font-size: 44px;
  }
  .energy-page .energy-body {
    max-width: 340px;
    font-size: 16px;
  }
  .energy-page .energy-topology-diagram.energy-isometry {
    padding: 16px 16px 20px;
  }
  .energy-page .energy-topology-plate {
    width: min(680px, 176vw);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .energy-page .energy-topology-plate img {
    object-position: 50% 50%;
  }
  .energy-page .energy-isometry-svg {
    min-height: 0;
    width: min(680px, 176vw);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
    aspect-ratio: 1220 / 720;
  }
  .energy-page .iso-label {
    display: none;
  }
  .energy-page .iso-label text {
    font-size: 22px;
  }
  .energy-page .iso-label .topology-subtext {
    font-size: 18px;
  }
}

/* Energy v4.3 story polish: investor copy, topology callouts, team/contact reuse */
.energy-page .energy-topology-plate {
  isolation: isolate;
}

.energy-page .energy-hero {
  height: calc(100svh - 78px - 54px);
  min-height: 740px;
}

@supports (height: 100dvh) {
  .energy-page .energy-hero {
    height: calc(100dvh - 78px - 54px);
  }
}

.energy-page .topology-callout {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  width: min(220px, 24%);
  min-height: 62px;
  padding: 10px 12px 11px;
  color: var(--ink);
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(33, 31, 26, 0.18);
  box-shadow: 0 18px 44px rgba(33, 31, 26, 0.10);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 420ms ease,
    transform 720ms cubic-bezier(.2, .8, .2, 1);
}

.energy-page .topology-callout::after {
  content: none; /* leader lines removed (user request) — plates stand on their own */
}

.energy-page .energy-scroll-reveal.is-visible .topology-callout {
  opacity: 1;
  transform: translateY(0);
}

.energy-page .topology-callout b {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--paper-2);
  background: var(--accent);
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.energy-page .topology-callout strong,
.energy-page .topology-callout small {
  display: block;
  min-width: 0;
  letter-spacing: 0;
}

.energy-page .topology-callout strong {
  padding-top: 1px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.08;
  font-weight: 600;
}

.energy-page .topology-callout small {
  margin-top: 5px;
  color: var(--muted);
  font-family: "Roboto Mono", monospace;
  font-size: 9.5px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-page .callout-yard {
  left: 13%;
  top: 29%;
  transition-delay: 220ms;
}

.energy-page .callout-yard::after {
  left: 72%;
  top: 76%;
  transform: rotate(24deg);
}

.energy-page .callout-substation {
  left: 34%;
  bottom: 10%;
  transition-delay: 330ms;
}

.energy-page .callout-substation::after {
  left: 54%;
  bottom: 100%;
  width: 46px;
  transform: rotate(-66deg);
}

.energy-page .callout-gas {
  left: 5%;
  bottom: 23%;
  width: min(252px, 28%);
  transition-delay: 440ms;
}

.energy-page .callout-gas::after {
  left: 78%;
  top: 46%;
  width: 74px;
  transform: rotate(-10deg);
}

.energy-page .callout-park {
  right: 14%;
  top: 17%;
  transition-delay: 550ms;
}

.energy-page .callout-park::after {
  right: 90%;
  top: 78%;
  transform: rotate(152deg);
}

.energy-page .callout-cold {
  right: 7%;
  bottom: 20%;
  transition-delay: 660ms;
}

.energy-page .callout-cold::after {
  right: 88%;
  top: 45%;
  width: 64px;
  transform: rotate(184deg);
}

.energy-page .callout-grid {
  right: 5%;
  top: 6%;
  transition-delay: 770ms;
}

.energy-page .callout-grid::after {
  right: 88%;
  top: 78%;
  width: 70px;
  transform: rotate(160deg);
}

.energy-page .energy-developer-section {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
  padding: 92px 72px;
  background: var(--paper);
}

.energy-page .energy-developer-section .developer-card {
  margin-top: 0;
}

.energy-page .energy-developer-section .developer-statement p {
  max-width: 880px;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.18;
}

.energy-page .energy-developer-section .developer-marker {
  min-height: 116px;
}

.energy-page .energy-contact-cta {
  width: auto;
  margin: 0 var(--section-pad-x-cap) 72px;
}

.energy-page .energy-contact-cta .section-label {
  color: var(--paper-2);
}

.energy-page .energy-contact-cta .section-label::before {
  background: var(--accent);
}

.energy-page .energy-contact-cta .cta-brand-lockup {
  align-self: end;
}

.energy-page .energy-contact-form {
  min-height: 100%;
}

.energy-page .energy-contact-form .field input,
.energy-page .energy-contact-form .field textarea {
  font-family: inherit;
}

@media (min-width: 1601px) {
  .energy-page .callout-yard {
    left: 14%;
    top: 30%;
  }

  .energy-page .callout-substation {
    bottom: 11%;
  }

  .energy-page .callout-park {
    right: 15%;
  }
}

@media (max-width: 1180px) {
  .energy-page .topology-callout {
    width: 204px;
  }

  .energy-page .topology-callout strong {
    font-size: 12px;
  }

  .energy-page .topology-callout small {
    font-size: 8.5px;
  }

  .energy-page .energy-developer-section {
    padding: 76px 46px;
  }

  .energy-page .energy-contact-cta {
    width: min(calc(100% - 92px), calc(var(--max) - 92px));
  }
}

@media (max-width: 900px) {
  .energy-page .topology-callout {
    width: 32px;
    min-height: 32px;
    padding: 0;
    grid-template-columns: 1fr;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(33, 31, 26, 0.18);
    background: var(--accent);
  }

  .energy-page .topology-callout::after,
  .energy-page .topology-callout strong,
  .energy-page .topology-callout small {
    display: none;
  }

  .energy-page .topology-callout b {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(255, 252, 246, 0.72);
  }

  .energy-page .callout-yard {
    left: 28%;
    top: 38%;
  }

  .energy-page .callout-substation {
    left: 43%;
    bottom: 16%;
  }

  .energy-page .callout-gas {
    left: 26%;
    bottom: 28%;
  }

  .energy-page .callout-park {
    right: 33%;
    top: 25%;
  }

  .energy-page .callout-cold {
    right: 30%;
    bottom: 27%;
  }

  .energy-page .callout-grid {
    right: 31%;
    top: 12%;
  }

  .energy-page .energy-hero {
    height: calc(100svh - 60px - 34px);
    min-height: 720px;
  }

  @supports (height: 100dvh) {
    .energy-page .energy-hero {
      height: calc(100dvh - 60px - 34px);
    }
  }

  .energy-page .energy-developer-section {
    padding: 46px 18px 56px;
  }

  .energy-page .energy-developer-section .developer-statement p {
    font-size: 20px;
    line-height: 1.22;
  }

  .energy-page .energy-contact-cta {
    width: auto;
    margin: 42px var(--section-pad-x) 50px;
  }
}

/* Energy v4.4: concise pitch narrative, schematic plates, team photography */
body.energy-page {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.energy-page .energy-hero {
  height: calc(100svh - 72px);
  min-height: 760px;
}

@supports (height: 100dvh) {
  .energy-page .energy-hero {
    height: calc(100dvh - 72px);
  }
}

.energy-page .energy-hero-copy {
  top: clamp(104px, 12vh, 142px);
  width: min(650px, calc(100vw - 108px));
}

.energy-page .energy-hero-copy h1 {
  font-family: "Inter", "Inter", sans-serif;
  font-size: clamp(76px, 6vw, 104px);
  letter-spacing: 0;
}

.energy-page .energy-subline {
  max-width: 540px;
  font-size: clamp(24px, 1.7vw, 30px);
}

.energy-page .energy-body {
  max-width: 560px;
}

.energy-page .energy-thesis-panel {
  width: min(620px, calc(100vw - 108px));
  bottom: clamp(34px, 5.5vh, 68px);
}

.energy-page .energy-thesis-panel strong {
  grid-template-columns: 1.15fr 0.85fr 1fr 0.85fr;
  font-size: 20px;
}

.energy-page .energy-context-board {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.energy-page .energy-context-board article {
  display: grid;
  grid-template-columns: 164px minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.energy-page .energy-context-board article:last-child {
  border-bottom: 0;
}

.energy-page .energy-context-board b {
  color: var(--accent);
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
}

.energy-page .energy-context-board strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 500;
}

.energy-page .energy-context-board span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.energy-page .energy-revenue-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  color: var(--paper-2);
  background:
    linear-gradient(90deg, rgba(255,252,246,0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,252,246,0.055) 1px, transparent 1px),
    var(--dark);
  background-size: 44px 44px;
  border: 1px solid var(--dark);
}

.energy-page .energy-revenue-map article {
  position: relative;
  min-height: 214px;
  padding: 24px 22px 28px;
  border-right: 1px solid rgba(255, 252, 246, 0.16);
}

.energy-page .energy-revenue-map article:last-child {
  border-right: 0;
}

.energy-page .energy-revenue-map article::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(.2, .8, .2, 1);
}

.energy-page .energy-scroll-reveal.is-visible .energy-revenue-map article::before,
.energy-page .energy-revenue-map.is-visible article::before {
  transform: scaleX(1);
}

.energy-page .energy-revenue-map span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
}

.energy-page .energy-revenue-map strong {
  display: block;
  max-width: 240px;
  color: var(--paper-2);
  font-size: 25px;
  line-height: 1.08;
  font-weight: 500;
}

.energy-page .energy-revenue-map p {
  margin: 18px 0 0;
  color: rgba(255, 252, 246, 0.68);
  font-size: 16px;
  line-height: 1.45;
}

.energy-page .energy-expansion-plate,
.energy-page .energy-cold-plate {
  position: relative;
  margin: 0;
  overflow: hidden;
  color: var(--accent);
  background:
    linear-gradient(90deg, rgba(33,31,26,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(33,31,26,0.045) 1px, transparent 1px),
    var(--paper-2);
  background-size: 32px 32px;
  border: 1px solid var(--line);
}

.energy-page .energy-expansion-plate {
  min-height: 470px;
}

.energy-page .energy-expansion-plate svg,
.energy-page .energy-cold-plate svg {
  display: block;
  width: 100%;
  height: auto;
}

.energy-page .energy-expansion-plate figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: rgba(33, 31, 26, 0.58);
  font-size: 9.5px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-page .plate-grid-line {
  fill: none;
  stroke: rgba(33, 31, 26, 0.10);
  stroke-width: 1;
}

.energy-page .plate-node {
  fill: rgba(255, 252, 246, 0.90);
  stroke: rgba(33, 31, 26, 0.38);
  stroke-width: 1.2;
}

.energy-page .plate-node.node-core {
  fill: var(--dark);
  stroke: var(--dark);
}

.energy-page .plate-node.node-core + text,
.energy-page .plate-node.node-core + text + text {
  fill: var(--paper-2);
}

.energy-page .energy-expansion-plate text,
.energy-page .energy-cold-plate text {
  fill: var(--ink);
  font-family: "Roboto Mono", monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.energy-page .energy-expansion-plate .plate-small,
.energy-page .energy-cold-plate .plate-small {
  font-size: 10px;
  font-weight: 400;
}

.energy-page .blueprint-draw {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  transition: stroke-dashoffset 1300ms cubic-bezier(.2, .8, .2, 1);
}

.energy-page .route-alt {
  stroke: rgba(33, 31, 26, 0.54);
  stroke-dasharray: 7 8;
}

.energy-page .energy-scroll-reveal.is-visible .blueprint-draw {
  stroke-dashoffset: 0;
}

.energy-page .energy-expansion-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.energy-page .energy-expansion-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.energy-page .energy-expansion-list b {
  color: var(--accent);
  font-size: 12px;
}

.energy-page .energy-expansion-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.energy-page .energy-cold-plate {
  min-height: 250px;
  margin-bottom: 4px;
}

.energy-page .cold-rate-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.energy-page .cold-rate-grid article,
.energy-page .cold-rate-grid article:nth-child(2n),
.energy-page .cold-rate-grid article:nth-child(-n + 2),
.energy-page .cold-rate-grid article:nth-last-child(-n + 2) {
  min-height: 150px;
  border-right: 1px solid var(--dark);
  border-bottom: 0;
}

.energy-page .cold-rate-grid article:last-child {
  border-right: 0;
}

.energy-page .cold-rate-grid b {
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.04;
}

.energy-page .energy-team-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 430px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,252,246,0.82), rgba(255,252,246,0.58));
}

.energy-page .energy-team-intro {
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.energy-page .energy-team-logo {
  width: min(220px, 80%);
  height: auto;
  display: block;
}

.energy-page .energy-team-intro h3 {
  max-width: 420px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(32px, 2.9vw, 44px);
  line-height: 1.04;
  font-weight: 400;
}

.energy-page .energy-team-intro p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

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

.energy-page .energy-person,
.energy-page .energy-operator {
  min-height: 430px;
  display: grid;
  grid-template-rows: 1fr auto;
  border-right: 1px solid var(--line);
}

.energy-page .energy-person:nth-child(2) {
  border-right: 0;
}

.energy-page .energy-person img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
}

.energy-page .energy-person:nth-child(2) img {
  object-position: 50% 34%;
}

.energy-page .energy-person div,
.energy-page .energy-operator div {
  min-height: 96px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.72);
}

.energy-page .energy-person b {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 500;
}

.energy-page .energy-person span,
.energy-page .energy-operator span {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-size: 10.5px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-page .energy-operator {
  grid-column: 1 / -1;
  min-height: 144px;
  grid-template-columns: 156px minmax(0, 1fr);
  grid-template-rows: auto;
  border-top: 1px solid var(--line);
  border-right: 0;
}

.energy-page .energy-operator img {
  width: 100%;
  height: 100%;
  max-height: 154px;
  padding: 28px;
  object-fit: contain;
  border-right: 1px solid var(--line);
}

.energy-page .energy-operator div {
  display: grid;
  align-content: center;
  min-height: 144px;
  border-top: 0;
}

.energy-page .energy-operator b {
  color: var(--accent);
  font-size: 12px;
}

.energy-page .energy-cta-logo {
  width: 116px;
  height: 88px;
  object-fit: contain;
}

.energy-page .callout-substation {
  left: 43%;
  bottom: 13%;
}

.energy-page .callout-park {
  right: 26%;
  top: 20%;
}

.energy-page .callout-cold {
  right: 3%;
  bottom: 18%;
}

.energy-page .callout-grid {
  right: 2%;
  top: 6%;
}

.energy-page .topology-callout {
  opacity: 1;
  transform: none;
}

@media (min-width: 1601px) {
  .energy-page .energy-hero-copy {
    left: max(54px, calc((100vw - var(--max)) / 2 + 78px));
    width: min(700px, calc(100vw - 108px));
  }

  .energy-page .energy-thesis-panel {
    right: max(54px, calc((100vw - var(--max)) / 2 + 78px));
    width: 590px;
  }
}

@media (max-width: 1180px) {
  .energy-page .energy-context-board article {
    grid-template-columns: 128px minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 18px;
  }

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

  .energy-page .energy-revenue-map article:nth-child(2) {
    border-right: 0;
  }

  .energy-page .energy-revenue-map article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 252, 246, 0.16);
  }

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

  .energy-page .cold-rate-grid article:nth-child(2n) {
    border-right: 0;
  }

  .energy-page .cold-rate-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--dark);
  }

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

  .energy-page .energy-team-intro {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .energy-page .energy-hero {
    height: auto;
    min-height: 720px;
  }

  .energy-page .energy-hero-copy {
    top: 92px;
    width: auto;
  }

  .energy-page .energy-hero-copy h1 {
    font-size: clamp(52px, 15vw, 72px);
    line-height: 0.96;
  }

  .energy-page .energy-subline {
    max-width: 330px;
    font-size: 21px;
  }

  .energy-page .energy-body {
    max-width: 330px;
    font-size: 13.5px;
  }

  .energy-page .energy-thesis-panel {
    bottom: 16px;
  }

  .energy-page .energy-thesis-panel strong {
    grid-template-columns: 1fr;
    font-size: 17px;
  }

  .energy-page .energy-context-board article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .energy-page .energy-context-board strong {
    font-size: 20px;
  }

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

  .energy-page .energy-revenue-map article,
  .energy-page .energy-revenue-map article:nth-child(2) {
    min-height: 178px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 252, 246, 0.16);
  }

  .energy-page .energy-revenue-map article:last-child {
    border-bottom: 0;
  }

  .energy-page .energy-revenue-map span {
    margin-bottom: 28px;
  }

  .energy-page .energy-revenue-map strong {
    font-size: 22px;
  }

  .energy-page .energy-proof-section > div {
    order: 1;
  }

  .energy-page .energy-expansion-plate {
    order: 2;
    min-height: 0;
  }

  .energy-page .energy-expansion-plate svg {
    width: 100%;
  }

  .energy-page .energy-expansion-plate figcaption {
    position: static;
    padding: 0 16px 16px;
  }

  .energy-page .energy-cold-plate svg {
    width: 100%;
  }

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

  .energy-page .cold-rate-grid article,
  .energy-page .cold-rate-grid article:nth-child(2n),
  .energy-page .cold-rate-grid article:nth-child(-n + 2) {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--dark);
  }

  .energy-page .cold-rate-grid article:last-child {
    border-bottom: 0;
  }

  .energy-page .cold-rate-grid b {
    font-size: 25px;
  }

  .energy-page .energy-team-intro {
    min-height: 0;
    padding: 22px 18px 24px;
  }

  .energy-page .energy-team-logo {
    width: 168px;
  }

  .energy-page .energy-team-intro h3 {
    font-size: 28px;
  }

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

  .energy-page .energy-person,
  .energy-page .energy-operator {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .energy-page .energy-person img {
    min-height: 260px;
    aspect-ratio: 16 / 12;
  }

  .energy-page .energy-person:last-of-type {
    border-bottom: 0;
  }

  .energy-page .energy-operator {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .energy-page .energy-operator img {
    padding: 18px;
  }

  .energy-page .energy-operator div {
    min-height: 112px;
    padding: 16px;
  }

  .energy-page .energy-cta-logo {
    width: 96px;
    height: 74px;
  }

  .energy-page .callout-substation {
    left: 53%;
    bottom: 19%;
  }

  .energy-page .callout-park {
    right: 42%;
    top: 29%;
  }

  .energy-page .callout-cold {
    right: 24%;
    bottom: 27%;
  }

  .energy-page .callout-grid {
    right: 24%;
    top: 10%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .energy-page .blueprint-draw,
  .energy-page .energy-revenue-map article::before {
    transition: none;
    stroke-dashoffset: 0;
    transform: none;
  }
}

/* Energy v4.5: Nano Banana section illustrations derived from the approved topology map */
.energy-page .energy-visual-plate {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1376 / 768;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.energy-page .energy-visual-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0), rgba(236, 74, 36, 0.08), rgba(255, 252, 246, 0));
  transform: translateX(-120%);
  transition: transform 1500ms cubic-bezier(.2, .7, .2, 1);
}

.energy-page .energy-scroll-reveal.is-visible.energy-visual-plate::after {
  transform: translateX(120%);
}

.energy-page .energy-visual-plate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.energy-page .energy-expansion-plate,
.energy-page .energy-cold-plate {
  min-height: 0;
}

.energy-page .energy-expansion-plate figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  max-width: 88%;
  margin: 0;
  padding: 8px 10px;
  color: rgba(33, 31, 26, 0.62);
  background: rgba(255, 252, 246, 0.76);
  border: 1px solid rgba(33, 31, 26, 0.10);
  font-size: 9px;
  line-height: 1.32;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.energy-page .energy-cold-plate {
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .energy-page .energy-topology-plate {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }

  .energy-page .energy-expansion-plate,
  .energy-page .energy-cold-plate {
    width: 100%;
    aspect-ratio: 1376 / 768;
  }

  .energy-page .energy-expansion-plate figcaption {
    position: static;
    max-width: none;
    padding: 10px 12px 12px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    background: rgba(255, 252, 246, 0.88);
  }
}

/* Energy v4.6: master typography rhythm, clearer pitch story, lighter investor surfaces */
body.energy-page {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.energy-page .energy-hero-copy h1 {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(78px, 7.2vw, 112px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0;
  padding-bottom: 0.04em;
}

.energy-page .energy-subline {
  max-width: 650px;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.28;
  font-weight: 500;
}

.energy-page .energy-body {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.56;
}

.energy-page .energy-story-bridge,
.energy-page .energy-section,
.energy-page .energy-proof-section,
.energy-page .energy-diagram-section {
  padding-left: 70px;
  padding-right: 70px;
}

.energy-page .energy-story-bridge,
.energy-page .energy-section,
.energy-page .energy-proof-section,
.energy-page .energy-section-head {
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 76px;
}

.energy-page .energy-story-bridge {
  padding-top: 76px;
  padding-bottom: 96px;
}

.energy-page .energy-section,
.energy-page .energy-proof-section {
  padding-top: 76px;
  padding-bottom: 96px;
}

.energy-page .energy-section h2,
.energy-page .energy-proof-section h2,
.energy-page .energy-diagram-section h2,
.energy-page .energy-story-bridge h2 {
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
  padding-bottom: 0.12em;
}

.energy-page .lead,
.energy-page .energy-story-copy .lead {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.46;
}

.energy-page .energy-story-copy {
  gap: 22px;
  padding-top: 2px;
}

.energy-page .energy-story-copy p:not(.lead) {
  font-size: 17px;
  line-height: 1.54;
}

.energy-page .energy-role {
  min-height: 0;
}

.energy-page .energy-context-copy {
  display: grid;
  gap: 28px;
  align-content: start;
}

.energy-page .energy-pressure-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(33, 31, 26, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(33, 31, 26, 0.045) 1px, transparent 1px),
    rgba(255, 252, 246, 0.72);
  background-size: 34px 34px;
}

.energy-page .energy-pressure-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(33, 31, 26, 0.10);
  pointer-events: none;
}

.energy-page .pressure-node,
.energy-page .pressure-core {
  position: absolute;
  z-index: 2;
  width: 190px;
  min-height: 92px;
  padding: 15px 16px 16px;
  background: rgba(255, 252, 246, 0.90);
  border: 1px solid rgba(33, 31, 26, 0.22);
}

.energy-page .pressure-node b {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 11px;
}

.energy-page .pressure-node strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
}

.energy-page .pressure-node span,
.energy-page .pressure-core span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-page .pressure-core {
  left: 50%;
  top: 50%;
  width: 228px;
  min-height: 104px;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: var(--paper-2);
  border-color: var(--accent);
}

.energy-page .pressure-core b {
  display: block;
  font-size: 25px;
  line-height: 1.02;
  font-weight: 500;
}

.energy-page .pressure-core span {
  color: rgba(255, 252, 246, 0.82);
}

.energy-page .pressure-damaged {
  left: 24px;
  top: 28px;
}

.energy-page .pressure-grid {
  right: 28px;
  top: 42px;
}

.energy-page .pressure-industry {
  left: 44px;
  bottom: 30px;
}

.energy-page .pressure-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: var(--accent);
  opacity: 0.72;
  transform-origin: left center;
}

.energy-page .line-a {
  left: 202px;
  top: 116px;
  width: 190px;
  transform: rotate(24deg) scaleX(0);
}

.energy-page .line-b {
  right: 206px;
  top: 122px;
  width: 186px;
  transform: rotate(154deg) scaleX(0);
}

.energy-page .line-c {
  left: 216px;
  bottom: 102px;
  width: 174px;
  transform: rotate(-20deg) scaleX(0);
}

.energy-page .energy-pressure-visual.is-visible .pressure-line {
  animation: pressure-line-draw 900ms cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes pressure-line-draw {
  to {
    transform: rotate(var(--line-rotate, 0deg)) scaleX(1);
  }
}

.energy-page .line-a { --line-rotate: 24deg; }
.energy-page .line-b { --line-rotate: 154deg; }
.energy-page .line-c { --line-rotate: -20deg; }

.energy-page .energy-context-board {
  margin-top: 0;
}

.energy-page .energy-investor-strip {
  background: var(--paper-2);
  color: var(--ink);
  border-color: var(--line-strong);
}

.energy-page .energy-investor-strip div {
  border-right: 1px solid var(--line);
}

.energy-page .energy-investor-strip strong {
  color: var(--accent);
  font-size: clamp(27px, 2vw, 32px);
  font-weight: 400;
}

.energy-page .energy-investor-strip span {
  color: var(--muted);
}

.energy-page .energy-revenue-map {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(33, 31, 26, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(33, 31, 26, 0.045) 1px, transparent 1px),
    var(--paper-2);
  border-color: var(--line);
}

.energy-page .energy-revenue-map article {
  min-height: 196px;
  border-right: 1px solid var(--line);
}

.energy-page .energy-revenue-map article:nth-child(-n + 4) {
  border-bottom: 0;
}

.energy-page .energy-revenue-map strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
}

.energy-page .energy-revenue-map p {
  color: var(--muted);
}

.energy-page .energy-revenue-map article::before {
  background: var(--accent);
}

.energy-page .callout-park {
  right: 39%;
  top: 18%;
}

.energy-page .callout-park::after {
  right: 88%;
  top: 58%;
  width: 62px;
  transform: rotate(168deg);
}

.energy-page .energy-developer-section {
  padding-top: 48px;
  padding-bottom: 58px;
}

.energy-page .energy-team-card {
  grid-template-columns: 0.42fr 0.58fr;
  min-height: 0;
}

.energy-page .energy-team-intro {
  min-height: 310px;
  padding: 28px;
  gap: 24px;
}

.energy-page .energy-team-logo {
  width: 150px;
  max-width: 72%;
}

.energy-page .energy-team-intro h3 {
  font-size: clamp(31px, 2.35vw, 38px);
  line-height: 1.04;
}

.energy-page .energy-team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.energy-page .energy-person {
  min-height: 238px;
  grid-template-rows: auto;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.energy-page .energy-person:nth-child(2) {
  border-right: 0;
}

.energy-page .energy-person img {
  width: 104px;
  height: 104px;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.energy-page .energy-person:nth-child(2) img {
  object-position: 50% 34%;
}

.energy-page .energy-person div {
  min-height: 0;
  padding: 0;
  border-top: 0;
  background: transparent;
}

.energy-page .energy-person b {
  font-size: 22px;
}

.energy-page .energy-operator {
  min-height: 112px;
  grid-template-columns: 116px minmax(0, 1fr);
}

.energy-page .energy-operator img {
  max-height: 112px;
  padding: 24px;
}

.energy-page .energy-operator div {
  min-height: 112px;
  padding: 20px 22px;
}

.energy-page .energy-contact-cta {
  margin-top: 72px;
}

@media (max-width: 1180px) {
  .energy-page .energy-story-bridge,
  .energy-page .energy-section,
  .energy-page .energy-proof-section,
  .energy-page .energy-section-head {
    gap: 46px;
  }

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

  .energy-page .energy-team-intro {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .energy-page .energy-hero-copy h1 {
    font-size: clamp(52px, 14vw, 72px);
    line-height: 0.96;
  }

  .energy-page .energy-actions {
    display: none;
  }

  .energy-page .energy-story-bridge,
  .energy-page .energy-section,
  .energy-page .energy-proof-section,
  .energy-page .energy-diagram-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .energy-page .energy-story-bridge,
  .energy-page .energy-section,
  .energy-page .energy-proof-section,
  .energy-page .energy-section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .energy-page .energy-section h2,
  .energy-page .energy-proof-section h2,
  .energy-page .energy-diagram-section h2,
  .energy-page .energy-story-bridge h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .energy-page .lead,
  .energy-page .energy-story-copy .lead {
    font-size: 17px;
    line-height: 1.48;
  }

  .energy-page .energy-pressure-visual {
    min-height: 520px;
  }

  .energy-page .pressure-node,
  .energy-page .pressure-core {
    left: 18px;
    right: 18px;
    width: auto;
    transform: none;
  }

  .energy-page .pressure-damaged {
    top: 18px;
    bottom: auto;
  }

  .energy-page .pressure-grid {
    top: 136px;
  }

  .energy-page .pressure-industry {
    top: 254px;
    bottom: auto;
  }

  .energy-page .pressure-core {
    top: 386px;
  }

  .energy-page .pressure-line {
    display: none;
  }

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

  .energy-page .energy-investor-strip div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .energy-page .energy-investor-strip div:last-child {
    border-bottom: 0;
  }

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

  .energy-page .energy-revenue-map article,
  .energy-page .energy-revenue-map article:nth-child(2) {
    min-height: 164px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .energy-page .energy-revenue-map article:last-child {
    border-bottom: 0;
  }

  .energy-page .callout-park {
    right: 46%;
    top: 31%;
  }

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

  .energy-page .energy-person {
    min-height: 0;
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .energy-page .energy-person img {
    width: 82px;
    height: 82px;
  }

  .energy-page .energy-operator {
    grid-template-columns: 90px minmax(0, 1fr);
  }
}

/* Energy v4.7: master header, cleaner story blocks, cold economics, compact team */
.energy-page .energy-nav {
  height: 78px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2 + 48px));
  background: rgba(255, 252, 246, 0.94);
}

.energy-page .energy-master-brand {
  width: 112px;
  height: 46px;
}

.energy-page .energy-master-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.energy-page .energy-nav .nav-links {
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
}

.energy-page .energy-nav > .button {
  min-width: 154px;
}

.energy-page .energy-hero-copy {
  top: clamp(112px, 13vh, 148px);
  width: min(760px, calc(100vw - 108px));
}

.energy-page .energy-subline {
  max-width: 720px;
  margin-bottom: 28px;
}

.energy-page .energy-thesis-panel {
  width: min(760px, calc(100vw - 108px));
  padding: 18px 20px 20px;
  color: var(--ink);
  background: rgba(255, 252, 246, 0.84);
  border: 1px solid rgba(255, 252, 246, 0.54);
  box-shadow: 0 18px 52px rgba(31, 29, 24, 0.18);
}

.energy-page .energy-thesis-panel > div {
  margin-bottom: 12px;
}

.energy-page .energy-thesis-panel strong {
  grid-template-columns: 1.1fr 0.86fr 1.05fr 1fr;
  gap: 14px;
  color: var(--ink);
  font-size: 18px;
}

.energy-page .energy-thesis-panel span {
  color: var(--muted);
  border-left: 1px solid rgba(33, 31, 26, 0.16);
}

.energy-page .energy-metrics {
  display: none;
}

.energy-page .energy-story-bridge {
  min-height: 520px;
  align-items: start;
}

.energy-page .energy-story-copy {
  gap: 26px;
}

.energy-page .energy-platform-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.energy-page .energy-platform-proof article {
  min-height: 148px;
  padding: 22px 20px 24px;
  border-right: 1px solid var(--line);
}

.energy-page .energy-platform-proof article:last-child {
  border-right: 0;
}

.energy-page .energy-platform-proof b {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-page .energy-platform-proof span {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
}

.energy-page .energy-context-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.energy-page .energy-context-metrics article {
  min-height: 142px;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: center;
}

.energy-page .energy-context-metrics article:last-child {
  border-right: 0;
}

.energy-page .energy-context-metrics strong {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.04;
  font-weight: 400;
}

.energy-page .energy-context-metrics span {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.38;
  text-transform: uppercase;
}

.energy-page .energy-context-board {
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}

.energy-page .energy-context-board article {
  grid-template-columns: 170px minmax(0, 0.8fr) minmax(0, 1fr);
}

.energy-page .energy-revenue-section {
  background: var(--paper);
}

.energy-page .energy-investor-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: var(--line);
  background: var(--paper-2);
}

.energy-page .energy-investor-strip div {
  min-height: 132px;
  padding: 22px 20px;
}

.energy-page .energy-revenue-map {
  margin-top: 34px;
  background: var(--paper-2);
  border-color: var(--line);
}

.energy-page .energy-revenue-map article {
  min-height: 176px;
  padding: 22px 22px 24px;
}

.energy-page .energy-revenue-map span {
  margin-bottom: 28px;
}

.energy-page .energy-revenue-map strong {
  font-size: 22px;
  line-height: 1.1;
}

.energy-page .callout-park {
  left: 45%;
  right: auto;
  top: 15%;
}

.energy-page .callout-park::after {
  left: -30px;
  top: 62%;
  right: auto;
  width: 88px;
  transform: rotate(154deg);
}

.energy-page .energy-cold-section {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
}

.energy-page .energy-cold-copy {
  gap: 22px;
}

.energy-page .energy-cold-plate {
  width: 100%;
  max-width: 100%;
}

.energy-page .cold-rate-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.energy-page .cold-rate-grid article,
.energy-page .cold-rate-grid article:nth-child(2n),
.energy-page .cold-rate-grid article:nth-last-child(-n + 2) {
  min-height: 160px;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  background: transparent;
}

.energy-page .cold-rate-grid article:last-child {
  border-right: 0;
}

.energy-page .cold-rate-grid b {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-page .cold-rate-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.04;
  font-weight: 400;
}

.energy-page .cold-rate-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.energy-page .energy-cold-copy .cold-all-in-note {
  margin: 0;
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(255, 252, 246, 0.58);
  border: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.46;
  text-transform: none;
}

.energy-page .energy-developer-section {
  padding-top: 38px;
  padding-bottom: 46px;
}

.energy-page .energy-team-card {
  grid-template-columns: 0.5fr 0.5fr;
  min-height: 256px;
}

.energy-page .energy-team-intro {
  min-height: 256px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  align-content: center;
}

.energy-page .energy-team-logo {
  width: 92px;
  max-width: none;
}

.energy-page .energy-team-intro h3 {
  max-width: 430px;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.06;
}

.energy-page .energy-team-intro p {
  max-width: 460px;
  font-size: 15px;
}

.energy-page .energy-person {
  min-height: 128px;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 18px 22px;
  gap: 16px;
}

.energy-page .energy-person img {
  width: 58px;
  height: 58px;
}

.energy-page .energy-person b {
  font-size: 19px;
}

.energy-page .energy-person span,
.energy-page .energy-operator span {
  margin-top: 7px;
  font-size: 9.5px;
}

.energy-page .energy-operator {
  min-height: 94px;
  grid-template-columns: 84px minmax(0, 1fr);
}

.energy-page .energy-operator img {
  max-height: 94px;
  padding: 18px;
}

.energy-page .energy-operator div {
  min-height: 94px;
  padding: 16px 20px;
}

@media (max-width: 1180px) {
  .energy-page .energy-platform-proof,
  .energy-page .energy-context-metrics,
  .energy-page .cold-rate-grid {
    grid-template-columns: 1fr;
  }

  .energy-page .energy-platform-proof article,
  .energy-page .energy-context-metrics article,
  .energy-page .cold-rate-grid article,
  .energy-page .cold-rate-grid article:nth-child(2n),
  .energy-page .cold-rate-grid article:nth-child(-n + 2),
  .energy-page .cold-rate-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .energy-page .energy-platform-proof article:last-child,
  .energy-page .energy-context-metrics article:last-child,
  .energy-page .cold-rate-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .energy-page .energy-nav {
    height: 60px;
    padding: 0 18px;
  }

  .energy-page .energy-master-brand {
    width: 92px;
    height: 38px;
  }

  .energy-page .energy-hero-copy {
    width: auto;
  }

  .energy-page .energy-thesis-panel {
    width: auto;
    left: 18px;
    right: 18px;
  }

  .energy-page .energy-thesis-panel strong {
    grid-template-columns: 1fr;
    font-size: 16px;
  }

  .energy-page .energy-story-bridge {
    min-height: 0;
  }

  .energy-page .energy-platform-proof article,
  .energy-page .energy-context-metrics article {
    min-height: 112px;
  }

  .energy-page .energy-context-board article {
    grid-template-columns: 1fr;
  }

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

  .energy-page .energy-investor-strip div {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .energy-page .energy-investor-strip div:last-child {
    border-bottom: 0;
  }

  .energy-page .callout-park {
    left: auto;
    right: 42%;
    top: 28%;
  }

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

  .energy-page .cold-rate-grid article,
  .energy-page .cold-rate-grid article:nth-child(2n),
  .energy-page .cold-rate-grid article:nth-last-child(-n + 2) {
    min-height: 126px;
  }

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

  .energy-page .energy-team-intro {
    min-height: 0;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 18px;
  }

  .energy-page .energy-team-logo {
    width: 74px;
  }

  .energy-page .energy-team-intro h3 {
    font-size: 24px;
  }

  .energy-page .energy-person {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 16px 18px;
  }

  .energy-page .energy-person img {
    width: 54px;
    height: 54px;
  }
}

/* Energy v4.8: final section rhythm, topology callout alignment, cold economics, compact team */
.energy-page .energy-master-brand {
  display: flex;
  flex: 0 0 64px;
  align-items: center;
  justify-content: flex-start;
  width: 64px;
  height: 56px;
}

.energy-page .energy-master-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.energy-page .energy-thesis-panel {
  display: none;
}

.energy-page .energy-hero-copy {
  top: clamp(118px, 15vh, 156px);
}

.energy-page .energy-subline {
  max-width: 620px;
  font-size: clamp(22px, 1.72vw, 28px);
  line-height: 1.28;
}

.energy-page .energy-story-bridge {
  min-height: 548px;
  align-items: end;
  padding-top: 84px;
  padding-bottom: 92px;
}

.energy-page .energy-story-bridge h2,
.energy-page .energy-section h2,
.energy-page .energy-proof-section h2,
.energy-page .energy-diagram-section h2 {
  max-width: 720px;
}

.energy-page .energy-story-copy {
  align-self: end;
}

.energy-page .energy-platform-proof article {
  min-height: 166px;
  padding: 24px 22px 26px;
}

.energy-page .energy-platform-proof b {
  margin-bottom: 30px;
}

.energy-page .energy-platform-proof span {
  font-size: 20px;
  line-height: 1.22;
}

.energy-page .energy-context-copy {
  gap: 30px;
}

.energy-page .energy-context-metrics article {
  min-height: 150px;
  padding: 22px 20px;
}

.energy-page .energy-context-board article {
  padding-top: 28px;
  padding-bottom: 28px;
}

.energy-page .energy-revenue-copy {
  display: grid;
  align-content: start;
  gap: 28px;
}

.energy-page .energy-investor-strip div {
  min-height: 126px;
}

.energy-page .energy-diagram-section .energy-section-head {
  align-items: end;
}

.energy-page .callout-park {
  left: 40.2%;
  right: auto;
  top: 14.2%;
  width: min(234px, 25%);
}

.energy-page .callout-park::after {
  left: 18px;
  right: auto;
  top: calc(100% + 4px);
  width: 136px;
  transform: rotate(151deg);
}

.energy-page .energy-cold-section {
  grid-template-columns: minmax(0, 0.37fr) minmax(0, 0.63fr);
  gap: 72px;
  padding-top: 84px;
  padding-bottom: 92px;
}

.energy-page .energy-cold-section h2 {
  max-width: 560px;
  font-size: clamp(40px, 4.2vw, 62px);
}

.energy-page .energy-cold-copy {
  gap: 20px;
}

.energy-page .energy-cold-copy .lead {
  max-width: 720px;
}

.energy-page .energy-cold-plate img {
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.energy-page .cold-rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.energy-page .cold-rate-grid article,
.energy-page .cold-rate-grid article:nth-child(2n),
.energy-page .cold-rate-grid article:nth-last-child(-n + 2) {
  min-height: 186px;
  padding: 22px 20px;
  border-right: 1px solid rgba(33, 31, 26, 0.16);
  border-bottom: 1px solid rgba(33, 31, 26, 0.16);
}

.energy-page .cold-rate-grid article:nth-child(2n) {
  border-right: 0;
}

.energy-page .cold-rate-grid article:last-child {
  border-right: 0;
  border-bottom: 0;
}

.energy-page .cold-rate-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.energy-page .cold-rate-card b {
  margin: 0 0 8px;
}

.energy-page .cold-rate-card > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 13px;
  border-top: 1px solid rgba(33, 31, 26, 0.12);
}

.energy-page .cold-rate-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.energy-page .cold-rate-card strong {
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 1.9vw, 30px);
  line-height: 1.04;
  text-align: right;
}

.energy-page .cold-saving-card {
  grid-column: 1 / -1;
  min-height: 118px;
  grid-template-columns: 178px minmax(0, 1fr) minmax(0, 0.78fr);
  align-items: center;
  gap: 24px;
}

.energy-page .cold-saving-card > div {
  display: block;
  padding-top: 0;
  border-top: 0;
}

.energy-page .cold-saving-card strong {
  display: block;
  margin-top: 7px;
  text-align: left;
}

.energy-page .cold-saving-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.energy-page .energy-cold-copy .cold-all-in-note {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.48;
}

.energy-page .energy-developer-section {
  padding-top: 52px;
  padding-bottom: 58px;
}

.energy-page .energy-team-card {
  grid-template-columns: 0.48fr 0.52fr;
  min-height: 226px;
}

.energy-page .energy-team-intro {
  min-height: 226px;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 26px;
}

.energy-page .energy-team-logo {
  width: 64px;
  max-width: none;
}

.energy-page .energy-team-intro h3 {
  max-width: 480px;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.08;
}

.energy-page .energy-team-intro p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.44;
}

.energy-page .energy-person {
  min-height: 96px;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 18px;
}

.energy-page .energy-person img {
  width: 44px;
  height: 44px;
}

.energy-page .energy-person b {
  font-size: 18px;
}

.energy-page .energy-operator {
  min-height: 76px;
  grid-template-columns: 58px minmax(0, 1fr);
}

.energy-page .energy-operator img {
  max-height: 76px;
  padding: 14px;
}

.energy-page .energy-operator div {
  min-height: 76px;
  padding: 13px 18px;
}

@media (max-width: 1180px) {
  .energy-page .cold-rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .energy-page .cold-rate-grid article,
  .energy-page .cold-rate-grid article:nth-child(2n),
  .energy-page .cold-rate-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(33, 31, 26, 0.16);
  }

  .energy-page .cold-saving-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .energy-page .energy-hero-copy {
    top: auto;
  }

  .energy-page .energy-story-bridge {
    min-height: 0;
    align-items: start;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .energy-page .energy-story-copy {
    align-self: start;
  }

  .energy-page .energy-platform-proof article {
    min-height: 118px;
  }

  .energy-page .energy-platform-proof span {
    font-size: 18px;
  }

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

  .energy-page .energy-context-metrics article,
  .energy-page .energy-context-metrics article:last-child {
    min-height: 118px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .energy-page .energy-context-metrics article:nth-child(2n) {
    border-right: 0;
  }

  .energy-page .energy-context-metrics article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .energy-page .energy-investor-strip div {
    min-height: 88px;
  }

  .energy-page .callout-park {
    left: 36%;
    right: auto;
    top: 20%;
  }

  .energy-page .callout-park::after {
    left: 12px;
    top: calc(100% + 2px);
    width: 82px;
  }

  .energy-page .topology-callout {
    display: block;
    width: 34px;
    min-height: 34px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
  }

  .energy-page .topology-callout b {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--paper-2);
    background: var(--accent);
    border: 1px solid rgba(255, 252, 246, 0.82);
    box-shadow: 0 10px 22px rgba(31, 29, 24, 0.16);
  }

  .energy-page .topology-callout strong,
  .energy-page .topology-callout small,
  .energy-page .topology-callout::after {
    display: none;
  }

  .energy-page .callout-park {
    width: 34px;
  }

  .energy-page .energy-cold-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 50px;
    padding-bottom: 62px;
  }

  .energy-page .energy-cold-section h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

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

  .energy-page .cold-rate-grid article,
  .energy-page .cold-rate-grid article:nth-child(2n),
  .energy-page .cold-rate-grid article:nth-child(-n + 2),
  .energy-page .cold-rate-grid article:nth-last-child(-n + 2),
  .energy-page .cold-rate-grid article:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(33, 31, 26, 0.16);
  }

  .energy-page .cold-rate-grid article:last-child {
    border-bottom: 0;
  }

  .energy-page .cold-rate-card > div {
    display: grid;
    gap: 7px;
  }

  .energy-page .cold-rate-card strong {
    text-align: left;
  }

  .energy-page .cold-saving-card {
    grid-template-columns: 1fr;
  }

  .energy-page .energy-team-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .energy-page .energy-team-intro {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 18px;
  }

  .energy-page .energy-team-logo {
    width: 52px;
  }

  .energy-page .energy-team-intro h3 {
    font-size: 23px;
  }

  .energy-page .energy-person {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 84px;
  }

  .energy-page .energy-person img {
    width: 42px;
    height: 42px;
  }
}

/* Energy v4.9: robust mid-width layout, equal visuals, clearer cold economics */
.energy-page .energy-proof-section,
.energy-page .energy-cold-section {
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 76px;
}

.energy-page .energy-expansion-plate img,
.energy-page .energy-cold-plate img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.energy-page .cold-economics-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(33, 31, 26, 0.18);
  background: rgba(255, 252, 246, 0.58);
}

.energy-page .cold-mode-card {
  min-height: 206px;
  padding: 22px 22px 24px;
  border-bottom: 1px solid rgba(33, 31, 26, 0.16);
}

.energy-page .cold-mode-card:first-child {
  border-right: 1px solid rgba(33, 31, 26, 0.16);
}

.energy-page .cold-mode-card b,
.energy-page .cold-saving-panel b {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-page .rate-compare {
  display: grid;
  gap: 18px;
}

.energy-page .rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: baseline;
}

.energy-page .rate-row span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.energy-page .rate-row strong {
  color: var(--ink);
  font-size: clamp(21px, 1.55vw, 25px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.energy-page .rate-row i {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  border-radius: 999px;
}

.energy-page .mode-chilled {
  --park-bar: 76;
}

.energy-page .mode-frozen {
  --park-bar: 58;
}

.energy-page .park-rate i {
  width: calc(var(--park-bar) * 1%);
  background: var(--accent);
}

.energy-page .market-rate i {
  width: 100%;
  background: rgba(33, 31, 26, 0.18);
}

.energy-page .cold-saving-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 150px minmax(200px, 0.42fr) minmax(0, 1fr);
  gap: 18px 26px;
  align-items: center;
  padding: 22px;
}

.energy-page .cold-saving-panel b {
  margin: 0;
}

.energy-page .cold-saving-panel strong {
  color: var(--accent);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

@media (min-width: 1181px) {
  .energy-page .energy-proof-section {
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  }

  .energy-page .energy-cold-section {
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  }

  .energy-page .energy-proof-section h2,
  .energy-page .energy-cold-section h2 {
    font-size: clamp(42px, 4.35vw, 62px);
  }
}

.energy-page .cold-saving-panel span {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
}

.energy-page .cold-saving-panel p {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.46;
}

.energy-page .energy-team-card {
  grid-template-columns: 1fr;
  min-height: 0;
}

.energy-page .energy-team-intro {
  min-height: 0;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(33, 31, 26, 0.14);
}

.energy-page .energy-team-logo {
  width: 52px;
}

.energy-page .energy-team-intro h3 {
  max-width: 820px;
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.08;
}

.energy-page .energy-team-intro p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.42;
}

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

.energy-page .energy-person {
  min-height: 76px;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 16px;
}

.energy-page .energy-person img {
  width: 36px;
  height: 36px;
}

.energy-page .energy-person b {
  font-size: 16px;
}

.energy-page .energy-person span,
.energy-page .energy-operator span {
  margin-top: 4px;
  font-size: 9px;
}

.energy-page .energy-operator {
  min-height: 76px;
  grid-template-columns: 54px minmax(0, 1fr);
}

.energy-page .energy-operator img {
  max-height: 76px;
  padding: 14px;
}

.energy-page .energy-operator div {
  min-height: 76px;
  padding: 13px 16px;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .energy-page .energy-story-bridge,
  .energy-page .energy-section,
  .energy-page .energy-proof-section,
  .energy-page .energy-diagram-section {
    padding-left: 46px;
    padding-right: 46px;
  }

  .energy-page .energy-story-bridge,
  .energy-page .energy-section,
  .energy-page .energy-proof-section,
  .energy-page .energy-section-head,
  .energy-page .energy-cold-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .energy-page .energy-story-bridge {
    min-height: 0;
    align-items: start;
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .energy-page .energy-story-copy,
  .energy-page .energy-revenue-copy {
    align-self: start;
    max-width: none;
  }

  .energy-page .energy-story-bridge h2,
  .energy-page .energy-section h2,
  .energy-page .energy-proof-section h2,
  .energy-page .energy-diagram-section h2 {
    max-width: 820px;
    font-size: clamp(44px, 5.7vw, 60px);
  }

  .energy-page .lead,
  .energy-page .energy-story-copy .lead {
    max-width: 820px;
    font-size: 20px;
  }

  .energy-page .energy-platform-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .energy-page .energy-platform-proof article,
  .energy-page .energy-platform-proof article:last-child {
    min-height: 136px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .energy-page .energy-platform-proof article:last-child {
    border-right: 0;
  }

  .energy-page .energy-platform-proof b {
    margin-bottom: 22px;
  }

  .energy-page .energy-platform-proof span {
    font-size: 18px;
  }

  .energy-page .energy-context-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .energy-page .energy-context-metrics article,
  .energy-page .energy-context-metrics article:last-child {
    min-height: 126px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .energy-page .energy-context-metrics article:last-child {
    border-right: 0;
  }

  .energy-page .energy-context-board article {
    grid-template-columns: 160px minmax(0, 0.9fr) minmax(0, 1fr);
  }

  .energy-page .energy-expansion-plate,
  .energy-page .energy-cold-plate {
    max-width: 760px;
  }

  .energy-page .energy-cold-copy {
    max-width: 820px;
  }

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

@media (max-width: 900px) {
  .energy-page .energy-proof-section,
  .energy-page .energy-cold-section {
    grid-template-columns: 1fr;
  }

  .energy-page .cold-economics-board {
    grid-template-columns: 1fr;
  }

  .energy-page .cold-mode-card,
  .energy-page .cold-mode-card:first-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(33, 31, 26, 0.16);
  }

  .energy-page .cold-mode-card b,
  .energy-page .cold-saving-panel b {
    margin-bottom: 18px;
  }

  .energy-page .cold-saving-panel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .energy-page .cold-saving-panel strong,
  .energy-page .cold-saving-panel span,
  .energy-page .cold-saving-panel p {
    grid-column: auto;
    grid-row: auto;
  }

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

/* Final layout QA contract / route pages + Energy */
.route-page .route-hero {
  min-height: 100svh;
}

@supports (height: 100dvh) {
  .route-page .route-hero {
    min-height: 100dvh;
  }
}

.port-hero .route-hero-bg {
  object-position: 50% 50%;
}

.park-hero .route-hero-bg {
  object-position: 52% 50%;
}

.route-hero h1,
.energy-page .energy-hero-copy h1 {
  padding-bottom: 0.08em;
}

.route-hero p {
  max-width: 660px;
}

.route-thesis-panel {
  bottom: clamp(76px, 9.2vh, 118px);
}

.route-bridge,
.route-section,
.route-partner-section,
.route-evidence-section {
  padding-top: clamp(76px, 7vw, 104px);
  padding-bottom: clamp(82px, 7.6vw, 112px);
}

.route-bridge h2,
.route-section h2 {
  max-width: 720px;
}

.route-metric-board strong,
.port-evidence-board strong,
.energy-page .energy-context-metrics strong,
.energy-page .energy-investor-strip strong,
.energy-page .cold-rate-grid strong,
.energy-page .cold-saving-panel strong {
  line-height: 1.12;
}

.energy-page .energy-hero {
  min-height: calc(100svh - 78px);
}

@supports (height: 100dvh) {
  .energy-page .energy-hero {
    min-height: calc(100dvh - 78px);
  }
}

.energy-page .topology-callout {
  height: auto;
  min-height: 70px;
  overflow: visible;
  row-gap: 2px;
}

.energy-page .topology-callout strong {
  line-height: 1.16;
}

.energy-page .topology-callout small {
  line-height: 1.32;
}

.energy-page .callout-park {
  left: 41.5%;
  right: auto;
  top: 13%;
  width: min(248px, 26%);
}

.energy-page .callout-park::after {
  left: 20px;
  right: auto;
  top: calc(100% + 4px);
  width: 124px;
  transform: rotate(151deg);
}

.energy-page .energy-cold-plate img,
.energy-page .energy-expansion-plate img {
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.energy-page .energy-team-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.energy-page .energy-person,
.energy-page .energy-operator {
  min-height: 74px;
}

@media (max-width: 900px) {
  .route-page .route-hero {
    min-height: 100svh;
  }

  @supports (height: 100dvh) {
    .route-page .route-hero {
      min-height: 100dvh;
    }
  }

  .route-page .route-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    height: 72px;
    padding: 0 20px;
    background: linear-gradient(180deg, rgba(243, 238, 228, 0.94), rgba(243, 238, 228, 0.58) 72%, rgba(243, 238, 228, 0));
    color: var(--ink);
  }

  .route-page .route-nav::before {
    content: "Horonda";
    padding-left: 28px;
    background: linear-gradient(var(--accent), var(--accent)) left center / 18px 12px no-repeat;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-shadow: 0 1px 16px rgba(255, 252, 246, 0.48);
  }

  .route-page .route-nav::after {
    content: "Menu";
    color: rgba(33, 31, 26, 0.78);
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    line-height: 1;
  }

  .route-page .route-nav .nav-links,
  .route-page .route-nav > .button,
  .route-page .route-nav .brand {
    display: none;
  }

  .route-hero-copy {
    bottom: 196px;
  }

  .route-thesis-panel {
    bottom: 28px;
  }

  .route-hero p {
    max-width: 340px;
  }

  .energy-page .energy-hero {
    min-height: calc(100svh - 60px);
  }

  @supports (height: 100dvh) {
    .energy-page .energy-hero {
      min-height: calc(100dvh - 60px);
    }
  }

  .energy-page .topology-callout {
    min-height: 34px;
    row-gap: 0;
  }

  .energy-page .callout-park {
    left: 39%;
    top: 15%;
    width: 34px;
  }
}

/* Route design refinement / hero parity + wide-screen polish */
.route-page {
  overflow-x: clip;
}

.route-page .route-shell {
  overflow: visible;
}

.route-page .route-hero {
  isolation: isolate;
}

.route-page .route-hero-bg {
  width: 100vw;
  max-width: none;
}

.port-hero .route-hero-bg {
  object-position: 50% 48%;
}

.park-hero .route-hero-bg {
  object-position: 53% 49%;
}

.route-hero::after {
  background:
    radial-gradient(ellipse at 18% 76%, rgba(243,238,228,0.92), rgba(243,238,228,0.60) 33%, rgba(243,238,228,0) 61%),
    linear-gradient(180deg, rgba(33,31,26,0.12), rgba(33,31,26,0.02) 38%, rgba(243,238,228,0.70) 100%),
    linear-gradient(90deg, rgba(243,238,228,0.42), rgba(243,238,228,0.08) 56%, rgba(33,31,26,0.04));
}

.energy-page .energy-hero {
  min-height: 100svh;
  height: 100svh;
  isolation: isolate;
}

@supports (height: 100dvh) {
  .energy-page .energy-hero {
    min-height: 100dvh;
    height: 100dvh;
  }
}

.energy-page .energy-hero::before {
  background:
    radial-gradient(ellipse at 18% 76%, rgba(243,238,228,0.88), rgba(243,238,228,0.50) 33%, rgba(243,238,228,0) 62%),
    linear-gradient(90deg, rgba(243,238,228,0.48), rgba(243,238,228,0.12) 56%, rgba(13,10,8,0.30)),
    linear-gradient(180deg, rgba(13,10,8,0.32), rgba(13,10,8,0.04) 38%, rgba(243,238,228,0.66) 100%);
}

.energy-page .energy-hero::after {
  background:
    radial-gradient(ellipse at 78% 20%, rgba(236,74,36,0.16), rgba(236,74,36,0) 36%),
    linear-gradient(180deg, rgba(243,238,228,0), rgba(243,238,228,0) 62%, var(--paper) 100%);
}

.energy-page .energy-hero-copy {
  left: max(70px, calc((100vw - var(--max)) / 2 + 70px));
  top: auto;
  bottom: 92px;
  width: min(760px, calc(100vw - 140px));
}

.energy-page .energy-hero-copy .section-label {
  margin-bottom: 28px;
  color: var(--accent);
  text-shadow: 0 1px 22px rgba(255,252,246,0.58);
}

.energy-page .energy-hero-copy .section-label::before {
  background: var(--accent);
}

.energy-page .energy-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--accent);
  font-size: clamp(74px, 9vw, 130px);
  line-height: 0.9;
  font-weight: 700;
  text-shadow: 0 10px 34px rgba(255,252,246,0.36);
}

.energy-page .energy-subline {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(33,31,26,0.84);
  font-size: 23px;
  line-height: 1.36;
  font-weight: 500;
  text-shadow: 0 12px 34px rgba(255,252,246,0.50);
}

.energy-page .energy-actions {
  margin-top: 34px;
  gap: 14px;
}

.energy-page .energy-actions .button {
  min-width: 218px;
}

.energy-page .energy-actions .button.light {
  color: var(--ink);
  background: var(--paper-2);
  border-color: var(--line);
}

.energy-page .energy-thesis-panel {
  right: max(70px, calc((100vw - var(--max)) / 2 + 70px));
  left: auto;
  bottom: 100px;
  width: 370px;
  padding: 24px 26px 25px;
  color: var(--ink);
  background: rgba(255,252,246,0.88);
  border: 1px solid rgba(33,31,26,0.18);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.energy-page .energy-thesis-panel > div {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
}

.energy-page .energy-thesis-panel strong {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
  font-weight: 700;
}

.energy-page .energy-thesis-panel span {
  padding-left: 0;
  border-left: 0;
  color: var(--ink);
}

.route-bridge,
.route-section,
.route-partner-section,
.route-evidence-section,
.energy-page .energy-story-bridge,
.energy-page .energy-section,
.energy-page .energy-proof-section,
.energy-page .energy-diagram-section,
.energy-page .energy-developer-section {
  border-bottom-color: rgba(33,31,26,0.16);
}

.route-bridge-copy > .lead,
.route-copy > .lead,
.energy-page .energy-story-copy > .lead,
.energy-page .energy-context-copy > .lead,
.energy-page .energy-revenue-copy > .lead,
.energy-page .energy-cold-copy > .lead {
  padding: 18px 0 18px 22px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(255,252,246,0.54), rgba(255,252,246,0));
}

.route-proof-strip,
.route-grid-compact,
.route-resident-grid,
.route-partner-grid,
.route-metric-board,
.port-evidence-board,
.port-service-grid,
.energy-page .energy-platform-proof,
.energy-page .energy-context-metrics,
.energy-page .energy-investor-strip,
.energy-page .energy-revenue-map,
.energy-page .energy-expansion-list,
.energy-page .cold-economics-board {
  box-shadow: 0 22px 70px rgba(33,31,26,0.045);
}

.route-proof-strip article,
.route-grid-compact article,
.route-resident-grid article,
.route-partner-grid article,
.route-metric-board article,
.port-evidence-board article,
.port-service-grid article,
.energy-page .energy-platform-proof article,
.energy-page .energy-context-metrics article,
.energy-page .energy-investor-strip div,
.energy-page .energy-revenue-map article,
.energy-page .energy-expansion-list div,
.energy-page .cold-economics-board article,
.energy-page .cold-saving-panel {
  transition: background 180ms ease, transform 180ms ease;
}

.route-proof-strip article:hover,
.route-grid-compact article:hover,
.route-resident-grid article:hover,
.route-partner-grid article:hover,
.route-metric-board article:hover,
.port-evidence-board article:hover,
.port-service-grid article:hover,
.energy-page .energy-platform-proof article:hover,
.energy-page .energy-context-metrics article:hover,
.energy-page .energy-investor-strip div:hover,
.energy-page .energy-revenue-map article:hover,
.energy-page .energy-expansion-list div:hover,
.energy-page .cold-economics-board article:hover,
.energy-page .cold-saving-panel:hover {
  background: rgba(255,252,246,0.76);
  transform: translateY(-1px);
}

.route-visual-card,
.route-visual-plate,
.energy-page .energy-visual-plate,
.energy-page .energy-topology-diagram {
  border-color: rgba(33,31,26,0.18);
  box-shadow: 0 28px 90px rgba(33,31,26,0.06);
}

@media (min-width: 1601px) {
  .route-hero-copy,
  .energy-page .energy-hero-copy {
    left: calc((100vw - var(--max)) / 2 + 70px);
  }

  .route-thesis-panel,
  .energy-page .energy-thesis-panel {
    right: calc((100vw - var(--max)) / 2 + 70px);
  }
}

@media (max-width: 1180px) {
  .energy-page .energy-hero-copy {
    left: 42px;
    bottom: 150px;
    width: min(720px, calc(100vw - 84px));
  }

  .energy-page .energy-thesis-panel {
    left: 42px;
    right: 42px;
    bottom: 42px;
    width: auto;
  }
}

@media (max-width: 900px) {
  .route-page {
    overflow-x: hidden;
  }

  .energy-page .energy-hero {
    min-height: calc(100svh - 60px);
    height: calc(100svh - 60px);
  }

  @supports (height: 100dvh) {
    .energy-page .energy-hero {
      min-height: calc(100dvh - 60px);
      height: calc(100dvh - 60px);
    }
  }

  .energy-page .energy-hero::before {
    background:
      linear-gradient(180deg, rgba(13,10,8,0.26), rgba(13,10,8,0.14) 28%, rgba(243,238,228,0.72) 100%),
      radial-gradient(ellipse at 50% 74%, rgba(243,238,228,0.72), rgba(243,238,228,0.38) 38%, rgba(243,238,228,0) 64%);
  }

  .energy-page .energy-hero-copy {
    left: 24px;
    right: 24px;
    bottom: 196px;
    width: auto;
  }

  .energy-page .energy-hero-copy .section-label {
    color: var(--accent);
  }

  .energy-page .energy-hero-copy h1 {
    font-size: clamp(56px, 18vw, 82px);
    line-height: 0.9;
  }

  .energy-page .energy-subline {
    max-width: 340px;
    font-size: 19px;
    color: rgba(33,31,26,0.86);
  }

  .energy-page .energy-actions .button {
    min-width: 0;
    width: calc(50% - 7px);
    padding: 0 12px;
  }

  .energy-page .energy-actions {
    display: flex;
    margin-top: 26px;
  }

  .energy-page .energy-thesis-panel {
    display: block;
    left: 24px;
    right: 24px;
    bottom: 28px;
    width: auto;
    padding: 18px;
  }

  .energy-page .energy-thesis-panel > div {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .energy-page .energy-thesis-panel strong {
    font-size: 17px;
    gap: 7px;
  }

  .route-bridge-copy > .lead,
  .route-copy > .lead,
  .energy-page .energy-story-copy > .lead,
  .energy-page .energy-context-copy > .lead,
  .energy-page .energy-revenue-copy > .lead,
  .energy-page .energy-cold-copy > .lead {
    padding: 14px 0 14px 16px;
  }
}

/* ===== Blueprint illustrations (isometric line-drawings on warm paper) ===== */
/* Show the full technical drawing, no crop; the card hugs the image (no seam). */
.route-visual-card.route-blueprint,
.route-visual-plate.route-blueprint,
.energy-page .energy-blueprint {
  aspect-ratio: auto;
  background: var(--paper);
}
.route-visual-card.route-blueprint img,
.route-visual-plate.route-blueprint img,
.energy-page .energy-blueprint img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.port-evidence-visual {
  margin-top: 34px;
}
/* Energy island: two investable-block drawings side by side */
.energy-page .energy-blueprint-pair {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.energy-page .energy-blueprint {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
@media (max-width: 760px) {
  .energy-page .energy-blueprint-pair {
    grid-template-columns: 1fr;
  }
}
/* Energy island pair: equal-height cards (contain on paper = invisible letterbox) */
.energy-page .energy-blueprint {
  aspect-ratio: auto;
}
.energy-page .energy-blueprint img {
  position: relative;
  inset: auto;
  height: auto;
}
/* Wide isometric blueprint as a full-width band above the copy (no side-column void) */
.route-figure-band {
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}
.route-figure-band .route-blueprint {
  order: -1;
  width: 100%;
}
.route-figure-band > div .lead {
  max-width: 64ch;
}

/* ===================== Subpage QA refactor (2026-06-14) ===================== */

/* (a) Width-clip fix — band grid track must shrink below image min-content, AND reset the
       browser default <figure> 40px inline margin that pushed band figures past the viewport */
.route-figure-band .route-blueprint { min-width: 0; }
.route-blueprint,
.energy-page .energy-blueprint { margin: 0; }

/* (b) Immersive hero nav — gradient scrim over the hero; solidifies on scroll
       (.is-scrolled toggled by a small inline script). Removes the hard band that "cut" the hero. */
.route-page .route-nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.route-page .route-nav.is-scrolled {
  background: rgba(243,238,228,0.92);
  border-bottom-color: rgba(33,31,26,0.10);
  backdrop-filter: blur(10px);
}
.energy-page .energy-nav {
  position: fixed;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.energy-page .energy-nav.is-scrolled {
  background: rgba(255,252,246,0.94);
  border-bottom-color: rgba(33,31,26,0.10);
  backdrop-filter: blur(10px);
}
.energy-page .energy-hero { min-height: 100svh; height: auto; }
.energy-page .energy-nav .nav-links a { color: rgba(255,252,246,0.82); transition: color .3s ease; }
.energy-page .energy-nav .nav-links a[href="#top"] { color: #ffffff; }
.energy-page .energy-nav.is-scrolled .nav-links a { color: rgba(33,31,26,0.78); }
.energy-page .energy-nav.is-scrolled .nav-links a[href="#top"] { color: var(--accent); }
.energy-page .energy-master-brand img { filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.4)); transition: filter .3s ease; }
.energy-page main > section { scroll-margin-top: 88px; }

/* (c) Moat line (Port / Terminal) */
.route-moat {
  margin-top: 22px;
  padding: 13px 0 13px 18px;
  border-left: 2px solid var(--accent);
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.42;
  color: var(--ink);
}
.route-moat strong { font-weight: 700; }

/* (d) Mobile: comfortable padding, real compact cross-nav, no dead "Menu", calmer hero h1 */
@media (max-width: 900px) {
  .route-page .route-nav { background: transparent; }
  .route-page .route-nav.is-scrolled { background: rgba(243,238,228,0.95); }
  .energy-page .energy-nav { background: transparent; }
  .energy-page .energy-nav.is-scrolled { background: rgba(255,252,246,0.96); }
  .route-page .route-nav::after { content: none; }
  .route-page .route-nav .nav-links,
  .energy-page .energy-nav .nav-links {
    display: flex;
    gap: 15px;
    font-size: 13px;
  }
  .route-page .route-nav .nav-links a[href^="index.html#"],
  .energy-page .energy-nav .nav-links a[href^="index.html#"] { display: none; }
  .energy-page .energy-nav > .button { display: none; }
  .route-bridge,
  .route-section,
  .route-partner-section,
  .route-evidence-section {
    padding-left: 22px;
    padding-right: 22px;
  }
  .route-hero h1 { font-size: clamp(52px, 15vw, 72px); }
  .route-hero-copy { left: 22px; width: calc(100vw - 44px); }
  .route-thesis-panel { left: 22px; right: 22px; width: auto; }
}

/* (e) Remove the hero's dark top-veil — with the scrim nav it created a faint brightness
       step (a pale line) right at the nav's bottom edge. Keep the bottom paper glow for copy. */
.route-hero::after {
  background:
    radial-gradient(ellipse at 18% 76%, rgba(243,238,228,0.92), rgba(243,238,228,0.60) 33%, rgba(243,238,228,0) 61%),
    linear-gradient(180deg, rgba(33,31,26,0.0), rgba(33,31,26,0.0) 42%, rgba(243,238,228,0.70) 100%),
    linear-gradient(90deg, rgba(243,238,228,0.42), rgba(243,238,228,0.08) 56%, rgba(33,31,26,0.04));
}

/* (f) Match subpage nav height to the accepted umbrella nav (84px) so the menu does not
       shift vertically between the main page and the subpages. Desktop only. */
@media (min-width: 901px) {
  .route-page .route-nav,
  .energy-page .energy-nav {
    height: 84px;
  }
}

/* (g) Transparent hero nav — legibility via text/drop shadows + energy menu centering */
.route-page .route-nav .nav-links a {
  text-shadow: 0 1px 10px rgba(255, 252, 246, 0.6);
}
.route-page .route-master-brand img {
  filter: drop-shadow(0 1px 7px rgba(11, 32, 41, 0.28));
  transition: filter .3s ease;
}
.energy-page .energy-nav .nav-links a {
  text-shadow: 0 1px 12px rgba(11, 32, 41, 0.62);
}
.route-page .route-nav.is-scrolled .nav-links a,
.energy-page .energy-nav.is-scrolled .nav-links a {
  text-shadow: none;
}
.route-page .route-nav.is-scrolled .route-master-brand img {
  filter: none;
}
/* Energy menu: center the links on the page like the umbrella/route nav (was space-between → drifted ~51px left) */
@media (min-width: 901px) {
  .energy-page .energy-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 42px;
    padding-right: 42px;
  }
  .energy-page .energy-master-brand {
    position: absolute;
    left: max(32px, calc((100vw - var(--max)) / 2 + 32px));
    top: 50%;
    transform: translateY(-50%);
  }
  .energy-page .energy-nav > .button {
    position: absolute;
    right: max(32px, calc((100vw - var(--max)) / 2 + 32px));
    top: 50%;
    transform: translateY(-50%);
  }
}

/* (h) Port blueprints: smaller, centred, neater + adaptive (were full-width ~1300px) */
.route-figure-band .route-blueprint {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.port-evidence-visual {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* (i) Stacked section language — full-width header (label -> h2 -> lead), then a full-width grid.
       Replaces the heading-left / info-right split that crammed card grids into a 54% column. */
.route-stack {
  display: block;
}
.route-stack > :first-child {
  max-width: 720px;
  margin-bottom: 16px;
}
.route-stack .lead {
  max-width: 680px;
}
.route-stack .route-copy,
.route-stack .route-bridge-copy {
  gap: 30px;
}
/* In a stacked section, cap a lone blueprint/visual card so it stays neat (e.g. Park plot plan) */
.route-stack .route-visual-card.route-blueprint {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* (j) Energy: same stacked language for the heading-left content sections (#case #role #revenue #cold) */
.energy-page .energy-stack {
  display: block !important;
}
.energy-page .energy-stack > :first-child {
  max-width: 720px;
  margin-bottom: 20px;
}
.energy-page .energy-stack .lead {
  max-width: 680px;
}
.energy-page .energy-stack > * + * {
  margin-top: 30px;
}

/* (l) Scrolled nav must never blend with a same-colour section — float it: whiter bg + soft shadow */
.route-page .route-nav.is-scrolled,
.energy-page .energy-nav.is-scrolled {
  background: rgba(255, 254, 246, 0.9);
  border-bottom-color: rgba(33, 31, 26, 0.12);
  box-shadow: 0 12px 30px -14px rgba(11, 32, 41, 0.26);
}

/* (m) Embedded-illustration sections — header on top, then [illustration | concise copy + woven stats], centred */
.route-embed { display: block; }
.route-embed-head { max-width: 720px; margin-bottom: 32px; }
.route-embed-body {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 50px;
  align-items: start;
}
.route-embed-body .route-embed-copy { padding-top: 4px; }
.route-embed-copy { display: grid; gap: 22px; align-content: center; }
.route-embed-body .route-visual-plate,
.route-embed-body .route-visual-card { margin: 0; max-width: 100%; }
.route-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.route-stat-row article { padding: 15px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.route-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.route-stat-grid article { padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.route-stat-row strong, .route-stat-grid strong { display: block; font-size: 19px; line-height: 1.1; font-weight: 700; }
.route-stat-row span, .route-stat-grid span { display: block; margin-top: 6px; font-size: 11px; color: var(--muted); }
@media (max-width: 900px) {
  .route-embed-body { grid-template-columns: 1fr; gap: 30px; }
}

/* (n) Mobile QA fixes — nav tap targets, stat strips, energy hero h1 */
@media (max-width: 900px) {
  .route-page .route-nav .nav-links a,
  .energy-page .energy-nav .nav-links a {
    font-size: 12px;
    padding: 11px 2px;
  }
}
@media (max-width: 560px) {
  .route-stat-row strong, .route-stat-grid strong { font-size: 14px; }
  .route-stat-row span, .route-stat-grid span { font-size: 10px; line-height: 1.25; }
  .route-stat-row article { padding: 11px 9px 7px; }
  .energy-page .energy-hero-copy h1 { font-size: clamp(44px, 13vw, 58px); }
}

/* (o) Energy cold-storage embedded into its section (image + caption beside the economics story) */
.energy-page .energy-cold-embed-body {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 46px;
  align-items: start;
}
.energy-page .energy-cold-embed-body .energy-cold-plate { margin: 0; }
.energy-page .energy-cold-text { display: grid; gap: 24px; align-content: start; }
.energy-page .energy-cold-embed-body .cold-economics-board { grid-template-columns: 1fr; }
@media (max-width: 900px) {
  .energy-page .energy-cold-embed-body { grid-template-columns: 1fr; gap: 30px; }
}

/* (p) Mobile polish — cards hug their content instead of a fixed tall min-height */
@media (max-width: 600px) {
  .route-grid-compact article,
  .port-service-grid article,
  .route-proof-strip article,
  .route-resident-grid article { min-height: auto; }
}

/* (q) Energy section headings -> bold, to match Port/Park (Energy was the light 400 weight) */
.energy-page .energy-story-bridge h2,
.energy-page .energy-section h2,
.energy-page .energy-proof-section h2,
.energy-page .energy-diagram-section h2 {
  font-weight: 700;
}

/* (r) Tablet adaptivity — even-count card grids go 2-col on tablet instead of wasting space at 1-col */
@media (min-width: 561px) and (max-width: 900px) {
  .port-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .port-service-grid article { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .port-service-grid article:nth-child(2n) { border-right: 0; }
  .port-service-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .route-resident-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-resident-grid article { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .route-resident-grid article:nth-child(2n) { border-right: 0; }
  .route-resident-grid article:nth-last-child(-n+2) { border-bottom: 0; }
}

/* (s) Energy hero thesis panel — show + position bottom-right exactly like Port's (was display:none) */
.energy-page .energy-hero .energy-thesis-panel {
  display: grid;
  position: absolute;
  z-index: 3;
  left: auto;
  right: max(70px, calc((100vw - var(--max)) / 2 + 70px));
  bottom: clamp(76px, 9.2vh, 118px);
  width: 370px;
  padding: 24px 26px 25px;
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(33, 31, 26, 0.18);
}
.energy-page .energy-hero .energy-thesis-panel .mono { color: var(--accent); font-size: 12px; margin-bottom: 18px; }
.energy-page .energy-hero .energy-thesis-panel strong { display: grid; gap: 10px; font-size: 20px; line-height: 1.12; font-weight: 700; color: var(--ink); }
.energy-page .energy-hero .energy-thesis-panel span { display: block; }

/* (t) Energy figures inside a route-embed body (e.g. #cluster) fill the column like Port */
.route-embed-body figure { margin: 0; max-width: 100%; }
.route-embed-body .energy-visual-plate img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }

/* (u) Energy 05/06 — data-storytelling: phased build-out + cold-storage economics */
.energy-phase-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 42px;
}
.energy-phase-track .phase {
  padding: 22px 24px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.energy-phase-track .phase > .mono { display: block; font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.energy-phase-track .phase b { display: block; font-size: 30px; font-weight: 700; line-height: 1; color: var(--ink); }
.energy-phase-track .phase b.mw { color: var(--accent); }
.energy-phase-track .phase b.t { font-size: 21px; line-height: 1.08; }
.energy-phase-track .phase b .u { font-size: 16px; }
.energy-phase-track .bar { height: 7px; background: var(--paper); border: 1px solid var(--line); margin: 14px 0 16px; }
.energy-phase-track .bar i { display: block; height: 100%; background: var(--accent); }
.energy-phase-track .phase p { margin: 0; font-size: 15px; line-height: 1.45; color: var(--muted); }

.energy-cold-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 38px;
}
.energy-cold-compare .mode {
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 22px 24px;
}
.energy-cold-compare .cc-mode { display: block; font-size: 12px; font-weight: 500; color: var(--ink); margin-bottom: 20px; }
.energy-cold-compare .cc-row { display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 12px; margin-bottom: 14px; }
.energy-cold-compare .cc-label { font-size: 11px; color: var(--muted); }
.energy-cold-compare .cc-track { height: 13px; border-radius: 3px; background: var(--paper); border: 1px solid var(--line); position: relative; overflow: hidden; }
.energy-cold-compare .cc-track i { position: absolute; inset: 0 auto 0 0; }
.energy-cold-compare .cc-row.park .cc-track i { background: var(--accent); }
.energy-cold-compare .cc-row.market .cc-track i { background: var(--line-strong); }
.energy-cold-compare .cc-row b { font-size: 18px; font-weight: 700; min-width: 72px; text-align: right; color: var(--ink); }
.energy-cold-compare .cc-row.park b { color: var(--accent); }
.energy-cold-compare .cc-foot { grid-column: 1 / -1; font-size: 11px; color: var(--muted); margin-top: 4px; }

@media (max-width: 760px) {
  .energy-phase-track { grid-template-columns: 1fr; }
  .energy-cold-compare { grid-template-columns: 1fr; }
}

/* ============================================================================
   (v) Mobile nav hamburger — unified menu for the umbrella, route and energy
   navs. Below 900px the inline links don't fit (the 6-link umbrella is the worst
   case), so collapse to a toggle button + full-screen overlay menu. Driven by
   nav.js, which toggles .nav-open on the <nav> and locks body scroll.
   ============================================================================ */
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav .nav-toggle,
  .route-page .route-nav .nav-toggle,
  .energy-page .energy-nav .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: absolute;
    right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
    top: 50%;
    transform: translateY(-50%);
    width: 46px; height: 46px;
    padding: 12px 11px;
    box-sizing: border-box;
    background: transparent; border: 0; cursor: pointer;
    z-index: 70;
  }
  .nav-toggle span {
    display: block; width: 100%; height: 2px; border-radius: 2px;
    background: var(--ink);
    transition: transform .26s ease, opacity .2s ease, background .26s ease;
  }
  .energy-page .energy-nav .nav-toggle span { background: var(--white); }
  .energy-page .energy-nav.is-scrolled .nav-toggle span,
  .energy-page .energy-nav.nav-open .nav-toggle span { background: var(--ink); }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* the links become a full-screen overlay menu */
  .nav .nav-links,
  .route-page .route-nav .nav-links,
  .energy-page .energy-nav .nav-links {
    position: fixed; inset: 0;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 2px;
    margin: 0; padding: 84px 24px 28px;
    background: rgba(251, 247, 238, 0.98);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    font-size: 21px; letter-spacing: .03em;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 60;
  }
  .nav.nav-open .nav-links,
  .route-page .route-nav.nav-open .nav-links,
  .energy-page .energy-nav.nav-open .nav-links { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav .nav-links a,
  .route-page .route-nav .nav-links a,
  .energy-page .energy-nav .nav-links a {
    display: block !important;
    width: 100%; max-width: 360px; text-align: center;
    padding: 16px 10px; color: var(--ink);
    text-shadow: none !important;
    border-bottom: 1px solid rgba(33, 31, 26, 0.08);
  }
  .nav .nav-links a:last-child,
  .route-page .route-nav .nav-links a:last-child,
  .energy-page .energy-nav .nav-links a:last-child { border-bottom: 0; }
  /* CTA pinned at the foot of the open overlay */
  .nav > .button,
  .route-page .route-nav > .button,
  .energy-page .energy-nav > .button { display: none; }
  .nav.nav-open > .button,
  .route-page .route-nav.nav-open > .button,
  .energy-page .energy-nav.nav-open > .button {
    display: inline-flex !important;
    position: fixed !important; left: 50% !important; right: auto !important;
    top: auto !important; bottom: 7% !important;
    transform: translateX(-50%); z-index: 61;
  }
}

/* ============================================================================
   (w) Subpage hero — the bottom-right thesis panel is a wide-desktop enhancement
   only. Below 1200px the copy (h1 + tagline + actions) and the panel collide
   (accreted high-specificity rules silently broke the earlier reflow attempts),
   so drop the panel uniformly and let the hero read as a clean statement. This
   late + !important rule is authoritative over §8530/§8745/§8980 panel positions.
   At ≤760 also trim the tagline. ([[horonda-com-v2-refactor]] adaptive audit.)
   ============================================================================ */
@media (max-width: 1200px) {
  .route-thesis-panel,
  .energy-page .energy-thesis-panel { display: none !important; }
}
@media (max-width: 760px) {
  .route-hero p,
  .energy-page .energy-hero .energy-subline {
    font-size: 16px; line-height: 1.5; max-width: 40ch;
  }
  .route-actions { gap: 10px; flex-wrap: wrap; }
}
/* Energy hero copy → Port master. With the panel gone ≤1200, the energy copy was
   left floating at bottom:150 (it had been bumped up to clear the now-removed
   panel strip). Pin it to the route's bottom:92 across the 901–1200 band so the
   energy hero matches Port. (≤900 already matches at ~190; ≤760 unified by §(z).) */
@media (min-width: 901px) and (max-width: 1200px) {
  .energy-page .energy-hero .energy-hero-copy { bottom: 92px; }
}

/* ============================================================================
   (y) Energy hero → route (Port) hero parity at mobile/tablet. The energy hero
   h1 used a smaller clamp (44px/13vw/58px) than the route hero (52px/15vw/72px)
   and a slightly tighter copy inset; desktop already matches via the shared
   `.route-hero h1, .energy-hero-copy h1` rule, so this only aligns ≤900px.
   ============================================================================ */
@media (max-width: 900px) {
  .energy-page .energy-hero .energy-hero-copy h1 { font-size: clamp(52px, 15vw, 72px); }
  .energy-page .energy-hero .energy-hero-copy { left: 22px; }
}

/* ============================================================================
   (z) Mobile nav cleanup + hero copy anchored low (to match the main page).
   - Drop the legacy pseudo "Horonda"/"Menu" nav labels: the ::after "Menu" text
     overlapped the real hamburger button; the route ::before "Horonda" doubled
     the real logo. (Umbrella keeps its ::before as the brand — real brand is
     hidden there; energy nav never had these pseudos.)
   - Anchor the subpage hero copy near the bottom like the umbrella hero, instead
     of floating mid-screen.
   ============================================================================ */
@media (max-width: 900px) {
  /* drop only the "Menu" label (it overlapped the real hamburger); keep the
     ::before "Horonda" as the brand on the umbrella and route navs (their real
     brand img is hidden at mobile). */
  .nav::after { content: none !important; }
  .route-page .route-nav::after { content: none !important; }
}
@media (max-width: 760px) {
  .route-hero .route-hero-copy,
  .energy-page .energy-hero .energy-hero-copy {
    bottom: calc(env(safe-area-inset-bottom) + 60px);
  }
}

/* ============================================================================
   (aa) CENTRALIZED HEADER / NAV — best practice, one system for all three navs
   (umbrella .nav, .route-nav, .energy-nav) following the Energy reference:
   FIXED + solidify-on-scroll (.is-scrolled via nav.js), a real logo (not the
   legacy pseudo "Horonda"/"Menu" text), and a hamburger → full-screen overlay
   on mobile. Supersedes the scattered legacy nav rules.
   ============================================================================ */

/* 1) Umbrella nav joins the route/energy behaviour: fixed + solidify on scroll
      (it was position:absolute and scrolled away with no trigger logic). */
body:not(.route-page):not(.energy-page) .nav {
  position: fixed;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
body:not(.route-page):not(.energy-page) .nav.is-scrolled {
  background: rgba(255, 254, 246, 0.92);
  box-shadow: 0 12px 30px -16px rgba(11, 32, 41, 0.26);
  backdrop-filter: blur(10px);
}
body:not(.route-page):not(.energy-page) main > section { scroll-margin-top: 92px; }

@media (max-width: 900px) {
  /* 1b) STICKY on mobile (was fixed). A fixed nav jitters and lets page content
        bleed through during momentum scroll in messenger in-app browsers (WKWebView
        repaints fixed elements only at scroll-end); sticky lives in flow → smooth,
        no rubber-band detach. A matching negative margin cancels the nav's 64px flow
        height so the hero stays full-bleed under it, and dropping backdrop-filter
        stops the nav being a containing block for the fixed overlay/CTA.
        ([[horonda-com-v2-refactor]] in-app header fix.) */
  .route-page .route-nav,
  .energy-page .energy-nav,
  body:not(.route-page):not(.energy-page) .nav {
    position: sticky; top: 0;
    height: 60px; min-height: 60px; margin-bottom: -60px;
    z-index: 60;
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  /* Opaque once solidified on scroll (no semi-transparent/blurred bleed = the
     "часть сайта торчит" artifact). Each page keeps its own paper tone. */
  .route-page .route-nav.is-scrolled,
  body:not(.route-page):not(.energy-page) .nav.is-scrolled {
    background: var(--paper);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .energy-page .energy-nav.is-scrolled {
    background: var(--paper-2);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  /* 2) Drop every legacy pseudo nav label; show the REAL logo instead. */
  .nav::before, .nav::after,
  .route-page .route-nav::before, .route-page .route-nav::after { content: none !important; }

  body:not(.route-page):not(.energy-page) .nav .brand,
  .route-page .route-nav .route-master-brand,
  .energy-page .energy-nav .energy-master-brand {
    display: inline-flex !important;
    position: absolute;
    left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
    top: 50%; transform: translateY(-50%);
    width: auto; height: 30px; align-items: center; z-index: 65;
  }
  .nav .brand img,
  .route-page .route-nav .route-master-brand img,
  .energy-page .energy-nav .energy-master-brand img {
    width: auto; height: 30px; object-fit: contain; object-position: left center;
  }
  /* light hero (umbrella/route): subtle shadow for the dark logo; clear it on scroll */
  body:not(.route-page):not(.energy-page) .nav .brand img,
  .route-page .route-nav .route-master-brand img {
    filter: drop-shadow(0 1px 10px rgba(11, 32, 41, 0.26));
  }
  body:not(.route-page):not(.energy-page) .nav.is-scrolled .brand img,
  .route-page .route-nav.is-scrolled .route-master-brand img { filter: none; }

  /* 3) Bigger, more adaptive overlay menu (the Energy reference for everyone). */
  .nav .nav-links,
  .route-page .route-nav .nav-links,
  .energy-page .energy-nav .nav-links {
    gap: 2px; padding: 104px 24px 32px;
    font-size: clamp(26px, 7.4vw, 36px); letter-spacing: 0;
  }
  .nav .nav-links a,
  .route-page .route-nav .nav-links a,
  .energy-page .energy-nav .nav-links a {
    padding: 17px 12px; max-width: 460px;
    font-size: clamp(26px, 7.4vw, 36px);
  }
}

/* ============================================================================
   (ab) MOBILE MENU + HEADER — clean rewrite (frontend-design pass), supersedes
   the overlay bits of (v)/(z)/(aa). Goals: transparent header over the hero
   (logo sits on the image, no tinted plate, no drop-shadow box), a robust
   full-height overlay that never "jumps", a concise mono link list from the
   top, the current page in accent, and the CTA as a real button with breathing
   room (not pinned to the screen edge). Holds down to 320px.
   ============================================================================ */

/* Transparent header over the hero on every page (umbrella had a paper gradient;
   route/energy were already transparent) → solidifies on scroll via .is-scrolled. */
body:not(.route-page):not(.energy-page) .nav { background: transparent; }
body:not(.route-page):not(.energy-page) .nav .nav-links a { text-shadow: 0 1px 12px rgba(255, 252, 246, 0.55); }
body:not(.route-page):not(.energy-page) .nav.is-scrolled .nav-links a { text-shadow: none; }
/* Clean logo — no drop-shadow box. */
.nav .brand img,
.route-page .route-nav .route-master-brand img,
.energy-page .energy-nav .energy-master-brand img { filter: none !important; }

@media (max-width: 900px) {
  /* Overlay panel — explicit full height (not just inset), so it can't collapse. */
  .nav .nav-links,
  .route-page .route-nav .nav-links,
  .energy-page .energy-nav .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    height: 100dvh; width: auto;
    display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; margin: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 78px) 0 0 !important;
    background: rgba(251, 247, 238, 0.99);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: none !important;
    overflow-y: auto; z-index: 55;
  }
  .nav.nav-open .nav-links,
  .route-page .route-nav.nav-open .nav-links,
  .energy-page .energy-nav.nav-open .nav-links { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }

  /* Link rows — concise mono, hairline dividers. */
  .nav .nav-links a,
  .route-page .route-nav .nav-links a,
  .energy-page .energy-nav .nav-links a {
    display: flex !important; align-items: center;
    width: 100%; max-width: none; margin: 0;
    padding: 18px clamp(22px, 7vw, 40px) !important;
    font-family: "Roboto Mono", monospace;
    font-size: 16px !important; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink) !important; text-shadow: none !important;
    border-bottom: 1px solid rgba(33, 31, 26, 0.09);
  }
  .route-page .route-nav .nav-links a[href="#top"],
  .energy-page .energy-nav .nav-links a[href="#top"] { color: var(--accent) !important; }

  /* CTA — a real button, breathing room above the safe bottom. */
  .nav.nav-open > .button,
  .route-page .route-nav.nav-open > .button,
  .energy-page .energy-nav.nav-open > .button {
    display: inline-flex !important; position: fixed !important;
    left: clamp(22px, 7vw, 40px) !important; right: clamp(22px, 7vw, 40px) !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 30px) !important;
    top: auto !important; transform: none !important;
    justify-content: center; width: auto !important; z-index: 56;
  }

  /* When the menu is open the nav must NOT create a containing block: a scrolled
     nav has backdrop-filter (and could have transform/filter), which would make
     the fixed CTA anchor to the nav instead of the viewport and "fly off" after
     scrolling. Clear them while open — the overlay covers the bar anyway. */
  .nav.nav-open,
  .route-page .route-nav.nav-open,
  .energy-page .energy-nav.nav-open {
    backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
    transform: none !important; filter: none !important;
    transition: none !important; /* apply backdrop-filter:none INSTANTLY — a
      transitioning blur(0px) still creates a containing block and anchors the
      fixed overlay/CTA to the nav instead of the viewport. */
  }

  /* Logo + toggle stay above the open overlay. */
  body:not(.route-page):not(.energy-page) .nav .brand,
  .route-page .route-nav .route-master-brand,
  .energy-page .energy-nav .energy-master-brand { z-index: 58; }
  .nav .nav-toggle,
  .route-page .route-nav .nav-toggle,
  .energy-page .energy-nav .nav-toggle { z-index: 70; }
}

/* ============================================================================
   (ac) Universal development scale — a vertical stage timeline (one shared visual
   language across port / park / energy; NO percentages). The six stages are
   universal; only the marked position differs per asset. Done = filled dot,
   current = ringed, upcoming = hollow; the rail fills accent up to the current
   stage. Followed by an indicative project-budget figure.
   ============================================================================ */
.dev-scale { margin-top: 26px; max-width: 560px; }
.dev-scale ol { list-style: none; margin: 0; padding: 0; }
.dev-scale li {
  position: relative;
  display: grid; grid-template-columns: 24px 1fr auto; gap: 2px 16px;
  align-items: center; padding-bottom: 26px;
}
.dev-scale li:last-child { padding-bottom: 0; }
/* rail segment from this dot down to the next */
.dev-scale li::before {
  content: ""; position: absolute; left: 11px; top: 19px; bottom: -3px; width: 2px;
  transform: translateX(-50%); background: var(--accent);
}
.dev-scale li:last-child::before { display: none; }
.dev-scale li.current::before,
.dev-scale li.upcoming::before { background: var(--line-strong); }
.dev-scale .dot {
  width: 22px; height: 22px; border-radius: 50%; box-sizing: border-box; z-index: 1;
  background: var(--accent); border: 3px solid var(--paper);
  display: grid; place-items: center;
}
/* tick in completed dots */
.dev-scale li.done .dot::after {
  content: ""; width: 8px; height: 4px; margin-top: -1px;
  border-left: 2px solid var(--paper); border-bottom: 2px solid var(--paper);
  transform: rotate(-45deg);
}
.dev-scale li.upcoming .dot { background: var(--paper); border: 2px solid var(--line-strong); }
.dev-scale li.current .dot { box-shadow: 0 0 0 5px rgba(245, 65, 37, 0.15); }
.dev-scale .dev-name { font-size: 13px; color: var(--muted); }
.dev-scale li.done .dev-name { color: var(--ink); }
.dev-scale li.current .dev-name { color: var(--ink); font-weight: 600; }
.dev-scale .dev-state { font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: right; white-space: nowrap; }
.dev-scale li.current .dev-state { color: var(--accent); }
.dev-note { margin-top: 16px; font-size: 14px; color: var(--muted); max-width: 820px; }
.dev-note b { color: var(--ink); font-weight: 600; }
.dev-horizon { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; margin-top: 14px; max-width: 560px; }
.dev-horizon .dh-dur { font-size: 20px; font-weight: 600; color: var(--accent); line-height: 1.1; }
.dev-horizon .dh-label { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.dev-horizon-stats { align-items: stretch; gap: 0; flex-wrap: nowrap; }
.dev-horizon-stats .ds-col { display: flex; flex-direction: column; gap: 11px; padding: 1px 30px; }
.dev-horizon-stats .ds-col:first-child { padding-left: 0; }
.dev-horizon-stats .ds-col + .ds-col { border-left: 1px solid var(--line); }
.dev-horizon-stats .dh-label { font-size: 11px; letter-spacing: .14em; color: var(--accent); margin: 0; }
.dev-horizon-stats .dh-dur { font-size: clamp(26px, 3.4vw, 32px); font-weight: 700; letter-spacing: 0; color: var(--ink); line-height: 1; }
@media (max-width: 560px) {
  .dev-horizon-stats { flex-direction: column; align-items: stretch; gap: 16px; }
  .dev-horizon-stats .ds-col { padding: 0; }
  .dev-horizon-stats .ds-col + .ds-col { border-left: 0; border-top: 1px solid var(--line); padding-top: 16px; }
}

.project-budget {
  text-align: center;
  margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line);
}
.project-budget .pb-label {
  display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.project-budget strong {
  display: block; font-size: clamp(42px, 6vw, 60px); font-weight: 700;
  line-height: 1; letter-spacing: 0; color: var(--ink);
}
.project-budget .pb-note { display: block; margin-top: 14px; font-size: 13px; color: var(--muted); }

.energy-readiness { margin-top: 34px; }
.rs-head { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }

/* Dark-section variant (if the scale is ever placed on a dark band). */
.energy-dark .dev-scale .dev-name,
.route-section-invert .dev-scale .dev-name { color: rgba(255, 254, 246, 0.6); }
.energy-dark .dev-scale li.done .dev-name,
.energy-dark .dev-scale li.current .dev-name { color: var(--paper-2); }
.energy-dark .dev-scale .dot { border-color: var(--deep-ink, #0b2029); }
.energy-dark .dev-scale li.upcoming .dot { background: transparent; }
.energy-dark .project-budget,
.route-section-invert .project-budget { border-top-color: rgba(255, 254, 246, 0.20); }
.energy-dark .project-budget strong,
.route-section-invert .project-budget strong { color: var(--paper-2); }

/* Web (≥760px): lay the timeline out HORIZONTALLY — dots on a horizontal rail,
   labels centred beneath each dot (nothing floats). The base above is the mobile
   vertical timeline. Rail logic flips: here li::before is the segment ENTERING a
   dot from the left, so it's accent for done AND current (reached), muted after.
   dev-name gets a fixed min-height so 1- and 2-line labels stay row-aligned. */
@media (min-width: 760px) {
  .dev-scale { max-width: none; margin-top: 36px; }
  .dev-scale ol { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; counter-reset: stage; }
  .dev-scale li { counter-increment: stage; display: block; padding: 64px 12px 0; text-align: center; }
  /* stage number above each dot */
  .dev-scale li::after {
    content: counter(stage, decimal-leading-zero);
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    font-family: "Roboto Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: .14em;
    color: var(--line-strong);
  }
  .dev-scale li.done::after { color: var(--muted); }
  .dev-scale li.current::after { color: var(--accent); }
  /* dot — bigger, sits below the number */
  .dev-scale .dot { position: absolute; top: 23px; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; }
  .dev-scale li.done .dot::after { width: 11px; height: 6px; margin-top: -1px; border-left-width: 2.5px; border-bottom-width: 2.5px; }
  .dev-scale li.current .dot { width: 36px; height: 36px; top: 20px; box-shadow: 0 0 0 7px rgba(245, 65, 37, 0.13); }
  /* rail — thicker, through the dot centres (top 23 + 15 = 38) */
  .dev-scale li::before {
    top: 36.5px; left: -50%; right: auto; bottom: auto;
    width: 100%; height: 3px; transform: none; background: var(--accent);
  }
  .dev-scale li.current::before { background: var(--accent); }
  .dev-scale li.upcoming::before { background: var(--line-strong); }
  .dev-scale li:first-child::before { display: none; }
  .dev-scale li:last-child::before { display: block; }
  /* labels — bigger */
  .dev-scale .dev-name { display: block; font-size: 13px; line-height: 1.3; padding: 0 4px; min-height: 1.4em; color: var(--muted); }
  .dev-scale li.done .dev-name { color: var(--ink); }
  .dev-scale li.current .dev-name { color: var(--ink); font-weight: 700; }
  /* current status — a pill */
  .dev-scale .dev-state {
    display: inline-block; margin-top: 9px; text-align: center; white-space: nowrap;
    font-size: 9.5px; letter-spacing: .09em; text-transform: uppercase;
    color: var(--accent); background: rgba(245, 65, 37, 0.10);
    border-radius: 999px; padding: 4px 11px;
  }
}

/* ============================================================================
   (ad) Home section de-nested headers + SINGLE-BEIGE sections.
   SECTION TINTING REMOVED (user, 2026-06-16): the two-beige alternation read as
   a "шахматка" — every section now uses the single page beige (--paper) underlay;
   only cards/panels (--paper-2 / white) and the dark/CTA bands break the field.
   The .home-tint class is left inert on the markup for an easy future toggle.
   Still here: flatten the in-section "matryoshka" — one heading per section, with
   card statements as a bold lead-in within the text, not a competing <h3>.
   ============================================================================ */
.about-platform-grid p strong { color: var(--ink); font-weight: 600; }
.about-platform-grid p strong::after { content: " "; }
.location-corridor p strong { color: var(--ink); font-weight: 600; }

/* (ae2) Remove between-section hairlines — single premium beige field (user 2026-06-16).
   The `.section`/`.metrics`/`.qualified-review` (home) + route/energy section
   border-bottom dividers read "не премиально"; separate sections by whitespace +
   cards + dark closures instead. Card/grid internal framing is untouched. */
body:not(.route-page):not(.energy-page) main > section,
.route-page main > section,
.energy-page main > section { border-top: none !important; border-bottom: none !important; }

/* ============================================================================
   (af) Energy "Developer & team" — readable sizing. Person names, role labels
   and the NSV operator description were rendering tiny (≈9–16px); lift them to a
   consistent readable scale and drop the all-caps on the operator description
   (it's a sentence, not a label).
   ============================================================================ */
.energy-page .energy-team-grid .energy-person b { font-size: 22px; }
.energy-page .energy-team-grid .energy-person span { font-size: 13px; }
.energy-page .energy-team-grid .energy-operator span {
  font-size: 15px; text-transform: none; letter-spacing: 0; color: var(--muted); line-height: 1.5;
}

/* ============================================================================
   (ag) Blueprint / schematic captions flow BELOW the drawing (they were a bottom
   overlay that covered key elements — e.g. the КГУ on the Park utilities
   schematic). On these the drawing carries its own labels, so the caption is a
   quiet editorial line underneath.
   ============================================================================ */
.route-blueprint .route-visual-caption {
  position: static; left: auto; right: auto; bottom: auto;
  background: none; padding: 12px 2px 0;
  font-size: 12px; color: var(--muted);
}

/* ============================================================================
   (af2) Language switcher — minimalist EN · UA · IT (i18n)
   ============================================================================ */
.lang-switcher { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; letter-spacing: .03em; white-space: nowrap; line-height: 1; }
.lang-switcher a { color: var(--muted); text-decoration: none; transition: color .15s ease; }
.lang-switcher a:hover, .lang-switcher a:focus-visible { color: var(--ink); }
.lang-switcher .ls-active { color: var(--accent); font-weight: 700; }
.lang-switcher .ls-sep { color: var(--line-strong); }
@media (min-width: 901px) {
  .nav:not(.route-nav):not(.energy-nav) > .lang-switcher {
    position: absolute; top: 50%; transform: translateY(-50%); margin: 0;
    right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  }
  /* route/energy navs have a visible CTA at the right — sit the switcher just left of it */
  .route-page .route-nav > .lang-switcher,
  .energy-page .energy-nav > .lang-switcher {
    position: absolute; top: 50%; transform: translateY(-50%); margin: 0; right: auto;
    left: calc(max(32px, calc((100vw - var(--max)) / 2 + 32px)) + 128px);
  }
  /* energy nav is white over its dark hero, dark once scrolled — match the switcher */
  .energy-page .energy-nav .lang-switcher a { color: rgba(255, 254, 246, 0.72); }
  .energy-page .energy-nav .lang-switcher a:hover { color: var(--white); }
  .energy-page .energy-nav .lang-switcher .ls-sep { color: rgba(255, 254, 246, 0.42); }
  .energy-page .energy-nav.is-scrolled .lang-switcher a { color: var(--muted); }
  .energy-page .energy-nav.is-scrolled .lang-switcher a:hover { color: var(--ink); }
  .energy-page .energy-nav.is-scrolled .lang-switcher .ls-sep { color: var(--line-strong); }
}
@media (max-width: 900px) {
  .lang-switcher { display: none; }
  .nav.nav-open .lang-switcher { display: inline-flex; position: fixed; left: 0; right: 0; bottom: calc(env(safe-area-inset-bottom) + 108px); justify-content: center; gap: 22px; font-size: 16px; z-index: 56; margin: 0; }
}

/* ============================================================================
   (ah) Energy hero — align copy width + button row to the route (Port/Park) hero
   so spacing/centring/adaptivity match (the dark treatment is kept). CSS-only →
   all language versions regenerate from it.
   ============================================================================ */
.energy-page .energy-hero .energy-hero-copy { width: min(760px, calc(100vw - 140px)); max-width: none; }
.energy-page .energy-hero .energy-actions { display: flex; flex-direction: row; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.energy-page .energy-hero .energy-actions .button { min-width: 218px; width: auto; }
.energy-page .energy-hero .energy-actions .button.light { display: inline-flex; }
@media (max-width: 900px) {
  .energy-page .energy-hero .energy-hero-copy { width: calc(100vw - 44px); }
  .energy-page .energy-hero .energy-actions { gap: 10px; }
  .energy-page .energy-hero .energy-actions .button { min-width: 0; }
}

/* ───────────────────────────────────────────────────────────────────────
   (ai) Heading wrap quality + Energy↔Port/Park width parity (2026-06-19)
   Balance heading line-wrapping so the last line is never a lonely orphan
   ("куцость"); pretty-wrap body paragraphs. Energy section measure unified
   to the route system (h2 720 / stack header 720 / lead 680) just above.
   ─────────────────────────────────────────────────────────────────────── */
h1, h2, h3, .lead { text-wrap: balance; }
p { text-wrap: pretty; }

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

main > section,
main > header,
.route-section,
.route-partner-section,
.energy-page main > section {
  scroll-margin-top: 96px;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  main > section,
  main > header,
  .route-section,
  .route-partner-section,
  .energy-page main > section {
    scroll-margin-top: 82px;
  }
}

@media (max-width: 520px) {
  .route-bridge h2,
  .route-section h2,
  .energy-page .energy-story-bridge h2,
  .energy-page .energy-section h2,
  .energy-page .energy-proof-section h2,
  .energy-page .energy-diagram-section h2,
  .energy-page .energy-cold-section h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

/* #system (Energy topology) head: stack heading + lead full-width like the
   other Energy sections (it was the only 2-col heading|lead split). */
.energy-page .energy-diagram-section .energy-section-head { display: block; }
.energy-page .energy-diagram-section .energy-section-head > div { max-width: 720px; }
.energy-page .energy-diagram-section .energy-section-head .lead { max-width: 680px; margin-top: 18px; }

/* ───────────────────────────────────────────────────────────────────────
   (aj) Premium Developer & team — Energy /07 (2026-06-19)
   Replaces the boxed .energy-team-card table-feel with: branded header
   (NSV mark + h2 + lead), two refined principal profile cards, and a
   hairline capability strip mirroring the umbrella developer block.
   New .team07-* namespace → no fight with the accreted .energy-team-* rules.
   ─────────────────────────────────────────────────────────────────────── */
.energy-page .team07 { display: grid; gap: 40px; margin-top: 30px; }
.energy-page .team07-head { display: grid; grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr); gap: 72px; align-items: start; }
.energy-page .team07-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; margin-bottom: 0; }
.energy-page .team07-logo { height: 50px; width: auto; }
.energy-page .team07-head h2 { margin: 0; font-size: clamp(36px, 3.9vw, 56px); line-height: 1.04; letter-spacing: -0.01em; }
.energy-page .team07-head .lead { max-width: none; margin: 0; padding-top: 6px; }

.energy-page .team07-people { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.energy-page .team07-person { display: flex; align-items: center; gap: 22px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 8px; padding: 24px 28px; transition: border-color .2s ease, transform .2s ease; }
.energy-page .team07-person:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.energy-page .team07-person img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; flex: none; border: 1px solid var(--line); }
.energy-page .team07-person > div { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.energy-page .team07-person b { font-size: 23px; font-weight: 700; color: var(--ink); line-height: 1.05; letter-spacing: 0; }
.energy-page .team07-role { font-size: 13px; color: var(--accent); }

.energy-page .team07-markers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); padding-top: 30px; }
.energy-page .team07-markers > div { padding: 0 26px; }
.energy-page .team07-markers > div:first-child { padding-left: 0; }
.energy-page .team07-markers > div + div { border-left: 1px solid var(--line); }
.energy-page .team07-markers b { display: block; font-size: 12px; color: var(--accent); letter-spacing: 0.04em; margin-bottom: 10px; }
.energy-page .team07-markers span { font-size: 14px; color: var(--muted); line-height: 1.5; }

@media (max-width: 900px) {
  .energy-page .team07 { gap: 26px; margin-top: 22px; }
  .energy-page .team07-head { grid-template-columns: 1fr; gap: 22px; }
  .energy-page .team07-people { grid-template-columns: 1fr; gap: 14px; }
  .energy-page .team07-markers { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .energy-page .team07-markers > div { padding: 0 20px; }
  .energy-page .team07-markers > div:nth-child(odd) { padding-left: 0; }
  .energy-page .team07-markers > div:nth-child(2n) { border-left: 1px solid var(--line); }
  .energy-page .team07-markers > div:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 24px; }
}
@media (max-width: 560px) {
  .energy-page .team07-markers { grid-template-columns: 1fr; }
  .energy-page .team07-markers > div { padding: 0; border-left: none !important; }
  .energy-page .team07-markers > div + div { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 2px; }
  .energy-page .team07-person { padding: 20px; gap: 16px; }
  .energy-page .team07-person img { width: 60px; height: 60px; }
  .energy-page .team07-person b { font-size: 20px; }
}

/* ───────────────────────────────────────────────────────────────────────
   (ak) Energy section vertical rhythm — unify to the route cadence (2026-06-19)
   Energy sections had drifted per-section paddings (84/92, 76/96, 92/104,
   #team 52/58) vs the route's uniform clamp → uneven vertical rhythm. Match
   the route cadence on desktop so the whole site breathes the same; mobile
   (<=900) keeps its own tighter paddings.
   ─────────────────────────────────────────────────────────────────────── */
@media (min-width: 901px) {
  .energy-page .energy-story-bridge,
  .energy-page .energy-section,
  .energy-page .energy-diagram-section,
  .energy-page .energy-developer-section {
    padding-top: clamp(76px, 7vw, 104px);
    padding-bottom: clamp(82px, 7.6vw, 112px);
  }
}

/* ───────────────────────────────────────────────────────────────────────
   (al) Embed sections: kill the right-side void where a tall/square
   illustration towers over short copy. Cap embed image height; on desktop
   centre the copy beside the illustration instead of top-aligning it.
   (Worst: Park #utilities square Δ437; also Energy #cold/#cluster.)
   ─────────────────────────────────────────────────────────────────────── */
.route-embed-body figure img,
.energy-cold-embed-body figure img { max-height: 440px; object-fit: contain; }
@media (min-width: 901px) {
  .route-embed-body,
  .energy-cold-embed-body { align-items: center; }
}

/* ───────────────────────────────────────────────────────────────────────
   (am) Controlled route upgrade — Energy joins Port/Park grammar (2026-06-19)
   Keep Home untouched. Energy now uses the same route cadence: bounded
   readiness card, explicit partner routes, compact mobile collapse.
   ─────────────────────────────────────────────────────────────────────── */
.energy-page .energy-readiness {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 28px 36px;
  margin-top: 38px;
  padding: 30px 32px 32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.energy-page .energy-readiness .rs-head { grid-column: 1 / -1; margin: 0; }
.energy-page .energy-readiness .dev-scale { margin-top: 0; max-width: none; }
.energy-page .energy-readiness .project-budget {
  align-self: stretch;
  display: grid;
  place-content: center;
  margin: 0;
  padding: 0 0 0 30px;
  border-top: 0;
  border-left: 1px solid var(--line);
}
.energy-page .energy-readiness .project-budget strong { font-size: clamp(40px, 4vw, 54px); }
.energy-page .energy-readiness .route-readiness-list {
  grid-column: 1 / -1;
  margin-top: 0;
}
.energy-page .energy-partner-section { background: var(--paper); }
.energy-page .energy-partner-section .section-label { margin-bottom: 30px; }
.energy-page .energy-contact-cta { margin-top: 0; }
.energy-page .route-embed-body .energy-visual-plate {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 254, 246, 0.96), rgba(243, 236, 218, 0.74));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(33, 31, 26, 0.08);
}
.energy-page .route-embed-body .energy-visual-plate img {
  display: block;
  filter: contrast(1.2) saturate(1.08);
}
.energy-page .route-embed-body .energy-visual-plate figcaption {
  margin: 0;
  padding: 12px 16px 14px;
  background: rgba(255, 254, 246, 0.86);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .energy-page .energy-readiness {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
    padding: 24px 22px;
  }
  .energy-page .energy-readiness .project-budget {
    display: block;
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .energy-page .energy-readiness .route-readiness-list { grid-template-columns: 1fr; }
  .energy-page .energy-phase-track,
  .energy-page .energy-cold-compare { margin-top: 28px; }
  .energy-page .energy-partner-section .section-label { margin-bottom: 22px; }
}

@media (max-width: 560px) {
  .energy-page .energy-readiness { padding: 22px 18px; }
  .energy-page .energy-readiness .project-budget strong { font-size: 38px; }
  .energy-page .energy-cold-compare .mode { padding: 18px; }
  .energy-page .energy-cold-compare .cc-row {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
  }
  .energy-page .energy-cold-compare .cc-label,
  .energy-page .energy-cold-compare .cc-track { grid-column: 1 / -1; }
  .energy-page .energy-cold-compare .cc-row b { grid-column: 2; grid-row: 1; }
}

/* ============================================================================
   (an) Wave 2 route-system cleanup — token bridge + Port/Park polish (2026-06-20)

   Purpose: centralize the repeated route grammar for Port/Park/Energy without
   deleting older override strata. Figma code syntax now maps to --color-* above;
   the old short tokens remain aliases so visual risk stays low.
   ============================================================================ */
.route-bridge,
.route-section,
.route-partner-section,
.energy-page .energy-story-bridge,
.energy-page .energy-section,
.energy-page .energy-diagram-section,
.energy-page .energy-developer-section {
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

/* Wide screens: the energy shell is full-bleed (unlike the capped route shell),
   so cap the full-width energy route sections to --max, centered — matching Park
   and the energy bespoke sections. (Bespoke sections already self-cap; excluded.) */
.energy-page .route-bridge,
.energy-page .energy-role,
.energy-page .energy-revenue-section,
.energy-page .energy-partner-section {
  padding-left: var(--section-pad-x-cap);
  padding-right: var(--section-pad-x-cap);
}

.route-proof-strip,
.route-stat-row,
.route-stat-grid,
.route-resident-grid,
.route-partner-grid,
.port-service-grid,
.route-readiness-list,
.energy-page .energy-readiness {
  background: var(--surface-panel);
  border-color: var(--stroke-default);
  box-shadow: var(--shadow-panel);
}

.route-visual-card,
.route-visual-plate,
.energy-page .energy-visual-plate,
.energy-page .energy-topology-diagram {
  background: linear-gradient(135deg, var(--surface-raised), var(--surface-page));
  border-color: var(--stroke-default);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-visual);
}

.route-blueprint img,
.energy-page .energy-blueprint img,
.energy-page .route-embed-body .energy-visual-plate img {
  filter: contrast(1.18) saturate(1.08);
}

.route-port #terminal .route-blueprint img {
  filter: contrast(1.3) saturate(1.12);
}

.route-port #terminal .route-visual-plate,
.route-park .park-plot-section .route-visual-plate {
  background: var(--surface-raised);
}

.route-park .park-plot-section .route-visual-plate img {
  object-fit: contain;
  filter: contrast(1.24) saturate(1.08);
}

@media (min-width: 901px) {
  .route-embed-body {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
    gap: clamp(42px, 5vw, 72px);
    align-items: center;
  }

  .route-embed-body .route-embed-copy {
    padding-top: 0;
  }

  .route-park .park-plot-section .route-embed-body {
    grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  }
}

@media (max-width: 900px) {
  .route-visual-card,
  .route-visual-plate,
  .energy-page .energy-visual-plate {
    border-radius: 6px;
  }
}

/* ============================================================================
   (ao) Wave 3 copy/layout polish — lighter home proof blocks, Park readiness
   parity with Energy, and a deterministic Park ecosystem site-plan illustration.
   ============================================================================ */
.location-proof-stack {
  display: grid;
  gap: 22px;
}

.location-proof-item {
  padding-left: 20px;
  border-left: 1px solid rgba(245, 65, 37, 0.32);
}

.location-proof-item + .location-proof-item {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.location-proof-item b {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-corridor .location-proof-item p {
  max-width: 510px;
  font-size: 15.5px;
  line-height: 1.58;
}

.location-corridor .location-proof-item p strong {
  display: block;
  margin-bottom: 4px;
}

.developer-statement p {
  max-width: 760px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.42;
}

.route-park .route-readiness-section .route-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 28px 36px;
  margin-top: 30px;
  padding: 30px 32px 32px;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-default);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-panel);
}

.route-park .route-readiness-section .route-copy > .lead {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 760px;
}

.route-park .route-readiness-section .dev-scale {
  margin-top: 0;
  max-width: none;
}

.route-park .route-readiness-section .project-budget {
  align-self: stretch;
  display: grid;
  place-content: center;
  margin: 0;
  padding: 0 0 0 30px;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.route-park .route-readiness-section .project-budget strong {
  font-size: clamp(40px, 4vw, 54px);
}

.route-park .route-readiness-section .route-readiness-list {
  grid-column: 1 / -1;
  margin-top: 0;
}

.park-ecosystem-plan {
  aspect-ratio: auto;
  overflow: hidden;
  padding: 0;
  background: var(--surface-raised);
}

.park-plan-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 960 / 560;
}

.park-plan-svg .plan-bg {
  fill: #fffef6;
}

.park-plan-svg .plan-grid {
  fill: url("#park-grid");
  stroke: rgba(33, 31, 26, 0.11);
  stroke-width: 1;
}

.park-plan-svg pattern path {
  stroke: rgba(33, 31, 26, 0.045);
  stroke-width: 1;
}

.park-plan-svg .plan-outline {
  fill: none;
  stroke: rgba(33, 31, 26, 0.38);
  stroke-width: 2;
}

.park-plan-svg .plan-road {
  fill: none;
  stroke: url("#park-road-fill");
  stroke-width: 34;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.park-plan-svg .plan-road.branch {
  stroke-width: 26;
}

.park-plan-svg .plan-road + .plan-road,
.park-plan-svg .plan-road.branch {
  filter: drop-shadow(0 1px 0 rgba(33,31,26,0.12));
}

.park-plan-svg .plan-plots rect {
  fill: url("#park-plot-fill");
  stroke: rgba(33, 31, 26, 0.2);
  stroke-width: 1.5;
}

.park-plan-svg .plan-buildings rect {
  fill: rgba(255, 254, 246, 0.92);
  stroke: rgba(33, 31, 26, 0.28);
  stroke-width: 1.4;
}

.park-plan-svg .plan-utility {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.78;
}

.park-plan-svg .plan-energy {
  fill: rgba(245, 65, 37, 0.12);
  stroke: var(--accent);
  stroke-width: 2;
}

.park-plan-svg .energy-node {
  fill: rgba(245, 65, 37, 0.2);
  stroke: var(--accent);
  stroke-width: 2;
}

.park-plan-svg .plan-terminal rect {
  fill: rgba(33, 31, 26, 0.08);
  stroke: rgba(33, 31, 26, 0.2);
  stroke-width: 1.2;
}

.park-plan-svg .plan-terminal rect:not(:first-child) {
  fill: rgba(245, 65, 37, 0.28);
  stroke: rgba(245, 65, 37, 0.45);
}

.park-plan-svg .plan-rail path {
  fill: none;
  stroke: rgba(33, 31, 26, 0.45);
  stroke-width: 3;
}

.park-plan-svg .plan-rail .rail-sleeper {
  stroke: rgba(33, 31, 26, 0.18);
  stroke-width: 2;
}

.park-plan-key {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 254, 246, 0.74);
}

.park-plan-key span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--muted);
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.park-plan-key i {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex: none;
  border: 1px solid rgba(33, 31, 26, 0.2);
}

.park-plan-key .key-terminal { background: rgba(33, 31, 26, 0.12); }
.park-plan-key .key-plots { background: #efe6cf; }
.park-plan-key .key-utility { background: var(--accent); }
.park-plan-key .key-energy { background: rgba(245, 65, 37, 0.18); border-color: var(--accent); }

.park-ecosystem-plan .route-visual-caption {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  border-top: 1px solid var(--line);
  border-left: 0;
  background: transparent;
  color: var(--muted);
}

@media (max-width: 900px) {
  .location-proof-stack {
    gap: 18px;
  }

  .location-proof-item {
    padding-left: 16px;
  }

  .location-proof-item + .location-proof-item {
    padding-top: 18px;
  }

  .developer-statement p {
    font-size: 18px;
    line-height: 1.38;
  }

  .route-park .route-readiness-section .route-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
    padding: 24px 22px;
  }

  .route-park .route-readiness-section .project-budget {
    display: block;
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .route-park .route-readiness-section .route-readiness-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .park-plan-key {
    grid-template-columns: 1fr;
  }

  .route-park .route-readiness-section .route-copy {
    padding: 22px 18px;
  }

  .route-park .route-readiness-section .project-budget strong {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .route-bridge h2,
  .route-section h2,
  .energy-page .energy-story-bridge h2,
  .energy-page .energy-section h2,
  .energy-page .energy-proof-section h2,
  .energy-page .energy-diagram-section h2,
  .energy-page .energy-cold-section h2 {
    hyphens: none;
    overflow-wrap: break-word;
  }
}

/* (ax) Shared readiness capsule — one compact status grammar for Port / Park / Energy. */
.route-readiness-section > :first-child {
  max-width: 780px;
  margin-bottom: 0;
}

.route-readiness-section .readiness-capsule,
.energy-page .energy-readiness.readiness-capsule {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
  gap: 24px 34px;
  margin-top: 28px;
  padding: 28px 30px 30px;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-default);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-panel);
}

.route-readiness-section .readiness-capsule > .lead,
.energy-page .energy-readiness.readiness-capsule > .lead {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 820px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
  line-height: 1.46;
}

.route-readiness-section .readiness-capsule .dev-scale,
.energy-page .energy-readiness.readiness-capsule .dev-scale {
  margin-top: 0;
  max-width: none;
}

.route-readiness-section .readiness-capsule .dev-note,
.energy-page .energy-readiness.readiness-capsule .dev-note {
  max-width: 680px;
}

.route-readiness-section .readiness-capsule .project-budget,
.energy-page .energy-readiness.readiness-capsule .project-budget {
  align-self: stretch;
  display: grid;
  place-content: center;
  margin: 0;
  padding: 0 0 0 30px;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.route-readiness-section .readiness-capsule .project-budget strong,
.energy-page .energy-readiness.readiness-capsule .project-budget strong {
  font-size: 52px;
}

@media (max-width: 900px) {
  .route-readiness-section .readiness-capsule,
  .energy-page .energy-readiness.readiness-capsule {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
    padding: 24px 22px;
  }

  .route-readiness-section .readiness-capsule > .lead,
  .energy-page .energy-readiness.readiness-capsule > .lead {
    padding-bottom: 20px;
    font-size: 18px;
    line-height: 1.48;
  }

  .route-readiness-section .readiness-capsule .project-budget,
  .energy-page .energy-readiness.readiness-capsule .project-budget {
    display: block;
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .route-readiness-section .readiness-capsule,
  .energy-page .energy-readiness.readiness-capsule {
    padding: 22px 18px;
  }

  .route-readiness-section .readiness-capsule .project-budget strong,
  .energy-page .energy-readiness.readiness-capsule .project-budget strong {
    font-size: 40px;
  }
}

/* ── Contact forms (Resend integration) + footer identity ──────────────── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.form-status.is-ok { color: #4f7a43; }
.form-status.is-error { color: var(--accent); }

.footer-email {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.footer-email:hover { text-decoration: underline; }
.footer-legal {
  margin-top: 8px;
  max-width: 780px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* ==========================================================================
   v3 in-app browser hardening: remove zoom feel and viewport jitter
   ========================================================================== */
.energy-page .energy-topology-plate::after {
  display: none;
  transform: none;
  transition: none;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
  }
  @supports (height: 100dvh) {
    .hero {
      min-height: 100dvh;
    }
  }
  .route-hero,
  .energy-page .energy-hero {
    height: auto;
    min-height: calc(100svh - 60px);
  }
  @supports (height: 100dvh) {
    .route-hero,
    .energy-page .energy-hero {
      min-height: calc(100dvh - 60px);
    }
  }
  .energy-territory-card img,
  .energy-system-visual img,
  .energy-page .energy-topology-plate::after {
    transform: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
  .energy-territory-card img,
  .energy-system-visual img,
  .energy-page .energy-topology-plate::after {
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   v3 visual pass: static ecosystem layers (no hidden tabs/accordion)
   ========================================================================== */
.ecosystem-layers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.ecosystem-card {
  background: rgba(255,252,246,0.92);
  border: 1px solid rgba(33,31,26,0.13);
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.ecosystem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--accent);
  pointer-events: none;
  z-index: 2;
}
.ecosystem-card-media {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid rgba(33,31,26,0.10);
}
.ecosystem-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(1.02) brightness(0.98);
}
.ecosystem-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(243,238,228,0.02), rgba(33,31,26,0.16));
  pointer-events: none;
}
.ecosystem-card-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.ecosystem-card .layer-label {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.ecosystem-card h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 2.4vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.ecosystem-card p {
  margin: 0 0 24px;
  min-height: 150px;
  color: rgba(33,31,26,0.68);
  font-size: 15.5px;
  line-height: 1.56;
}
.ecosystem-card .layer-metrics {
  grid-template-columns: 1fr;
  gap: 8px;
  margin: auto 0 22px;
}
.ecosystem-card .mini-metric {
  min-height: 54px;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-align: left;
}
.ecosystem-card .mini-metric strong {
  margin: 0;
  font-size: 17px;
  line-height: 1.08;
  white-space: normal;
}
.ecosystem-card .mini-metric span {
  max-width: none;
  font-size: 10px;
  line-height: 1.28;
}
.ecosystem-card .button {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
}
.ecosystem-connector {
  grid-column: 1 / -1;
  order: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(236,74,36,0.22);
  background: rgba(236,74,36,0.07);
  color: rgba(33,31,26,0.66);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}
.ecosystem-card-port,
.ecosystem-card-park,
.ecosystem-card-energy { order: 1; }

@media (max-width: 1180px) {
  .ecosystem-layers {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ecosystem-card {
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
    grid-template-rows: auto;
    min-height: 0;
  }
  .ecosystem-card-media {
    min-height: 100%;
    border-bottom: 0;
    border-right: 1px solid rgba(33,31,26,0.10);
  }
  .ecosystem-card-body {
    min-height: 0;
    padding: 26px 24px;
  }
  .ecosystem-card p {
    min-height: 0;
  }
  .ecosystem-card .layer-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }
  .ecosystem-card .mini-metric {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5px;
  }
}

@media (max-width: 760px) {
  .ecosystem-layers {
    gap: 14px;
  }
  .ecosystem-card {
    grid-template-columns: 1fr;
  }
  .ecosystem-card-media {
    height: 176px;
    min-height: 176px;
    border-right: 0;
    border-bottom: 1px solid rgba(33,31,26,0.10);
  }
  .ecosystem-card-body {
    padding: 22px 18px 24px;
  }
  .ecosystem-card .layer-label {
    margin-bottom: 14px;
    font-size: 11px;
  }
  .ecosystem-card h3 {
    font-size: clamp(29px, 8.5vw, 36px);
    margin-bottom: 14px;
  }
  .ecosystem-card p {
    font-size: 15px;
    line-height: 1.52;
    min-height: 0;
    margin-bottom: 20px;
  }
  .ecosystem-card .layer-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 0 18px;
  }
  .ecosystem-card .mini-metric {
    min-height: 48px;
    grid-template-columns: minmax(86px, 0.42fr) minmax(0, 1fr);
    text-align: left;
  }
  .ecosystem-connector {
    order: 0;
    min-height: 52px;
    padding: 12px 16px;
    font-size: 10px;
  }
}
