/* ==========================================================================
   AxionVolt Design System
   Fremont, California — EV Charging Infrastructure
   ========================================================================== */

/* --- Design Tokens ------------------------------------------------------ */
:root {
  /* Brand: electric blue + voltage green */
  --av-blue-50:  #eef6ff;
  --av-blue-100: #d9ebff;
  --av-blue-200: #bcdcff;
  --av-blue-300: #8ec7ff;
  --av-blue-400: #59a7ff;
  --av-blue-500: #2f83fb;
  --av-blue-600: #1963f0;
  --av-blue-700: #144fdd;
  --av-blue-800: #1741b3;
  --av-blue-900: #193b8d;

  --av-volt-300: #86efac;
  --av-volt-400: #4ade80;
  --av-volt-500: #22c55e;
  --av-volt-600: #16a34a;
  --av-volt-700: #15803d;

  --av-ink-50:  #f8fafc;
  --av-ink-100: #f1f5f9;
  --av-ink-200: #e2e8f0;
  --av-ink-300: #cbd5e1;
  --av-ink-400: #94a3b8;
  --av-ink-500: #64748b;
  --av-ink-600: #475569;
  --av-ink-700: #334155;
  --av-ink-800: #1e293b;
  --av-ink-900: #0f172a;
  --av-ink-950: #020617;

  --av-amber-100: #fef3c7;
  --av-amber-500: #f59e0b;
  --av-amber-700: #b45309;

  /* Semantic (light mode default) */
  --bg:            #ffffff;
  --bg-subtle:     var(--av-ink-50);
  --bg-muted:      var(--av-ink-100);
  --bg-inverse:    var(--av-ink-900);
  --surface:       #ffffff;
  --surface-raised:#ffffff;
  --border:        var(--av-ink-200);
  --border-strong: var(--av-ink-300);
  --text:          var(--av-ink-900);
  --text-muted:    var(--av-ink-600);
  --text-subtle:   var(--av-ink-500);
  --text-inverse:  #ffffff;
  --accent:        var(--av-blue-600);
  --accent-hover:  var(--av-blue-700);
  --accent-soft:   var(--av-blue-50);
  --volt:          var(--av-volt-600);
  --volt-soft:     #ecfdf5;

  /* Typography scale */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --fs-xs:   0.78rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.3rem;
  --fs-2xl:  clamp(1.5rem, 1.2rem + 1.2vw, 1.95rem);
  --fs-3xl:  clamp(1.85rem, 1.4rem + 2vw, 2.6rem);
  --fs-4xl:  clamp(2.2rem, 1.5rem + 3.2vw, 3.6rem);

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.5rem;   --sp-6: 2rem;
  --sp-7: 3rem;     --sp-8: 4rem;     --sp-9: 6rem;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow:    0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.13);

  --maxw: 1180px;
  --maxw-prose: 78ch;
}

/* Dark mode — respects OS preference, overridable via [data-theme] */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:            var(--av-ink-950);
    --bg-subtle:     #0b1220;
    --bg-muted:      var(--av-ink-800);
    --bg-inverse:    var(--av-ink-100);
    --surface:       #0d1526;
    --surface-raised:#141d31;
    --border:        #1e2b45;
    --border-strong: #2c3d5c;
    --text:          var(--av-ink-100);
    --text-muted:    var(--av-ink-400);
    --text-subtle:   var(--av-ink-500);
    --text-inverse:  var(--av-ink-950);
    --accent:        var(--av-blue-400);
    --accent-hover:  var(--av-blue-300);
    --accent-soft:   #10203c;
    --volt:          var(--av-volt-400);
    --volt-soft:     #0c2417;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow:    0 4px 14px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
  }
}

:root[data-theme="dark"] {
  --bg:            var(--av-ink-950);
  --bg-subtle:     #0b1220;
  --bg-muted:      var(--av-ink-800);
  --bg-inverse:    var(--av-ink-100);
  --surface:       #0d1526;
  --surface-raised:#141d31;
  --border:        #1e2b45;
  --border-strong: #2c3d5c;
  --text:          var(--av-ink-100);
  --text-muted:    var(--av-ink-400);
  --text-subtle:   var(--av-ink-500);
  --text-inverse:  var(--av-ink-950);
  --accent:        var(--av-blue-400);
  --accent-hover:  var(--av-blue-300);
  --accent-soft:   #10203c;
  --volt:          var(--av-volt-400);
  --volt-soft:     #0c2417;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow:    0 4px 14px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--sp-4);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p { margin: 0 0 var(--sp-4); text-wrap: pretty; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }

img, svg, video { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.35rem; }
li { margin-bottom: var(--sp-2); }

/* Visible focus for keyboard users — accessibility + a Lighthouse signal */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* --- Layout ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-8); }
.section--subtle { background: var(--bg-subtle); }

.prose { max-width: var(--maxw-prose); }
.prose h2 { margin-top: var(--sp-7); }
.prose h3 { margin-top: var(--sp-6); }
.prose > :first-child { margin-top: 0; }

.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: var(--sp-3) var(--sp-5);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* --- Header / Nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 4.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { color: var(--text); }
.brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.brand span em { font-style: normal; color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding-block: var(--sp-2);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-3); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  color: var(--text);
}
.nav-toggle svg { width: 22px; height: 22px; }

.theme-toggle {
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 0;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: var(--sp-3) var(--sp-5) var(--sp-5);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { margin: 0; }
  .nav-links a {
    display: block;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--fs-base);
  }

  /* The header CTA crowds out the icon buttons on narrow screens.
     Every page carries its own call to action, so drop it here. */
  .nav-actions .btn--primary { display: none; }
}

@media (max-width: 380px) {
  .brand span { font-size: 1.05rem; }
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: var(--fs-sm);
  font-weight: 650;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease,
              border-color .16s ease, transform .16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); color: #fff; }

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost { background: transparent; color: var(--accent); padding-inline: 0.4rem; }
.btn--ghost:hover { text-decoration: underline; }

.btn--lg { padding: 0.95rem 1.9rem; font-size: var(--fs-base); }
.btn--block { width: 100%; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 78% 8%, var(--accent-soft), transparent 62%),
    linear-gradient(180deg, var(--bg-subtle), var(--bg));
  padding-block: var(--sp-9) var(--sp-8);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-7);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .hero { padding-block: var(--sp-7) var(--sp-7); }
}

.hero h1 { margin-bottom: var(--sp-5); }
.hero-lede {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: var(--sp-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.hero-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

/* --- Eyebrow / Badges --------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 650;
  background: var(--volt-soft);
  color: var(--volt);
  border: 1px solid color-mix(in srgb, var(--volt) 26%, transparent);
}
.badge--accent { background: var(--accent-soft); color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 26%, transparent); }
.badge--amber { background: var(--av-amber-100); color: var(--av-amber-700);
  border-color: color-mix(in srgb, var(--av-amber-500) 34%, transparent); }

/* --- Cards -------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card--link:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.card h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.card p { color: var(--text-muted); font-size: var(--fs-sm); }
.card > :last-child { margin-bottom: 0; }
.card-foot { margin-top: auto; padding-top: var(--sp-4); }

.card-media {
  margin: calc(var(--sp-5) * -1) calc(var(--sp-5) * -1) var(--sp-5);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: var(--bg-muted);
  aspect-ratio: 16 / 10;
}
.card-media img, .card-media svg { width: 100%; height: 100%; object-fit: cover; }

.icon-box {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}
.icon-box svg { width: 24px; height: 24px; }

/* --- Spec tables -------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  margin-bottom: var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
.table-wrap > table { margin-bottom: 0; }
.table-wrap caption { padding: var(--sp-4) var(--sp-4) var(--sp-3); }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 520px;
}
caption {
  text-align: left;
  font-weight: 650;
  color: var(--text-muted);
  padding-bottom: var(--sp-3);
}
th, td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
thead th {
  background: var(--bg-muted);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
tbody tr:last-child td,
tbody tr:last-child th { border-bottom: none; }
tbody th { font-weight: 600; color: var(--text); }

/* --- Stats -------------------------------------------------------------- */
.stat { text-align: center; padding: var(--sp-4) var(--sp-2); }
.stat dt { font-size: var(--fs-sm); color: var(--text-muted); order: 2; }
.stat dd {
  margin: 0 0 var(--sp-1);
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  order: 1;
}
.stat { display: flex; flex-direction: column; }

/* --- FAQ ---------------------------------------------------------------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--sp-3);
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: var(--sp-4) var(--sp-5);
  font-weight: 650;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-answer { padding: var(--sp-4) var(--sp-5); color: var(--text-muted); font-size: var(--fs-sm); }
.faq-answer > :last-child { margin-bottom: 0; }

/* --- Callout ------------------------------------------------------------ */
.callout {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  padding: var(--sp-4) var(--sp-5);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--sp-5);
  font-size: var(--fs-sm);
}
.callout > :last-child { margin-bottom: 0; }
.callout strong { color: var(--text); }
.callout--amber {
  border-left-color: var(--av-amber-500);
  background: color-mix(in srgb, var(--av-amber-500) 9%, transparent);
}

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--av-blue-800), var(--av-blue-600) 55%, var(--av-volt-600));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--sp-7) var(--sp-6);
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: var(--sp-3); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 44rem; margin-inline: auto; }
.cta-band .btn--primary { background: #fff; color: var(--av-blue-700); }
.cta-band .btn--primary:hover { background: var(--av-blue-50); color: var(--av-blue-800); }
.cta-band .btn--secondary { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band .btn--secondary:hover { border-color: #fff; color: #fff;
  background: rgba(255,255,255,0.1); }
.cta-actions {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  justify-content: center; margin-top: var(--sp-5);
}

/* --- Breadcrumbs -------------------------------------------------------- */
.breadcrumb {
  font-size: var(--fs-sm);
  color: var(--text-subtle);
  padding-block: var(--sp-4);
}
.breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 0.45rem; margin: 0; padding: 0;
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 0.45rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--border-strong); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 600; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding-block: var(--sp-7) var(--sp-5);
  margin-top: var(--sp-8);
  font-size: var(--fs-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { color: var(--text-muted); max-width: 28rem; }
.site-footer h2 {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
  margin-bottom: var(--sp-3);
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: var(--sp-2); }
.footer-list a { color: var(--text-muted); text-decoration: none; }
.footer-list a:hover { color: var(--accent); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: space-between;
  color: var(--text-subtle);
  font-size: var(--fs-xs);
}
.footer-bottom ul {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: var(--sp-4); margin: 0; padding: 0;
}
.footer-bottom a { color: var(--text-subtle); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

address { font-style: normal; color: var(--text-muted); }

/* --- Utilities ---------------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mt-6 { margin-top: var(--sp-6); }
.muted { color: var(--text-muted); }
.small { font-size: var(--fs-sm); }
.lede { font-size: var(--fs-lg); color: var(--text-muted); }
.max-prose { max-width: var(--maxw-prose); }

.section-head { max-width: 48rem; margin-bottom: var(--sp-6); }
.section-head.text-center { margin-inline: auto; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.list-check { list-style: none; padding: 0; }
.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--sp-3);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 1.05rem; height: 1.05rem;
  background: var(--volt);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7.6 14.7 3.3 10.4l1.4-1.4 2.9 2.9 7.7-7.7 1.4 1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7.6 14.7 3.3 10.4l1.4-1.4 2.9 2.9 7.7-7.7 1.4 1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* --- Print -------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-band, .hero-actions { display: none; }
  body { color: #000; background: #fff; }
  a::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
