/* =============================================================
   Pitvolt - Atmospheric & Component Layer
   Sits on top of colors_and_type.css. All colors via tokens.
   ============================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(120% 80% at 18% 0%, rgba(255,230,0,0.06) 0%, transparent 55%),
    radial-gradient(90% 60% at 100% 100%, rgba(212,118,58,0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-primary-warm) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ---------- Subtle film-grain noise (SVG, ~4% opacity) --------- */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.65 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Atmospheric orbs ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(var(--blur-orb-mobile));
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
@media (min-width: 1024px) {
  .orb { filter: blur(var(--blur-orb-desktop)); }
}
.orb--yellow { background: var(--orb-yellow); }
.orb--terracotta { background: var(--orb-terracotta); }

@media (prefers-reduced-motion: no-preference) {
  .orb--drift { animation: orb-drift var(--dur-orb-drift) ease-in-out infinite alternate; }
  @keyframes orb-drift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(40px, -30px, 0); }
  }
}

/* On mobile, hide all but the first orb */
@media (max-width: 767px) {
  .orb:nth-of-type(n + 2) { display: none; }
}

/* ---------- Glass-morphism panel ---------- */
.glass {
  background: var(--glass-fill);
  backdrop-filter: blur(var(--blur-glass-mobile)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--blur-glass-mobile)) saturate(1.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-glass);
}
@media (min-width: 1024px) {
  .glass {
    backdrop-filter: blur(var(--blur-glass-desktop)) saturate(1.2);
    -webkit-backdrop-filter: blur(var(--blur-glass-desktop)) saturate(1.2);
  }
}
.glass--bright { background: var(--glass-fill-bright); }

/* Panel on off-white */
.elevated-panel {
  background: var(--bg-elevated);
  color: var(--text-on-elevated);
  border-radius: var(--r-xl);
  position: relative;
}

/* ---------- Container & rhythm ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-mobile);
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .container { padding-inline: var(--gutter-desktop); }
}
.section {
  padding-block: var(--section-y-mobile);
  position: relative;
}
@media (min-width: 1024px) {
  .section { padding-block: var(--section-y-desktop); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;          /* spec: ≥44px touch */
  padding: 0 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-hover) var(--ease-out),
              background var(--dur-hover) var(--ease-out),
              color var(--dur-hover) var(--ease-out),
              border-color var(--dur-hover) var(--ease-out),
              box-shadow var(--dur-hover) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent-primary);
  color: var(--text-on-elevated);
  box-shadow: var(--shadow-button-yellow);
}
.btn--primary:hover { background: #fff04a; }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--glass-border);
}
.btn--ghost:hover { border-color: rgba(248,245,238,0.32); background: var(--glass-fill); }

.btn--on-elevated {
  background: var(--text-on-elevated);
  color: var(--bg-elevated);
}
.btn--on-elevated:hover { background: #1a1a1a; }

/* Inline link (text CTA) */
.link-arrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-body);
  color: var(--text-primary);
  border-bottom: 1px solid rgba(248,245,238,0.25);
  padding-bottom: 2px;
  transition: color var(--dur-hover) var(--ease-out),
              border-color var(--dur-hover) var(--ease-out);
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
}
.link-arrow:hover { color: var(--accent-primary); border-color: var(--accent-primary); }
.link-arrow--on-elevated { color: var(--text-on-elevated); border-color: rgba(10,10,10,0.25); }
.link-arrow--on-elevated:hover { color: var(--accent-secondary); border-color: var(--accent-secondary); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 18px 0;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header__inner {
  display: flex; align-items: center; gap: 16px;
}
.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav__link {
  font-size: 0.9375rem;
  color: var(--text-muted);
  min-height: 44px;
  display: inline-flex; align-items: center;
  white-space: nowrap;
  transition: color var(--dur-hover) var(--ease-out);
}
.nav__link:hover { color: var(--text-primary); }
.site-header__actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }
/* 700px: below this the wordmark + four links + CTA (~625px) cannot share a
   row, so the links collapse into a toggle-expanded panel under the bar. */
@media (max-width: 700px) {
  .site-header__actions { margin-left: auto; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin-right: -10px;
    background: none; border: 0; cursor: pointer; color: var(--text-primary);
  }
  .nav-toggle__icon,
  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    display: block; width: 20px; height: 2px; border-radius: 1px;
    background: currentColor;
    transition: transform var(--dur-hover) var(--ease-out),
                background var(--dur-hover) var(--ease-out),
                top var(--dur-hover) var(--ease-out);
  }
  .nav-toggle__icon { position: relative; }
  .nav-toggle__icon::before,
  .nav-toggle__icon::after { content: ""; position: absolute; left: 0; }
  .nav-toggle__icon::before { top: -6px; }
  .nav-toggle__icon::after { top: 6px; }
  .nav-open .nav-toggle__icon { background: transparent; }
  .nav-open .nav-toggle__icon::before { top: 0; transform: rotate(45deg); }
  .nav-open .nav-toggle__icon::after { top: 0; transform: rotate(-45deg); }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; margin-left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 6px 0 14px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid var(--border-subtle);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity var(--dur-hover) var(--ease-out),
                transform var(--dur-hover) var(--ease-out),
                visibility 0s linear var(--dur-hover);
  }
  .nav-open .nav {
    visibility: visible; opacity: 1; transform: none;
    transition: opacity var(--dur-hover) var(--ease-out),
                transform var(--dur-hover) var(--ease-out);
  }
  .nav .nav__link { min-height: 48px; padding-inline: var(--gutter-mobile); }
  @media (prefers-reduced-motion: reduce) {
    .nav { transform: none; transition: none; }
    .nav-open .nav { transition: none; }
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: 64px 32px;
  margin-top: 80px;
  position: relative; z-index: 2;
}
.site-footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; }
}
.site-footer__col h4 {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: var(--tr-eyebrow);
  color: var(--text-muted);
  margin: 0 0 14px;
  font-weight: 500;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer__col a {
  color: var(--text-primary);
  font-size: 0.9375rem;
  display: inline-block;
  min-height: 28px;
}
.site-footer__col a:hover { color: var(--accent-primary); }
.site-footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  color: var(--text-muted);
}
.site-footer__cert {
  display: inline-flex; align-items: center; gap: 8px;
}
.site-footer__cert img {
  height: 36px; width: auto; display: block;
}

/* ---------- Eyebrow tag ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: var(--tr-eyebrow);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(248,245,238,0.02);
}
.tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 12px var(--accent-primary);
}
.tag--terracotta::before { background: var(--accent-secondary); box-shadow: 0 0 12px var(--accent-secondary); }
.tag--on-elevated {
  color: var(--text-on-elevated);
  border-color: rgba(10,10,10,0.16);
  background: rgba(10,10,10,0.04);
}

/* ---------- Number / metric block ---------- */
.metric { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--font-mono); }
.metric__num { font-size: 2rem; color: var(--text-primary); font-weight: 600; letter-spacing: -0.02em; }
.metric__unit { font-size: 0.875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* ---------- Image slot (CLS=0) ---------- */
.imgslot {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  border: 1px dashed rgba(10,10,10,0.18);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(10,10,10,0.025) 0 1px,
      transparent 1px 14px
    ),
    rgba(10,10,10,0.03);
  display: flex; align-items: center; justify-content: center;
  color: rgba(10,10,10,0.4);
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.imgslot--on-dark {
  border-color: var(--border-subtle);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(248,245,238,0.03) 0 1px,
      transparent 1px 14px
    ),
    rgba(248,245,238,0.02);
  color: var(--text-muted);
}

/* ---------- Asymmetric grid utilities ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 40px; } }
.split--asym { grid-template-columns: 1fr; }
@media (min-width: 1024px) { .split--asym { grid-template-columns: 5fr 7fr; gap: 80px; } }

/* ---------- Section divider rule ---------- */
.rule { height: 1px; background: var(--border-subtle); border: 0; margin: 0; }

/* ---------- Mailto pre-pop block ---------- */
.mailtoblock {
  display: grid; gap: 20px;
}
.mailtoblock ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--text-primary);
}
.mailtoblock ul li::before {
  content: "-";
  color: var(--accent-primary);
  margin-right: 12px;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; }
.faq details {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--border-subtle); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  min-height: 44px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent-primary);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  transition: transform var(--dur-hover) var(--ease-out);
}
.faq details[open] summary::after { content: "−"; }
.faq__answer { color: var(--text-muted); margin: 12px 0 0; max-width: 60ch; }

/* ---------- Timeline (numbered, /hosts §4.5 + roadmap) ---------- */
.timeline { display: grid; gap: 0; counter-reset: ti; }
.timeline > li {
  list-style: none;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--border-subtle);
  align-items: baseline;
}
.timeline > li:last-child { border-bottom: 1px solid var(--border-subtle); }
.timeline__when {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--accent-primary);
  letter-spacing: 0.02em;
}
.timeline__what { font-size: var(--fs-body); color: var(--text-primary); }
.timeline__what em {
  font-style: normal; font-weight: 600; display: block; margin-bottom: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/* =============================================================
   =============================================================
   APPENDED - SITE v2 SHARED SECTIONS
   Everything below is reused by two or more of index / hosts /
   drivers. Page-specific composition stays in each page's single
   head <style> block. All demos are CSS-only (no JS anywhere on
   the site except the hosts.html calculator script).
   =============================================================
   ============================================================= */

/* -------------------------------------------------------------
   A. STATUS + DEMO TOKENS
   Fixed status colours (never the brand accent) and count-up
   custom properties used by the product-preview demos.
   ------------------------------------------------------------- */
:root {
  --ok:       #34b27b;   /* success green */
  --warn:     #e0a53f;   /* warning amber */
  --crit:     #c44a2c;   /* critical / terracotta (== accent-secondary) */
  --offline:  #8a8a8a;   /* offline grey */
  --demo-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}
@property --n-kwh   { syntax: '<integer>'; initial-value: 0; inherits: false; }
@property --n-earn  { syntax: '<integer>'; initial-value: 0; inherits: false; }
@property --n-total { syntax: '<integer>'; initial-value: 0; inherits: false; }

/* -------------------------------------------------------------
   B. DEMO CHROME - caption chip, phone frame, browser frame
   ------------------------------------------------------------- */
.demo-cap {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(248,245,238,0.02);
}
.demo-cap::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 10px var(--accent-secondary);
}
.demo-cap--on-elevated {
  color: rgba(10,10,10,0.6);
  border-color: rgba(10,10,10,0.14);
  background: rgba(10,10,10,0.03);
}

/* Phone frame (mobile-first driver app) */
.phone {
  width: 300px; max-width: 100%;
  aspect-ratio: 300 / 620;
  border-radius: 40px;
  padding: 10px;
  background: linear-gradient(160deg, #26262b 0%, #121214 60%, #0c0c0e 100%);
  box-shadow:
    0 1px 0 0 rgba(248,245,238,0.06) inset,
    0 40px 80px -30px rgba(0,0,0,0.8),
    0 0 0 1px rgba(0,0,0,0.6);
  position: relative;
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 31px;
  overflow: hidden;
  background: var(--bg-primary);
}
.phone__notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 108px; height: 22px;
  background: #0c0c0e;
  border-radius: 0 0 14px 14px;
  z-index: 40;
}

/* Browser / dashboard frame (host console) */
.browser {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #101012;
  box-shadow: 0 40px 80px -34px rgba(0,0,0,0.7);
}
.browser__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: #17171a;
  border-bottom: 1px solid var(--border-subtle);
}
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #2c2c30; }
.browser__url {
  margin-left: 10px; flex: 1;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-muted);
  background: #0e0e10; border: 1px solid var(--border-subtle);
  border-radius: var(--r-pill); padding: 6px 14px;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.browser__body { padding: 20px; }

/* -------------------------------------------------------------
   C. DRIVER-HOME DEMO (index + drivers) - signed-in app hub.
   CSS-only: count-up and pulse run on load, no play-gating.
   ------------------------------------------------------------- */
.dh { position: absolute; inset: 0; display: flex; flex-direction: column; }
.dh__scroll { flex: 1; overflow: hidden; }
.dh__status { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 6px; font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--text-muted); }
.dh__status .t { color: var(--text-primary); }
.dh__strip { display: flex; align-items: center; gap: 8px; padding: 2px 20px 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.dh__strip::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-primary); box-shadow: 0 0 8px var(--accent-primary); }
.dh__greet { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 20px 12px; }
.dh__greet .eb { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); }
.dh__greet .name { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; line-height: 1; margin-top: 6px; color: var(--text-primary); }
.dh__avatar { width: 40px; height: 40px; border-radius: 999px; flex-shrink: 0; background: rgba(248,245,238,0.05); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: var(--text-primary); }
.dh__cards { padding: 0 20px 14px; display: grid; gap: 12px; }

.dh__resume { border-radius: 18px; padding: 14px 16px; border: 1px solid rgba(255,230,0,0.4); background: linear-gradient(180deg, rgba(255,230,0,0.07), rgba(255,230,0,0.02)); box-shadow: 0 0 0 4px rgba(255,230,0,0.06); }
.dh__resume-top { display: flex; align-items: center; justify-content: space-between; }
.livepill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(255,230,0,0.14); border: 1px solid rgba(255,230,0,0.5); font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-primary); }
.livepill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-primary); box-shadow: 0 0 10px var(--accent-primary); }
.dh__resume .livepill::before { animation: pulseDot 1.4s ease-in-out infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(0.8)} }
.dh__resume-name { margin-top: 12px; font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dh__resume-meta { margin-top: 6px; display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }
.dh__resume-meta .k { color: var(--accent-primary); }
.dh__resume-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.dh__resume-meta .resume { margin-left: auto; color: var(--text-primary); }

.dh__spend { border-radius: 18px; padding: 15px 16px; border: 1px solid var(--border-subtle); background: rgba(248,245,238,0.035); }
.dh__spend-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dh__spend-top .eb { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); }
.dh__spend-top .ins { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-mono); font-size: 12px; color: var(--accent-primary); }
.dh__money { display: inline-flex; align-items: baseline; gap: 6px; font-family: var(--font-mono); color: var(--text-primary); --n-total: 0; counter-reset: spend var(--n-total); }
.dh__money .cur { font-size: 15px; font-weight: 500; opacity: 0.75; }
.dh__money .amt { font-size: 34px; font-weight: 500; letter-spacing: -0.015em; line-height: 1; }
.dh__money .amt::after { content: counter(spend) ".40"; }
.dh__spend .dh__money { animation: spendCount 2.6s var(--demo-ease) forwards; }
@keyframes spendCount { from{--n-total:0} to{--n-total:128} }
.dh__spend-sub { margin-top: 12px; font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }

.dh__recent-h { display: flex; align-items: center; justify-content: space-between; padding: 2px 20px 2px; }
.dh__recent-h .eb { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); }
.dh__recent-h .all { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.dh__rows { padding: 0 20px; }
.dh__row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border-subtle); }
.dh__row-ic { width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0; background: rgba(248,245,238,0.035); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: var(--accent-primary); }
.dh__row-main { flex: 1; min-width: 0; }
.dh__row-place { font-size: 15px; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dh__row-sub { margin-top: 2px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-muted); }
.dh__row-right { text-align: right; flex-shrink: 0; display: grid; gap: 5px; justify-items: end; }
.dh__row-amt { font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--text-primary); }
.chip-completed { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 999px; border: 1px solid rgba(34,197,94,0.4); background: rgba(34,197,94,0.1); font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #22C55E; white-space: nowrap; }

.dh__tabs { display: flex; flex-shrink: 0; border-top: 1px solid var(--border-subtle); background: rgba(10,10,10,0.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.dh__tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 11px 0 10px; color: var(--text-muted); }
.dh__tab.on { color: var(--accent-primary); }
.dh__tab span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.dh__tab.on span { font-weight: 600; }

/* -------------------------------------------------------------
   D. HOST-OVERVIEW DEMO (index + hosts) - operator console.
   Status colours are FIXED (never the accent). CSS-only.
   ------------------------------------------------------------- */
.ov { display: block; }
.ov__topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 14px; border-bottom: 1px solid var(--border-subtle); }
.ov__brand { display: flex; align-items: center; gap: 10px; }
.ov__logo { width: 26px; height: 26px; border-radius: 7px; background: var(--accent-primary); color: #0A0A0A; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.ov__brand-txt { display: grid; line-height: 1.15; }
.ov__brand-txt b { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--text-primary); }
.ov__brand-txt i { font-style: normal; font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); }
.ov__csms { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--text-muted); border: 1px solid var(--border-subtle); border-radius: 999px; padding: 4px 9px; }
.ov__tools { display: flex; align-items: center; gap: 8px; }
.ov__tool, .ov__tenant, .ov__avatar { font-family: var(--font-mono); font-size: 11px; color: var(--text-primary); border: 1px solid var(--border-subtle); border-radius: 999px; padding: 6px 10px; display: inline-flex; align-items: center; gap: 6px; }
.ov__tenant::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-primary); box-shadow: 0 0 8px var(--accent-primary); }
.ov__main { display: grid; grid-template-columns: 138px 1fr; }
.ov__nav { display: grid; gap: 4px; align-content: start; padding: 14px 10px; border-right: 1px solid var(--border-subtle); }
.ov__nav-item { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 9px; font-size: 12.5px; color: var(--text-muted); }
.ov__nav-item svg { flex-shrink: 0; }
.ov__nav-item.on { background: rgba(255,230,0,0.08); border: 1px solid rgba(255,230,0,0.3); color: var(--accent-primary); }
.ov__content { padding: 16px; display: grid; gap: 14px; min-width: 0; }
.ov__pagehead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ov__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--text-primary); }
.ov__ctx { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
/* All-healthy strip: every marketing mockup shows the calm day. The old
   ov__issue triage cards lost their last consumer and were removed. */
.ov__healthy { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; border-radius: 14px; padding: 14px 16px;
  background: color-mix(in srgb, var(--ok) 9%, rgba(248,245,238,0.02));
  border: 1px solid color-mix(in srgb, var(--ok) 38%, transparent); }
.ov__healthy-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 10px color-mix(in srgb, var(--ok) 70%, transparent); }
.ov__healthy-msg { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ok); text-transform: uppercase; white-space: nowrap; }
.ov__healthy-sub { font-family: var(--font-mono); font-size: 11px; color: rgba(248,245,238,0.55); margin-left: auto; }
.ov__metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.ov__metric { background: var(--bg-elevated); border-radius: 14px; padding: 15px; display: grid; gap: 10px; min-width: 0; }
.ov__metric-label { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.11em; color: rgba(10,10,10,0.55); }
.ov__metric-body { display: block; }
.ov__metric-num { font-family: var(--font-mono); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: #0A0A0A; line-height: 1; white-space: nowrap; }
.ov__metric-num .cur { display: block; font-size: 13px; color: rgba(10,10,10,0.5); margin-bottom: 3px; }
.ov__metric-unit { font-family: var(--font-mono); font-size: 10px; color: rgba(10,10,10,0.5); margin-top: 5px; }
.ov__num-sess { counter-reset: sess var(--n-earn); --n-earn: 0; animation: ovSess 2.4s var(--demo-ease) forwards; }
.ov__num-sess::after { content: counter(sess); }
.ov__num-kwh { counter-reset: kwh var(--n-kwh); --n-kwh: 0; animation: ovKwh 2.6s var(--demo-ease) forwards; }
.ov__num-kwh::after { content: counter(kwh); }
@keyframes ovSess { from{--n-earn:0} to{--n-earn:3} }
@keyframes ovKwh  { from{--n-kwh:0}  to{--n-kwh:593} }
.ov__spark { width: 100%; height: 26px; display: block; margin-top: 12px; }
.ov__spark path.line { fill: none; stroke: var(--accent-primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 200; stroke-dashoffset: 200; animation: ovSparkDraw 2.8s var(--demo-ease) forwards; }
.ov__spark path.area { fill: rgba(255,230,0,0.14); opacity: 0; animation: ovSparkArea 2.8s var(--demo-ease) forwards; }
@keyframes ovSparkDraw { from{stroke-dashoffset:200} to{stroke-dashoffset:0} }
@keyframes ovSparkArea { from{opacity:0} to{opacity:1} }

/* -------------------------------------------------------------
   E. STEP STRIP (index + drivers) - three-step money-flow strip
   ------------------------------------------------------------- */
.flow { display: grid; gap: 20px; }
@media (min-width: 900px) { .flow { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; } }
.flow__step {
  border: 1px solid var(--border-subtle); border-radius: var(--r-lg);
  padding: 26px 24px; background: rgba(248,245,238,0.02);
  display: grid; gap: 12px; align-content: start;
}
.flow__num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--accent-primary); text-transform: uppercase;
}
.flow__h { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; letter-spacing: -0.01em; color: var(--text-primary); }
.flow__b { color: var(--text-muted); font-size: var(--fs-body); line-height: 1.5; }
.flow__arrow {
  display: none; align-items: center; justify-content: center;
  color: var(--accent-secondary); font-family: var(--font-mono); font-size: 20px;
}
@media (min-width: 900px) { .flow__arrow { display: flex; } }
.flow__tag {
  font-family: var(--font-mono); font-size: 11px; color: var(--ok);
  display: inline-flex; align-items: center; gap: 6px;
}

/* -------------------------------------------------------------
   F. EARNINGS CALCULATOR (index static example + hosts live)
   The card renders a complete worked example with no JS; the
   hosts.html inline script only recomputes the numbers.
   ------------------------------------------------------------- */
.calc {
  border-radius: var(--r-xl);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(248,245,238,0.035), rgba(248,245,238,0) 60%), #0d0d0f;
  padding: 26px 24px; box-shadow: var(--shadow-glass);
  display: grid; gap: 22px;
}
@media (min-width: 1024px) { .calc { padding: 32px; } }
.calc__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.calc__title { font-family: var(--font-mono); font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.calc__illus { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-secondary); border: 1px solid rgba(196,74,44,0.4); border-radius: var(--r-pill); padding: 4px 10px; }
.calc__inputs { display: grid; gap: 20px; }
.calc__row { display: grid; gap: 10px; }
.calc__row-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.calc__label { font-size: var(--fs-body); color: var(--text-primary); }
.calc__value { font-family: var(--font-mono); font-size: 1rem; color: var(--accent-primary); font-weight: 600; }
.calc__value .u { color: var(--text-muted); font-weight: 400; font-size: 0.8125rem; margin-left: 4px; }
/* Fluorescent-tube slider: the covered (filled) segment glows accent
   yellow with a white-hot sheen; the rest is dark glass. --fill is kept
   in sync by the page's calc script. */
input[type="range"].calc__slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 12px; border-radius: 999px;
  --fill: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0) 46%) 0 0 / var(--fill) 100% no-repeat,
    linear-gradient(90deg, var(--accent-primary) var(--fill), rgba(248,245,238,0.07) var(--fill));
  border: 1px solid rgba(248,245,238,0.16);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.55), 0 0 16px rgba(255,230,0,0.22);
  outline: none; cursor: pointer;
}
input[type="range"].calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: #fff8b8; border: 3px solid #0d0d0f;
  box-shadow: 0 0 0 1.5px var(--accent-primary), 0 0 18px rgba(255,230,0,0.75);
  cursor: pointer;
}
input[type="range"].calc__slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff8b8; border: 3px solid #0d0d0f;
  box-shadow: 0 0 0 1.5px var(--accent-primary), 0 0 18px rgba(255,230,0,0.75);
  cursor: pointer;
}
.calc__out {
  border-top: 1px solid var(--border-subtle); padding-top: 22px; display: grid; gap: 12px;
}
.calc__out-main { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.calc__out-label { font-family: var(--font-mono); font-size: var(--fs-meta); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.calc__out-num { font-family: var(--font-mono); font-weight: 600; font-size: clamp(2.25rem, 1.4rem + 3.5vw, 3.25rem); letter-spacing: -0.03em; color: var(--text-primary); line-height: 1; }
.calc__out-num .cur { font-size: 0.42em; color: var(--text-muted); margin-right: 6px; }
.calc__out-num .per { font-size: 0.32em; color: var(--text-muted); margin-left: 4px; }
.calc__breakdown { display: grid; gap: 6px; font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--text-muted); }
.calc__breakdown .brow { display: flex; justify-content: space-between; gap: 12px; }
.calc__breakdown .brow b { color: var(--text-primary); font-weight: 500; }
.calc__breakdown .brow--cut b { color: var(--accent-secondary); }
.calc__breakdown .brow--net b { color: var(--accent-primary); }
.calc__foot { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); line-height: 1.5; }

/* -------------------------------------------------------------
   G. SHARED PAGE PATTERNS - section heads, showcase split,
   pre-filled-email CTA note, lazy-paint utility, CTA hover lift
   ------------------------------------------------------------- */
.sec-head { display: grid; gap: 14px; margin-bottom: 44px; max-width: 46ch; }
.sec-head h2 { color: var(--text-primary); }

.showcase { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .showcase { grid-template-columns: 1fr 1fr; gap: 72px; } }
.showcase--flip .showcase__viz { order: -1; }
@media (max-width: 1023px) { .showcase--flip .showcase__viz { order: 0; } }
.showcase__body { display: grid; gap: 20px; align-content: center; }
.showcase__h { color: var(--text-primary); }
.showcase__lead { color: var(--text-muted); font-size: var(--fs-body-lg); line-height: 1.5; max-width: 44ch; }
.showcase__list { display: grid; gap: 12px; margin: 4px 0 8px; padding: 0; }
.showcase__list li {
  list-style: none; display: grid; grid-template-columns: 20px 1fr; gap: 12px;
  color: var(--text-muted); font-size: var(--fs-body); line-height: 1.45;
}
.showcase__list li::before { content: "→"; color: var(--accent-primary); font-family: var(--font-mono); }
.showcase__list b { color: var(--text-primary); font-weight: 600; }
.showcase__viz { display: grid; gap: 14px; justify-items: center; }
.showcase__viz--host { justify-items: stretch; }

/* Pre-filled-email CTA - mono footnote under the mailto button */
.mailto-note { font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--text-muted); line-height: 1.5; }
.mailto-note--on-elevated { color: rgba(10,10,10,0.55); }

/* Below-fold sections paint lazily on Ghana mobile networks */
.cv { content-visibility: auto; contain-intrinsic-size: auto 640px; }

@media (prefers-reduced-motion: no-preference) {
  .btn--primary { transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), background 180ms ease; }
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -12px rgba(255,230,0,0.55), 0 0 0 1px rgba(255,230,0,0.5); }
}

/* -------------------------------------------------------------
   H. REDUCED MOTION - freeze shared demos on their most
   informative frame (page-specific demos freeze in-page)
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .dh__spend .dh__money { --n-total: 128; animation: none !important; }
  .dh__resume .livepill::before { animation: none !important; }

  .ov__num-sess { --n-earn: 3; animation: none !important; }
  .ov__num-kwh  { --n-kwh: 593; animation: none !important; }
  .ov__spark path.line { stroke-dashoffset: 0; animation: none !important; }
  .ov__spark path.area { opacity: 1; animation: none !important; }
}


/* =============================================================
   G. POLISH + MOTION (2026-07-10)
   Phone-row layout fix, dashboard-metric overflow fix, stacked
   host showcase, Choreon-style scroll reveal + hero entrance.
   ============================================================= */

/* Phone mockup: recent-charge rows. The place/sub spans are inline by
   default, which collapses the row and lets the amount overlap the name. */
.dh__row-main { display: grid; gap: 2px; }
.dh__row-place { display: block; }
.dh__row-sub { display: block; margin-top: 0; }
.dh__row-right { min-width: 0; }
.dh__rows { padding-bottom: 8px; }

/* Dashboard mockup metrics: never clip ("5 of 6", settled amount). */
.ov__metric { overflow: hidden; }
.ov__metric-num { font-size: clamp(15px, 1.6vw, 22px); }
.ov__metric-unit { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ov__spark { max-width: 100%; }
/* metrics wrap via auto-fit above; no viewport breakpoint needed */

/* Host showcase stacked: copy row, then the console mockup full-width. */
.showcase--stack { display: block; }
.showcase--stack .showcase__body { max-width: 640px; }
.showcase--stack .showcase__viz { margin-top: 44px; }
.showcase--stack .browser { max-width: none; }

/* Scroll reveal (Choreon: .reveal -> .in, IntersectionObserver adds .rv/.in;
   elements without JS never get .rv, so nothing hides without it). */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.rv.in { opacity: 1; transform: none; }

/* Hero entrance: staggered fade-rise on load (pure CSS, Choreon hdFade). */
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero__lede > * { animation: heroIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__lede > *:nth-child(2) { animation-delay: 0.08s; }
.hero__lede > *:nth-child(3) { animation-delay: 0.16s; }
.hero__lede > *:nth-child(4) { animation-delay: 0.24s; }
.hero__viz { animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both; }
.hero-h__grid > * { animation: heroIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-h__grid > *:nth-child(2) { animation-delay: 0.12s; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero__lede > *, .hero__viz, .hero-h__grid > * { animation: none; }
}

/* =============================================================
   SECTION VIBRANCE - homepage background rhythm
   Color-block inversions + pattern vocabulary. References:
   Figma/Spotify flat accent inversion, Vercel dot grids, Linear
   glow fields, Stripe gradient mesh + angled seams. Foreground /
   background swap per section; no two adjacent treatments equal.
   ============================================================= */

/* -- Volt block: full accent inversion (yellow bg, ink fg) -- */
.sec--volt {
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(196, 74, 44, 0.16) 0%, transparent 55%),
    repeating-linear-gradient(-45deg, rgba(10, 10, 10, 0.05) 0 1px, transparent 1px 14px),
    var(--accent-primary);
  color: var(--text-on-elevated);
  clip-path: polygon(0 0, 100% 1.6%, 100% 100%, 0 98.4%);
  padding-block: calc(var(--section-y-mobile) + 24px);
}
@media (min-width: 1024px) {
  .sec--volt { padding-block: calc(var(--section-y-desktop) + 32px); }
}
.sec--volt .t-eyebrow { color: var(--accent-secondary); }
.sec--volt .t-h2, .sec--volt .flow__h { color: var(--text-on-elevated); }
.sec--volt .flow__num { color: rgba(10, 10, 10, 0.55); }
.sec--volt .flow__b { color: rgba(10, 10, 10, 0.72); }
.sec--volt .flow__step {
  background: rgba(248, 245, 238, 0.28);
  border: 1px solid rgba(10, 10, 10, 0.14);
}
.sec--volt .flow__arrow { color: rgba(10, 10, 10, 0.45); }
.sec--volt .flow__tag {
  color: var(--text-on-elevated);
  border-color: rgba(10, 10, 10, 0.3);
  background: rgba(248, 245, 238, 0.35);
}

/* -- Cream block: paper inversion (hard cut, Figma-style) -- */
.sec--cream {
  background:
    radial-gradient(rgba(10, 10, 10, 0.05) 1px, transparent 1.4px) 0 0 / 22px 22px,
    var(--bg-elevated);
  color: var(--text-on-elevated);
}
.sec--cream .t-eyebrow { color: var(--accent-secondary); }
.sec--cream .t-h2, .sec--cream .showcase__h { color: var(--text-on-elevated); }
.sec--cream .showcase__lead, .sec--cream .showcase__list span { color: rgba(10, 10, 10, 0.68); }
.sec--cream .showcase__list b { color: var(--text-on-elevated); }

/* -- Dot grid on dark (Vercel) -- */
.sec--dots {
  background:
    radial-gradient(70% 90% at 100% 100%, rgba(255, 230, 0, 0.05) 0%, transparent 60%),
    radial-gradient(rgba(248, 245, 238, 0.075) 1px, transparent 1.4px);
  background-size: auto, 22px 22px;
}

/* -- Gradient mesh on dark (Stripe) -- */
.sec--mesh {
  background:
    radial-gradient(56% 70% at 12% 8%, rgba(255, 230, 0, 0.07) 0%, transparent 60%),
    radial-gradient(50% 66% at 88% 92%, rgba(196, 74, 44, 0.12) 0%, transparent 62%),
    var(--bg-primary-warm);
}

/* -- Ember glow + oversized watermark numerals (editorial dark) -- */
.sec--ember {
  position: relative;
  background:
    radial-gradient(70% 90% at 50% 115%, rgba(196, 74, 44, 0.16) 0%, transparent 62%),
    var(--bg-primary);
}
.sec--ember .principle { position: relative; }
.sec--ember .principle::before {
  position: absolute;
  top: -34px;
  right: 0;
  font-family: var(--font-mono);
  font-size: clamp(5rem, 4rem + 6vw, 8.5rem);
  line-height: 1;
  font-weight: 700;
  color: rgba(196, 74, 44, 0.12);
  pointer-events: none;
}
.sec--ember .principle:nth-child(1)::before { content: '01'; }
.sec--ember .principle:nth-child(2)::before { content: '02'; }
.sec--ember .principle:nth-child(3)::before { content: '03'; }

/* -- Volt line grid (blueprint) -- */
/* Memo: bright blueprint-on-paper - ink line grid on cream with a terracotta
   corner glow. Bright sections all carry a pattern; this one keeps the
   blueprint identity it had on dark. */
.sec--grid {
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(196, 74, 44, 0.10) 0%, transparent 58%),
    repeating-linear-gradient(0deg, rgba(10, 10, 10, 0.055) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(10, 10, 10, 0.055) 0 1px, transparent 1px 48px),
    var(--bg-elevated);
  color: var(--text-on-elevated);
}
.sec--grid .t-eyebrow { color: var(--accent-secondary); }
.sec--grid .memo-cta__b { color: rgba(10, 10, 10, 0.66); }
.sec--grid .memo-cta__b em { color: var(--text-on-elevated); }
.sec--grid .btn--ghost { color: var(--text-on-elevated); border-color: rgba(10, 10, 10, 0.35); }
.sec--grid .btn--ghost:hover { border-color: rgba(10, 10, 10, 0.6); background: rgba(10, 10, 10, 0.05); }

/* Stats band: Stripe-style light interlude between the volt inversion and the
   dark drivers showcase - soft warm paper, hairline top/bottom rules. */
.sec--stats {
  background:
    repeating-linear-gradient(0deg, rgba(10, 10, 10, 0.045) 0 1px, transparent 1px 26px),
    color-mix(in srgb, var(--bg-elevated) 94%, var(--accent-primary));
  border-block: 1px solid rgba(10, 10, 10, 0.1);
  color: #0a0a0a;
}
