/* ─── nnpg.dev portfolio — terminal/modern hybrid ────────────────────── */
:root {
  --accent: #b57aff;
  --accent-soft: rgba(181, 122, 255, 0.14);
  --accent-line: rgba(181, 122, 255, 0.32);
  --bg: #07090a;
  --bg-1: #0c1012;
  --bg-2: #11161a;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --fg: #d8e4dc;
  --fg-dim: #93a39a;
  --fg-mute: #5f6c64;
  --warn: #ffc857;
  --pink: #ff7ab6;
  --blue: #7ad6ff;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --pixel: "VT323", "JetBrains Mono", monospace;
  --radius: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(181,122,255,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(122,214,255,0.05), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

/* CRT scanlines layer (toggleable via body[data-crt]) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.025) 0,
    rgba(255,255,255,0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1000;
}
body[data-crt="1"]::before { opacity: 0.55; }

body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(0,0,0,0.55) 100%);
  z-index: 1001;
  opacity: 0.45;
}

::selection { background: var(--accent); color: #07090a; }

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

/* ────── App layout ────── */
.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 80px;
  position: relative;
  z-index: 2;
}

/* Top status bar */
.statusbar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 28px;
}
.statusbar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 2px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.statusbar .sep { opacity: 0.4; }
.statusbar .right { margin-left: auto; display: flex; gap: 14px; }
.statusbar .right span { color: var(--fg-dim); }
.statusbar .right b { color: var(--accent); font-weight: 500; }

/* ────── Hero ────── */
.hero {
  position: relative;
  padding: 32px 0 24px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.ascii {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.05;
  color: var(--accent);
  white-space: pre;
  letter-spacing: 0;
  text-shadow: 0 0 12px rgba(181,122,255,0.45);
  user-select: none;
  filter: drop-shadow(0 0 1px rgba(181,122,255,0.35));
}
.ascii.tight { font-size: 9px; }

.hero-meta {
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-meta .v { color: var(--fg); font-weight: 500; }

.hero-tag {
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 820px;
}
.hero-tag .accent { color: var(--accent); font-weight: 600; }
.hero-tag .strike {
  position: relative;
  color: var(--fg-mute);
}
.hero-tag .strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  top: 53%;
  height: 2px;
  background: var(--fg-mute);
}
.hero-sub {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-dim);
  max-width: 600px;
}
.hero-sub .blink {
  display: inline-block;
  width: 9px; height: 16px;
  background: var(--accent);
  vertical-align: -3px;
  margin-left: 2px;
  animation: blink 1s steps(2, end) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ────── Grid ────── */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

@media (max-width: 880px) {
  .col-4, .col-5, .col-6, .col-7, .col-8 { grid-column: span 12; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-meta { text-align: left; }
  .ascii { font-size: 8px; }
  .ascii.tight { font-size: 7px; }
}

/* ────── Panel ────── */
.panel {
  position: relative;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 30%);
  pointer-events: none;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.panel-head .tag {
  color: var(--accent);
  font-weight: 500;
}
.panel-head .right { margin-left: auto; color: var(--fg-mute); font-size: 10px; }
.panel-head .badge {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 9px;
  letter-spacing: 0.1em;
}

/* About panel */
.about {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.avatar {
  width: 84px; height: 84px;
  border-radius: 4px;
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(109,255,122,0.08) 0 6px, transparent 6px 12px),
    linear-gradient(135deg, #1d2a22, #0e1410);
  border: 1px solid var(--line-2);
  overflow: hidden;
  flex-shrink: 0;
  cursor: crosshair;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.avatar:hover { transform: rotate(8deg) scale(1.06); }
.avatar svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.avatar .label {
  position: absolute; bottom: 4px; left: 6px;
  font-family: var(--mono); font-size: 8px;
  letter-spacing: 0.08em; color: var(--fg-mute);
}

.bio { display: flex; flex-direction: column; gap: 8px; }
.bio .name {
  font-family: var(--display);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.bio .name::before { content: "@"; color: var(--accent); margin-right: 2px; }
.bio .meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  display: flex; flex-wrap: wrap; gap: 6px 12px;
}
.bio .meta b { color: var(--fg); font-weight: 500; }
.bio p {
  margin: 6px 0 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.65;
}
.bio p .hi { color: var(--fg); }

/* Stats grid */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.015);
  position: relative;
  overflow: hidden;
}
.stat .num {
  font-family: var(--display);
  font-size: 28px; font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat .lbl {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.stat .hint {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--fg-mute);
  opacity: 0.7;
}

/* Project card */
.project {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.project .thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #0e1c14, #061008);
  border: 1px solid var(--line-2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.project .thumb::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(109,255,122,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,255,122,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask: radial-gradient(circle at center, #000 30%, transparent 75%);
}
.project .thumb-art {
  position: relative;
  display: flex; gap: 4px;
  align-items: center;
  font-family: var(--mono);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.mc-block {
  width: 56px; height: 56px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 0;
  border: 1px solid #000;
  box-shadow:
    inset 2px 2px 0 rgba(255,255,255,0.18),
    inset -2px -2px 0 rgba(0,0,0,0.5),
    0 0 24px rgba(109,255,122,0.45);
  animation: mcfloat 4s ease-in-out infinite;
}
.mc-block i {
  background: linear-gradient(135deg, #5cd66c, #2f7a3a);
}
.mc-block i:nth-child(7n+1) { background: #4ec55c; }
.mc-block i:nth-child(11n+3) { background: #2e7536; }
.mc-block i:nth-child(13n+5) { background: #6fdf7c; }
@keyframes mcfloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
}

.project .title {
  font-family: var(--display);
  font-size: 19px; font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.project .title b { color: var(--accent); }
.project .desc {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--fg-dim);
  line-height: 1.6;
}
.project .links {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 4px;
}
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fg);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all .15s ease;
}
.btn:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn.primary {
  background: var(--accent);
  color: #0a0e0a;
  border-color: var(--accent);
  font-weight: 600;
}
.btn.primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-1px);
}
.btn .arrow {
  display: inline-block;
  transition: transform .15s ease;
}
.btn:hover .arrow { transform: translate(2px, -2px); }

/* Skills + hobbies — chips */
.chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.chip {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chip::before {
  content: "▸";
  color: var(--accent);
  font-size: 10px;
}
.chip.learning {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent);
}
.chip.learning::before { content: "⏳"; color: var(--warn); }

.kv {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  font-family: var(--mono);
  font-size: 12px;
}
.kv dt { color: var(--fg-mute); text-transform: uppercase; font-size: 10px; letter-spacing: 0.08em; padding-top: 3px; }
.kv dd { margin: 0; color: var(--fg); }

/* Now playing */
.np {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
}
.np-art {
  width: 64px; height: 64px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, #1f1f1f, #0a0a0a);
  border: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
}
.np-art::before {
  content: "";
  position: absolute; inset: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #000 22%, transparent 24%),
    repeating-radial-gradient(circle at center, #1a1a1a 0 1px, #0a0a0a 1px 3px);
  animation: spin 4s linear infinite;
}
.np-art:has(img)::before, .np-art:has(img)::after { display: none; }
.np-art::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--accent);
}
@keyframes spin { to { transform: rotate(360deg); } }

.np-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.np-track {
  font-family: var(--display);
  font-size: 15px; font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.np-artist {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-dim);
}
.np-bar {
  margin-top: 6px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.np-bar .fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width .2s linear;
  box-shadow: 0 0 6px var(--accent);
}
.np-time {
  display: flex; justify-content: space-between;
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
}

/* Connect grid */
.connect {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.connect a {
  position: relative;
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.015);
  transition: all .15s ease;
  overflow: hidden;
}
.connect a:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.connect a:hover .ico { color: var(--accent); }
.connect .ico {
  width: 18px; height: 18px;
  color: var(--fg-dim);
  transition: color .15s ease;
}
.connect .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.connect .hdl {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--fg-mute);
  text-transform: lowercase;
}
.connect a::after {
  content: "↗";
  position: absolute;
  top: 8px; right: 10px;
  font-size: 10px;
  color: var(--fg-mute);
  opacity: 0;
  transition: all .2s ease;
}
.connect a:hover::after { opacity: 1; transform: translate(2px, -2px); color: var(--accent); }

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

/* Boot overlay */
.boot {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.boot.fading { animation: bootfade .6s ease forwards; }
@keyframes bootfade { to { opacity: 0; transform: translateY(-8px); pointer-events: none; } }
.boot .line { white-space: pre; }
.boot .line .ok { color: var(--accent); }
.boot .line .warn { color: var(--warn); }
.boot .line .dim { color: var(--fg-mute); }
.boot .line .blink-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--accent);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blink 1s steps(2, end) infinite;
}
.boot-skip {
  position: fixed;
  bottom: 22px; right: 28px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  padding: 6px 10px;
  border-radius: 4px;
}
.boot-skip:hover { color: var(--accent); border-color: var(--accent-line); }

/* Terminal panel */
.term {
  font-family: var(--mono);
  font-size: 12px;
  background: #050709;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 320px;
}
.term-head {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  background: linear-gradient(180deg, #0e1216, #0a0d10);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.term-head .lights { display: flex; gap: 5px; }
.term-head .lights i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #2a2f33;
}
.term-head .lights i:nth-child(1) { background: #ff5f57; }
.term-head .lights i:nth-child(2) { background: #febc2e; }
.term-head .lights i:nth-child(3) { background: #28c840; }
.term-head .title { margin-left: auto; color: var(--fg-mute); }
.term-head .hint { color: var(--fg-mute); opacity: 0.7; font-size: 9.5px; }

.term-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--fg);
  line-height: 1.55;
}
.term-body::-webkit-scrollbar { width: 6px; }
.term-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
.term-line { white-space: pre-wrap; word-break: break-word; }
.term-line.cmd { color: var(--fg); }
.term-line.cmd .prompt { color: var(--accent); margin-right: 8px; user-select: none; }
.term-line.cmd .input { color: var(--fg); }
.term-line .ok { color: var(--accent); }
.term-line .dim { color: var(--fg-mute); }
.term-line .warn { color: var(--warn); }
.term-line .pink { color: var(--pink); }
.term-line .blue { color: var(--blue); }
.term-line a { color: var(--blue); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 2px; }

.term-input {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  background: #06090b;
}
.term-input .prompt { color: var(--accent); font-family: var(--mono); }
.term-input input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 12.5px;
  outline: none;
  caret-color: var(--accent);
}

/* MC easter egg block — corner */
.corner-mc {
  position: fixed;
  bottom: 20px; left: 20px;
  width: 36px; height: 36px;
  z-index: 200;
  cursor: grab;
  transition: transform .2s ease;
  filter: drop-shadow(0 4px 14px rgba(109,255,122,0.5));
}
.corner-mc:hover { transform: scale(1.15) rotate(8deg); }
.corner-mc:active { cursor: grabbing; }

/* Konami toast */
.toast {
  position: fixed;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: var(--bg-1);
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 24px rgba(109,255,122,0.3);
  animation: toast-in .3s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, -8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Footer */
.footer {
  margin-top: 32px;
  padding: 18px 0 8px;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.footer .blink-cursor {
  display: inline-block;
  width: 7px; height: 11px;
  background: var(--accent);
  vertical-align: -1px;
  margin-left: 4px;
  animation: blink 1s steps(2, end) infinite;
}

/* Section divider */
.section-rule {
  display: flex; align-items: center;
  gap: 12px;
  margin: 36px 0 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.section-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.section-rule .num { color: var(--accent); }

/* Theme variants — applied via [data-theme] on <html> */
html[data-theme="amber"] {
  --accent: #ffb84d;
  --accent-soft: rgba(255,184,77,0.14);
  --accent-line: rgba(255,184,77,0.32);
}
html[data-theme="amber"] .ascii { text-shadow: 0 0 12px rgba(255,184,77,0.4); }
html[data-theme="cyan"] {
  --accent: #5dd5ff;
  --accent-soft: rgba(93,213,255,0.14);
  --accent-line: rgba(93,213,255,0.32);
}
html[data-theme="cyan"] .ascii { text-shadow: 0 0 12px rgba(93,213,255,0.4); }
html[data-theme="pink"] {
  --accent: #ff7ab6;
  --accent-soft: rgba(255,122,182,0.14);
  --accent-line: rgba(255,122,182,0.32);
}
html[data-theme="pink"] .ascii { text-shadow: 0 0 12px rgba(255,122,182,0.4); }

/* Display font swap */
html[data-display="grotesk"] { --display: "Space Grotesk", sans-serif; }
html[data-display="mono"] { --display: "JetBrains Mono", monospace; }
html[data-display="pixel"] { --display: "VT323", monospace; }
html[data-display="pixel"] .hero-tag { font-size: clamp(36px, 5.5vw, 64px); letter-spacing: 0; }
html[data-display="pixel"] .bio .name { font-size: 32px; letter-spacing: 0; }
html[data-display="pixel"] .stat .num { font-size: 36px; }
html[data-display="pixel"] .project .title { font-size: 24px; letter-spacing: 0; }
html[data-display="pixel"] .np-track { font-size: 19px; }
