:root {
  --bg: #0b1520;
  --bg-alt: #0f1d2b;
  --panel: #142737;
  --line: #23405a;
  --text: #e8f0f7;
  --muted: #9fb4c8;
  --accent: #f5a623;
  --accent-2: #ffd166;
  --green: #37c978;
  --radius: 14px;
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { line-height: 1.2; font-weight: 800; }
h2 { font-size: 2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.1rem; margin-bottom: .5rem; }
p { margin-bottom: .9rem; }
.accent { color: var(--accent); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 21, 32, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-logo { height: 44px; width: auto; border-radius: 6px; }
.brand-sub { color: var(--muted); font-weight: 400; font-size: .85rem; }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.nav a:hover { color: var(--text); }
.nav-cta {
  color: #0b1520 !important; background: var(--accent);
  padding: 8px 16px; border-radius: 999px; font-weight: 700;
}
.nav-cta:hover { background: var(--accent-2); }

/* Hero */
.hero {
  padding: 90px 0 60px;
  background:
    linear-gradient(rgba(11, 21, 32, 0.78), rgba(11, 21, 32, 0.92)),
    url("assets/hero-panels.jpg") center 30% / cover no-repeat;
}
.hero-inner { text-align: center; max-width: 780px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  color: var(--accent); font-weight: 700; margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin-bottom: 18px; }
.hero-lede { font-size: 1.2rem; color: var(--muted); margin-bottom: 28px; }
.hero-lede strong { color: var(--accent-2); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: .95rem;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #0b1520; }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.stat-strip {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px; margin-top: 56px;
}
.stat-strip li {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 12px; text-align: center;
}
.stat-icon { display: block; margin: 0 auto 10px; width: 38px; height: 38px; color: #29abe2; }
.stat-icon svg { width: 100%; height: 100%; }
.stat-value { display: block; font-size: 1.35rem; font-weight: 800; color: var(--accent-2); }
.stat-label { display: block; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }

.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }

.fact-list { list-style: none; margin-top: 8px; }
.fact-list li { padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--muted); }
.fact-list strong { color: var(--text); }

.map-card {
  background: linear-gradient(160deg, var(--panel), #10202f);
  border: 1px solid var(--line); border-radius: var(--radius);
  min-height: 300px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 28px;
}
.map-pin { font-size: 3rem; margin-bottom: 12px; }
.map-caption { font-weight: 700; }
.map-note { color: var(--muted); font-size: .9rem; }

/* Image cards */
.img-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px; margin: 0;
}
.img-card img { width: 100%; height: auto; display: block; border-radius: 8px; }
.img-card figcaption {
  color: var(--muted); font-size: .82rem; text-align: center; padding-top: 10px;
}
.img-card-light { background: #fff; border-color: #d8e2ec; }
.img-card-light figcaption { color: #4a5b6b; }
.img-card-flat { padding: 0; border: none; background: transparent; }
.map-row {
  display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 18px;
  align-items: start;
}
.map-row .img-card { background: #fff; border-color: #d8e2ec; }
.map-row .img-card figcaption { color: #4a5b6b; }
.yield-figures { display: flex; flex-direction: column; gap: 18px; }
.mt { margin-top: 26px; }

/* Opportunity cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px 20px;
}
.card-wide { grid-column: 1 / -1; }
.card-num {
  position: absolute; top: -12px; left: 20px;
  background: var(--accent); color: #0b1520; font-weight: 800;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
}
.card p { color: var(--muted); margin: 0; font-size: .95rem; }
.card strong { color: var(--accent-2); }

/* Technical */
.tech-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px; margin-bottom: 40px;
}
.tech-item {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; text-align: center;
}
.tech-value { display: block; font-size: 1.3rem; font-weight: 800; color: var(--green); }
.tech-label { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.yield-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.yield-panel p { color: var(--muted); font-size: .95rem; }
.yield-panel strong { color: var(--accent-2); }

.data-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.data-table th, .data-table td { padding: 9px 10px; border-bottom: 1px solid var(--line); text-align: left; }
.data-table th { color: var(--muted); font-weight: 600; }
.data-table td { font-weight: 700; }
.financial-table td { color: var(--accent-2); }
.tech-table td { color: var(--green); }

/* Chart */
.chart-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.lcoe-card { margin-top: 26px; }
.lcoe-card h3 { margin-bottom: 6px; }
.lcoe-note { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.lcoe-chart {
  display: grid;
  gap: 10px;
}
.lcoe-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: center;
}
.lcoe-name {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.2;
}
.lcoe-track {
  position: relative;
  height: 24px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,.09) 0,
      rgba(255,255,255,.09) 1px,
      transparent 1px,
      transparent 58px
    ),
    rgba(255,255,255,.03);
  overflow: visible;
}
.lcoe-range {
  position: absolute;
  top: 5px;
  height: 14px;
  border-radius: 999px;
  background: #8ea0b9;
}
.lcoe-row.project .lcoe-range { background: #ff8fb1; }
.lcoe-min,
.lcoe-max {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
}
.lcoe-min { left: -28px; color: var(--text); }
.lcoe-max { right: 8px; color: #fff; }
.lcoe-scale {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 8px;
}
.lcoe-scale-labels {
  position: relative;
  height: 18px;
  color: var(--muted);
  font-size: .78rem;
}
.lcoe-scale-labels span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}
.bar-chart { display: flex; align-items: flex-end; gap: 3px; height: 200px; margin: 18px 0 8px; }
.bar-chart .bar {
  flex: 1; background: linear-gradient(180deg, var(--accent), #b97a12);
  border-radius: 3px 3px 0 0; min-height: 4px; position: relative;
}
.bar-chart .bar:hover { background: var(--accent-2); }
.bar-chart .bar::after {
  content: attr(data-label);
  position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  background: #06101a; color: var(--text); font-size: .7rem; font-weight: 700;
  padding: 2px 6px; border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .15s;
}
.bar-chart .bar:hover::after { opacity: 1; }
.chart-note { color: var(--muted); font-size: .82rem; margin: 0; }

/* Timeline */
.timeline { list-style: none; position: relative; margin-left: 14px; padding-left: 30px; border-left: 2px solid var(--line); }
.timeline li { position: relative; padding-bottom: 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -39px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg-alt);
}
.tl-date {
  display: inline-block; font-size: .78rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px;
}
.timeline p { color: var(--muted); font-size: .95rem; margin: 0; }

/* CTA */
.cta-section {
  background:
    radial-gradient(800px 300px at 50% 120%, rgba(245,166,35,.20), transparent 70%),
    var(--bg);
  text-align: center;
}
.cta-inner p { color: var(--muted); margin-bottom: 26px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 34px 0; text-align: center; }
.footer-logo { height: 64px; width: auto; border-radius: 8px; margin-bottom: 14px; }
.site-footer p { color: var(--muted); font-size: .85rem; margin-bottom: 6px; }
.disclaimer { font-size: .75rem !important; max-width: 720px; margin: 0 auto; }

/* Responsive */
@media (max-width: 820px) {
  .two-col, .yield-panel, .map-row { grid-template-columns: 1fr; }
  .nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 60px; }
  .lcoe-row,
  .lcoe-scale { grid-template-columns: 1fr; gap: 8px; }
  .lcoe-track { margin-left: 28px; }
  .lcoe-scale-labels { margin-left: 28px; }
}
