/* Remote Wand — shared site stylesheet ("Glass Arcade", Apple-leaning pass).
   Dark-first; light mode via prefers-color-scheme. No dependencies.
   Accessibility invariants (earned via Lighthouse, do not drop):
   - --blue-text/--red-text darkened in light mode (accents fail 4.5:1 as text)
   - p a / li a / .callout a stay underlined (link-in-text-block)
   - ≤420px header tightening (4px overflow at 360px)                       */

:root {
  --bg: #08080b;
  --bg-2: #101014;
  --card: rgba(255, 255, 255, 0.04);
  --ink: #f5f5f7;
  --ink-2: #a6a6ae;
  --ink-3: #7c7c86;
  --line: rgba(255, 255, 255, 0.09);
  --blue: #0AB9E6;
  --blue-2: #7dd3fc;
  --blue-text: #2fc4ec;
  --red: #FF3C28;
  --red-2: #ff6a52;
  --red-text: #ff6a52;
  --led: #d9f99d;
  --ok: #6ee7a0;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
  --radius: 22px;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #fbfbfd;
    --bg-2: #ffffff;
    --card: rgba(0, 0, 0, 0.03);
    --ink: #1d1d1f;
    --ink-2: #4c4c52;
    --ink-3: #565c66;
    --line: rgba(10, 12, 20, 0.11);
    --blue-text: #056687;
    --red-text: #c22a12;
    --shadow: 0 22px 48px rgba(25, 35, 60, 0.10);
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }

a { color: var(--blue-text); text-decoration: none; }
a:hover { text-decoration: underline; }
/* links inside running text need more than color to stand out */
p a, li a, .callout a { text-decoration: underline; text-underline-offset: 2px; }

code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 6px;
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 22px; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 26px;
  height: 54px;
}
.brand {
  display: flex; align-items: center; gap: 7px;
  font-weight: 750; font-size: 16.5px; letter-spacing: -0.028em;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .grad {
  background: linear-gradient(90deg, var(--blue), var(--red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links {
  display: flex; align-items: center; gap: 22px;
  margin-left: auto; font-size: 13.5px;
}
.nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.cta {
  color: #002029; background: var(--blue);
  padding: 6px 16px; border-radius: 980px; font-weight: 600;
}
.nav-links a.cta:hover { background: var(--blue-2); }
@media (max-width: 560px) {
  .nav-links { gap: 13px; font-size: 13px; }
  .nav-links a.hide-sm { display: none; }
}
@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .site-header .wrap { gap: 12px; }
  .brand { font-size: 15px; gap: 7px; }
  .nav-links { gap: 10px; font-size: 12.5px; }
  .nav-links a.cta { padding: 5px 12px; }
}

/* ---------- buttons & pills ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 980px; padding: 12px 26px;
  font-size: 15.5px; font-weight: 600; line-height: 1.3;
  border: 1px solid var(--line); color: var(--ink);
  background: var(--card); cursor: pointer;
  font-family: inherit;
}
.btn:hover { text-decoration: none; border-color: var(--ink-3); }
.btn.primary { background: var(--blue); border-color: transparent; color: #002029; }
.btn.primary:hover { background: var(--blue-2); }
.btn[disabled], .btn.disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  padding: 5px 14px; border-radius: 980px;
  background: rgba(10, 185, 230, 0.10); color: var(--blue-text);
  border: 1px solid rgba(10, 185, 230, 0.25);
}
.pill.warm { background: rgba(255, 60, 40, 0.10); color: var(--red-text); border-color: rgba(255, 60, 40, 0.25); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

/* ---------- waitlist form ---------- */

.wl-form { display: flex; justify-content: center; }
.wl-group {
  display: flex; gap: 8px; padding: 6px;
  width: 100%; max-width: 460px;
  border: 1px solid var(--line); border-radius: 980px;
  background: var(--bg-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
@media (prefers-color-scheme: light) {
  .wl-group { box-shadow: 0 10px 30px rgba(25, 35, 60, 0.08); }
}
.wl-group:focus-within { border-color: var(--blue); }
.wl-group input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  color: var(--ink); font-size: 16px; font-family: inherit; padding: 8px 12px 8px 16px;
}
.wl-group input::placeholder { color: var(--ink-3); }
.wl-group .btn.primary { padding: 10px 22px; flex: none; }
.wl-note { margin-top: 14px; font-size: 13.5px; color: var(--ink-3); text-align: center; }
.wl-note.ok { color: var(--ok); }
@media (max-width: 480px) {
  .wl-group { flex-direction: column; border-radius: 22px; padding: 8px; }
  .wl-group input { padding: 10px 12px; text-align: center; }
}

/* ---------- hero ---------- */

.hero { padding: 92px 0 64px; text-align: center; overflow: hidden; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 72px); font-weight: 700;
  letter-spacing: -0.022em; line-height: 1.06;
  max-width: 880px; margin: 0 auto;
}
.hero h1 .neon {
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .sub {
  color: var(--ink-2); font-size: clamp(17px, 2vw, 20px);
  margin: 22px auto 36px; max-width: 620px;
}
.hero .micro {
  display: flex; gap: 8px 22px; flex-wrap: wrap; justify-content: center;
  margin-top: 22px; font-size: 13.5px; color: var(--ink-3);
}
.hero .micro span::before { content: "·"; margin-right: 22px; color: var(--line); }
.hero .micro span:first-child::before { content: none; margin: 0; }

/* ---------- showcase (wide demo under the hero) ---------- */

.showcase { padding: 10px 0 30px; }
.showcase .demo-card { max-width: 880px; margin: 0 auto; box-shadow: var(--shadow); }

/* ---------- sections ---------- */

.section { padding: 88px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section > .wrap > h2 {
  font-size: clamp(30px, 4.4vw, 46px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 12px;
  text-align: center;
}
.section .section-sub {
  color: var(--ink-2); max-width: 620px; margin: 0 auto 44px;
  text-align: center; font-size: 17px;
}

/* ---------- demo cards ---------- */

.demo-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin: 24px 0 0;
}
@media (max-width: 860px) { .demo-grid { grid-template-columns: 1fr; } }

.demo-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2); overflow: hidden;
}
.demo-card .body { padding: 17px 22px 19px; }
.demo-card h3, .demo-card .card-h {
  margin: 0 0 5px; font-size: 16px; font-weight: 650; color: var(--ink);
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
}
.demo-card .tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 2.5px 10px; border-radius: 980px;
  background: rgba(10, 185, 230, 0.10); color: var(--blue-text);
}
.demo-card p { font-size: 13.5px; margin: 0; color: var(--ink-2); }

/* stage: controller | screen — deliberately dark in both color schemes,
   it reads as "a Mac screen in a dim room". */
.stage {
  position: relative; height: 250px;
  display: flex; align-items: center; gap: 8px; overflow: hidden;
  background:
    radial-gradient(420px 210px at 70% 18%, rgba(10, 185, 230, 0.08), transparent 62%),
    #0d0e13;
  border-bottom: 1px solid var(--line);
}
.stage.tall { height: 330px; }

.jc-slot {
  position: relative; width: 30%; flex: none;
  display: flex; justify-content: center; align-items: center;
}
.jc-stack { position: relative; z-index: 0; }
.jc-stack .lit-layer { position: absolute; inset: 0; opacity: 0; z-index: 1; }

/* mini mac screen */
.screen {
  position: relative; flex: 1; height: 200px; margin-right: 18px;
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(165deg, #262a37, #15171f);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.stage.tall .screen { height: 268px; }
.screen .mbar {
  height: 17px; background: rgba(255, 255, 255, 0.07);
  display: flex; align-items: center; gap: 4px; padding: 0 9px;
}
.screen .mbar i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); display: block; }
.doc-lines { padding: 13px 15px; }
.doc-lines .ln { height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.12); margin-bottom: 8px; }

.cursor { position: absolute; width: 14px; height: 14px; z-index: 5; }
.cursor svg { display: block; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6)); }

/* demo 1: air mouse */
@keyframes am-tilt {
  0%, 12% { transform: rotate(0); }
  25% { transform: rotate(-9deg) translateX(-5px); }
  45% { transform: rotate(7deg) translateX(6px); }
  65% { transform: rotate(-4deg); }
  80%, 100% { transform: rotate(0); }
}
.d-air .jc-stack { animation: am-tilt 7s ease-in-out infinite; }
@keyframes am-cursor {
  0%, 12% { left: 26%; top: 52%; }
  25% { left: 14%; top: 30%; }
  45% { left: 62%; top: 64%; }
  65% { left: 44%; top: 38%; }
  80%, 100% { left: 26%; top: 52%; }
}
.d-air .cursor { animation: am-cursor 7s ease-in-out infinite; }
@keyframes am-trail {
  0%, 12% { opacity: 0; }
  25%, 65% { opacity: 0.5; }
  80%, 100% { opacity: 0; }
}
.d-air .trail {
  position: absolute; left: 14%; top: 30%; width: 52%; height: 38%;
  border-radius: 50%; border: 1.5px dashed rgba(10, 185, 230, 0.4);
  opacity: 0; animation: am-trail 7s infinite; pointer-events: none;
}

/* demo 2: magnifier */
@keyframes mag-press {
  0%, 14% { opacity: 0; }
  18%, 86% { opacity: 1; }
  92%, 100% { opacity: 0; }
}
.d-mag .lit-layer { animation: mag-press 8s infinite; }
@keyframes mag-lens {
  0%, 16% { opacity: 0; left: 20%; top: 34%; }
  20% { opacity: 1; }
  45% { left: 52%; top: 30%; }
  70% { left: 34%; top: 56%; }
  86% { opacity: 1; }
  92%, 100% { opacity: 0; }
}
.lens {
  position: absolute; width: 84px; height: 84px; border-radius: 50%; z-index: 6; opacity: 0;
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(0, 0, 0, 0.3);
  background: #333a4c; overflow: hidden;
  animation: mag-lens 8s ease-in-out infinite;
}
.lens .zoomed {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  gap: 9px; justify-content: center; padding: 0 10px;
}
.lens .zoomed i { display: block; height: 11px; border-radius: 6px; background: rgba(255, 255, 255, 0.35); }
.lens .zoomed i:nth-child(2) { width: 70%; background: rgba(10, 185, 230, 0.55); }

/* demo 3: dictation */
@keyframes dict-press {
  0%, 10% { opacity: 0; }
  14%, 78% { opacity: 1; }
  84%, 100% { opacity: 0; }
}
.d-dict .lit-layer { animation: dict-press 9s infinite; }
.dictbar {
  position: absolute; left: 10%; right: 10%; bottom: 14px;
  border-radius: 12px; padding: 8px 12px;
  background: rgba(13, 15, 21, 0.92); border: 1px solid rgba(10, 185, 230, 0.35);
  opacity: 0; z-index: 6; animation: dict-press 9s infinite;
}
.dictbar .waves { display: flex; gap: 3px; align-items: flex-end; height: 14px; margin-bottom: 6px; }
.dictbar .waves i {
  width: 3px; border-radius: 2px; background: var(--blue); display: block;
  animation: wv 0.9s ease-in-out infinite;
}
@keyframes wv { 0%, 100% { height: 4px; } 50% { height: 14px; } }
.dictbar .waves i:nth-child(2n) { animation-delay: 0.15s; }
.dictbar .waves i:nth-child(3n) { animation-delay: 0.3s; }
.typed {
  font-family: var(--mono); font-size: 10px; color: #d5e6f5;
  white-space: nowrap; overflow: hidden; width: 0;
  animation: type 9s steps(34) infinite;
}
@keyframes type {
  0%, 16% { width: 0; }
  70%, 84% { width: 100%; }
  88%, 100% { width: 0; }
}

/* demo 4: approval */
@keyframes appr-card {
  0%, 8% { opacity: 0; transform: translateY(8px); }
  14%, 88% { opacity: 1; transform: translateY(0); }
  94%, 100% { opacity: 0; }
}
.apprcard {
  position: absolute; left: 12%; right: 12%; top: 26%;
  border-radius: 12px; padding: 10px 13px; z-index: 6;
  background: rgba(17, 19, 27, 0.95); border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0; animation: appr-card 9s infinite;
}
.apprcard .t { display: flex; gap: 8px; align-items: center; font-size: 11px; font-weight: 650; color: #f2f4f8; }
.apprcard .t .cc {
  width: 18px; height: 18px; border-radius: 5px; background: #d97757;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; flex: none;
}
.apprcard .sub { font-size: 9.5px; color: #a6adbf; font-family: var(--mono); margin-top: 5px; }
@keyframes appr-press {
  0%, 44% { opacity: 0; }
  48%, 88% { opacity: 1; }
  94%, 100% { opacity: 0; }
}
.d-appr .lit-layer { animation: appr-press 9s infinite; }
@keyframes appr-ok {
  0%, 46% { opacity: 0; transform: scale(0.7); }
  52%, 88% { opacity: 1; transform: scale(1); }
  94%, 100% { opacity: 0; }
}
.apprcard .ok {
  position: absolute; right: 10px; top: 10px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(110, 231, 160, 0.18); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  box-shadow: inset 0 0 0 1.5px rgba(110, 231, 160, 0.5);
  opacity: 0; animation: appr-ok 9s infinite;
}

/* demo 5: presentation */
@keyframes slide-press {
  0%, 20% { opacity: 0; }
  24%, 34% { opacity: 1; }
  38%, 58% { opacity: 0; }
  62%, 72% { opacity: 1; }
  76%, 100% { opacity: 0; }
}
.d-pres .lit-layer { animation: slide-press 8s infinite; }
.slides { position: absolute; inset: 16px 14px 14px; overflow: hidden; border-radius: 8px; }
.slide {
  position: absolute; inset: 0; border-radius: 8px; padding: 14px;
  background: linear-gradient(160deg, #39415a, #252b3d);
}
.slide .slide-t { display: block; margin: 0 0 8px; font-size: 12px; color: #fff; font-weight: 700; }
.slide .ln { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.18); margin-bottom: 6px; width: 80%; }
@keyframes sl1 { 0%, 24% { transform: translateX(0); } 30%, 62% { transform: translateX(-105%); } 68%, 100% { transform: translateX(-210%); } }
@keyframes sl2 { 0%, 24% { transform: translateX(105%); } 30%, 62% { transform: translateX(0); } 68%, 100% { transform: translateX(-105%); } }
@keyframes sl3 { 0%, 24% { transform: translateX(210%); } 30%, 62% { transform: translateX(105%); } 68%, 100% { transform: translateX(0); } }
.slide:nth-child(1) { animation: sl1 8s ease-in-out infinite; }
.slide:nth-child(2) { animation: sl2 8s ease-in-out infinite; }
.slide:nth-child(3) { animation: sl3 8s ease-in-out infinite; }
@keyframes laser {
  0%, 10% { opacity: 0; }
  14% { opacity: 1; left: 30%; top: 40%; }
  40% { left: 64%; top: 52%; }
  60% { left: 42%; top: 66%; }
  90% { opacity: 1; left: 56%; top: 38%; }
  96%, 100% { opacity: 0; }
}
.laser {
  position: absolute; width: 10px; height: 10px; border-radius: 50%; z-index: 7; opacity: 0;
  background: radial-gradient(circle, #ff6a52, #e0301c);
  box-shadow: 0 0 14px rgba(255, 70, 50, 0.9);
  animation: laser 8s ease-in-out infinite;
}

/* demo 6: mode cycle */
@keyframes mode-press {
  0%, 18% { opacity: 0; }
  22%, 40% { opacity: 1; }
  44%, 100% { opacity: 0; }
}
.d-mode .lit-layer { animation: mode-press 7s infinite; }
.hud-mini {
  position: absolute; left: 50%; top: 22px; transform: translateX(-50%); z-index: 7;
  display: flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 11px;
  background: rgba(18, 21, 29, 0.92); border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0; animation: hudpop 7s ease-in-out infinite;
}
@keyframes hudpop {
  0%, 22% { opacity: 0; transform: translate(-50%, -6px); }
  27%, 62% { opacity: 1; transform: translate(-50%, 0); }
  70%, 100% { opacity: 0; }
}
.hud-mini b { font-size: 10.5px; color: #f2f4f8; }
.hud-mini .leds { display: flex; gap: 3px; }
.hud-mini .leds i { width: 7px; height: 7px; border-radius: 2px; background: rgba(255, 255, 255, 0.15); display: block; }
.hud-mini .leds i.on { background: var(--led); box-shadow: 0 0 6px rgba(217, 249, 157, 0.8); }

@media (prefers-reduced-motion: reduce) {
  .stage *, .jc-stack { animation: none !important; }
  .lit-layer { opacity: 1 !important; }
  .lens, .dictbar, .apprcard, .laser, .hud-mini { opacity: 1 !important; }
}

/* ---------- FAQ ---------- */

.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0 4px;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16px;
  padding: 18px 30px 18px 0; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 14px;
  color: var(--ink-3); font-size: 21px; font-weight: 300;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; color: var(--ink-2); font-size: 15px; max-width: 640px; }

/* ---------- CTA band ---------- */

.cta-band { padding: 96px 0; text-align: center; border-top: 1px solid var(--line); }
.cta-band h2 {
  font-size: clamp(30px, 4.4vw, 46px); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.cta-band .section-sub { margin-bottom: 34px; }

/* ---------- page (docs / legal / simple pages) ---------- */

.page { padding: 64px 0 84px; }
.page .wrap { max-width: 740px; }
.page-kicker {
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--blue-text); margin-bottom: 12px;
}
.page h1 {
  font-size: clamp(30px, 4.8vw, 44px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.14; margin-bottom: 14px;
}
.page .lede { color: var(--ink-2); font-size: 17.5px; margin-bottom: 38px; max-width: 620px; }
.page h2 { font-size: 21.5px; font-weight: 700; margin: 44px 0 12px; letter-spacing: -0.01em; }
.page h3 { font-size: 16.5px; font-weight: 650; margin: 26px 0 8px; }
.page p { margin-bottom: 14px; color: var(--ink-2); font-size: 15.5px; }
.page ul, .page ol { margin: 0 0 16px 22px; color: var(--ink-2); font-size: 15.5px; }
.page li { margin-bottom: 8px; }
.page strong { color: var(--ink); }

.callout {
  border: 1px solid var(--line); border-left: 3px solid var(--blue);
  border-radius: 12px; background: var(--bg-2);
  padding: 15px 19px; margin: 20px 0; font-size: 14.5px; color: var(--ink-2);
}
.callout.warm { border-left-color: var(--red); }

.doc-list { list-style: none; margin: 26px 0 0; padding: 0; }
.doc-list li { margin: 0 0 14px; }
.doc-list a {
  display: block; border: 1px solid var(--line); border-radius: 16px;
  background: var(--bg-2); padding: 18px 22px; color: var(--ink);
}
.doc-list a:hover { text-decoration: none; border-color: var(--blue); }
.doc-list b { display: block; font-size: 16px; margin-bottom: 3px; }
.doc-list span { font-size: 14px; color: var(--ink-2); }

/* ---------- forms (recover page) ---------- */

.form-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2); padding: 28px; max-width: 460px; margin-top: 26px;
}
.form-card label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.form-card input[type="email"] {
  width: 100%; padding: 12px 15px; margin-bottom: 14px;
  border-radius: 12px; border: 1px solid var(--line);
  background: var(--card); color: var(--ink);
  font-size: 15.5px; font-family: inherit;
}
.form-card input[type="email"]:focus { outline: 2px solid var(--blue); border-color: transparent; }

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--line); padding: 48px 0 56px; margin-top: 0; }
.site-footer .cols {
  display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between;
}
.site-footer .col b { display: block; font-size: 13px; margin-bottom: 11px; color: var(--ink); }
.site-footer .col a { display: block; font-size: 13.5px; color: var(--ink-2); margin-bottom: 8px; }
.site-footer .col a:hover { color: var(--ink); text-decoration: none; }
.site-footer .fine { margin-top: 36px; font-size: 12.5px; color: var(--ink-3); }
