/* SOLO — Homepage styles
   Anchored to colors_and_type.css (--solo-* tokens, font families).
   Layout: tight margins on hero, generous negative space between sections,
   asymmetric pushed-left columns, Volt earned only on primary CTAs.
*/

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--solo-white); color: var(--solo-black); }
body { font-family: var(--solo-font-display, "Neue Haas Grotesk Text Pro", system-ui, sans-serif); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--solo-cool); }

/* ── Layout shells ─────────────────────────────────────────── */
.page { width: 100%; }
.edge { padding-inline: clamp(24px, 4vw, 64px); }
section.section { padding-block: clamp(72px, 9vw, 140px); border-top: 1px solid var(--solo-soft); }
section.section + section.section { border-top: none; }

/* ── Tags / labels ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--solo-font-mono, "Geist Mono", monospace);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--solo-dark); display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: currentColor; }

.mono-tag {
  font-family: var(--solo-font-mono, monospace);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px;
  border: 1px solid var(--solo-soft); border-radius: 999px; background: var(--solo-white);
  color: var(--solo-dark);
}
.mono-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--solo-volt); display: inline-block; }
.mono-tag .dot.black { background: var(--solo-black); }

.label {
  font-family: var(--solo-font-mono, monospace);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--solo-cool); margin-bottom: 8px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--solo-font-display, system-ui); font-weight: 500;
  border: 1px solid transparent; border-radius: 999px;
  padding: 14px 22px; font-size: 15px; transition: all 160ms cubic-bezier(.2,.8,.2,1);
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn .arrow { font-family: var(--solo-font-mono, monospace); font-weight: 400; transition: transform 160ms; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 17px 28px; font-size: 16px; }
.btn-xl { padding: 22px 36px; font-size: 18px; }
.btn-sharp { border-radius: 0; }

.btn-primary { background: var(--solo-volt); color: var(--solo-black); }
.btn-primary:hover { background: var(--solo-black); color: var(--solo-white); }
.btn-primary:active { transform: scale(.98); }

.btn-black { background: var(--solo-black); color: var(--solo-white); }
.btn-black:hover { background: var(--solo-white); color: var(--solo-black); border-color: var(--solo-black); }

.btn-ghost { background: transparent; color: var(--solo-black); border: 1px solid var(--solo-black); }
.btn-ghost:hover { background: var(--solo-black); color: var(--solo-white); }
.btn-ghost-light { background: transparent; color: var(--solo-black); border: 1px solid var(--solo-soft); }
.btn-ghost-light:hover { border-color: var(--solo-black); }

[data-volt="mono"] .btn-primary { background: var(--solo-black); color: var(--solo-white); }
[data-volt="mono"] .btn-primary:hover { background: var(--solo-white); color: var(--solo-black); border-color: var(--solo-black); }
[data-volt="mono"] .accent { color: var(--solo-black) !important; }
[data-volt="mono"] .dot { background: var(--solo-black) !important; }

/* ── Announce + Topbar ─────────────────────────────────────── */
.announce {
  background: var(--solo-black); color: var(--solo-white);
  font-family: var(--solo-font-mono, monospace); font-size: 12px; letter-spacing: 0.05em;
  text-align: center; padding: 10px 12px;
}
.announce .dot { color: var(--solo-volt); }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px; border-bottom: 1px solid var(--solo-soft); background: var(--solo-white);
  position: sticky; top: 0; z-index: 50;
}
.topbar .left { display: flex; align-items: center; gap: 56px; }
.topbar .word img { height: 22px; }
.topbar nav { display: flex; gap: 28px; font-size: 14px; font-weight: 500; }
.topbar nav a { position: relative; padding-block: 6px; }
.topbar nav a:hover::after { content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background:var(--solo-black); }
.topbar .right { display: flex; align-items: center; gap: 18px; }
.topbar .ann { font-family: var(--solo-font-mono, monospace); font-size: 12px; color: var(--solo-dark); letter-spacing: 0.04em; }

/* ── Hero (shared) ────────────────────────────────────────── */
.hero { padding-block: clamp(40px, 6vw, 80px) clamp(60px, 7vw, 100px); }
.hero-meta { display: flex; gap: 10px; margin-bottom: clamp(28px, 4vw, 48px); flex-wrap: wrap; }

.hero-headline {
  font-family: var(--solo-font-display, system-ui);
  font-weight: 900;
  font-size: var(--hero-display, 132px);
  line-height: 0.88; letter-spacing: -0.045em; margin: 0;
  text-wrap: balance;
}
[data-typescale="restrained"] { --hero-display: 96px; --single-number: 160px; }
[data-typescale="display"]    { --hero-display: 132px; --single-number: 200px; }
[data-typescale="supersize"]  { --hero-display: 184px; --single-number: 280px; }

.hero-lede { font-size: 19px; line-height: 1.45; max-width: 38ch; color: var(--solo-dark); margin: 22px 0 36px; }

/* Split layout */
.hero-split { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.hero-split--reverse { grid-template-columns: 7fr 5fr; }

@media (min-width: 1100px) {
  .hero .hero-meta { margin-inline: 80px 0; }
  .hero .hero-split, .hero .hero-split--reverse { padding-left: 80px; }
  .hero .hero-print { margin-right: 80px; }
}
@media (max-width: 1099px) {
  .hero .hero-print { margin-inline: 20px; }
}
.hero-split > * { min-width: 0; }
.pc-reveal .pane { min-width: 0; }
.hero-print {
  position: relative; aspect-ratio: 1.1 / 1;
  border: 1px solid var(--solo-black);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(0,0,0,0.025) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(0,0,0,0.025) 39px 40px),
    var(--solo-white);
}
.hero-print .corner, .hero-print .corner-br {
  position: absolute; font-family: var(--solo-font-mono, monospace); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--solo-dark); line-height: 1.5;
}
.hero-print .corner    { top: 18px; left: 18px; }
.hero-print .corner-br { bottom: 18px; right: 18px; text-align: right; }

[data-sunprint="hero"] .hero-print { background: var(--solo-black); border-color: var(--solo-black); }
[data-sunprint="hero"] .hero-print .corner,
[data-sunprint="hero"] .hero-print .corner-br { color: var(--solo-volt); }
[data-sunprint="hero"] .hero-print img { filter: brightness(0) saturate(100%) invert(91%) sepia(50%) saturate(672%) hue-rotate(33deg) brightness(108%) contrast(101%); }

/* Single number layout */
.hero-single .display {
  font-family: var(--solo-font-display, system-ui); font-weight: 900;
  letter-spacing: -0.05em; line-height: 0.85; margin: 0;
}
.hero-single > .display:first-of-type { margin-top: 4px; margin-bottom: 8px; }
.hero-single .hero-headline { margin-top: 14px; margin-bottom: 36px; }

/* Photo hero */
.hero-photo {
  background-size: cover; background-position: center;
  min-height: 720px; position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  padding-block: 56px 64px;
}
.hero-photo::before {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.05) 100%);
}
.hero-photo .inner { position: relative; max-width: 980px; display: flex; flex-direction: column; gap: 32px; }
.hero-photo .hero-headline { color: var(--solo-white); }

/* ── Postcode entry ────────────────────────────────────────── */
.pc-entry { max-width: 520px; }
.pc-pill {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--solo-black); border-radius: 999px;
  padding: 6px 6px 6px 22px; background: var(--solo-white);
  transition: box-shadow 160ms;
}
.pc-pill:focus-within { box-shadow: 0 0 0 2px var(--solo-volt); }
.pc-pill input { flex: 1; border: 0; outline: 0; background: transparent; font: inherit; font-size: 17px; padding: 14px 0; min-width: 0; }
.pc-pill button { background: var(--solo-volt); color: var(--solo-black); border: 0; border-radius: 999px; padding: 13px 22px; font: inherit; font-weight: 500; font-size: 15px; cursor: pointer; transition: all 160ms; }
.pc-pill button:hover { background: var(--solo-black); color: var(--solo-white); }

.pc-under { display: flex; align-items: end; gap: 20px; border-bottom: 2px solid var(--solo-black); padding-bottom: 8px; max-width: 520px; }
.pc-under input { flex: 1; border: 0; outline: 0; background: transparent; font-family: var(--solo-font-display); font-weight: 900; font-size: 48px; padding: 0; min-width: 0; letter-spacing: -0.02em; }
.pc-under input::placeholder { color: var(--solo-cool); }
.pc-under button { background: transparent; border: 0; padding: 12px 0; font: inherit; font-weight: 500; font-size: 16px; cursor: pointer; white-space: nowrap; }
.pc-under button:hover { text-decoration: underline; }

.pc-large { display: flex; align-items: stretch; gap: 14px; }
.pc-large input {
  flex: 1; border: 1px solid var(--solo-black); background: var(--solo-white);
  font-family: var(--solo-font-display); font-weight: 700; font-size: 36px;
  padding: 18px 22px; min-width: 0; letter-spacing: -0.01em; outline: 0;
}
.pc-large input:focus { box-shadow: inset 0 0 0 1px var(--solo-volt); border-color: var(--solo-volt); }
.pc-large input::placeholder { color: var(--solo-cool); }

.pc-help { font-size: 13px; color: var(--solo-dark); margin-top: 14px; max-width: 56ch; line-height: 1.5; }

/* Price reveal */
.pc-reveal {
  margin-top: 24px;
  border: 1px solid var(--solo-black);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--solo-white);
  animation: settle 320ms cubic-bezier(.2,.8,.2,1);
}
.pc-reveal .pane { padding: 26px 28px; }
.pc-reveal .pane:first-child { border-right: 1px solid var(--solo-soft); background: var(--solo-volt); }
.pc-reveal .big {
  font-family: var(--solo-font-display); font-weight: 900;
  font-size: 64px; line-height: 0.92; letter-spacing: -0.04em;
}
.pc-reveal .big .unit { font-family: var(--solo-font-mono); font-size: 14px; font-weight: 400; letter-spacing: 0; margin-left: 8px; vertical-align: super; color: var(--solo-dark); }
.pc-reveal .row {
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--solo-font-mono); font-size: 12px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--solo-dark); padding: 8px 0;
  border-bottom: 1px dashed var(--solo-soft);
}
.pc-reveal .row:last-child { border-bottom: 0; }
.pc-reveal .actions {
  grid-column: 1 / -1; padding: 18px 28px;
  border-top: 1px solid var(--solo-black);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap; background: var(--solo-soft);
}
.pc-reveal .actions small { font-family: var(--solo-font-mono); font-size: 11px; color: var(--solo-dark); letter-spacing: 0.05em; max-width: 56ch; }

@keyframes settle { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── Promise strip ─────────────────────────────────────────── */
.promise {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--solo-black); border-bottom: 1px solid var(--solo-black);
  margin-block: 0 clamp(60px, 8vw, 96px);
}
.promise .item { padding: 32px 28px; border-right: 1px solid var(--solo-soft); }
.promise .item:last-child { border-right: 0; }
.promise .num { font-family: var(--solo-font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--solo-cool); margin-bottom: 18px; }
.promise .h { font-family: var(--solo-font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; }
.promise .s { font-size: 14px; color: var(--solo-dark); line-height: 1.55; max-width: 32ch; }

/* ── Section heads ─────────────────────────────────────────── */
.section-head {
  display: grid; grid-template-columns: 5fr 5fr; gap: clamp(40px, 6vw, 96px);
  margin-bottom: clamp(48px, 6vw, 80px); align-items: end;
}
.section-head h2 {
  font-family: var(--solo-font-display); font-weight: 900;
  font-size: clamp(48px, 5.6vw, 88px); line-height: 0.92; letter-spacing: -0.04em;
  margin: 0; max-width: 14ch; text-wrap: balance;
}
.section-head .meta p { font-size: 17px; line-height: 1.5; color: var(--solo-dark); max-width: 50ch; margin-top: 16px; }

/* ── How it works ──────────────────────────────────────────── */
.how { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--solo-black); }
.how .step { padding: 28px 24px; border-right: 1px solid var(--solo-soft); border-bottom: 1px solid var(--solo-black); display: flex; flex-direction: column; gap: 16px; min-height: 360px; transition: background 160ms; }
.how .step:last-child { border-right: 0; }
.how .step:hover { background: var(--solo-soft); }
.how .step .n { font-family: var(--solo-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--solo-cool); }
.how .step .h { font-family: var(--solo-font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; line-height: 1.05; text-wrap: balance; }
.how .step .b { font-size: 14px; color: var(--solo-dark); line-height: 1.55; flex: 1; }
.how .step .t { font-family: var(--solo-font-mono); font-size: 12px; color: var(--solo-black); padding-top: 14px; border-top: 1px dashed var(--solo-soft); letter-spacing: 0.04em; }

/* ── Spec sheet (What you get) ─────────────────────────────── */
.spec { background: var(--solo-black); color: var(--solo-white); padding-block: clamp(80px, 10vw, 160px); }
.spec .head { display: grid; grid-template-columns: 5fr 5fr; gap: clamp(40px, 6vw, 80px); margin-bottom: clamp(56px, 7vw, 96px); }
.spec h2 { font-family: var(--solo-font-display); font-weight: 900; font-size: clamp(48px, 5.6vw, 84px); line-height: 0.95; letter-spacing: -0.04em; margin: 0; max-width: 14ch; }
.spec .head p { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.5; max-width: 50ch; margin-top: auto; }
.spec .body { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 80px); }

.price-block { border: 1px solid var(--solo-volt); padding: 32px 32px 28px; background: rgba(181, 255, 89, 0.04); }
.price-block .lab { font-family: var(--solo-font-mono); font-size: 11px; color: var(--solo-volt); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.price-block .num { font-family: var(--solo-font-display); font-weight: 900; font-size: clamp(72px, 8vw, 112px); line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 22px; }
.price-block .num em { font-style: normal; color: var(--solo-volt); font-size: 0.4em; vertical-align: super; }
.price-block .row { display: flex; justify-content: space-between; padding: 8px 0; font-family: var(--solo-font-mono); font-size: 13px; color: rgba(255,255,255,.7); border-bottom: 1px dashed rgba(255,255,255,.12); letter-spacing: 0.03em; }
.price-block .row:last-of-type { border-bottom: 0; }
.price-block .total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--solo-volt); }
.price-block .total span { font-family: var(--solo-font-mono); font-size: 12px; color: var(--solo-volt); letter-spacing: 0.12em; text-transform: uppercase; }
.price-block .total b { font-family: var(--solo-font-display); font-weight: 900; font-size: 38px; letter-spacing: -0.03em; color: var(--solo-white); }
.spec-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.spec-cta .btn { justify-content: center; }

.specs { display: flex; flex-direction: column; }
.specs .row { display: grid; grid-template-columns: 5fr 8fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.specs .row:first-child { border-top: 1px solid rgba(255,255,255,.14); }
.specs .k { font-family: var(--solo-font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.65); padding-top: 4px; }
.specs .v { font-family: var(--solo-font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.015em; line-height: 1.2; }
.specs .v small { display: block; font-family: var(--solo-font-display); font-weight: 500; font-size: 14px; color: rgba(255,255,255,.6); margin-top: 6px; letter-spacing: 0; }

/* ── Installer ─────────────────────────────────────────────── */
.installer { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.installer .pts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--solo-black); border-bottom: 1px solid var(--solo-black); }
.installer .pts .p { padding: 16px 18px 16px 0; border-bottom: 1px solid var(--solo-soft); }
.installer .pts .p:nth-child(odd) { padding-right: 18px; border-right: 1px solid var(--solo-soft); }
.installer .pts .p:nth-last-child(-n+2) { border-bottom: 0; }
.installer .pts .k { display: block; font-family: var(--solo-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--solo-cool); margin-bottom: 4px; }
.installer .pts .p > span:nth-child(2) { font-family: var(--solo-font-display); font-weight: 500; font-size: 15px; color: var(--solo-black); }

.installer .card { border: 1px solid var(--solo-soft); border-radius: 24px; overflow: hidden; background: var(--solo-white); max-width: 520px; margin-left: auto; }
.installer .photo { aspect-ratio: 4 / 3; position: relative; background: var(--solo-soft); }
.installer .photo svg { width: 100%; height: 100%; display: block; }
.installer .photo .badge { position: absolute; top: 16px; left: 16px; background: var(--solo-white); border: 1px solid var(--solo-soft); padding: 6px 12px; border-radius: 999px; font-family: var(--solo-font-mono); font-size: 11px; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 6px; }
.installer .photo .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--solo-volt); }
.installer .info { padding: 28px 32px 32px; }
.installer .info .name { font-family: var(--solo-font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; }
.installer .info .meta { font-family: var(--solo-font-mono); font-size: 12px; color: var(--solo-dark); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 6px; }
.installer .info .quote { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--solo-soft); font-size: 18px; line-height: 1.45; color: var(--solo-black); max-width: 44ch; font-style: normal; }
.installer .info .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 24px; border-top: 1px solid var(--solo-soft); padding-top: 20px; }
.installer .info .stats .s { padding-right: 12px; }
.installer .info .stats .s + .s { border-left: 1px solid var(--solo-soft); padding-left: 16px; }
.installer .info .stats .n { font-family: var(--solo-font-display); font-weight: 900; font-size: 28px; letter-spacing: -0.02em; }
.installer .info .stats .l { font-family: var(--solo-font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--solo-cool); text-transform: uppercase; margin-top: 4px; }

/* ── Sun Print explainer ───────────────────────────────────── */
.sunprint-section { background: var(--solo-soft); padding-block: clamp(80px, 9vw, 140px); }
.sunprint-section .grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.sunprint-section h2 { font-family: var(--solo-font-display); font-weight: 900; font-size: clamp(44px, 5vw, 72px); line-height: 0.95; letter-spacing: -0.04em; margin: 0 0 16px; max-width: 14ch; }
.sunprint-section p { font-size: 17px; line-height: 1.5; color: var(--solo-dark); max-width: 46ch; }
.sunprint-section .desc { margin-top: 22px; font-family: var(--solo-font-mono); font-size: 12px; color: var(--solo-black); letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 14px; background: var(--solo-white); display: inline-block; border: 1px solid var(--solo-cool); }
.sunprint-card { background: var(--solo-white); border: 1px solid var(--solo-black); padding: clamp(28px, 4vw, 56px); position: relative; }
.sunprint-card .stamp { position: absolute; top: 18px; right: 22px; font-family: var(--solo-font-mono); font-size: 10px; line-height: 1.4; letter-spacing: 0.06em; text-transform: uppercase; color: var(--solo-cool); text-align: right; }
.sunprint-card .ledger { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 28px; border-top: 1px solid var(--solo-black); }
.sunprint-card .ledger .c { padding: 14px 16px 0 0; border-right: 1px solid var(--solo-soft); }
.sunprint-card .ledger .c:last-child { border-right: 0; }
.sunprint-card .ledger .k { display: block; font-family: var(--solo-font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--solo-cool); margin-bottom: 4px; }
.sunprint-card .ledger .v { font-family: var(--solo-font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }

/* ── Pricing transparency ──────────────────────────────────── */
.pricing { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.pricing .lhs h2 { font-family: var(--solo-font-display); font-weight: 900; font-size: clamp(44px, 5vw, 72px); line-height: 0.95; letter-spacing: -0.04em; margin: 0 0 16px; max-width: 14ch; }
.pricing .lhs p { font-size: 17px; line-height: 1.5; color: var(--solo-dark); max-width: 42ch; }
.pricing .lhs .badge { margin-top: 28px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--solo-black); border-radius: 999px; font-family: var(--solo-font-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.pricing .lhs .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--solo-volt); }

.ledger-table { border: 1px solid var(--solo-black); }
.ledger-table .header { display: grid; grid-template-columns: 5fr 1.4fr 2fr 2fr; gap: 16px; padding: 16px 24px; background: var(--solo-black); color: var(--solo-white); font-family: var(--solo-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.ledger-table .header > div:nth-child(2),
.ledger-table .header > div:nth-child(3),
.ledger-table .header > div:nth-child(4) { text-align: right; }
.ledger-table .row { display: grid; grid-template-columns: 5fr 1.4fr 2fr 2fr; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--solo-soft); align-items: baseline; font-family: var(--solo-font-mono); font-size: 13px; letter-spacing: 0.02em; }
.ledger-table .row > div:nth-child(2),
.ledger-table .row > div:nth-child(3),
.ledger-table .row > div:nth-child(4) { text-align: right; }
.ledger-table .row .item { font-family: var(--solo-font-display); font-weight: 500; font-size: 16px; letter-spacing: -0.005em; color: var(--solo-black); }
.ledger-table .row .item small { display: block; font-family: var(--solo-font-display); font-weight: 400; font-size: 13px; color: var(--solo-cool); margin-top: 4px; letter-spacing: 0; }
.ledger-table .row .strike { color: var(--solo-cool); text-decoration: line-through; }
.ledger-table .totals { display: grid; grid-template-columns: 5fr 1.4fr 2fr 2fr; gap: 16px; padding: 22px 24px; background: var(--solo-soft); align-items: baseline; }
.ledger-table .totals .lab { font-family: var(--solo-font-display); font-weight: 700; font-size: 18px; }
.ledger-table .totals .v { text-align: right; font-family: var(--solo-font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.ledger-table .totals .v.was { color: var(--solo-cool); text-decoration: line-through; font-weight: 400; }
.ledger-table .totals .v.now { color: var(--solo-black); }
.ledger-table .totals .v.save .accent { color: var(--solo-black); background: var(--solo-volt); padding: 2px 12px; }

/* ── Versus ─────────────────────────────────────────────────── */
.versus .grid {
  display: grid; grid-template-columns: 3fr 5fr 5fr; gap: 0;
  border-top: 1px solid var(--solo-black); border-bottom: 1px solid var(--solo-black);
}
.versus .h-spacer, .versus .h-solo, .versus .h-them { padding: 22px 24px; border-bottom: 1px solid var(--solo-black); }
.versus .h-solo { background: var(--solo-volt); border-right: 1px solid var(--solo-soft); }
.versus .h-them { background: var(--solo-soft); }
.versus .h-solo .l, .versus .h-them .l { font-family: var(--solo-font-display); font-weight: 900; font-size: 22px; letter-spacing: -0.02em; }
.versus .h-solo .s, .versus .h-them .s { font-family: var(--solo-font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--solo-dark); margin-top: 2px; }
.versus .row-k { padding: 22px 24px; font-family: var(--solo-font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--solo-dark); border-bottom: 1px solid var(--solo-soft); }
.versus .row-solo { padding: 22px 24px; border-bottom: 1px solid var(--solo-soft); border-right: 1px solid var(--solo-soft); border-left: 1px solid var(--solo-soft); font-size: 16px; line-height: 1.45; }
.versus .row-them { padding: 22px 24px; border-bottom: 1px solid var(--solo-soft); font-size: 16px; line-height: 1.45; color: var(--solo-dark); background: rgba(236,236,236,0.4); }
.versus .row-solo b { font-weight: 700; }
.versus .closer { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-top: 48px; padding: 36px 36px; border: 1px solid var(--solo-black); flex-wrap: wrap; }
.versus .closer .quote { font-family: var(--solo-font-display); font-weight: 900; font-size: clamp(28px, 3vw, 44px); letter-spacing: -0.03em; line-height: 1.05; max-width: 22ch; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(40px, 6vw, 96px); }
.faq .lhs h2 { font-family: var(--solo-font-display); font-weight: 900; font-size: clamp(44px, 5vw, 72px); line-height: 0.95; letter-spacing: -0.04em; margin: 0 0 16px; max-width: 12ch; }
.faq .lhs p { font-size: 17px; line-height: 1.5; color: var(--solo-dark); max-width: 38ch; }
.faq .lhs .help { margin-top: 36px; padding: 22px 24px; border: 1px solid var(--solo-soft); border-radius: 24px; background: var(--solo-white); }
.faq .lhs .help .h { font-family: var(--solo-font-display); font-weight: 700; font-size: 17px; }
.faq .lhs .help .s { font-family: var(--solo-font-mono); font-size: 11px; color: var(--solo-cool); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }

.faq .list { border-top: 1px solid var(--solo-black); }
.faq .list .item { border-bottom: 1px solid var(--solo-soft); }
.faq .list .item button { display: grid; grid-template-columns: 64px 1fr 32px; align-items: baseline; width: 100%; padding: 22px 8px; background: transparent; border: 0; cursor: pointer; text-align: left; font: inherit; }
.faq .list .item button:hover { background: var(--solo-soft); }
.faq .list .item .n { font-family: var(--solo-font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--solo-cool); }
.faq .list .item .q { font-family: var(--solo-font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.015em; line-height: 1.25; }
.faq .list .item .x { font-family: var(--solo-font-mono); font-size: 22px; color: var(--solo-black); transition: transform 200ms; text-align: right; padding-right: 8px; }
.faq .list .item.open .x { transform: rotate(45deg); }
.faq .list .item .a { display: grid; grid-template-columns: 64px 1fr 32px; padding: 0 8px 28px; }
.faq .list .item .a > div:nth-child(2) { font-size: 16px; line-height: 1.55; color: var(--solo-dark); max-width: 64ch; }
.faq .list .item .a > div:nth-child(2) p + p { margin-top: 12px; }

/* ── Closer + Footer ───────────────────────────────────────── */
.closer-strip { background: var(--solo-black); color: var(--solo-white); padding-block: clamp(80px, 9vw, 140px); position: relative; overflow: hidden; }
.closer-strip .corner-print { position: absolute; right: -100px; top: -80px; width: 520px; height: 520px; opacity: 0.18; pointer-events: none; }
.closer-strip .row { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(40px, 6vw, 80px); position: relative; align-items: end; }
.closer-strip h2 { font-family: var(--solo-font-display); font-weight: 900; font-size: clamp(56px, 6.4vw, 104px); line-height: 0.95; letter-spacing: -0.045em; margin: 0; max-width: 14ch; text-wrap: balance; }
.closer-strip h2 em { font-style: normal; color: var(--solo-volt); }
.closer-strip .meta { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.5; max-width: 44ch; }
.closer-strip .cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.closer-strip .cta .btn-ghost-light { color: var(--solo-white); border-color: rgba(255,255,255,.32); }
.closer-strip .cta .btn-ghost-light:hover { background: var(--solo-white); color: var(--solo-black); border-color: var(--solo-white); }

footer { padding-block: 28px 36px; border-top: 1px solid var(--solo-soft); }
footer .footer-line { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; font-family: var(--solo-font-mono); font-size: 12px; color: var(--solo-dark); letter-spacing: 0.04em; }
footer .footer-line .word img { height: 18px; }
footer .links { display: flex; gap: 18px; }
footer .links a:hover { text-decoration: underline; }

/* ── Volt density variants ─────────────────────────────────── */
[data-volt="strict"] {} /* default */
[data-volt="more"] .promise .num { color: var(--solo-volt); }
[data-volt="more"] .how .step:hover { background: var(--solo-volt); color: var(--solo-black); }
[data-volt="more"] .how .step:hover .n,
[data-volt="more"] .how .step:hover .b { color: var(--solo-black); }
[data-volt="more"] .versus .row-solo b { background: var(--solo-volt); padding: 0 6px; }

[data-volt="mono"] .pc-pill button { background: var(--solo-black); color: var(--solo-white); }
[data-volt="mono"] .pc-pill button:hover { background: var(--solo-white); color: var(--solo-black); border: 1px solid var(--solo-black); }
[data-volt="mono"] .pc-reveal .pane:first-child { background: var(--solo-soft); }
[data-volt="mono"] .price-block { border-color: var(--solo-white); background: transparent; }
[data-volt="mono"] .price-block .lab,
[data-volt="mono"] .price-block .total span,
[data-volt="mono"] .price-block .num em { color: var(--solo-white); }
[data-volt="mono"] .versus .h-solo { background: var(--solo-black); color: var(--solo-white); }
[data-volt="mono"] .versus .h-solo .s { color: rgba(255,255,255,.7); }
[data-volt="mono"] .closer-strip h2 em { color: var(--solo-white); text-decoration: underline; text-decoration-color: var(--solo-cool); text-underline-offset: 8px; }
[data-volt="mono"] .ledger-table .totals .v.save .accent { background: var(--solo-black); color: var(--solo-white); }
[data-volt="mono"] .mono-tag .dot { background: var(--solo-black); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-split, .spec .body, .installer, .pricing, .faq, .sunprint-section .grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .promise, .how { grid-template-columns: repeat(2, 1fr); }
  .promise .item:nth-child(2) { border-right: 0; }
  .promise .item:nth-child(-n+2) { border-bottom: 1px solid var(--solo-soft); }
  .how .step { min-height: 280px; }
  .how .step:nth-child(2n) { border-right: 0; }
  .versus .grid { grid-template-columns: 2fr 5fr 5fr; }
  .topbar nav { display: none; }
  .closer-strip .row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero.edge { padding-inline: 0; }
  .hero.edge .hero-meta { padding-inline: 16px; }
  .hero.edge .hero-split > div:first-child { padding-inline: 16px; }
  .topbar.edge { padding-inline: 16px; }
  .hero-headline { font-size: 64px !important; }
  .pc-under input { font-size: 32px; }
  .pc-large input { font-size: 24px; padding: 14px 16px; }
  .pc-reveal { grid-template-columns: 1fr; }
  .pc-reveal .pane:first-child { border-right: 0; border-bottom: 1px solid var(--solo-soft); }
  .promise, .how, .ledger-table .header, .ledger-table .row, .ledger-table .totals { grid-template-columns: 1fr 1fr; }
  .ledger-table .header > div:nth-child(2), .ledger-table .row > div:nth-child(2) { display: none; }
  .versus .grid { grid-template-columns: 1fr; }
  .versus .h-spacer { display: none; }
  .installer .pts { grid-template-columns: 1fr; }
  .installer .pts .p:nth-child(odd) { border-right: 0; }
  .topbar .ann { display: none; }
}
