/* =====================================================================
   Bubbly tech.

   Soft depth instead of hard neon: glassy surfaces, rounded everything,
   drifting colour blobs behind the page, and springy responses to the
   pointer. Still no webfonts - a blocking font request in front of a
   27 MB WebGL payload is a bad trade.
   ===================================================================== */

:root {
  --bg:        #080b18;
  --bg-2:      #0d1226;
  --surface:   rgba(255, 255, 255, .055);
  --surface-2: rgba(255, 255, 255, .085);
  --stroke:    rgba(255, 255, 255, .11);
  --stroke-2:  rgba(255, 255, 255, .2);

  --text:      #eef1ff;
  --text-dim:  #9aa3c4;

  --violet: #8b5cf6;
  --indigo: #6366f1;
  --cyan:   #22d3ee;
  --sky:    #38bdf8;
  --teal:   #2dd4bf;
  --lime:   #a3e635;
  --amber:  #fbbf24;
  --orange: #fb923c;
  --pink:   #f472b6;
  --rose:   #fb7185;

  --accent: var(--violet);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease:   cubic-bezier(.22, 1, .36, 1);

  --mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Roboto, sans-serif;

  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scrollbar-color: var(--violet) var(--bg); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Drifting colour blobs. Fixed and behind everything; blur does the work so
   the shapes themselves can stay crude. */
.blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 52vmax;
  height: 52vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .34;
  will-change: transform;
}

.blob.b1 { background: var(--violet); top: -18vmax; left: -12vmax;  animation: drift1 26s ease-in-out infinite; }
.blob.b2 { background: var(--cyan);   top: 22vmax;  right: -18vmax; animation: drift2 31s ease-in-out infinite; }
.blob.b3 { background: var(--pink);   bottom: -22vmax; left: 26vmax; animation: drift3 38s ease-in-out infinite; opacity: .26; }

@keyframes drift1 {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(8vmax,6vmax,0) scale(1.12); }
}
@keyframes drift2 {
  0%,100% { transform: translate3d(0,0,0) scale(1.05); }
  50%     { transform: translate3d(-9vmax,8vmax,0) scale(.92); }
}
@keyframes drift3 {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(6vmax,-8vmax,0) scale(1.15); }
}

body > *:not(.blobs) { position: relative; z-index: 1; }

a { color: var(--cyan); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------------------------------------------------------------
   Glass surface, shared by cards / panels / jobs
   --------------------------------------------------------------- */

.glass,
.card,
.panel,
.job,
.cabinet {
  background: var(--surface);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------------------------------------------------------------
   Header
   --------------------------------------------------------------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 11, 24, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--stroke);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.brand .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: 0 0 16px var(--violet);
  animation: pulse 2.6s var(--ease) infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1);   opacity: 1;  }
  50%     { transform: scale(1.3); opacity: .7; }
}

header.site nav { display: flex; gap: 4px; flex-wrap: wrap; }

header.site nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  transition: color .2s, background .2s, transform .25s var(--spring);
}

header.site nav a:hover {
  color: var(--text);
  background: var(--surface-2);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------
   Sections
   --------------------------------------------------------------- */

section { padding: 66px 0; }

.section-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }

h1, h2, h3 { letter-spacing: -.02em; }

h1 {
  font-size: clamp(34px, 7vw, 66px);
  line-height: 1.04;
  margin: 0 0 18px;
  font-weight: 800;
  background: linear-gradient(120deg, #fff 12%, var(--violet) 45%, var(--cyan) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 { font-size: clamp(22px, 3.4vw, 32px); margin: 0; font-weight: 750; }

h2 .num {
  font-family: var(--mono);
  font-size: .52em;
  color: var(--violet);
  margin-right: 12px;
  vertical-align: middle;
  opacity: .85;
}

h3 { font-size: 17px; margin: 0 0 6px; font-weight: 650; }

.rule {
  height: 1px;
  margin: 18px 0 32px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), transparent);
  opacity: .5;
}

.lede { color: var(--text-dim); font-size: 17.5px; max-width: 64ch; margin: 0 0 18px; }

.kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 14px;
}

.hero { padding: 76px 0 30px; }
.hero .lede strong { color: var(--text); font-weight: 650; }

/* ---------------------------------------------------------------
   Search + filters
   --------------------------------------------------------------- */

.explorer-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.search-shell {
  position: relative;
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0 20px;
  transition: border-color .2s, box-shadow .25s, transform .3s var(--spring);
}

.search-shell:focus-within {
  border-color: rgba(139, 92, 246, .65);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, .14);
  transform: translateY(-2px);
}

.search-shell .icon { color: var(--violet); font-size: 15px; user-select: none; }

#search {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font: 15px/1 var(--sans);
  padding: 16px 0;
  min-width: 0;
}

#search::placeholder { color: #6b7398; }

.btn-clear {
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-size: 20px;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  visibility: hidden;
  border-radius: 50%;
  transition: color .2s, transform .25s var(--spring);
}

.btn-clear:hover { color: var(--pink); transform: rotate(90deg); }
.search-shell.has-value .btn-clear { visibility: visible; }

.btn-search {
  font-size: 14.5px;
  font-weight: 650;
  color: #0a0d1c;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border: 0;
  border-radius: 999px;
  padding: 0 30px;
  cursor: pointer;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease), filter .2s;
  box-shadow: 0 8px 26px -8px var(--violet);
}

.btn-search:hover  { transform: translateY(-3px); box-shadow: 0 14px 34px -8px var(--violet); filter: brightness(1.06); }
.btn-search:active { transform: translateY(0) scale(.96); }

.filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 24px; }

.chip {
  font-size: 13px;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 7px 16px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s, transform .28s var(--spring);
}

.chip:hover { color: var(--text); border-color: var(--stroke-2); transform: translateY(-2px); }

.chip[aria-pressed="true"] {
  color: #0a0d1c;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-color: transparent;
  box-shadow: 0 8px 22px -8px var(--cyan);
}

.result-count { font-size: 13.5px; color: var(--text-dim); margin-bottom: 20px; }
.result-count b { color: var(--cyan); font-weight: 650; }

/* ---------------------------------------------------------------
   Cards
   --------------------------------------------------------------- */

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(304px, 1fr));
}

.card {
  --card-accent: var(--violet);
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s var(--ease);
}

.card.accent-pink   { --card-accent: var(--pink);   }
.card.accent-cyan   { --card-accent: var(--cyan);   }
.card.accent-yellow { --card-accent: var(--amber);  }
.card.accent-purple { --card-accent: var(--violet); }

/* Pointer-tracked highlight. --mx/--my are set from JS; the fallback keeps a
   sane position before the first pointer move. */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
  background: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 0%),
    color-mix(in srgb, var(--card-accent) 22%, transparent),
    transparent 62%);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--stroke-2);
  box-shadow: 0 26px 60px -22px rgba(0,0,0,.9),
              0 0 44px -18px var(--card-accent);
}

.card:hover::before { opacity: 1; }

.card .thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(140deg, rgba(139,92,246,.2), rgba(34,211,238,.14));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease);
}

.card:hover .thumb img { transform: scale(1.06); }

.card .thumb .glyph {
  font-size: 34px;
  font-weight: 800;
  color: var(--card-accent);
  opacity: .9;
}

.card .badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(8, 11, 24, .74);
  backdrop-filter: blur(8px);
  border: 1px solid var(--stroke);
  color: var(--text);
}

.card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; position: relative; z-index: 3; }

.card .title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.card h3 { color: var(--text); margin: 0; }
.card .year { font-family: var(--mono); font-size: 12px; color: var(--text-dim); }

.card .event { font-size: 12.5px; color: var(--card-accent); margin: 2px 0 12px; font-weight: 550; }
.card p.blurb { color: var(--text-dim); font-size: 14.5px; margin: 0 0 18px; }

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }

.tag {
  font-size: 11.5px;
  color: var(--text-dim);
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 4px 11px;
}

.tag mark, mark { background: var(--amber); color: #0a0d1c; border-radius: 4px; padding: 0 3px; }

.card .actions { margin-top: auto; }

.btn-play {
  display: inline-block;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  color: #0a0d1c;
  background: linear-gradient(135deg, var(--card-accent), color-mix(in srgb, var(--card-accent) 55%, var(--cyan)));
  border-radius: 999px;
  padding: 12px 28px;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease);
  box-shadow: 0 10px 26px -10px var(--card-accent);
}

.btn-play:hover  { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 34px -10px var(--card-accent); }
.btn-play:active { transform: scale(.96); }

.btn-play.disabled {
  background: var(--surface-2);
  color: var(--text-dim);
  border: 1px solid var(--stroke);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.empty {
  border: 1px dashed var(--stroke-2);
  border-radius: var(--r-lg);
  padding: 46px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
}

.empty b { color: var(--pink); }

/* ---------------------------------------------------------------
   Toolbox: physics bin
   --------------------------------------------------------------- */

.bin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.bin {
  position: relative;
  height: 440px;
  border-radius: var(--r-xl);
  border: 1px solid var(--stroke);
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(139,92,246,.16), transparent 70%),
    var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  touch-action: none;            /* dragging must not scroll the page */
  cursor: grab;
}

.bin.grabbing { cursor: grabbing; }

@media (max-width: 640px) { .bin { height: 380px; } }

.bubble {
  position: absolute;
  top: 0; left: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  color: #08101c;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-align: center;
  padding: 6px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  will-change: transform;
  box-shadow:
    inset 0 -6px 14px rgba(0,0,0,.22),
    inset 0 6px 12px rgba(255,255,255,.42),
    0 10px 24px -10px rgba(0,0,0,.8);
  transition: box-shadow .25s var(--ease);
}

.bubble::after {
  /* glossy highlight, sells the "bubble" */
  content: "";
  position: absolute;
  top: 12%; left: 18%;
  width: 34%; height: 24%;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  filter: blur(4px);
  pointer-events: none;
  z-index: 2;
}

/* Icon + caption stack. Everything inside is pointer-transparent so a drag
   always lands on the bubble itself, never on the image or the text. */
.bubble > * { pointer-events: none; }

.bubble-label { position: relative; z-index: 1; line-height: 1.15; }

.bubble-icon {
  position: relative;
  z-index: 1;
  width: 46%;
  height: 46%;
  object-fit: contain;
  display: block;
  margin-bottom: 3px;
  /* Logos are usually dark-on-transparent; a soft shadow keeps them legible
     against the lighter part of the bubble gradient. */
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
}

.bubble.has-icon { padding: 8px 6px; }
.bubble.has-icon .bubble-label { font-size: 10.5px; opacity: .92; }

.bubble-static.has-icon {
  flex-direction: row;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
}

.bubble-static .bubble-icon { width: 18px; height: 18px; margin: 0; }

.bubble.held {
  cursor: grabbing;
  box-shadow:
    inset 0 -6px 14px rgba(0,0,0,.22),
    inset 0 6px 12px rgba(255,255,255,.42),
    0 18px 40px -12px rgba(0,0,0,.9),
    0 0 0 4px rgba(255,255,255,.14);
}

.bubble:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.tone-violet { background: radial-gradient(circle at 32% 26%, #c4b5fd, var(--violet)); }
.tone-indigo { background: radial-gradient(circle at 32% 26%, #a5b4fc, var(--indigo)); }
.tone-cyan   { background: radial-gradient(circle at 32% 26%, #a5f3fc, var(--cyan));   }
.tone-sky    { background: radial-gradient(circle at 32% 26%, #bae6fd, var(--sky));    }
.tone-teal   { background: radial-gradient(circle at 32% 26%, #99f6e4, var(--teal));   }
.tone-lime   { background: radial-gradient(circle at 32% 26%, #d9f99d, var(--lime));   }
.tone-amber  { background: radial-gradient(circle at 32% 26%, #fde68a, var(--amber));  }
.tone-orange { background: radial-gradient(circle at 32% 26%, #fed7aa, var(--orange)); }
.tone-pink   { background: radial-gradient(circle at 32% 26%, #fbcfe8, var(--pink));   }
.tone-rose   { background: radial-gradient(circle at 32% 26%, #fecdd3, var(--rose));   }

/* Reduced-motion / no-JS fallback: a plain wrapped row of pills. */
.bin-static {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px;
  cursor: default;
}

.bubble-static {
  position: static;
  width: auto !important;
  height: auto !important;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: default;
}

.bubble-static::after { display: none; }

.bin-hint { font-size: 13.5px; color: var(--text-dim); margin: 12px 0 0; }

/* ---------------------------------------------------------------
   About
   --------------------------------------------------------------- */

.about-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }

@media (min-width: 860px) { .about-grid { grid-template-columns: 1.55fr 1fr; } }

.panel { border-radius: var(--r-lg); padding: 24px; }

.panel h3 { color: var(--cyan); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }

.stat-list { list-style: none; margin: 0; padding: 0; }

.stat-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--stroke);
}

.stat-list li:last-child { border-bottom: 0; }
.stat-list .k { color: var(--text-dim); }
.stat-list .v { color: var(--text); text-align: right; font-weight: 550; }

.skill-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------------------------------------------------------------
   Experience
   --------------------------------------------------------------- */

.timeline { display: flex; flex-direction: column; gap: 18px; }

.job {
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s var(--ease);
}

.job:hover {
  transform: translateX(6px);
  border-color: var(--stroke-2);
  box-shadow: 0 20px 46px -26px rgba(0,0,0,.9);
}

.job .job-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: baseline; }
.job h3 { color: var(--text); margin: 0; }

.job .when {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber);
  white-space: nowrap;
}

.job .org { font-size: 14px; color: var(--cyan); margin: 4px 0 14px; font-weight: 550; }
.job .org .where { color: var(--text-dim); font-weight: 400; }

.job ul { margin: 0; padding-left: 20px; color: var(--text-dim); font-size: 14.5px; }
.job ul li { margin-bottom: 8px; }
.job ul li::marker { color: var(--violet); }

blockquote.pull {
  margin: 16px 0 0;
  padding: 16px 20px;
  background: var(--surface-2);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 14.5px;
  font-style: italic;
}

blockquote.pull cite {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  font-style: normal;
  color: var(--text-dim);
}

/* ---------------------------------------------------------------
   Play page
   --------------------------------------------------------------- */

.splash-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .26;
  pointer-events: none;
}

.splash-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8,11,24,.36) 0%,
    rgba(8,11,24,.74) 45%,
    rgba(8,11,24,.96) 100%);
}

.play-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Framed surround holding the viewport; backdrop set per game from games.js. */
.cabinet {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(14px, 4vw, 56px);
  overflow: hidden;
  background-color: rgba(10, 13, 28, .5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cabinet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 45%,
    rgba(8,11,24,.30) 0%, rgba(8,11,24,.80) 70%, rgba(8,11,24,.94) 100%);
}

.cabinet > * { position: relative; z-index: 1; }

.stage {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
  border: 1px solid var(--stroke-2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.95), 0 0 50px -22px var(--violet);
}

.stage-inner { position: relative; width: 100%; aspect-ratio: 960 / 600; }

.stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  overflow: hidden;
}

.play-meta { display: grid; gap: 20px; margin-top: 26px; grid-template-columns: 1fr; }

@media (min-width: 860px) { .play-meta { grid-template-columns: 1.6fr 1fr; } }

.controls-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.controls-table td { padding: 9px 0; border-bottom: 1px solid var(--stroke); vertical-align: top; }
.controls-table tr:last-child td { border-bottom: 0; }

.controls-table .key {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  border-radius: 7px;
  padding: 4px 10px;
  white-space: nowrap;
}

.controls-table td:last-child { color: var(--text-dim); padding-left: 16px; }

.note { font-size: 13.5px; color: var(--text-dim); margin-top: 16px; }

.back-link { font-size: 14px; text-decoration: none; color: var(--text-dim); }
.back-link:hover { color: var(--cyan); }

/* ---------------------------------------------------------------
   Footer
   --------------------------------------------------------------- */

footer.site {
  border-top: 1px solid var(--stroke);
  margin-top: 46px;
  padding: 30px 0 46px;
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-dim);
}

footer.site a { color: var(--text-dim); text-decoration: none; }
footer.site a:hover { color: var(--cyan); }

/* ---------------------------------------------------------------
   Accessibility
   --------------------------------------------------------------- */

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .blob { animation: none; }
}
