:root {
  --bg: #eef0f2;
  --bg-2: #e6e9ec;
  --fg: #0a0a0a;
  --fg-muted: #8b8e93;
  --fg-dim: #b9bdc2;
  --line: rgba(10,10,10,0.10);
  --line-soft: rgba(10,10,10,0.06);
  --pill: #0a0a0a;
  --pill-fg: #f4f5f6;
  --pill-light: rgba(10,10,10,0.04);
  --term-bg: #f7f8f9;
  --accent: oklch(0.62 0.18 28); /* warm coral, used very sparingly */
  --shadow-card: 0 1px 0 rgba(10,10,10,0.04), 0 8px 24px -12px rgba(10,10,10,0.18);
  --radius-card: 14px;
  --radius-pill: 999px;
  --max: 1440px;
  --green: oklch(0.7 0.16 145);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.01em;
  overflow-x: hidden;
  text-wrap: pretty;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

/* ------- Top bar ------- */
.topbar {
  position: fixed; inset: 14px 16px auto 16px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 50;
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }
.brand-mark {
  font-weight: 700; font-size: 22px; letter-spacing: -0.04em;
  padding: 4px 8px;
}
.top-actions { display: flex; gap: 8px; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 12px;
  height: 44px; padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.pill.light {
  background: var(--pill-light);
  color: var(--fg);
}
.pill.light:hover { background: rgba(10,10,10,0.08); }
.pill.dark {
  background: var(--pill);
  color: var(--pill-fg);
}
.pill.dark:hover { transform: translateY(-1px); }
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 oklch(0.7 0.16 145 / .6);
  animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.7 0.16 145 / .6); }
  70% { box-shadow: 0 0 0 8px oklch(0.7 0.16 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.7 0.16 145 / 0); }
}
.pill .caret { display: inline-flex; gap: 3px; align-items: center; }
.pill .caret span { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .85; }

/* Menu drop */
.menu-wrap { position: relative; }
.menu-drop {
  position: absolute; top: 56px; right: 0;
  background: var(--bg-2);
  border-radius: 18px;
  padding: 10px;
  width: 240px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 2px;
  transform-origin: top right;
  transform: scale(0.96) translateY(-4px); opacity: 0; pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-wrap.open .menu-drop { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  font-size: 24px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--fg);
  transition: background .15s ease;
}
.menu-item:hover { background: rgba(10,10,10,0.05); }
.menu-item.current {
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line-soft);
}
.menu-item .arr { opacity: 0; transition: opacity .15s ease, transform .2s ease; }
.menu-item.current .arr,
.menu-item:hover .arr { opacity: 1; transform: translateX(0); }

/* ------- Centered editorial hero ------- */
.hero-c {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-c-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 24px; letter-spacing: -0.04em;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.hero-c-mark::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(10,10,10,0.15);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-c-tags {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--fg-muted);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 2;
}
.hero-c-tags span:not(.bar) { color: var(--fg); font-weight: 500; }
.hero-c-tags .bar { width: 1px; height: 12px; background: var(--fg-muted); opacity: .5; }

.hero-c-headline {
  font-size: clamp(56px, 8.4vw, 152px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0 0 28px;
  max-width: 18ch;
  position: relative; z-index: 2;
}
.hero-c-headline em {
  font-style: normal;
  color: var(--fg-muted);
}
.hero-c-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--fg-muted);
  max-width: 56ch;
  margin: 0 auto 40px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  position: relative; z-index: 2;
}
.hero-c-cta {
  display: inline-flex; gap: 12px;
  position: relative; z-index: 2;
  margin-bottom: 8px;
}
.hero-c-cta .pill { height: 52px; padding: 0 24px; font-size: 13px; }
.hero-c-cta .cta-arr { margin-left: 4px; }

/* Decorative shapes — anchored to corners, never overlap content */
.hero-c-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  animation: float 12s ease-in-out infinite;
}
.hero-c-shape.sq {
  width: 76px; height: 76px;
  background: var(--fg);
  top: 18%; left: 5%;
  transform: rotate(8deg);
  animation-delay: -2s;
}
.hero-c-shape.ring {
  width: 132px; height: 132px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  top: 16%; right: 5%;
  animation-delay: -5s;
}
.hero-c-shape.dia {
  width: 52px; height: 52px;
  background: var(--fg);
  transform: rotate(45deg);
  bottom: 18%; right: 7%;
  animation-delay: -8s;
}
.hero-c-shape.dot {
  width: 14px; height: 14px;
  background: var(--green);
  border-radius: 50%;
  bottom: 22%; left: 8%;
  animation-delay: -3s;
}
.hero-c-shape.line {
  width: 1px; height: 96px;
  background: var(--fg);
  top: 46%; right: 4%;
  animation-delay: -6s;
  opacity: .5;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -16px; }
}

/* Hide non-essential shapes on narrower viewports where the centered
   content column gets close to the edges. */
@media (max-width: 1100px) {
  .hero-c-shape.line, .hero-c-shape.dot { display: none; }
}
@media (max-width: 880px) {
  .hero-c-shape.sq, .hero-c-shape.dia { display: none; }
}

.hero-c-foot {
  position: absolute; left: 0; right: 0; bottom: 24px;
  display: flex; justify-content: space-between; align-items: end;
  padding: 0 24px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: 0.04em;
  z-index: 3;
}
.hero-c-foot .right { text-align: right; line-height: 1.7; }
.hero-c-foot b {
  color: var(--fg); font-weight: 500;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13px; letter-spacing: -0.005em;
}
.scroll-hint { display: flex; align-items: center; gap: 8px; }
.scroll-rule { display: inline-block; width: 24px; height: 1px; background: currentColor; }
.status-row {
  display: flex; align-items: center; gap: 8px;
  justify-content: flex-end; margin-top: 6px;
}
.status-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}

/* ------- Stack section ------- */
.stack-legend {
  display: flex; gap: 18px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.stack-legend span { display: inline-flex; align-items: center; gap: 6px; }
.lv { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.lv-core   { background: var(--fg); }
.lv-daily  { background: var(--fg); opacity: 0.55; }
.lv-fluent { background: transparent; box-shadow: inset 0 0 0 1.5px var(--fg-muted); }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stack-col {
  background: var(--bg-2);
  border-radius: var(--radius-card);
  padding: 24px 22px 12px;
  border: 1px solid var(--line-soft);
}
.stack-col-head {
  display: flex; flex-direction: column; gap: 2px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.stack-col-head h3 {
  margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -0.02em;
}
.stack-col-head span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--fg-muted); letter-spacing: 0.02em;
}
.stack-list { list-style: none; margin: 0; padding: 0; }
.stack-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}
.stack-item:last-child { border-bottom: 0; }
.stack-name {
  flex: 1; font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
}
.stack-lvl {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px; color: var(--fg-muted);
  letter-spacing: 0.03em; text-transform: lowercase;
}

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

/* ------- Section ------- */
section.block { padding: 120px 0 40px; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px; color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--fg-muted);
}
.section-h {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 0 0 48px;
  max-width: 18ch;
}
.section-h em {
  font-style: normal;
  color: var(--fg-muted);
}

/* ------- About ------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(10,10,10,0.05) 0 12px,
      rgba(10,10,10,0.02) 12px 24px);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.about-photo .placeholder-label {
  padding: 6px 10px;
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid var(--line);
}
.about-h { margin-bottom: 32px; }
.about-body p {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  font-weight: 400;
}
.about-body p .accent { color: var(--fg); font-weight: 500; }
.about-body p.muted { color: var(--fg-muted); }
.about-stats {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stat .n { font-size: 40px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.about-stat .n .n-muted { color: var(--fg-muted); }
.about-stat .l {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.05em;
  color: var(--fg-muted); margin-top: 8px;
  text-transform: lowercase;
}

@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 420px; }
}
@media (max-width: 640px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-body p { font-size: 19px; }
}

/* ------- Work grid ------- */
.work-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px;
  gap: 24px;
}
.work-meta {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: 0.04em; text-transform: lowercase;
}
.work-meta.narrow { max-width: 220px; text-align: right; }
.work-grid {
  --cols: 3;
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .work-grid { --cols: 2; }
}
@media (max-width: 640px) {
  .work-grid { --cols: 1; }
}
.show-all-wrap {
  display: flex; align-items: center; gap: 24px;
  margin-top: 40px;
}
.show-all-wrap:empty { display: none; }
.show-all {
  display: inline-flex; align-items: center; gap: 12px;
  height: 48px; padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--pill-light);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg);
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
}
.show-all:hover { background: rgba(10,10,10,0.08); transform: translateY(-1px); }
.show-all-arr { transition: transform .3s ease; display: inline-block; }
.show-all-arr.up { transform: rotate(180deg); }
.show-all-line { flex: 1; height: 1px; background: var(--line); }
.project {
  position: relative;
  background: var(--bg-2);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  isolation: isolate;
}
.project:hover { transform: translateY(-4px); }
.project-media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--fg);
}
.project-media .bg {
  position: absolute; inset: 0;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.project:hover .project-media .bg { transform: scale(1.05); }
.project-media .ph-label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  text-transform: lowercase;
}
.project-foot {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.project-foot .row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.project-title {
  font-size: 18px; font-weight: 600; letter-spacing: -0.02em;
}
.project-year {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--fg-muted); letter-spacing: 0.04em;
}
.project-tags {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--fg-muted); letter-spacing: 0.02em;
}
.project .reveal {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.92);
  color: #f4f5f6;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0;
  transition: opacity .25s ease;
  backdrop-filter: blur(2px);
}
.project:hover .reveal { opacity: 1; }
.reveal-top { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.reveal-tag {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,245,246,0.6);
}
.reveal-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: #f4f5f6; color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.reveal-bot p {
  margin: 0 0 12px;
  font-size: 14px; line-height: 1.4;
  color: rgba(244,245,246,0.92);
}
.reveal-bot .meta {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px; letter-spacing: 0.04em;
  color: rgba(244,245,246,0.5);
  text-transform: uppercase;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ------- Case study panel ------- */
.case-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(6px);
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.case-overlay.open { opacity: 1; pointer-events: auto; }
.case-panel {
  position: fixed;
  top: 16px; right: 16px; bottom: 16px;
  width: min(880px, calc(100vw - 32px));
  background: var(--bg);
  border-radius: 18px;
  z-index: 101;
  overflow: hidden;
  transform: translateX(calc(100% + 32px));
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -40px 0 80px -40px rgba(10,10,10,0.3);
}
.case-panel.open { transform: translateX(0); }
.case-head {
  padding: 24px 32px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.case-head .crumb {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--fg-muted); letter-spacing: 0.05em;
}
.case-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pill); color: var(--pill-fg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.case-body {
  overflow-y: auto;
  padding: 32px 32px 48px;
  flex: 1;
}
.case-hero {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: var(--fg);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.case-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700; letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 0 0 16px;
}
.case-sub {
  font-size: 20px; color: var(--fg-muted);
  letter-spacing: -0.015em; line-height: 1.4;
  margin: 0 0 32px; max-width: 60ch;
}
.case-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .case-meta { grid-template-columns: repeat(2, 1fr); }
}
.case-meta .k {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.05em;
  color: var(--fg-muted); margin-bottom: 6px;
  text-transform: lowercase;
}
.case-meta .v { font-size: 15px; font-weight: 500; }
.case-section { margin-bottom: 32px; }
.case-section h3 {
  font-size: 13px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 500; letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--fg-muted);
  margin: 0 0 12px;
}
.case-section p {
  font-size: 17px; line-height: 1.55; letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.case-tech {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.case-tech span {
  padding: 6px 12px;
  background: var(--pill-light);
  border-radius: var(--radius-pill);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px; letter-spacing: 0.02em;
}

/* ------- Experience ------- */
.exp-list {
  border-top: 1px solid var(--line);
}
.exp-row {
  display: grid;
  grid-template-columns: 100px 1.5fr 2fr 100px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding .3s ease;
}
.exp-row:hover { padding-left: 8px; }
.exp-year {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px; color: var(--fg-muted); letter-spacing: 0.04em;
}
.exp-role { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.exp-co { color: var(--fg-muted); }
.exp-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.5; letter-spacing: -0.01em; }
.exp-tag {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: 0.05em; text-transform: lowercase;
  text-align: right;
}
@media (max-width: 880px) {
  .exp-row { grid-template-columns: 90px 1fr 90px; }
  .exp-desc { grid-column: 2; }
}
@media (max-width: 640px) {
  .exp-row { grid-template-columns: 1fr; gap: 8px; }
  .exp-tag { text-align: left; }
}

/* ------- Contact ------- */
.contact-block {
  padding: 64px 0 0;
  text-align: left;
}
.contact-big {
  font-size: clamp(56px, 9vw, 160px);
  font-weight: 700; letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 48px;
}
.contact-big a { display: inline-block; position: relative; }
.contact-big a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 4px; background: var(--fg);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.contact-big a:hover::after { transform: scaleX(1); }
.contact-links {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 120px;
}
.contact-pill { gap: 10px; }
.contact-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  color: var(--fg);
}
.contact-val {
  opacity: 0.5;
  text-transform: none;
  letter-spacing: -0.01em;
}
.footer-strip {
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-transform: lowercase;
}
.footer-strip .left { display: flex; gap: 24px; }
.footer-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
  margin-right: 8px; vertical-align: middle;
}
@media (max-width: 640px) {
  .footer-strip { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-strip .left { flex-direction: column; gap: 4px; }
}

/* Subtle entrance */
@media (prefers-reduced-motion: no-preference) {
  .fade-in { opacity: 0; transform: translateY(12px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
  .fade-in.in { opacity: 1; transform: none; }
}
