/* ==========================================================================
   Widget Wall — portfolio design system
   Tokens per design_handoff_widget_wall_dark/README.md (high fidelity)
   ========================================================================== */

:root {
  --bg: #0e0f10;                  /* page */
  --surface: #1a1c1e;             /* cards, panels, gallery slots */
  --head: #f2f4f6;                /* headings */
  --fg: #e8eaec;                  /* body */
  --acc: #e0603f;                 /* single accent — orange-red */

  --line: rgba(255, 255, 255, .07);      /* card + panel borders */
  --hairline: rgba(255, 255, 255, .09);  /* section rules */

  --sans: 'Space Grotesk', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 14px 36px rgba(0, 0, 0, .35);
  --shadow-hi: 0 2px 4px rgba(0, 0, 0, .4), 0 26px 56px rgba(0, 0, 0, .5);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  min-height: 100vh;
}

a { color: var(--acc); text-decoration: none; }
a:hover { color: var(--fg); }
::selection { background: rgba(224, 96, 63, .3); }

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: 4px;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* --------------------------------------------------------------------------
   Shared
   -------------------------------------------------------------------------- */

#view { position: relative; z-index: 1; }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--acc);
}

.chip {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(232, 234, 236, .55);
}

.chips { display: flex; flex-wrap: wrap; gap: 6px; }

/* Image well: label sits behind; a loaded screenshot covers it.
   ponytail: img removes itself on 404 so dropping a file in `assets/portfolio/`
   is the only step needed to add art — no code change. */
.well {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  display: grid;
  place-items: center;
}

.well__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(232, 234, 236, .25);
  padding: 0 12px;
  text-align: center;
}

.well img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   Home — project grid
   -------------------------------------------------------------------------- */

.home { max-width: 1180px; margin: 0 auto; padding: 72px 40px 90px; }

.home__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.home__kicker { margin-bottom: 20px; }

.home__title {
  margin: 0;
  font-size: clamp(48px, 6.5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--head);
}

.home__subtitle {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 400;
  color: rgba(232, 234, 236, .55);
}

.home__meta {
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(232, 234, 236, .38);
  line-height: 2;
}

.grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  display: block;
  color: inherit;
  grid-column: span 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

.card--wide { grid-column: span 2; }

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: var(--shadow-hi);
}

.card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--head);
}

.card__arrow { font-size: 13px; color: rgba(232, 234, 236, .3); }

.card__tag {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(232, 234, 236, .55);
}

.card .chips { margin-top: 2px; }

.foot {
  margin-top: 80px;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(232, 234, 236, .35);
}

.foot a { color: inherit; transition: color .3s; }
.foot a:hover { color: var(--acc); }

/* --------------------------------------------------------------------------
   Card widgets — no screenshots on the home page: every tile is a live CSS
   simulation of the app. Geometry, colours and keyframes are verbatim from
   the handoff prototype. Backdrops are per-project, all darker than the card.
   -------------------------------------------------------------------------- */

.sim {
  position: relative;
  height: 170px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.sim__body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim__label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  color: rgba(232, 234, 236, .4);
}

/* Firefly — three Hue bulbs cycling amber to pink to blue, staggered. */
.sim--firefly { background: #121315; }
.sim--firefly .sim__body { gap: 34px; }
.sim--firefly i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  animation: hueA 9s ease-in-out infinite;
}
.sim--firefly i:nth-child(2) { width: 52px; height: 52px; animation-delay: -3s; }
.sim--firefly i:nth-child(3) { animation-delay: -6s; }
.sim--firefly .sim__label { left: 16px; color: rgba(255, 255, 255, .45); }

/* First Light — twinkling star field under a drifting tracking reticle.
   Star geometry is seeded in JS; only the shared look lives here. */
.sim--firstlight { background: #0b1018; }
.sim--firstlight i {
  position: absolute;
  border-radius: 50%;
  background: #dce8f2;
  animation-name: twinkleC;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.sim--firstlight .sim__label { color: rgba(143, 232, 255, .75); }

.sim__reticle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border: 1px solid rgba(143, 232, 255, .7);
  border-radius: 50%;
  animation: crosshair 12s ease-in-out infinite;
}
.sim__reticle::before,
.sim__reticle::after { content: ''; position: absolute; background: rgba(143, 232, 255, .5); }
.sim__reticle::before { left: 50%; top: -8px; bottom: -8px; width: 1px; }
.sim__reticle::after  { top: 50%; left: -8px; right: -8px; height: 1px; }

/* WineVision — a bottle under a sweeping scan line, verdict popping in. */
.sim--winevision { background: #151016; }
.sim__bottle,
.sim__neck,
.sim__wlabel { position: absolute; left: 50%; background: #5a2c42; }
.sim__bottle { bottom: 0;   width: 44px; height: 78%; margin-left: -40px; border-radius: 10px 10px 3px 3px; }
.sim__neck   { bottom: 78%; width: 14px; height: 20%; margin-left: -25px; border-radius: 4px 4px 0 0; }
.sim__wlabel { bottom: 18%; width: 44px; height: 30%; margin-left: -40px; border-radius: 2px; background: #efe6d6; }

.sim__scan {
  position: absolute;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  animation: scan 5s ease-in-out infinite;
}

.sim__rating {
  position: absolute;
  right: 14px;
  top: 40%;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--head);
  animation: popIn 5s ease-in-out infinite;
}
.sim__rating span {
  display: block;
  margin-top: 3px;
  font-size: 8.5px;
  letter-spacing: .1em;
  color: rgba(232, 234, 236, .5);
}

/* NoFret — the needle swings, settles, and the note goes green. */
.sim--nofret { background: #131416; }
.sim--nofret i {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 2px;
  height: 10px;
  background: rgba(255, 255, 255, .22);
  transform-origin: 50% 74px;
}
.sim--nofret i:nth-child(1) { transform: rotate(-40deg) translateY(-64px); }
.sim--nofret i:nth-child(2) { transform: rotate(-20deg) translateY(-64px); }
.sim--nofret i:nth-child(3) { transform: rotate(0deg)   translateY(-64px); }
.sim--nofret i:nth-child(4) { transform: rotate(20deg)  translateY(-64px); }
.sim--nofret i:nth-child(5) { transform: rotate(40deg)  translateY(-64px); }

.sim__needle {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 2px;
  height: 64px;
  margin-left: -1px;
  border-radius: 2px;
  background: var(--acc);
  transform-origin: 50% 100%;
  animation: needle 6s cubic-bezier(.3, .8, .3, 1) infinite;
}
.sim__hub {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--fg);
}
.sim__note {
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: #4fc98a;
  animation: inTune 6s ease infinite;
}

/* Swarm — five LAN nodes pulsing toward consensus. Positions seeded in JS. */
.sim--swarm { background: #0f1212; }
.sim--swarm i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7fe0b0;
  animation: votePulse 2.4s ease-in-out infinite;
}
.sim__bar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 26px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .12);
}
.sim__fill {
  height: 100%;
  border-radius: 3px;
  background: #7fe0b0;
  animation: fillBar 6s ease-in-out infinite;
}
.sim--swarm .sim__label { left: 18px; bottom: 11px; color: rgba(255, 255, 255, .5); }

/* Family Table — a week of meals filling in, one day at a time. */
.sim--familytable { background: #121316; }
.sim--familytable .sim__body { gap: 7px; padding: 0 14px; }
.sim--familytable .sim__label { bottom: 10px; font-size: 9px; letter-spacing: .12em; }

.sim__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(232, 234, 236, .5);
}
.sim__day:nth-child(1) { --k: 0s; }
.sim__day:nth-child(2) { --k: .5s; }
.sim__day:nth-child(3) { --k: 1s; }
.sim__day:nth-child(4) { --k: 1.5s; }
.sim__day:nth-child(5) { --k: 2s; }
.sim__day:nth-child(6) { --k: 2.5s; }
.sim__day:nth-child(7) { --k: 3s; }

.sim__meal,
.sim__side {
  width: 22px;
  border-radius: 7px;
  animation: chipFill 8s ease infinite;
}
.sim__meal { height: 44px; background: #dd8a4e; animation-delay: var(--k); }
.sim__side { height: 20px; background: #8fae6b; animation-delay: calc(var(--k) + .25s); }

/* AI Résumé — the chat bubble types its own invitation. */
.sim--airesume { background: #121315; }
.sim__bubble {
  max-width: 80%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px 14px 14px 3px;
  background: rgba(255, 255, 255, .08);
}
.sim__type {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  color: #f5f3ee;
  animation: typeReveal 7s steps(16) infinite;
}
.sim__caret {
  display: inline-block;
  width: 7px;
  height: 13px;
  margin-left: 2px;
  background: #8fe8ff;
  animation: caret 1s step-end infinite;
}

@keyframes hueA {
  0%, 18%   { background: oklch(75% 0.14 60);  box-shadow: 0 0 26px oklch(75% 0.14 60 / .9); }
  38%, 55%  { background: oklch(72% 0.15 330); box-shadow: 0 0 26px oklch(72% 0.15 330 / .9); }
  75%, 92%  { background: oklch(74% 0.13 220); box-shadow: 0 0 26px oklch(74% 0.13 220 / .9); }
  100%      { background: oklch(75% 0.14 60);  box-shadow: 0 0 26px oklch(75% 0.14 60 / .9); }
}
@keyframes twinkleC  { from { opacity: .2; } to { opacity: .9; } }
@keyframes crosshair { 0% { transform: translate(0, 0); } 30% { transform: translate(26px, -12px); } 60% { transform: translate(10px, 14px); } 100% { transform: translate(0, 0); } }
@keyframes scan      { 0%, 8% { top: 8%; } 48%, 60% { top: 88%; } 96%, 100% { top: 8%; } }
@keyframes popIn     { 0%, 45% { opacity: 0; transform: translateY(4px); } 55%, 92% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; } }
@keyframes needle    { 0% { transform: rotate(-38deg); } 22% { transform: rotate(14deg); } 40% { transform: rotate(-7deg); } 55%, 88% { transform: rotate(0deg); } 100% { transform: rotate(-38deg); } }
@keyframes inTune    { 0%, 50% { opacity: .25; } 56%, 88% { opacity: 1; } 100% { opacity: .25; } }
@keyframes votePulse { 0%, 100% { transform: scale(1); opacity: .45; } 50% { transform: scale(1.35); opacity: 1; } }
@keyframes fillBar   { 0%, 10% { width: 8%; } 70%, 92% { width: 100%; } 100% { width: 8%; } }
@keyframes chipFill  { 0% { opacity: .22; } 12%, 90% { opacity: 1; } 100% { opacity: .22; } }
@keyframes typeReveal { 0%, 8% { width: 0ch; } 60%, 90% { width: 16ch; } 100% { width: 0ch; } }
@keyframes caret     { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* --------------------------------------------------------------------------
   Project detail
   -------------------------------------------------------------------------- */

.detail {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 40px 110px;
  animation: fadeUp .45s var(--ease) both;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--surface);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(232, 234, 236, .7);
  transition: border-color .3s, color .3s;
}

.back:hover { border-color: var(--fg); color: var(--fg); }

.detail__chips { margin-top: 40px; }
.detail__chips .chip { font-size: 10px; padding: 4px 10px; border-color: rgba(255, 255, 255, .16); color: rgba(232, 234, 236, .6); }

.detail__title {
  margin: 16px 0 6px;
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
  color: var(--head);
}

.detail__tag { font-size: 19px; color: rgba(232, 234, 236, .5); }

.detail__blurb {
  margin: 20px 0 0;
  max-width: 640px;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(232, 234, 236, .75);
}

.links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  font-size: 13.5px;
  font-weight: 500;
  transition: background .3s, border-color .3s, color .3s;
}

.pill:hover { background: var(--acc); border-color: var(--acc); color: #fff; }

.gallery {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 208px 208px;
  gap: 14px;
  margin-top: 34px;
}

.gallery .well { border-radius: 16px; }
.gallery .well:first-child { grid-row: 1 / 3; }

/* Fewer than 3 screenshots: keep the block's overall height, drop the mosaic. */
.gallery--2 { grid-template-columns: 1fr 1fr; grid-template-rows: 430px; }
.gallery--1 { grid-template-columns: 1fr; grid-template-rows: auto; }
.gallery--1 .well { aspect-ratio: 16 / 9; }   /* one image: fit it, don't crop to a strip */
.gallery--2 .well:first-child,
.gallery--1 .well:first-child { grid-row: auto; }

/* Phone screenshots: portrait wells sized to the art, centred as a row.
   The designed landscape mosaic assumes wide art and crops a 9:19.5 shot to a band. */
.gallery--portrait {
  grid-template-columns: repeat(auto-fit, 198px);
  grid-template-rows: 430px;
  justify-content: center;
}
.gallery--portrait .well:first-child { grid-row: auto; }
.gallery--portrait .well { aspect-ratio: auto; }

.panels { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.panel__label {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
}

.panel__text { font-size: 14.5px; line-height: 1.6; color: rgba(232, 234, 236, .78); }

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

.stack span {
  font-family: var(--mono);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: var(--bg);
  color: rgba(232, 234, 236, .7);
}

/* Long-form project write-up. Plain on the background rather than in glass —
   a panel this tall reads as a slab, and it contrasts with the two above. */
.writeup {
  margin-top: 44px;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
}

.writeup__body { font-size: 15.5px; line-height: 1.7; color: rgba(232, 234, 236, .78); }
.writeup__body > :first-child { margin-top: 0; }
.writeup__body p,
.writeup__body ul { max-width: 660px; }
.writeup__body p { margin: 0 0 18px; }

.writeup__body h3 {
  margin: 34px 0 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.writeup__body strong { color: var(--fg); font-weight: 600; }

.writeup__body ul { margin: 0 0 18px; padding-left: 20px; }
.writeup__body li { margin-bottom: 9px; }
.writeup__body li::marker { color: var(--acc); }

.writeup__body code {
  font-family: var(--mono);
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .09);
  color: rgba(232, 234, 236, .9);
}

.writeup__body pre {
  margin: 0 0 22px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow-x: auto;
}

.writeup__body pre code {
  padding: 0;
  border: 0;
  background: none;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(232, 234, 236, .7);
  white-space: pre;
}

/* Figure row — screenshots a write-up refers to, with the source's caption. */
.writeup__figure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 0 0 24px;
}

.writeup__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.writeup__figure figcaption {
  grid-column: 1 / -1;
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(232, 234, 236, .45);
}

.writeup__scroll { overflow-x: auto; margin: 0 0 22px; }

.writeup__body table { border-collapse: collapse; width: 100%; max-width: 680px; min-width: 460px; font-size: 13.5px; }

.writeup__body th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--acc);
  text-align: left;
  padding: 0 18px 10px 0;
  border-bottom: 1px solid var(--line);
}

.writeup__body td {
  padding: 11px 18px 11px 0;
  border-bottom: 1px solid var(--hairline);
  color: rgba(232, 234, 236, .75);
  vertical-align: top;
}

.writeup__body tr:last-child td { border-bottom: 0; }
.writeup__body td:first-child { color: rgba(232, 234, 236, .92); white-space: nowrap; }

.next {
  margin-top: 44px;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.next__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(232, 234, 236, .35);
}

.next__link {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--head);
  transition: color .3s;
}

.next__link:hover { color: var(--acc); }

/* --------------------------------------------------------------------------
   Responsive (not in the handoff — implementer's discretion per README)
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery .well { height: 220px; }
  .gallery .well:first-child { grid-row: auto; height: 260px; }
  .panels { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .home { padding: 52px 22px 64px; }
  .detail { padding: 40px 22px 80px; }
  .grid { grid-template-columns: 1fr; margin-top: 40px; }
  .card, .card--wide { grid-column: auto; }
  .home__meta { text-align: left; }
  .foot { margin-top: 56px; flex-direction: column; gap: 8px; }
  .next { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* The handoff's motion toggle, wired to the OS setting instead of a control.
   Paused, not removed: `animation: none` would strip the bulbs' only background
   and leave three invisible circles. */
@media (prefers-reduced-motion: reduce) {
  .sim *, .sim__reticle { animation-play-state: paused; }
  .detail { animation: none; }
  .card { transition: border-color .35s, box-shadow .35s; }
  .card:hover { transform: none; }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(255, 255, 255, .3); --hairline: rgba(255, 255, 255, .25); }
  .card__tag, .detail__tag { color: rgba(232, 234, 236, .8); }
  .home__meta, .foot, .next__label { color: rgba(232, 234, 236, .7); }
  .chip { border-color: rgba(255, 255, 255, .35); color: rgba(232, 234, 236, .85); }
}
