/* ── the three families, self-hosted ────────────────────────
   Variable woff2 straight from Google Fonts, served from our own
   origin so the page contacts no third party at all — that keeps
   the CSP 'self' end to end and keeps the privacy page short.
   Two subsets each: latin, plus latin-ext for the macrons in
   Māori place names. Licences in assets/fonts/LICENCES.md.
   Re-download with the recipe in README.md if you change weights.
   ------------------------------------------------------------ */
/* Archivo — latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(assets/fonts/archivo-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Archivo — latin-ext */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(assets/fonts/archivo-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Archivo Narrow — latin */
@font-face {
  font-family: 'Archivo Narrow';
  font-style: normal;
  font-weight: 500 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(assets/fonts/archivo-narrow-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Archivo Narrow — latin-ext */
@font-face {
  font-family: 'Archivo Narrow';
  font-style: normal;
  font-weight: 500 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(assets/fonts/archivo-narrow-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Public Sans — latin */
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(assets/fonts/public-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Public Sans — latin-ext */
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(assets/fonts/public-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============================================================
   SigBuddy — marketing site
   Palette is the device's own: amber is always solar, cyan is
   always battery, red is always grid, white is always the house.
   Those four never get used decoratively anywhere on this page.
   ============================================================ */

:root {
  /* screen world */
  --ink:        #070B11;
  --panel:      #0E1724;
  --line-dk:    #1C2739;

  /* the four semantic colours, straight off the display */
  --solar:      #FFC53D;
  --battery:    #58D2EA;
  --grid:       #FF8E8E;
  --house:      #EDF3FA;

  --muted-dk:   #8494A8;

  /* room world — cool daylight, not cream */
  --paper:      #E9EDF2;
  --paper-2:    #DFE5EC;
  --ink-lt:     #101822;
  --muted-lt:   #55637A;
  --line-lt:    #C9D2DD;

  /* the one action colour — lifted from the device's own Connect button */
  --go:         #4FC3A1;
  --go-deep:    #0C6249;

  --f-display: 'Archivo', system-ui, -apple-system, sans-serif;
  --f-ui:      'Archivo Narrow', 'Archivo', system-ui, sans-serif;
  --f-body:    'Public Sans', system-ui, -apple-system, sans-serif;

  --shell: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-lt);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

/* height:auto is load-bearing — every <img> carries width/height attributes
   to reserve layout space, and without this they render at full pixel
   height and distort. */
img { max-width: 100%; display: block; height: auto; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--go);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--go); color: #071018;
  padding: 12px 18px; z-index: 100;
  font-family: var(--f-ui); text-transform: uppercase; letter-spacing: .12em;
}
.skip:focus { left: 12px; top: 12px; }

.wrap {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 44px);
}
.wrap--narrow { max-width: 860px; }

/* The nav is sticky, so anchored sections must clear it. */
section[id] { scroll-margin-top: 84px; }

/* ── shared type ─────────────────────────────────────────── */

.eyebrow {
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-dk);
  margin: 0 0 18px;
}
.eyebrow--ink { color: var(--muted-lt); }

.h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0 0 16px;
  max-width: 20ch;
}
.h2--faq { margin-top: 76px; }

.sub {
  font-size: 1.06rem;
  color: var(--muted-lt);
  max-width: 58ch;
  margin: 0 0 48px;
}

/* ── buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--go);
  color: #071018;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: transform .18s ease, background-color .18s ease;
}
.btn:hover { background: #62d3b1; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--house);
  border-color: #2C3B52;
}
.btn--ghost:hover { background: #121C2A; border-color: #43586F; transform: translateY(-2px); }

.btn--sm { padding: 10px 18px; font-size: .82rem; }
.btn--lg { padding: 18px 34px; font-size: 1rem; }

.btn--buy { width: 100%; padding: 17px 26px; }

.btn.is-unset {
  background: transparent;
  color: var(--muted-lt);
  border: 1px dashed var(--line-lt);
  cursor: not-allowed;
  pointer-events: none;
}

/* ── nav ─────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 17, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dk);
}
.nav__in {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 14px clamp(20px, 5vw, 44px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -.01em;
  color: var(--house);
  text-decoration: none;
  margin-right: auto;
}
.wordmark__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--battery);
  box-shadow: 0 0 0 4px rgba(88, 210, 234, .16);
}

.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-family: var(--f-ui);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-dk);
  text-decoration: none;
  transition: color .18s ease;
}
.nav__links a:hover { color: var(--house); }

@media (max-width: 720px) { .nav__links { display: none; } }

/* ── hero ────────────────────────────────────────────────── */

.hero {
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(88, 210, 234, .10), transparent 60%),
    radial-gradient(90% 70% at 12% 8%, rgba(255, 197, 61, .07), transparent 58%),
    var(--ink);
  color: var(--house);
  border-bottom: 1px solid var(--line-dk);
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 116px);
}
.hero__in {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 44px);
  display: grid;
  gap: clamp(44px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__in { grid-template-columns: 1fr 1.06fr; }
}

.hero__h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.6vw, 4.2rem);
  line-height: .99;
  letter-spacing: -.035em;
  margin: 0 0 24px;
}
/* Amber sits on the word "solar" itself, not on a decorative fragment —
   on this page amber only ever means solar, same as on the device. */
.hero__h1-alt { color: var(--solar); }

.lede {
  font-size: 1.14rem;
  line-height: 1.62;
  color: #C3CEDC;
  max-width: 46ch;
  margin: 0 0 34px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hero__note {
  font-size: .92rem;
  color: var(--muted-dk);
  max-width: 44ch;
  margin: 0;
  padding-left: 15px;
  border-left: 2px solid var(--line-dk);
}

/* ── the screen (signature element) ──────────────────────── */

.hero__demo { display: flex; justify-content: center; }

.screen {
  margin: 0;
  width: 100%;
  max-width: 620px;
  background: linear-gradient(168deg, #12203280 0%, #0A121D 62%), var(--panel);
  border: 1px solid #24344A;
  border-radius: 10px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .03) inset,
    0 34px 70px -28px rgba(0, 0, 0, .9),
    0 0 90px -30px rgba(88, 210, 234, .22);
}

.dash { width: 100%; height: auto; display: block; }

.dash__rule { stroke: #23334A; stroke-width: 1; }

.dash__live-dot { fill: var(--battery); }
@media (prefers-reduced-motion: no-preference) {
  .dash__live-dot { animation: pulse 2.4s ease-in-out infinite; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .28; } }

.t-label {
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2.4px;
  fill: #93A3B8;
}
.dash__clock { fill: #93A3B8; }

.t-fig {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  fill: var(--house);
}
.t-fig--solar   { fill: var(--solar); }
.t-fig--battery { fill: var(--battery); }
.t-fig--grid    { fill: var(--grid); }
.t-fig--house   { fill: var(--house); }

.t-unit {
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .5px;
}

.t-sub {
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.6px;
  fill: #7E8EA4;
}
.t-sub--battery { fill: #5FA6BA; }
.dash__today { fill: #6B7C93; }

.wire { fill: none; stroke: #2B3E57; stroke-width: 2; }

.node { fill: var(--panel); stroke-width: 3; }
.node--battery { stroke: var(--battery); }
.node--house   { stroke: var(--house); }
.node--centre  { fill: #93A3B8; stroke: none; }

.flow {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 2 16;
  opacity: 0;
  transition: opacity .45s ease;
}
.flow--solar   { stroke: var(--solar); }
.flow--battery { stroke: var(--battery); }
.flow--grid    { stroke: var(--grid); }
.flow--house   { stroke: var(--house); }
.flow.is-on { opacity: .95; }

@media (prefers-reduced-motion: no-preference) {
  .flow { animation: flow 1.55s linear infinite; }
  .flow.is-rev { animation-direction: reverse; }
}
@keyframes flow { to { stroke-dashoffset: -18; } }

.screen__cap {
  font-family: var(--f-ui);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #64748B;
  text-align: right;
  padding: 4px 4px 12px;
}

/* ── light bands ─────────────────────────────────────────── */

.band { padding: clamp(72px, 9vw, 128px) 0; }
.band--tint { background: var(--paper-2); }

/* photos */
/* Product figure. The two-up .shots grid this was written for is gone — it
   sat under "what it is" and showed the 4.3-inch and 2.8-inch, which the
   size cards further down show again. The comparison figure above the cards
   is the only user now. */
.shot { margin: 0; }
.shot img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--line-lt);
}
/* The three-up size comparison at the top of #sizes: full width of the
   column, because the whole point is reading the units against each other at
   one scale. */
.compare {
  max-width: 1000px;
  margin: 0 auto clamp(34px, 4.5vw, 56px);
}

.shot figcaption {
  font-size: .88rem;
  color: var(--muted-lt);
  margin-top: 12px;
  padding-left: 13px;
  border-left: 2px solid var(--line-lt);
}

/* features */
.feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  background: var(--line-lt);
  border: 1px solid var(--line-lt);
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 720px)  { .feats { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .feats { grid-template-columns: repeat(3, 1fr); } }

.feat { background: var(--paper); padding: 32px 30px 34px; }
.feat__h {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: -.01em;
  margin: 0 0 10px;
}
.feat p { margin: 0; font-size: .96rem; color: var(--muted-lt); }

/* ── product cards ───────────────────────────────────────── */

.cards { display: grid; gap: 26px; }
@media (min-width: 760px) { .cards { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line-lt);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
/* Outranks .reveal.is-in below, which also sets transform. */
.cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px -26px rgba(16, 24, 34, .5);
}
@media (prefers-reduced-motion: reduce) { .cards .card:hover { transform: none; } }

.card__media { background: var(--ink); }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }

.card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-lt);
  margin-bottom: 16px;
}
.card__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  margin: 0;
}
.card__price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  margin: 0;
  white-space: nowrap;
}

.card__blurb { margin: 0 0 20px; font-size: .97rem; color: var(--muted-lt); }

.card__specs { list-style: none; margin: 0 0 24px; padding: 0; }
.card__specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-lt);
  font-size: .9rem;
}
.card__specs .k {
  font-family: var(--f-ui);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--muted-lt);
  padding-top: 2px;
}
.card__specs .v { text-align: right; }

.card__body .btn--buy { margin-top: auto; }

.card__fine {
  font-size: .8rem;
  color: var(--muted-lt);
  text-align: center;
  margin: 12px 0 0;
  min-height: 1em;
}

.shipnote {
  margin: 34px 0 0;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line-lt);
  border-radius: 6px;
  font-size: .95rem;
  color: var(--muted-lt);
  text-align: center;
}
.shipnote strong { color: var(--ink-lt); font-weight: 600; }
.shipnote .code {
  font-family: var(--f-ui);
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--go-deep);
  background: rgba(79, 195, 161, .16);
  padding: 2px 8px;
  border-radius: 3px;
}

/* ── setup steps ─────────────────────────────────────────── */

.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; }

.step {
  counter-increment: s;
  position: relative;
  padding: 30px 0 30px 66px;
  border-top: 1px solid var(--line-lt);
}
.step:last-child { border-bottom: 1px solid var(--line-lt); }

.step::before {
  content: counter(s);
  position: absolute;
  left: 0;
  top: 30px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-lt);
  border-radius: 50%;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 1rem;
  color: var(--muted-lt);
}

.step__h {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -.015em;
  margin: 6px 0 10px;
}
.step p { margin: 0 0 12px; color: var(--muted-lt); font-size: 1rem; }
.step p:last-child { margin-bottom: 0; }
.step em { font-style: normal; color: var(--ink-lt); font-weight: 500; }

.step .step__aside {
  font-size: .92rem;
  padding-left: 14px;
  border-left: 2px solid var(--line-lt);
}

@media (max-width: 560px) {
  .step { padding-left: 0; padding-top: 26px; }
  .step::before { position: static; margin-bottom: 14px; }
}

/* ── specs table ─────────────────────────────────────────── */

.spec { border-top: 1px solid var(--line-lt); }
.spec__row {
  display: grid;
  gap: 6px 32px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-lt);
}
@media (min-width: 680px) { .spec__row { grid-template-columns: 230px 1fr; } }

.spec__k {
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted-lt);
  padding-top: 4px;
}
.spec__v { font-size: 1rem; }

/* ── faq ─────────────────────────────────────────────────── */

.faq { border-top: 1px solid var(--line-lt); }

.qa { border-bottom: 1px solid var(--line-lt); }
.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  position: relative;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--muted-lt);
  border-bottom: 2px solid var(--muted-lt);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.qa[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.qa p {
  margin: 0 0 22px;
  color: var(--muted-lt);
  font-size: .99rem;
  max-width: 66ch;
}

.spec__v em, .qa em { font-style: normal; font-weight: 500; color: var(--ink-lt); }

/* ── document pages (terms, privacy) ─────────────────────── */

.doc { padding: clamp(52px, 7vw, 92px) 0 clamp(72px, 9vw, 116px); }

.doc__h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.doc__meta {
  font-family: var(--f-ui);
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted-lt);
  margin: 0 0 14px;
}
.doc__intro {
  font-size: 1.06rem;
  color: var(--muted-lt);
  max-width: 62ch;
  margin: 0 0 8px;
}

.doc h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -.015em;
  margin: 44px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line-lt);
}
.doc h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.02rem;
  margin: 26px 0 8px;
}
.doc p, .doc li { color: var(--muted-lt); max-width: 68ch; }
.doc p { margin: 0 0 14px; }
.doc ul { margin: 0 0 14px; padding-left: 22px; }
.doc li { margin-bottom: 7px; }
.doc strong { color: var(--ink-lt); font-weight: 600; }
.doc a { color: var(--go-deep); }

/* Anything the owner still has to decide, impossible to miss. */
.todo {
  background: none;
  color: var(--ink-lt);
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: .86em;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px dashed #9AA7B8;
  border-radius: 3px;
  padding: 1px 7px;
  white-space: nowrap;
}

.doc__back {
  display: inline-block;
  margin-top: 44px;
  font-family: var(--f-ui);
  font-size: .84rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-lt);
  text-decoration: none;
}
.doc__back:hover { color: var(--ink-lt); }

/* ── close + footer ──────────────────────────────────────── */

.close {
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(255, 197, 61, .09), transparent 62%),
    var(--ink);
  color: var(--house);
  padding: clamp(80px, 10vw, 132px) 0;
  text-align: center;
}
.close__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: -.03em;
  line-height: 1.04;
  margin: 0 0 20px;
}
.close__p {
  color: #B7C3D2;
  max-width: 52ch;
  margin: 0 auto 34px;
  font-size: 1.06rem;
}

.foot {
  background: #04070B;
  color: var(--muted-dk);
  border-top: 1px solid var(--line-dk);
  padding: 44px 0 56px;
}
.foot__in { display: grid; gap: 14px; }
.foot__mark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--house);
  font-size: 1.05rem;
  margin: 0;
}
.foot__note { margin: 0; font-size: .87rem; max-width: 62ch; }
.foot__note--contact a { color: var(--go); }
/* The other project gets a link, not a banner: interesting to the handful of
   owners with a Tesla too, invisible to everyone else. */
.foot__note--sibling a { color: var(--go); }

.foot__links { display: flex; flex-wrap: wrap; gap: 20px; margin: 6px 0 0; padding: 0; list-style: none; }
.foot__links a {
  font-family: var(--f-ui);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-dk);
  text-decoration: none;
}
.foot__links a:hover { color: var(--house); }

/* ── scroll reveal ───────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); }
  .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1);
  }
}
