/* The Tailscale App Connector — a visual explainer.
   Theme tokens, layout, demo containers, color-coded parts. */

:root {
  /* Light "paper" theme (default) */
  --bg: #f4ecdf;
  --bg-alt: #ece1ca;
  --paper: #fbf6e9;
  --ink: #1a1612;
  --ink-soft: #3b332b;
  --ink-muted: #7a6f5f;
  --ink-faint: #b3a98f;
  --rule: #d9cdb0;
  --rule-soft: #e8dec6;

  /* Networking palette — used by SVG demos and inline part labels */
  --home: #c0223a;          /* your laptop / origin — red */
  --home-soft: #e88b97;
  --home-wash: rgba(192, 34, 58, 0.12);

  --remote: #6d28d9;        /* the cloud box / remote endpoint — violet */
  --remote-soft: #b39bea;
  --remote-wash: rgba(109, 40, 217, 0.12);

  --tunnel: #0d8a73;        /* encrypted private path — teal */
  --tunnel-soft: #6fc2af;
  --tunnel-wash: rgba(13, 138, 115, 0.14);

  --public: #8b8b8b;        /* the open public internet — neutral grey */
  --public-soft: #c2c2c2;
  --public-wash: rgba(139, 139, 139, 0.14);

  --service: #1f7a3a;       /* destination server (Anthropic etc.) — green */
  --service-soft: #74b88a;
  --service-wash: rgba(31, 122, 58, 0.14);

  --blocked: #b54a13;       /* rejected / failed traffic — burnt orange */
  --blocked-soft: #e69774;
  --blocked-wash: rgba(181, 74, 19, 0.14);

  --ledger: #c69226;        /* the NAT ledger / bookkeeping — gold */
  --ledger-soft: #e6c97a;
  --ledger-wash: rgba(198, 146, 38, 0.14);

  --key: #d97706;           /* keys / OAuth / locks — amber */
  --key-soft: #f3b865;
  --key-wash: rgba(217, 119, 6, 0.14);

  --serif: 'Source Serif 4', 'IBM Plex Serif', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;

  --sidenav-w: 280px;
  --content-max: 720px;
  --content-pad: 32px;
  --demo-radius: 10px;
}

[data-theme="lacquer"] {
  --bg: #0c1310;
  --bg-alt: #131c17;
  --paper: #1a2520;
  --ink: #f1ead4;
  --ink-soft: #d6cdb0;
  --ink-muted: #9b9277;
  --ink-faint: #5a5544;
  --rule: rgba(214, 205, 176, 0.18);
  --rule-soft: rgba(214, 205, 176, 0.08);

  --home: #ff6b7d;
  --home-soft: #c53a4d;
  --home-wash: rgba(255, 107, 125, 0.16);
  --remote: #b39bea;
  --remote-soft: #6d28d9;
  --remote-wash: rgba(179, 155, 234, 0.18);
  --tunnel: #5fd9bf;
  --tunnel-soft: #1f9c84;
  --tunnel-wash: rgba(95, 217, 191, 0.18);
  --public: #b8b8b8;
  --public-soft: #777777;
  --public-wash: rgba(184, 184, 184, 0.16);
  --service: #79d49a;
  --service-soft: #2c8b50;
  --service-wash: rgba(121, 212, 154, 0.16);
  --blocked: #ff8a4f;
  --blocked-soft: #b54a13;
  --blocked-wash: rgba(255, 138, 79, 0.18);
  --ledger: #e6c97a;
  --ledger-soft: #b08a30;
  --ledger-wash: rgba(230, 201, 122, 0.18);
  --key: #ffb454;
  --key-soft: #c47e1a;
  --key-wash: rgba(255, 180, 84, 0.18);
}

[data-theme="study"] {
  --bg: #ffffff;
  --bg-alt: #f7f4ef;
  --paper: #ffffff;
  --ink: #15110c;
  --ink-soft: #2f2920;
  --ink-muted: #6f6857;
  --ink-faint: #b8b0a0;
  --rule: #e6dcc4;
  --rule-soft: #f1ead4;

  --home: #b21b32;
  --home-soft: #df8090;
  --home-wash: rgba(178, 27, 50, 0.10);
  --remote: #5b21b6;
  --remote-soft: #a78bda;
  --remote-wash: rgba(91, 33, 182, 0.10);
  --tunnel: #0b6f5e;
  --tunnel-soft: #6cb8a8;
  --tunnel-wash: rgba(11, 111, 94, 0.10);
  --public: #777777;
  --public-soft: #bcbcbc;
  --public-wash: rgba(119, 119, 119, 0.10);
  --service: #1a6c34;
  --service-soft: #6fae84;
  --service-wash: rgba(26, 108, 52, 0.10);
  --blocked: #a4400f;
  --blocked-soft: #df9070;
  --blocked-wash: rgba(164, 64, 15, 0.10);
  --ledger: #b88322;
  --ledger-soft: #dcbb6d;
  --ledger-wash: rgba(184, 131, 34, 0.12);
  --key: #c66308;
  --key-soft: #efaa5a;
  --key-wash: rgba(198, 99, 8, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-feature-settings: 'kern', 'liga';
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  text-wrap: pretty;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--ink-faint); }
a:hover { color: var(--tunnel); border-bottom-color: var(--tunnel); }

/* ───────────── Sidebar ───────────── */

.sidenav {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: var(--sidenav-w);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  z-index: 50;
  border-right: 1px solid var(--rule-soft);
  background: var(--bg);
  overflow-y: auto;
}

.brand {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--ink-soft);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--tunnel);
  box-shadow: 0 0 0 0 var(--tunnel-wash);
  animation: ping 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 var(--tunnel-wash); }
  70%  { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.brand-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 28px 22px;
}

.nav { display: flex; flex-direction: column; gap: 2px; }
.nav a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 12px;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--ink-soft);
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.nav a > span:not(.nav-num) {
  display: block;
  min-width: 0;
}
.nav a:hover { background: var(--tunnel-wash); color: var(--tunnel); border-bottom: 0; }
.nav a.is-active { background: var(--tunnel-wash); color: var(--tunnel); font-weight: 500; }
.nav-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 500;
  min-width: 20px;
  flex-shrink: 0;
}
.nav a.is-active .nav-num,
.nav a:hover .nav-num { color: var(--tunnel); }

.theme-picker {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.theme-label {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  font-weight: 600;
  padding: 0 8px 6px;
}
.theme-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 7px 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
  border-radius: 5px;
  text-align: left;
  transition: color .15s, background .15s;
}
.theme-btn:hover { color: var(--ink); background: var(--rule-soft); }
.theme-btn.is-active {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* ───────────── Content ───────────── */

.content {
  margin-left: var(--sidenav-w);
  padding: 64px var(--content-pad) 96px;
  max-width: calc(var(--sidenav-w) + var(--content-max) + var(--content-pad) * 2);
}

.hero {
  max-width: var(--content-max);
  margin: 0 auto 56px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero .lede {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-weight: 400;
  max-width: 56ch;
}
.hero .meta {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 28px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero .meta span::before {
  content: '·';
  margin-right: 18px;
  color: var(--ink-faint);
}
.hero .meta span:first-child::before { content: ''; margin: 0; }

section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 56px 0;
  border-top: 1px solid var(--rule-soft);
}
section:first-of-type { border-top: 0; }

.section-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
  color: var(--ink);
}
section h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.2px;
  margin: 36px 0 12px;
  color: var(--ink);
}
section p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 16px;
  color: var(--ink-soft);
}
section p em { color: var(--ink); font-style: italic; }
section p strong { color: var(--ink); font-weight: 600; }

section ol, section ul {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding-left: 24px;
}
section ol li, section ul li { margin: 8px 0; }

.callout {
  border-left: 3px solid var(--ledger);
  padding: 6px 16px;
  margin: 22px 0;
  background: var(--ledger-wash);
  font-size: 15.5px;
  color: var(--ink-soft);
}
.callout strong { color: var(--ink); }

.aside {
  border-left: 3px solid var(--rule);
  padding: 4px 16px;
  margin: 18px 0;
  font-size: 14.5px;
  color: var(--ink-muted);
  font-style: italic;
}

/* ───────────── Color-coded inline parts ───────────── */

.k-home    { color: var(--home);    font-weight: 600; }
.k-remote  { color: var(--remote);  font-weight: 600; }
.k-tunnel  { color: var(--tunnel);  font-weight: 600; }
.k-public  { color: var(--public);  font-weight: 600; }
.k-service { color: var(--service); font-weight: 600; }
.k-blocked { color: var(--blocked); font-weight: 600; }
.k-ledger  { color: var(--ledger);  font-weight: 600; }
.k-key     { color: var(--key);     font-weight: 600; }

code, .mono {
  font-family: var(--mono);
  font-size: 0.92em;
  background: var(--bg-alt);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--ink);
}

/* ───────────── Demo container ───────────── */

.demo {
  margin: 24px 0 8px;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--demo-radius);
  padding: 18px 18px 14px;
  position: relative;
}
.demo-stage {
  width: 100%;
  display: block;
  border-radius: 6px;
  background: var(--bg-alt);
  overflow: hidden;
}
.demo-stage svg {
  display: block;
  width: 100%;
  height: auto;
}

.demo-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.demo-caption {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 10px;
  letter-spacing: 0.2px;
}

.btn-play, .btn-action {
  appearance: none;
  border: 1px solid var(--rule);
  background: var(--bg-alt);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, color .15s, border-color .15s;
  touch-action: manipulation;
}
.btn-play:hover, .btn-action:hover { color: var(--ink); border-color: var(--ink-faint); }
.btn-play .glyph {
  width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent currentColor;
}
.btn-play.is-playing .glyph {
  width: 8px; height: 9px;
  border: 0;
  background: linear-gradient(to right, currentColor 0 3px, transparent 3px 5px, currentColor 5px 8px);
}

/* Slider */
.slider {
  -webkit-appearance: none; appearance: none;
  flex: 1;
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  outline: none;
  min-width: 120px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink-soft);
  cursor: pointer;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--rule);
}
.slider::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink-soft);
  cursor: pointer;
  border: 2px solid var(--paper);
}
.slider.k-home::-webkit-slider-thumb     { background: var(--home); }
.slider.k-remote::-webkit-slider-thumb   { background: var(--remote); }
.slider.k-tunnel::-webkit-slider-thumb   { background: var(--tunnel); }
.slider.k-service::-webkit-slider-thumb  { background: var(--service); }
.slider.k-key::-webkit-slider-thumb      { background: var(--key); }
.slider.k-ledger::-webkit-slider-thumb   { background: var(--ledger); }

.slider-label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-muted);
  min-width: 60px;
  letter-spacing: 0.2px;
}
.slider-value {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  min-width: 56px;
  text-align: right;
}

/* Toggle (segmented control) */
.seg {
  display: inline-flex;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 2px;
  background: var(--bg-alt);
  flex-wrap: wrap;
}
.seg button {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-muted);
  padding: 5px 14px;
  cursor: pointer;
  border-radius: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  touch-action: manipulation;
}
.seg button.is-on {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* Domain checklist (used in s06 magic-map demo) */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--sans);
  font-size: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--rule-soft);
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  max-width: 100%;
}
.checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 3px 4px;
  border-radius: 4px;
}
.checklist label:hover { background: var(--paper); }
.checklist input[type=checkbox] { accent-color: var(--tunnel); }
.checklist .domain { font-family: var(--mono); }

/* Compact readouts */
.readout-row {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.readout-row .k { color: var(--ink-muted); margin-right: 6px; letter-spacing: 0.3px; }

/* Code blocks for the setup section */
pre.code {
  background: var(--bg-alt);
  border: 1px solid var(--rule-soft);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 16px 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  overflow-x: auto;
  line-height: 1.55;
}
pre.code code { background: transparent; padding: 0; font-size: inherit; }
pre.code .c  { color: var(--ink-muted); }   /* comment */
pre.code .s  { color: var(--service); }     /* string */
pre.code .v  { color: var(--remote); }      /* variable / placeholder */
pre.code .k  { color: var(--tunnel); font-weight: 600; }  /* keyword */

/* Numbered step list for setup */
.steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}
.steps > li {
  position: relative;
  counter-increment: step;
  padding: 0 0 24px 56px;
  margin: 0;
  border-left: 1px solid var(--rule);
  margin-left: 18px;
}
.steps > li:last-child { border-left: 0; padding-bottom: 0; }
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: -18px;
  top: -4px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--tunnel);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps > li h3 {
  margin-top: 0;
  font-size: 19px;
  letter-spacing: -0.1px;
}
.steps > li h3 .step-hint {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 10px;
}
.steps > li h4.subpath {
  margin: 32px 0 12px;
  display: inline-block;
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--tunnel);
  background: var(--tunnel-wash);
  border: 1.5px solid var(--tunnel);
  border-radius: 999px;
  padding: 6px 16px 7px;
}
.steps > li h4.subpath:first-of-type { margin-top: 18px; }
.steps > li p:last-child { margin-bottom: 0; }

/* Generic SVG defaults */
.svg-bg { fill: var(--bg-alt); }
.svg-paper { fill: var(--paper); }
.svg-ink { fill: var(--ink); }
.svg-stroke { stroke: var(--ink-soft); fill: none; }
.svg-rule { stroke: var(--rule); fill: none; }
.svg-label {
  font-family: var(--sans);
  font-size: 11px;
  fill: var(--ink-soft);
}
.svg-label.bold { font-weight: 600; fill: var(--ink); }
.svg-label.muted { fill: var(--ink-muted); }
.svg-mono {
  font-family: var(--mono);
  font-size: 10.5px;
  fill: var(--ink-soft);
}

/* Hamburger toggle button. Hidden on desktop; revealed on mobile. */
.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
  padding: 6px 10px 6px 8px;
  align-items: center;
  gap: 8px;
  touch-action: manipulation;
}
.nav-toggle:hover { color: var(--ink); border-color: var(--ink-faint); }
.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 16px;
  height: 14px;
}
.nav-toggle-bars > span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform .2s, opacity .2s;
}
.sidenav.is-open .nav-toggle-bars > span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}
.sidenav.is-open .nav-toggle-bars > span:nth-child(2) { opacity: 0; }
.sidenav.is-open .nav-toggle-bars > span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Mobile */
@media (max-width: 900px) {
  :root { --sidenav-w: 0px; }
  .sidenav {
    position: sticky;
    top: 0;
    height: auto;
    width: 100%;
    padding: 10px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
    background: var(--bg);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 0;
    align-items: center;
  }
  .sidenav .brand { margin-bottom: 0; grid-column: 1; grid-row: 1; }
  .sidenav .brand-sub { display: none; }
  .nav-toggle { display: inline-flex; grid-column: 2; grid-row: 1; }

  /* By default on mobile, the nav list and the theme picker are hidden;
     they expand below the bar when .sidenav.is-open is set. */
  .sidenav .nav,
  .sidenav .theme-picker { display: none; }
  .sidenav.is-open {
    grid-template-rows: auto auto auto;
    row-gap: 12px;
    padding-bottom: 14px;
  }
  .sidenav.is-open .nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 4px;
    max-height: 60vh;
    overflow-y: auto;
  }
  .sidenav.is-open .nav a { padding: 8px 10px; font-size: 13.5px; }
  .sidenav.is-open .theme-picker {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid var(--rule-soft);
  }
  .sidenav.is-open .theme-picker .theme-label {
    padding: 0;
    margin-right: 4px;
    line-height: 1;
  }
  .sidenav.is-open .theme-picker .theme-btn {
    padding: 4px 12px;
    line-height: 1;
  }

  .content { margin-left: 0; padding: 24px 18px 64px; }
  .hero h1 { font-size: 38px; }
  .hero .lede { font-size: 17px; }
  .hero .meta { font-size: 11px; gap: 8px; }
  .hero .meta span::before { margin-right: 8px; }

  /* Compact demo controls on mobile so segmented buttons,
     slider labels, and slider values all fit on one line. */
  .demo-controls { gap: 6px; }
  .seg { gap: 0; padding: 1px; }
  .seg button {
    font-size: 10px;
    padding: 4px 7px;
    letter-spacing: 0.1px;
  }
  .slider-label {
    min-width: 0;
    font-size: 11px;
  }
  .slider-value {
    min-width: 0;
    font-size: 11px;
    text-align: left;
  }
  .slider { width: 100px; }
  .btn-play, .btn-action {
    padding: 4px 9px;
    font-size: 11px;
  }
  section h2 { font-size: 28px; }
  section p, section ol, section ul { font-size: 16px; }
  .steps > li { padding-left: 48px; margin-left: 14px; }
  .steps > li::before { width: 30px; height: 30px; left: -15px; font-size: 12px; }
}

/* Footer */
.colophon {
  max-width: var(--content-max);
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-muted);
}
.colophon a { border-bottom-color: var(--rule); }
.colophon p { margin: 0 0 8px; }
