:root {
  color-scheme: dark;
  --ink: #0a0b0e;
  --panel: #14161b;
  --line: #292c33;
  --acid: #c7ff33;
  --text: #f7f8f5;
  --muted: #9a9da5;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--text); line-height: 1.5; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 850; text-decoration: none; font-size: 20px; }
.brand img { width: 42px; height: 42px; border-radius: 11px; }
.links { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.links a { text-decoration: none; }
.hero { min-height: 780px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; }
.eyebrow { color: var(--acid); text-transform: uppercase; letter-spacing: .14em; font-weight: 750; font-size: 13px; }
h1 { font-size: clamp(64px, 8vw, 112px); line-height: .88; letter-spacing: -.065em; margin: 20px 0 28px; }
.hero p { color: var(--muted); max-width: 580px; font-size: 21px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.badge { border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; color: #d7d9dd; font-size: 14px; }
.visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.visual::before { content: ""; position: absolute; inset: 0; background: url('dawn-energy-v1.png') center/cover; opacity: .8; filter: saturate(.9); mask-image: radial-gradient(circle, #000 40%, transparent 72%); }
.phone { position: relative; width: min(360px, 80vw); border: 1px solid #3b3e46; border-radius: 52px; box-shadow: 0 30px 90px #000; }
.section { padding: 110px 0; }
.section h2 { max-width: 800px; font-size: clamp(44px, 6vw, 76px); line-height: 1; letter-spacing: -.045em; margin: 0 0 54px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 28px; padding: 30px; min-height: 240px; }
.card strong { color: var(--acid); font-size: 42px; line-height: 1; }
.card h3 { margin: 24px 0 10px; font-size: 22px; }
.card p { color: var(--muted); margin: 0; }
.statement { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.statement p { font-size: clamp(46px, 7vw, 88px); line-height: 1; letter-spacing: -.05em; font-weight: 850; margin: 0; }
.statement span { color: var(--acid); }
.legal { max-width: 760px; padding: 90px 0 140px; }
.legal h1 { font-size: clamp(52px, 7vw, 82px); }
.legal h2 { margin-top: 42px; font-size: 25px; }
.legal p, .legal li { color: #c4c6cb; }
.legal .updated { color: var(--muted); }
footer { border-top: 1px solid var(--line); padding: 32px 0 48px; color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-row div { display: flex; gap: 18px; }
@media (max-width: 800px) {
  .links { gap: 12px; }
  .hero { grid-template-columns: 1fr; padding: 70px 0; text-align: center; }
  .hero p { margin-inline: auto; }
  .badges { justify-content: center; }
  .visual { min-height: 560px; }
  .grid { grid-template-columns: 1fr; }
}

