:root {
  --bg: #0c0c0d;
  --panel: #111112;
  --panel-2: #151516;
  --text: #f0e9df;
  --text-soft: #b2a696;
  --text-faint: #7e756c;
  --line: rgba(240, 233, 223, 0.1);
  --line-strong: rgba(240, 233, 223, 0.18);
  --accent: #b87950;
  /* sparse marker / “winning” highlight on paper */
  --board-ink: #2a2622;
  --board-muted: rgba(42, 38, 34, 0.55);
  --board-paper: #ebe4d9;
  --board-paper-2: #e2d8ca;
  --marker: #c45c4a;
  --marker-soft: rgba(196, 92, 74, 0.22);
  --marker-line: rgba(196, 92, 74, 0.55);
  --highlighter: rgba(212, 196, 90, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  /* Explicit root scroller: avoids mobile/WebKit treating a nested overflow:auto region as the only scroll target */
  overflow-y: auto;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

/*
  Footer brand: clip band + huge type; no min-height so the painted band ends with content
  (absolute .site-footer-visual matches this box only — avoids a black body strip “inside” the footer).
*/
.site-footer {
  position: relative;
  margin: 0;
  /* clip both axes: wide mark must not widen the document (horizontal scrollbar) */
  overflow: clip;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  padding: clamp(0.65rem, 2vw, 1.25rem) 0 env(safe-area-inset-bottom, 0px);
  color: #0a0a0a;
}

.site-footer-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  /* Back: spectral column. Front: same ink as page fading out = atmospheric merge (no hard cut). */
  background:
    linear-gradient(
      180deg,
      var(--panel) 0%,
      var(--bg) 5%,
      rgba(12, 12, 13, 0.78) 11%,
      rgba(22, 18, 36, 0.48) 20%,
      rgba(55, 45, 88, 0.2) 30%,
      rgba(130, 110, 175, 0.07) 40%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      #16141c 0%,
      #252030 12%,
      #4a3d72 26%,
      #8b78b8 40%,
      #bdb0df 52%,
      #c8d848 68%,
      #dce936 82%,
      #d8f238 100%
    );
}

.site-footer-noise {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 0.34;
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
}

/*
  Horizontal: negative L/R inset widens the mask (full word, no side clip).
  Vertical: bottom inset must stay 0 — a positive bottom % carved out a lime-only strip under the glyphs.
*/
.site-footer-clip {
  position: relative;
  width: 100%;
  max-width: none;
  /* Tight band: extra height below glyphs read as an empty strip (× noise → black) */
  height: clamp(168px, 21vw, 292px);
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  clip-path: inset(15% -140vw 0% -140vw);
}

.site-footer-mark {
  margin: 0;
  display: block;
  width: max-content;
  max-width: none;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(90px, 24vw, 520px);
  font-weight: 900;
  /* Tighter vertical metrics = less empty line-box below glyphs before the band ends */
  line-height: 0.66;
  letter-spacing: -0.075em;
  text-align: center;
  text-transform: lowercase;
  white-space: nowrap;
  color: #070707;
  -webkit-font-smoothing: antialiased;
  /* Push ink onto the bottom edge; path ends at 0% bottom so crop matches band end */
  transform: translateY(calc(20% + 0.04em));
}

s {
  text-decoration-thickness: 1px;
}

.shell {
  width: min(1260px, calc(100% - 2rem));
  margin: 0 auto;
  /* Flush to light footer — no dead band between dark sheet and gradient */
  padding: 1rem 0 0;
}

.proof-sheet {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    var(--panel);
  background-size: 96px 96px, 96px 96px, auto;
  border: 1px solid var(--line);
  /* No bottom rule — it read as a bright hairline where the sheet meets the gradient footer */
  border-bottom: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.proof-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(184, 121, 80, 0.06), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 12rem);
  pointer-events: none;
}

.proof-header,
.proof-body,
.thinking-strip,
.projects {
  position: relative;
  z-index: 1;
  padding-left: 2rem;
  padding-right: 2rem;
}

.proof-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.proof-branding {
  display: grid;
  gap: 0.35rem;
}

.brand,
.header-state,
.meta-line,
.meta-label,
.section-label,
.section-meta,
.project-index,
.project-status,
.project-private {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.brand,
.section-label,
.meta-accent,
.project-status {
  color: var(--accent);
}

.header-state,
.meta-line,
.meta-label,
.section-meta,
.project-index,
.project-private {
  color: var(--text-soft);
}

.meta-line {
  text-align: right;
}

.proof-body {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) 248px;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2.1rem;
  border-bottom: 1px solid var(--line);
}

.proof-rail,
.review-column {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.rail-block,
.review-block {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.meta-value,
.review-copy {
  margin: 0.38rem 0 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-review {
  margin-bottom: 1.25rem;
}

.alt-copy {
  margin: 0.38rem 0 0;
  color: var(--text-faint);
  font-size: 1rem;
  line-height: 1.5;
}

/* overflow-x:auto + overflow-y:visible forces overflow-y to compute to auto — nested scrollport can eat touch scroll on mobile */
.hero-block {
  overflow: visible;
}

.hero-title {
  max-width: none;
  margin: 0;
  font-size: clamp(4rem, 7.1vw, 6.4rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.058em;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-refined {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 0.14em;
  color: #ddd3c6;
  font-size: 0.69em;
  line-height: 1.02;
  letter-spacing: -0.052em;
  white-space: nowrap;
}

.intro {
  max-width: 28rem;
  margin: 1.05rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.thinking-strip {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.strip-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
}

.projects-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: clamp(1.25rem, 4vw, 2.75rem);
  row-gap: 0.5rem;
  padding-top: 0.35rem;
  padding-bottom: 0.9rem;
}

.thinking-grid {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.thinking-rail {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.planning-board {
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent), var(--panel-2);
  border: 1px solid var(--line);
}

.planning-sheet {
  overflow: auto;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.5), transparent 42%),
    radial-gradient(ellipse at 88% 72%, rgba(30, 24, 18, 0.04), transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(42, 38, 34, 0.045) 23px,
      rgba(42, 38, 34, 0.045) 24px
    ),
    linear-gradient(105deg, var(--board-paper) 0%, var(--board-paper-2) 100%);
  border: 1px solid rgba(30, 25, 20, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.board-paper {
  color: var(--board-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.board-grid {
  display: grid;
  gap: 0.65rem 0.85rem;
  padding: 0.75rem 0.85rem 1rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  grid-template-areas:
    "taxonomy map"
    "flow map"
    "phones phones";
  align-items: start;
}

.cluster {
  position: relative;
  padding: 0.5rem 0.55rem 0.65rem;
  border: 1px dashed rgba(42, 38, 34, 0.22);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.cluster::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  opacity: 0.5;
}

.cluster-taxonomy {
  grid-area: taxonomy;
}

.cluster-flow {
  grid-area: flow;
  padding-bottom: 0.85rem;
}

.cluster-map {
  grid-area: map;
  transform: rotate(0.25deg);
  margin-top: 0.08rem;
}

.cluster-phones {
  grid-area: phones;
}

.cluster--dense {
  padding: 0.45rem 0.5rem 0.85rem 0.65rem;
  transform: rotate(-0.4deg);
  margin-top: 0.12rem;
}

.cluster--dense .board-ribbon {
  transform: translateX(3px) rotate(0.35deg);
}

.cluster--dense .taxonomy-icons {
  margin-bottom: 0.55rem;
}

.cluster--dense .glyph-tile {
  transform: rotate(-3deg) translateY(2px);
}

.cluster--dense .glyph-tile:nth-child(2) {
  transform: rotate(4deg) translate(4px, -2px);
}

.cluster--dense .glyph-tile:nth-child(3) {
  transform: rotate(-1.5deg) translateY(4px);
}

.cluster--dense .glyph-tile:nth-child(4) {
  transform: rotate(2.5deg) translate(-2px, 3px);
}

.cluster--dense .glyph-tile:nth-child(5) {
  transform: rotate(-2deg) translate(6px, -1px);
}

.cluster--dense .chip-row {
  transform: rotate(-0.9deg);
  gap: 0.22rem 0.35rem;
  margin-left: -0.12rem;
}

.cluster--dense .sk-chip:nth-child(3) {
  margin-top: 0.2rem;
  margin-left: 0.35rem;
  transform: rotate(2deg);
}

.cluster--dense .sk-chip:nth-child(5) {
  transform: rotate(-1.8deg) translateX(-4px);
}

.cluster--dense .mini-cards {
  gap: 0.25rem 0.55rem;
  margin-top: 0.15rem;
  padding-right: 2.5rem;
}

.cluster--dense .obj-card:nth-child(2) {
  margin-left: -0.35rem;
  z-index: 1;
}

.cluster--dense .obj-card:nth-child(3) {
  margin-top: 0.25rem;
  transform: rotate(-2.2deg) translateX(8px);
}

.hand-note {
  margin: 0;
  font-family: "Segoe Print", "Bradley Hand ITC", "Marker Felt", "Apple Chancery", cursive;
  font-size: 0.62rem;
  line-height: 1.25;
  color: rgba(42, 38, 34, 0.82);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.hand-note--corner {
  position: absolute;
  top: 0.2rem;
  right: 0.35rem;
  transform: rotate(9deg);
  z-index: 2;
}

.hand-note--arg {
  position: absolute;
  top: 0.05rem;
  right: 0.2rem;
  max-width: 5.5rem;
  text-align: right;
  transform: rotate(5deg);
  z-index: 2;
  color: rgba(90, 42, 38, 0.75);
}

.hand-note--scan {
  position: absolute;
  left: -0.05rem;
  top: 0.35rem;
  transform: rotate(-10deg);
  z-index: 2;
}

.hand-note--inline {
  display: inline-block;
  transform: rotate(-1deg);
}

.hand-note--lamp {
  position: absolute;
  right: 0;
  bottom: 0.05rem;
  transform: rotate(-4deg);
  z-index: 2;
  color: rgba(90, 42, 38, 0.78);
}

.hand-note--keep {
  position: absolute;
  right: -0.2rem;
  bottom: 3.6rem;
  transform: rotate(8deg);
  z-index: 4;
  color: rgba(100, 48, 36, 0.88);
  font-weight: 600;
}

.flow-wrap {
  position: relative;
  padding: 0.75rem 0.15rem 0.35rem 1.35rem;
  margin-left: -0.35rem;
  margin-top: 0.15rem;
}

.flow-node--nudge {
  transform: translate(1px, 2px) rotate(-1.2deg);
}

.flow-scribble-arrow {
  position: absolute;
  left: 0.05rem;
  top: 0.05rem;
  width: 4.8rem;
  height: auto;
  opacity: 0.52;
  transform: rotate(-6deg);
  pointer-events: none;
}

.scribble-path {
  fill: none;
  stroke: var(--marker-line);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scribble-path--head {
  stroke-width: 1.1;
}

.flow-alt-killed {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  margin-top: 0.45rem;
  margin-left: 0.15rem;
  padding: 0.25rem 0.4rem 0.3rem;
  max-width: 100%;
  border: 1px dashed rgba(42, 38, 34, 0.28);
  border-radius: 3px;
  background: rgba(42, 38, 34, 0.04);
  transform: rotate(-0.55deg) translateX(4px);
}

.alt-route-line {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(42, 38, 34, 0.45);
  color: rgba(42, 38, 34, 0.38);
}

.alt-route-x {
  font-size: 0.85rem;
  line-height: 1;
  color: var(--marker);
  opacity: 0.45;
  transform: rotate(8deg);
}

.scribble-circle {
  fill: none;
  stroke: var(--marker-line);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

.cluster-map .mood-graph {
  margin-top: 0.5rem;
  padding-top: 0.35rem;
  border-top: 1px dashed rgba(42, 38, 34, 0.14);
  transform: rotate(0.35deg);
}

.cluster-map .status-lane {
  margin-top: 0.35rem;
  transform: translateX(-3px);
}

.phone-frame--rejected {
  position: relative;
  opacity: 0.76;
}

.phone-frame--rejected .phone-ui {
  filter: grayscale(0.35) contrast(0.95);
}

.phone-reject-layer {
  position: absolute;
  inset: 0.15rem;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.phone-reject-x {
  font-size: 2.35rem;
  font-weight: 300;
  line-height: 1;
  color: var(--marker);
  opacity: 0.26;
  transform: rotate(-16deg);
  text-shadow: 0 0 0 rgba(42, 38, 34, 0.08);
}

.phone-reject-scribble {
  position: absolute;
  inset: 0.35rem 0.28rem 0.5rem;
  border: 2px solid rgba(196, 92, 74, 0.32);
  border-radius: 12px;
  transform: rotate(-2.5deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.cap-struck {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(42, 38, 34, 0.35);
  opacity: 0.52;
}

.cap-part-struck {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(42, 38, 34, 0.4);
  opacity: 0.55;
}

.phone-frame--argued {
  position: relative;
  opacity: 0.88;
}

.phone-frame--argued .phone-ui {
  position: relative;
  z-index: 0;
}

.ph-argue-layer {
  position: absolute;
  inset: 0.55rem 0.35rem 1.85rem;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: 8px;
}

.ph-argue-scribble {
  position: absolute;
  left: 8%;
  right: 12%;
  top: 42%;
  height: 0;
  border-top: 1px solid rgba(42, 38, 34, 0.22);
  transform: rotate(-11deg);
  opacity: 0.75;
}

.ph-argue-scribble::after {
  content: "";
  position: absolute;
  left: 35%;
  right: 20%;
  top: 1.1rem;
  height: 0;
  border-top: 1px dashed rgba(42, 38, 34, 0.18);
  transform: rotate(6deg);
}

.ph-argue-halfx {
  position: absolute;
  right: 12%;
  bottom: 18%;
  font-size: 0.75rem;
  color: var(--marker);
  opacity: 0.32;
  transform: rotate(12deg);
  line-height: 1;
}

.hand-note--too-much {
  position: absolute;
  left: 0.15rem;
  bottom: 2.15rem;
  z-index: 3;
  transform: rotate(-7deg);
  color: rgba(42, 38, 34, 0.68);
}

.ph-mini-room--scribble {
  position: relative;
}

.ph-mini-room--scribble::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(42, 38, 34, 0.07) 44%,
    rgba(42, 38, 34, 0.07) 48%,
    transparent 50%
  );
  pointer-events: none;
  border-radius: inherit;
}

.cluster-tag {
  margin: 0 0 0.45rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--board-muted);
}

.board-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.5rem;
}

.board-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--board-ink);
}

.board-sub {
  font-size: 0.68rem;
  color: var(--board-muted);
  letter-spacing: 0.06em;
}

.board-tagline {
  margin: 0.35rem 0 0.45rem;
  max-width: 26rem;
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: rgba(42, 38, 34, 0.72);
}

.board-tagline-break {
  display: block;
  margin-top: 0.2rem;
  color: rgba(42, 38, 34, 0.62);
}

.board-tagline strong {
  font-weight: 650;
  color: rgba(42, 38, 34, 0.88);
}

.taxonomy-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}

.glyph-tile {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(42, 38, 34, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(-1.5deg);
}

.glyph-tile:nth-child(even) {
  transform: rotate(1.2deg);
}

.glyph-tile.muted {
  opacity: 0.55;
}

.sketch-icon {
  width: 1.65rem;
  height: 1.65rem;
}

.sketch-icon .faint-cable {
  opacity: 0.48;
}

.sketch-stroke {
  fill: none;
  stroke: var(--board-ink);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sketch-fill {
  fill: rgba(42, 38, 34, 0.2);
  stroke: var(--board-ink);
  stroke-width: 1;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-bottom: 0.5rem;
}

.sk-chip {
  padding: 0.12rem 0.45rem;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(42, 38, 34, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.sk-chip--warn {
  border-color: var(--marker-line);
  color: #8a3228;
  background: var(--marker-soft);
}

.mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: stretch;
}

.obj-card {
  position: relative;
  min-width: 6.2rem;
  max-width: 8.5rem;
  padding: 0.4rem 0.45rem 0.45rem;
  border: 1px solid rgba(42, 38, 34, 0.25);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(-0.8deg);
  box-shadow: 1px 2px 0 rgba(42, 38, 34, 0.06);
}

.obj-card:nth-child(2) {
  transform: rotate(1deg);
}

.obj-card--ring::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--marker-line);
  border-radius: 5px;
  pointer-events: none;
  opacity: 0.85;
}

.obj-card.crossed::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 48%;
  height: 0;
  border-top: 2px solid rgba(42, 38, 34, 0.35);
  transform: rotate(-8deg);
  pointer-events: none;
}

.obj-card-badge {
  display: inline-block;
  padding: 0.05rem 0.28rem;
  font-family: ui-monospace, monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(42, 38, 34, 0.25);
  border-radius: 2px;
}

.obj-card-badge--risk {
  border-color: var(--marker-line);
  color: #7a2a22;
  background: var(--marker-soft);
}

.obj-card-name {
  margin: 0.28rem 0 0.12rem;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
}

.obj-card-name.strike {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  color: var(--board-muted);
}

.obj-card-meta {
  margin: 0;
  font-size: 0.6rem;
  color: var(--board-muted);
  letter-spacing: 0.02em;
}

.obj-card-meta.faint {
  opacity: 0.75;
}

.flow-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  margin-bottom: 0.45rem;
}

.flow-node {
  padding: 0.2rem 0.45rem;
  font-size: 0.65rem;
  border: 1px solid rgba(42, 38, 34, 0.28);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.flow-node--marker {
  background: var(--highlighter);
  border-color: rgba(180, 150, 40, 0.45);
}

.flow-node.faint {
  opacity: 0.45;
}

.strike-box {
  text-decoration: line-through;
}

.flow-arrow {
  font-size: 0.75rem;
  color: var(--board-muted);
}

.flow-arrow.faint {
  opacity: 0.4;
}

.flow-annotation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.sticky-note {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  font-size: 0.62rem;
  font-family: "Bradley Hand ITC", "Segoe Print", "Marker Felt", cursive;
  color: #3d2f24;
  background: linear-gradient(180deg, #fff9c4, #f5e6a8);
  border: 1px solid rgba(120, 100, 40, 0.25);
  box-shadow: 1px 2px 0 rgba(42, 38, 34, 0.12);
  transform: rotate(-3.5deg) translate(2px, 1px);
}

.x-mark {
  font-size: 0.85rem;
  color: var(--board-muted);
  opacity: 0.65;
}

.anno-text {
  font-size: 0.58rem;
  letter-spacing: 0.03em;
  color: var(--board-muted);
}

.thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: flex-end;
  margin-top: 0.2rem;
  margin-left: -0.2rem;
}

.thumb-row .micro-screen:nth-child(2) {
  transform: rotate(1.4deg) translateY(-4px);
  margin-left: -0.15rem;
  z-index: 1;
}

.thumb-row .micro-screen:nth-child(3) {
  transform: rotate(-1.1deg) translate(3px, 2px);
}

.micro-screen {
  width: 5.4rem;
  padding: 0.35rem 0.4rem 0.3rem;
  border: 1px solid rgba(42, 38, 34, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 1px 2px 0 rgba(42, 38, 34, 0.08);
}

.micro-screen--marker {
  outline: 2px solid var(--marker-line);
  outline-offset: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), var(--marker-soft));
}

.micro-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.micro-pill {
  font-size: 0.45rem;
  padding: 0.1rem 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(42, 38, 34, 0.2);
}

.micro-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--board-ink);
  opacity: 0.35;
}

.micro-chips {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.3rem;
}

.micro-chips span {
  font-size: 0.42rem;
  padding: 0.06rem 0.22rem;
  border: 1px solid rgba(42, 38, 34, 0.18);
  border-radius: 2px;
}

.micro-list {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.micro-list span {
  height: 0.28rem;
  border-radius: 1px;
  background: rgba(42, 38, 34, 0.12);
}

.micro-list .micro-list-hot {
  background: var(--marker-soft);
  border: 1px solid var(--marker-line);
}

.micro-tabs {
  display: flex;
  gap: 0.12rem;
  margin-bottom: 0.3rem;
}

.micro-tabs span {
  font-size: 0.42rem;
  padding: 0.08rem 0.2rem;
  border-bottom: 2px solid transparent;
}

.micro-tabs span.on {
  border-bottom-color: var(--board-ink);
  font-weight: 650;
}

.micro-score {
  display: grid;
  gap: 0.2rem;
}

.score-bar {
  display: block;
  height: 0.35rem;
  border: 1px solid rgba(42, 38, 34, 0.2);
  border-radius: 1px;
  background: linear-gradient(90deg, rgba(42, 38, 34, 0.15) var(--p), transparent var(--p));
}

.score-label {
  font-size: 0.42rem;
  color: var(--board-muted);
}

.micro-banner {
  font-size: 0.48rem;
  font-weight: 700;
  text-align: center;
  padding: 0.25rem 0.15rem;
  background: var(--marker-soft);
  border: 1px solid var(--marker-line);
  margin-bottom: 0.3rem;
}

.micro-body {
  height: 2.2rem;
  border: 1px dashed rgba(42, 38, 34, 0.2);
  border-radius: 2px;
}

.micro-cap {
  margin: 0.28rem 0 0;
  font-size: 0.5rem;
  color: var(--board-muted);
  text-align: center;
}

.room-sketch {
  position: relative;
  margin-bottom: 0.35rem;
}

.room-svg {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.room-outline {
  fill: rgba(255, 255, 255, 0.25);
}

.dot-risk {
  fill: none;
  stroke: var(--marker-line);
  stroke-width: 1.25;
  stroke-dasharray: 3 2;
}

.dash-arrow {
  fill: none;
  stroke: rgba(42, 38, 34, 0.35);
  stroke-width: 1;
}

.room-label {
  font-family: ui-monospace, monospace;
  font-size: 7px;
  fill: var(--board-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.graph-title {
  margin: 0;
  font-size: 0.58rem;
  color: var(--board-muted);
  letter-spacing: 0.06em;
}

.graph-sidenote {
  margin: 0.12rem 0 0.2rem;
  font-family: "Segoe Print", "Bradley Hand ITC", "Marker Felt", cursive;
  font-size: 0.55rem;
  color: rgba(90, 48, 40, 0.72);
  transform: rotate(-0.8deg);
  letter-spacing: 0.02em;
}

.graph-svg {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
}

.faint-line {
  stroke: rgba(42, 38, 34, 0.18);
  stroke-width: 1;
}

.node-mood {
  fill: rgba(255, 255, 255, 0.5);
  stroke: var(--board-ink);
  stroke-width: 1;
}

.node-obj {
  fill: rgba(42, 38, 34, 0.08);
  stroke: var(--board-ink);
  stroke-width: 1;
}

.node-text {
  font-size: 6px;
  fill: var(--board-ink);
}

.node-text.tiny {
  font-size: 5px;
}

.mood-graph {
  margin-bottom: 0.4rem;
}

.status-lane {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.status-chip {
  font-size: 0.55rem;
  padding: 0.12rem 0.38rem;
  border-radius: 2px;
  border: 1px solid rgba(42, 38, 34, 0.22);
  background: rgba(255, 255, 255, 0.35);
}

.status-chip--ok {
  border-style: dashed;
}

.status-chip--hold {
  background: var(--highlighter);
  border-color: rgba(160, 130, 40, 0.35);
}

.phone-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  align-items: flex-end;
  padding: 0.25rem 0 0.35rem;
}

.phone-frame {
  margin: 0;
  flex: 0 0 auto;
  width: 6.75rem;
  padding: 0.35rem 0.4rem 0.45rem;
  border: 2px solid var(--board-ink);
  border-radius: 14px;
  background: rgba(30, 26, 22, 0.04);
  box-shadow: 2px 3px 0 rgba(42, 38, 34, 0.12);
  transform: rotate(-0.6deg);
}

.phone-frame:nth-child(even) {
  transform: rotate(0.8deg);
}

.phone-frame:nth-child(3n) {
  transform: rotate(-0.3deg);
}

.phone-frame--winner {
  position: relative;
  z-index: 1;
  border-color: var(--marker-line);
  box-shadow:
    2px 3px 0 rgba(196, 92, 74, 0.2),
    0 0 0 3px var(--marker-soft);
  transform: rotate(0deg);
}

.phone-notch {
  width: 28%;
  height: 0.22rem;
  margin: 0 auto 0.35rem;
  border-radius: 0 0 6px 6px;
  background: var(--board-ink);
  opacity: 0.2;
}

.phone-ui {
  min-height: 8.5rem;
  padding: 0.25rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(42, 38, 34, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ph-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.55rem;
  font-weight: 650;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(42, 38, 34, 0.1);
}

.ph-back,
.ph-icon {
  opacity: 0.55;
  font-size: 0.7rem;
}

.ph-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.ph-chips span {
  font-size: 0.45rem;
  padding: 0.08rem 0.22rem;
  border: 1px solid rgba(42, 38, 34, 0.15);
  border-radius: 999px;
}

.ph-chip-warn {
  border-color: var(--marker-line);
  background: var(--marker-soft);
}

.ph-card {
  flex: 1;
  min-height: 2.4rem;
  border: 1px dashed rgba(42, 38, 34, 0.2);
  border-radius: 3px;
}

.ph-tabs {
  display: flex;
  justify-content: space-between;
  gap: 0.1rem;
  font-size: 0.45rem;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(42, 38, 34, 0.1);
}

.ph-tabs span.active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ph-nav {
  display: flex;
  justify-content: space-around;
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.55rem;
  color: var(--board-muted);
  border-top: 1px solid rgba(42, 38, 34, 0.12);
}

.ph-nav span.on {
  color: var(--board-ink);
  font-weight: 650;
}

.ph-search {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.5rem;
  color: var(--board-muted);
  padding: 0.25rem 0.3rem;
  border: 1px solid rgba(42, 38, 34, 0.15);
  border-radius: 4px;
}

.ph-grid-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  flex: 1;
}

.ph-grid-mini span {
  aspect-ratio: 1;
  border: 1px solid rgba(42, 38, 34, 0.15);
  border-radius: 3px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
}

.ph-add {
  border-style: dashed;
  color: var(--board-muted);
}

.ph-caption-in {
  margin: 0;
  font-size: 0.48rem;
  color: var(--board-muted);
  text-align: center;
}

.ph-map-ui {
  position: relative;
  flex: 1;
  min-height: 4.5rem;
  border: 1px solid rgba(42, 38, 34, 0.15);
  border-radius: 4px;
  background: rgba(42, 38, 34, 0.04);
  overflow: hidden;
}

.ph-map-blob {
  position: absolute;
  inset: 12% 18%;
  border: 1px solid rgba(42, 38, 34, 0.2);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  transform: rotate(-6deg);
}

.ph-pin {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--board-ink);
  opacity: 0.35;
  left: 32%;
  top: 38%;
}

.ph-pin--hot {
  opacity: 1;
  background: var(--marker);
  box-shadow: 0 0 0 3px var(--marker-soft);
  left: 58%;
  top: 42%;
}

.ph-pin--b {
  left: 28%;
  top: 58%;
}

.ph-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.42rem;
  color: var(--board-muted);
}

.leg-hot {
  color: #8a3228;
}

.ph-gauge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gauge-track {
  flex: 1;
  height: 0.4rem;
  border: 1px solid rgba(42, 38, 34, 0.2);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(42, 38, 34, 0.06);
}

.gauge-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(42, 38, 34, 0.25), var(--marker-soft));
}

.gauge-num {
  font-size: 0.75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.ph-risk-label {
  margin: 0;
  font-size: 0.48rem;
  color: var(--board-muted);
}

.ph-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  flex: 1;
  align-content: end;
}

.ph-split small {
  font-size: 0.42rem;
  color: var(--board-muted);
}

.ph-mini-room {
  height: 2.4rem;
  border: 1px solid rgba(42, 38, 34, 0.2);
  border-radius: 2px;
  margin-top: 0.15rem;
  background: rgba(255, 255, 255, 0.4);
}

.ph-mini-room--gone {
  opacity: 0.35;
  border-style: dashed;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 3px,
    rgba(42, 38, 34, 0.06) 3px,
    rgba(42, 38, 34, 0.06) 5px
  );
}

.ph-ui-dense {
  gap: 0.25rem;
}

.ph-cluster-bar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.12rem;
  height: 1.6rem;
}

.clump {
  width: 0.35rem;
  height: 0.65rem;
  border: 1px solid rgba(42, 38, 34, 0.2);
  border-radius: 2px;
  background: rgba(42, 38, 34, 0.08);
}

.clump-main {
  height: 1.1rem;
  border-color: var(--marker-line);
  background: var(--marker-soft);
}

.ph-small-title {
  margin: 0;
  font-size: 0.52rem;
  font-weight: 650;
}

.ph-list-tight {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.ph-list-tight span {
  height: 0.32rem;
  background: rgba(42, 38, 34, 0.1);
  border-radius: 1px;
}

.ph-flag {
  font-size: 0.45rem;
  padding: 0.2rem;
  border: 1px dashed rgba(42, 38, 34, 0.25);
  border-radius: 2px;
  color: var(--board-muted);
}

.ph-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 2px solid var(--marker-line);
  border-radius: 4px;
  background: var(--marker-soft);
}

.ph-alert strong {
  font-size: 0.85rem;
  line-height: 1;
}

.ph-alert p {
  margin: 0;
  font-size: 0.52rem;
  font-weight: 650;
}

.ph-meter {
  display: flex;
  gap: 0.12rem;
  height: 0.5rem;
  align-items: stretch;
}

.ph-meter span {
  flex: 1;
  background: rgba(42, 38, 34, 0.1);
  border-radius: 1px;
}

.ph-meter .meter-hot {
  background: var(--marker-soft);
  border: 1px solid var(--marker-line);
}

.ph-tiny {
  margin: 0;
  font-size: 0.42rem;
  color: var(--board-muted);
}

.phone-frame figcaption {
  margin: 0.35rem 0 0;
  font-size: 0.52rem;
  color: var(--board-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

.fig-winner {
  color: #7a3228;
  font-weight: 650;
}

.board-footer-sketch {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px dashed rgba(42, 38, 34, 0.2);
}

.scribble-line {
  display: block;
  height: 0;
  border-top: 1px solid rgba(42, 38, 34, 0.15);
  transform: rotate(-0.5deg);
  max-width: 70%;
}

.footer-note {
  font-size: 0.55rem;
  color: var(--board-muted);
  letter-spacing: 0.03em;
}

.projects {
  padding-top: 1rem;
  padding-bottom: clamp(0.85rem, 2vh, 1.35rem);
  padding-left: clamp(1.75rem, 5vw, 3rem);
  padding-right: clamp(1.75rem, 5vw, 3rem);
  border-bottom: none;
}

.project-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.2fr) 82px minmax(170px, 220px) 18px;
  grid-template-areas:
    "index main status note arrow"
    ". private private private .";
  gap: 0.25rem 1.25rem;
  align-items: start;
  padding: 1.3rem 0 1.2rem;
  border-top: 1px solid var(--line);
  transition: border-color 0.16s ease;
}

.project-index {
  grid-area: index;
  padding-top: 0.48rem;
}

.project-main {
  grid-area: main;
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.project-main strong {
  font-size: 1.85rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.project-label,
.project-note {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.35;
}

.project-status {
  grid-area: status;
  padding-top: 0.46rem;
  white-space: nowrap;
}

.project-note {
  grid-area: note;
  padding-top: 0.3rem;
  text-align: right;
}

.project-arrow {
  grid-area: arrow;
  padding-top: 0.18rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  transition: color 0.16s ease, transform 0.16s ease;
}

.project-private {
  grid-area: private;
  max-width: 24rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(0.18rem);
  transition: opacity 0.16s ease, transform 0.16s ease, max-height 0.16s ease;
}

.project-row:hover {
  border-top-color: var(--line-strong);
}

.project-row:hover .project-arrow {
  color: var(--accent);
  transform: translateX(0.14rem);
}

.project-row:hover .project-private {
  max-height: 2.6rem;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .proof-header,
  .strip-header,
  .projects-header,
  .proof-body {
    grid-template-columns: 1fr;
  }

  .meta-line {
    text-align: left;
  }

  .thinking-grid,
  .proof-rail,
  .review-column {
    grid-template-columns: 1fr 1fr;
  }

  .thinking-grid {
    grid-template-columns: 1fr;
  }

  .board-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "taxonomy"
      "flow"
      "map"
      "phones";
  }

  .project-row {
    grid-template-columns: 46px minmax(0, 1fr) auto 18px;
    grid-template-areas:
      "index main status arrow"
      ". note note note"
      ". private private private";
    gap: 0.35rem 1rem;
  }

  .project-status,
  .project-note {
    padding-top: 0;
  }

  .project-note {
    text-align: left;
  }

  .projects-header .section-meta {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: 100%;
    max-width: 100%;
    padding-top: 0.65rem;
    padding-bottom: 0.35rem;
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  .proof-sheet {
    border-radius: 10px;
  }

  .proof-header,
  .proof-body,
  .thinking-strip,
  .projects {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .proof-body {
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
    padding-bottom: 1.65rem;
    gap: 1.5rem;
  }

  .thinking-grid,
  .proof-rail,
  .review-column {
    grid-template-columns: 1fr;
  }

  .strip-header,
  .projects-header {
    gap: 0.5rem 0.75rem;
    align-items: start;
  }

  .section-meta {
    line-height: 1.45;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.1rem, 9.2vw, 3.35rem);
    letter-spacing: -0.052em;
    line-height: 0.95;
  }

  .hero-line,
  .hero-refined {
    white-space: normal;
  }

  .hero-refined {
    width: 100%;
    max-width: 100%;
    margin-top: 0.2em;
    line-height: 1.12;
  }

  .intro {
    max-width: none;
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .meta-value,
  .review-copy {
    font-size: 1rem;
  }

  .planning-board {
    padding: 0.45rem;
  }

  .phone-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.65rem;
    margin-inline: -0.15rem;
    padding-inline: 0.15rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .phone-frame {
    scroll-snap-align: start;
  }

  .flow-wrap {
    padding-left: 0.65rem;
    margin-left: 0;
  }

  .hand-note--scan {
    left: 0.1rem;
    top: 0.15rem;
  }

  .projects {
    padding-top: 1.1rem;
    padding-bottom: 1rem;
  }

  .project-row {
    position: relative;
    grid-template-columns: 40px minmax(0, 1fr) 2.25rem;
    grid-template-areas:
      "index main arrow"
      ". status status"
      ". note note"
      ". private private";
    gap: 0.4rem 0.65rem;
    align-items: center;
    padding: 1.15rem 0 1.25rem;
    min-height: 3.25rem;
    -webkit-tap-highlight-color: rgba(184, 121, 80, 0.15);
    border-radius: 2px;
  }

  .project-row:active {
    background: rgba(255, 255, 255, 0.025);
  }

  .project-index {
    padding-top: 0.2rem;
    align-self: start;
  }

  .project-main strong {
    font-size: 1.52rem;
    line-height: 1.02;
  }

  .project-label {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .project-status {
    padding-top: 0.15rem;
  }

  .project-note {
    padding-top: 0.15rem;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .project-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 2.75rem;
    margin: -0.35rem -0.25rem -0.35rem 0;
    padding-top: 0;
    font-size: 1.15rem;
  }

  /* Touch: no hover — show secondary line always */
  .project-row .project-private {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-top: 0.15rem;
    padding-top: 0.35rem;
    border-top: 1px dashed rgba(240, 233, 223, 0.08);
    font-size: 0.7rem;
    line-height: 1.45;
    color: var(--text-faint);
  }

  .project-row:hover .project-arrow {
    transform: none;
  }

  .site-footer {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    /*
      overflow:clip + short in-flow height read as a hairline of purple (fog layer) with no lime/mark.
      Tall min band + visible overflow keeps the full gradient + word in the scrollable document.
      Horizontal spill is still bounded by html { overflow-x: clip }.
    */
    overflow: visible;
    min-height: min(44dvh, 380px);
    padding-top: clamp(0.75rem, 3vw, 1.25rem);
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    /* Band anchored to viewport bottom; upper area is gradient-only */
    justify-content: flex-end;
  }

  .site-footer-inner {
    justify-content: flex-end;
  }

  /* Fog: keep tint across the full band on short viewports (old 64% transparent top-loaded all color in a sliver) */
  .site-footer-visual {
    background:
      linear-gradient(
        180deg,
        var(--panel) 0%,
        var(--bg) 8%,
        rgba(12, 12, 13, 0.55) 18%,
        rgba(22, 18, 36, 0.35) 32%,
        rgba(55, 45, 88, 0.14) 48%,
        rgba(130, 110, 175, 0.05) 62%,
        transparent 82%
      ),
      linear-gradient(
        180deg,
        #131218 0%,
        #16141e 6%,
        #1c1828 12%,
        #242038 20%,
        #322c4e 28%,
        #453a68 36%,
        #5c4e82 44%,
        #7868a0 50%,
        #9588b8 56%,
        #b0a4d0 60%,
        #c0b8dc 64%,
        #b8c060 72%,
        #c8d050 78%,
        #d4de40 84%,
        #dce936 90%,
        #e0ee38 96%,
        #e4f23a 100%
      );
  }

  .site-footer-noise {
    opacity: 0.14;
  }

  .site-footer-clip {
    height: auto;
    min-height: clamp(150px, 34vw, 240px);
    padding-top: 0.25rem;
    clip-path: inset(0 -140vw 0 -140vw);
  }

  .site-footer-mark {
    font-size: clamp(52px, 14vw, 118px);
    line-height: 0.68;
    letter-spacing: -0.06em;
    transform: translateY(0.04em);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-row,
  .project-arrow,
  .project-private {
    transition: none;
  }

  .project-row:hover .project-arrow {
    transform: none;
  }
}
