:root {
      --paper: #f3eee4;
      --paper-2: #fffcf6;
      --ink: #211f1a;
      --muted: #716a60;
      --line: rgba(33, 31, 26, 0.18);
      --line-strong: rgba(33, 31, 26, 0.34);
      --accent: #ec4a24;
      --green: #87957f;
      --park: #dfe9d7;
      --dry: #d9e2e8;
      --energy: #ebdccb;
      --dark: #1f1d18;
      --dark-muted: #c7bfad;
      --max: 1440px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    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: "IBM Plex 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)) 0 max(54px, calc((100vw - var(--max)) / 2 + 54px));
      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;
      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 14% 94%, rgba(243,238,228,0.88) 0%, rgba(243,238,228,0.72) 16%, rgba(243,238,228,0.32) 34%, rgba(243,238,228,0) 55%),
        linear-gradient(180deg, rgba(243,238,228,0.14), rgba(243,238,228,0.02) 30%, rgba(243,238,228,0.56) 100%),
        linear-gradient(90deg, rgba(243,238,228,0.76) 0%, rgba(243,238,228,0.52) 22%, rgba(243,238,228,0.14) 46%, rgba(243,238,228,0.08) 100%);
      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: 72px;
      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.96;
      letter-spacing: 0;
      padding-bottom: 0.05em;
      color: var(--ink);
      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-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);
    }
    .hero-actions .button.light {
      display: none;
    }
    .hero-visual {
      min-height: 780px;
      background:
        linear-gradient(180deg, rgba(204,219,224,0.88), rgba(204,219,224,0) 30%),
        url("assets/visuals/hero-industrial-aerial-v01.png") center / cover no-repeat;
      position: relative;
      overflow: hidden;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(243,238,228,0.28), rgba(243,238,228,0.06) 38%, rgba(243,238,228,0)),
        linear-gradient(180deg, rgba(33,31,26,0.08), rgba(33,31,26,0) 28%, rgba(33,31,26,0.14));
      z-index: 1;
      pointer-events: none;
    }
    .hero-video {
      display: none;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.96) contrast(1.02);
    }
    .hero-visual::after {
      content: "";
      display: none;
      position: absolute;
      right: 54px;
      bottom: 46px;
      color: var(--muted);
      font-size: 12px;
      max-width: 320px;
      font-family: "IBM Plex Mono", monospace;
      line-height: 1.4;
      z-index: 2;
    }
    .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(4, 1fr);
      padding: 32px 70px 34px;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
    }
    .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: 118%;
      height: 118%;
      object-fit: cover;
      object-position: center;
      display: block;
      transform: translate(-12%, -3%) scale(1.02);
    }
    .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: 13px;
      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-callout {
      position: absolute;
      z-index: 3;
      width: 280px;
      padding: 16px 18px 18px;
      border: 1px solid rgba(33, 31, 26, 0.22);
      border-left: 2px solid var(--accent);
      background: rgba(255, 252, 246, 0.78);
      backdrop-filter: blur(2px);
    }
    .map-callout h3 {
      margin: 0 0 8px;
      font-size: 22px;
      line-height: 1.08;
    }
    .map-callout p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.42;
    }
    .map-tag {
      position: absolute;
      z-index: 4;
      padding: 8px 10px;
      background: rgba(31,29,24,0.88);
      color: var(--paper-2);
      border-left: 2px solid var(--accent);
      font-size: 10px;
      line-height: 1;
      text-transform: uppercase;
    }
    .callout-platform { left: 42px; bottom: 44px; }
    .callout-energy { left: 430px; top: 58px; }
    .callout-park { right: 42px; top: 48px; }
    .tag-rail { left: 172px; bottom: 260px; }
    .tag-energy { left: 456px; top: 210px; }
    .tag-park { right: 258px; top: 220px; }
    .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: "IBM Plex 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: "IBM Plex 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(3, 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: 13px;
      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: 14px;
      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;
      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; }
      .nav {
        height: 60px;
        display: flex;
        justify-content: flex-end;
        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; }
      .nav::after {
        content: "Menu";
        color: rgba(255,252,246,0.88);
        font-size: 11px;
        font-family: "IBM Plex Mono", monospace;
      }
      .hero {
        min-height: 100svh;
        scroll-margin-top: 60px;
        width: auto;
        left: auto;
        transform: none;
      }
      .hero-image {
        object-position: 66% center;
      }
      .hero::after {
        background:
          linear-gradient(180deg, rgba(31,29,24,0.20), rgba(31,29,24,0.02) 28%, rgba(31,29,24,0.76) 100%),
          linear-gradient(90deg, rgba(31,29,24,0.34), rgba(31,29,24,0.08) 52%, rgba(31,29,24,0.18));
      }
      .hero::before {
        background:
          radial-gradient(circle at 70% 30%, rgba(243,238,228,0.12), rgba(33,31,26,0) 34%),
          linear-gradient(180deg, rgba(33,31,26,0.10), rgba(33,31,26,0) 30%, rgba(33,31,26,0.18));
      }
      .hero-copy {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 28px;
        width: auto;
        padding: 0 18px;
        display: block;
      }
      .hero .section-label {
        color: rgba(255,252,246,0.9);
        margin-bottom: 18px;
      }
      .hero h1 {
        color: var(--paper-2);
        font-size: clamp(52px, 15vw, 64px);
        line-height: 0.98;
        margin: 0;
        text-shadow: 0 10px 34px rgba(0,0,0,0.24);
      }
      .hero .subline { display: none; }
      .hero p {
        color: rgba(255,252,246,0.88);
        font-size: 16px;
        line-height: 1.42;
        font-weight: 500;
        margin-top: 20px;
        max-width: 330px;
      }
      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 28px;
        gap: 0;
        width: 100%;
        max-width: 390px;
      }
      .hero-actions .button {
        min-height: 56px;
        width: 100%;
        background: var(--paper-2);
        color: var(--ink);
        border: 0;
        font-size: 11px;
      }
      .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: 610px;
      }
      .system-map-image { height: 285px; object-position: center top; }
      .system-map::after {
        height: 285px;
        bottom: auto;
      }
      .map-callout {
        left: 18px !important;
        right: 18px !important;
        width: auto;
        padding: 13px 14px;
      }
      .map-callout h3 { font-size: 18px; }
      .map-callout p { font-size: 12px; }
      .map-tag { display: none; }
      .callout-platform { top: 306px; bottom: auto; }
      .callout-energy { top: 394px; bottom: auto; }
      .callout-park { top: 482px; bottom: auto; }
      .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: 13px;
      }
      .status-grid { grid-template-columns: 1fr; }
      .cta {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 42px 18px 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; }
    }
