/* ===== Variables ===== */
:root {
  --bg:         #0d1117;
  --bg-alt:     #161b22;
  --bg-card:    #161b22;
  --border:     #30363d;
  --text:       #c9d1d9;
  --muted:      #8b949e;
  --accent:     #ff4444;
  --accent-h:   #ff6666;
  --green:      #7ee787;
  --blue:       #58a6ff;
  --yellow:     #e3b341;
  --nav-bg:     rgba(13,17,23,0.92);
  --mono:       'JetBrains Mono', 'Fira Code', monospace;
  --sans:       'Inter', system-ui, sans-serif;
}
[data-theme="light"] {
  --bg:         #ffffff;
  --bg-alt:     #f6f8fa;
  --bg-card:    #ffffff;
  --border:     #d0d7de;
  --text:       #24292f;
  --muted:      #57606a;
  --accent:     #cf222e;
  --accent-h:   #a40e26;
  --green:      #1a7f37;
  --blue:       #0969da;
  --yellow:     #9a6700;
  --nav-bg:     rgba(255,255,255,0.92);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); line-height: 1.6; transition: background .3s, color .3s; }
a { color: var(--blue); text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-container {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { font-family: var(--mono); font-size: 14px; color: var(--text); font-weight: 700; }
.g { color: var(--green); }
.b { color: var(--blue); }
.y { color: var(--yellow); }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.blink { animation: blink 1s step-end infinite; color: var(--green); }
@keyframes blink { 50% { opacity: 0; } }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--mono); font-size: 13px; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.theme-toggle {
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
  width: 36px; height: 36px; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 15px; transition: .2s;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); display: block; transition: .3s; }

.mobile-menu { display: none; flex-direction: column; padding: 12px 24px 16px; border-top: 1px solid var(--border); }
.mobile-menu a { font-family: var(--mono); font-size: 13px; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ===== Hero ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 80px 0 40px; }
.hero-inner {
  display: flex; align-items: center; gap: 60px;
}
.hero-content { flex: 1; min-width: 0; }

.terminal-window {
  min-width: 380px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  font-family: var(--mono); font-size: 14px;
  margin-bottom: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.terminal-header {
  background: var(--bg-alt); padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.terminal-title { flex: 1; text-align: center; font-size: 12px; color: var(--muted); }
.terminal-body { padding: 16px; }
.tline { line-height: 1.9; }
.mt-2 { margin-top: 8px; }
.terminal-output { margin-top: 6px; padding-left: 16px; }
.terminal-output p { font-size: 13px; line-height: 1.85; color: var(--text); }
.cursor { animation: cur 1s step-end infinite; color: var(--green); }
@keyframes cur { 50% { opacity: 0; } }
#typewriter { color: var(--accent); font-weight: 700; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { padding: 10px 22px; border-radius: 6px; font-family: var(--mono); font-size: 13px; font-weight: 600; cursor: pointer; transition: .2s; border: 1px solid transparent; display: inline-block; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-h); color: #fff; border-color: var(--accent-h); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-visual { flex-shrink: 0; }
/* ===== Hero scan-reveal (dual-photo dynamic circular mask + targeting reticle) ===== */
.scan-reveal {
  position: relative;
  width: 320px; height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  cursor: crosshair;
  /* soft blended halo instead of a crisp red border */
  box-shadow: 0 0 22px 4px rgba(255,68,68,.20);
}
/* soft, slightly-blurred red edge so the ring melts into the background */
.scan-reveal::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: inset 0 0 9px 2px rgba(255,68,68,.4);
  pointer-events: none; z-index: 4;
}
.scan-reveal img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}
.sr-a { z-index: 1; }                                   /* Photo A, avatar (full) */
/* Photo B, real, revealed inside the circle; inner img zoomed out a touch to match A's framing */
.sr-b { position: absolute; inset: 0; z-index: 2; background: #0d1117; clip-path: circle(42px at 50% 50%); }
.sr-b img { transform: scale(.85); transform-origin: center; }

.sr-reticle { position: absolute; z-index: 3; top: 0; left: 0; width: 100px; height: 100px; pointer-events: none; will-change: transform; }
.sr-ring   { position: absolute; inset: 8px; border-radius: 50%; border: 1.5px solid var(--accent); box-shadow: 0 0 10px rgba(255,68,68,.5), inset 0 0 8px rgba(255,68,68,.25); }
.sr-h, .sr-v { position: absolute; background: rgba(255,68,68,.85); }
.sr-h { left: 50%; top: 50%; width: 18px; height: 1.5px; transform: translate(-50%,-50%); }
.sr-v { left: 50%; top: 50%; width: 1.5px; height: 18px; transform: translate(-50%,-50%); }
.sr-dot { position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); transform: translate(-50%,-50%); box-shadow: 0 0 8px var(--accent); }
.sr-br { position: absolute; width: 11px; height: 11px; border: 2px solid var(--accent); }
.sr-br.tl  { top: 0; left: 0;  border-right: 0; border-bottom: 0; }
.sr-br.tr  { top: 0; right: 0; border-left: 0;  border-bottom: 0; }
.sr-br.bl  { bottom: 0; left: 0;  border-right: 0; border-top: 0; }
.sr-br.br2 { bottom: 0; right: 0; border-left: 0;  border-top: 0; }

@media (max-width: 900px) {
  .hero-inner { flex-direction: column-reverse; padding-top: 100px; gap: 32px; }
  .scan-reveal { width: 240px; height: 240px; }
  .terminal-window { min-width: 0; width: 100%; }   /* the 380px min-width overflowed narrow phones */
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 26px; font-weight: 700; margin-bottom: 44px; font-family: var(--mono); }
.section-tree { display: flex; flex-direction: column; gap: 6px; line-height: 1.3; }
.section-tree .tree-dir { color: var(--accent); }
.section-tree .tree-file { font-size: 15px; font-weight: 400; color: var(--text); padding-left: 6px; }
.section-tree .tree-twig { color: var(--muted); margin-right: 6px; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: start; }
.about-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.85; }
.about-text strong { color: var(--text); }
.about-list { list-style: none; margin: 0 0 4px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.about-list li { position: relative; padding-left: 24px; color: var(--muted); line-height: 1.7; }
.about-list li::before { content: '\25B9'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.about-list strong { color: var(--text); }
.about-stats { display: flex; gap: 32px; margin-top: 32px; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 22px; font-weight: 700; color: var(--accent); font-family: var(--mono); }
.stat-num.tight { word-spacing: -0.3em; }
.stat-label { font-size: 12px; color: var(--muted); }
.about-links h3 { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .1em; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: 13px; margin-bottom: 10px; transition: .2s;
}
.social-link:hover { border-color: var(--blue); color: var(--blue); }
.social-link.htb:hover { border-color: #9fef00; color: #9fef00; }

/* About -> writeups/talks call to action */
.about-cta {
  margin-top: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding: 24px 28px;
  border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 12px;
  background: linear-gradient(120deg, rgba(255,68,68,.10), var(--bg-card) 62%);
  box-shadow: 0 0 0 1px rgba(255,68,68,.04), 0 12px 30px -18px rgba(0,0,0,.7);
}
.about-cta-text { flex: 1 1 320px; }
.about-cta-prompt { display: block; font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.about-cta-prompt .g { color: var(--green); }
.about-cta-text p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.6; max-width: 54ch; }
.about-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.about-cta-btns .btn i { margin-right: 8px; }
@media (max-width: 768px) {
  .about-cta { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 16px; padding: 20px 22px; }
  .about-cta-text { flex: 0 0 auto; }
  .about-cta-text p { max-width: none; }
  .about-cta-btns { width: 100%; }
  .about-cta-btns .btn { flex: 1; text-align: center; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }
}

/* ===== Skills ===== */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.skill-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px; transition: border-color .2s, transform .2s;
}
.skill-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.skill-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.skill-header i { font-size: 18px; color: var(--accent); }
.skill-header h3 { font-size: 15px; font-weight: 600; }
.skill-desc { color: var(--muted); font-size: 14px; line-height: 1.7; }

@media (max-width: 768px) { .skills-grid { grid-template-columns: 1fr; } }

/* ===== Tags ===== */
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--muted);
  font-family: var(--mono); font-size: 11px; padding: 3px 9px; border-radius: 4px; transition: .2s;
}
.tag:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Projects ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px; transition: .2s;
  display: flex; flex-direction: column; gap: 10px;
}
.project-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.project-header { display: flex; justify-content: space-between; align-items: center; }
.folder-icon { font-size: 22px; color: var(--blue); }
.gh-link { color: var(--muted); font-size: 18px; transition: color .2s; }
.gh-link:hover { color: var(--text); }
.project-card.is-link { position: relative; }
.card-stretch { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.project-card.is-link .gh-link { position: relative; z-index: 2; }
.project-name { font-family: var(--mono); font-size: 15px; color: var(--text); }
.project-desc { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }

@media (max-width: 768px) { .projects-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }



#nemuCard {
  cursor: pointer;
  position: relative;
}


.nemu-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 300;
  align-items: center;
  justify-content: center;
}
.nemu-modal.open {
  display: flex;
}
.nemu-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: min(780px, 92vw);
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  animation: popIn .2s ease;
  position: relative;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
.nemu-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(0,0,0,.5);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
.nemu-modal-close:hover { background: rgba(255,255,255,.2); }
.nemu-modal-box img {
  width: 100%;
  display: block;
}


.proj-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--mono);
  display: flex;
  align-items: center;
  gap: 8px;
}
.proj-note i {
  color: var(--accent);
  font-size: 11px;
}


.out-line {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .35s ease, transform .35s ease;
}
.out-line.visible {
  opacity: 1;
  transform: translateY(0);
}


.htb-badge-link {
  display: block;
  margin-top: 16px;
}
.htb-badge-img {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.htb-badge-link:hover .htb-badge-img {
  border-color: #9fef00;
  transform: translateY(-2px);
}


/* ===== Certifications ===== */
.certs-outer {
  position: relative;
}
/* gradient fade di kanan sebagai indicator "ada lebih" */
.certs-outer::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}
[data-theme="light"] .certs-outer::after {
  background: linear-gradient(to right, transparent, #ffffff);
}

.certs-scroll {
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.certs-scroll:active { cursor: grabbing; }
.certs-scroll::-webkit-scrollbar { display: none; }

.certs-grid {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: calc((min(1100px, 100vw) - 96px) / 3);
  gap: 20px;
  width: max-content;
  padding-right: 80px;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
  scroll-snap-align: start;
}
.cert-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.cert-img-area {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.cert-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.bg-htb   { background: #1a2a1a; color: #9fef00; }
.bg-ine   { background: #0c1a2e; color: #38bdf8; }
.bg-cwl   { background: #2a0a0a; color: #f87171; }
.bg-cisco { background: #ffffff; color: #049fd9; }
.bg-bnsp  { background: #1a1400; color: #fbbf24; }
.bg-certiport { background: #1a0a2e; color: #a855f7; }
.bg-cisco img, .bg-certiport img { object-fit: contain; padding: 8px; }

.cert-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.cert-body h3 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.cert-issuer { font-size: 11px; color: var(--muted); }

.cert-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  flex-wrap: nowrap;
  margin-top: auto;
  overflow: hidden;
}
.cert-meta > span:first-child { white-space: nowrap; flex-shrink: 0; }
.cert-meta i { margin-right: 2px; }

.cert-noexp {
  background: rgba(126,231,135,.12);
  color: var(--green);
  border: 1px solid rgba(126,231,135,.3);
  padding: 1px 6px;
  border-radius: 20px;
  font-size: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cert-exp {
  background: rgba(88,166,255,.1);
  color: var(--blue);
  border: 1px solid rgba(88,166,255,.25);
  padding: 1px 6px;
  border-radius: 20px;
  font-size: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 1px 7px;
  border-radius: 4px;
  transition: .2s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}
.cert-link:hover { background: var(--accent); color: #fff; }

@media (max-width: 768px) {
  .certs-grid { grid-auto-columns: calc(100vw - 80px); }
}

/* ===== Hall of Fame ===== */
.hof-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  font-family: var(--mono);
}
.hof-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hof-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.hof-col-header {
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
}
.hof-items {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: 8px;
}
.hof-empty {
  align-items: center;
  justify-content: center;
}
.bb-pending {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  opacity: .55;
  text-align: center;
  padding: 28px 16px;
}
.hof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  height: 88px;
  text-decoration: none;
  transition: border-color .2s, transform .15s;
  cursor: default;
  justify-content: center;
}
a.hof-item { cursor: pointer; }
.hof-hidden { display: none; }
.hof-more {
  border-style: dashed;
  opacity: .5;
}
.hof-more i {
  font-size: 18px;
  color: var(--muted);
}
.hof-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.hof-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}
.hof-item span {
  font-family: var(--mono);
  font-size: 8.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  word-break: break-word;
  hyphens: none;
}
a.hof-item:hover span { color: var(--text); }

@media (max-width: 600px) {
  .hof-columns { grid-template-columns: 1fr; }
}


/* ===== Contact ===== */
.contact-intro { max-width: 640px; }
.contact-intro p { color: var(--text); font-size: 16px; line-height: 1.7; }
.contact-status { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; font-family: var(--mono); font-size: 13px; color: var(--green); }
.cs-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); animation: csPulse 2.2s infinite; }
@keyframes csPulse { 0% { box-shadow: 0 0 0 0 rgba(126,231,135,.5); } 70% { box-shadow: 0 0 0 9px rgba(126,231,135,0); } 100% { box-shadow: 0 0 0 0 rgba(126,231,135,0); } }

.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; max-width: 720px; }
@media (max-width: 600px) { .contact-cards { grid-template-columns: 1fr; } }
.c-card {
  position: relative; overflow: hidden; text-align: left; cursor: pointer;
  display: flex; align-items: center; gap: 16px; padding: 20px;
  border: 1px solid var(--border); border-radius: 12px; background: var(--bg-card);
  color: var(--text); font: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s, opacity .5s;
  opacity: 0; transform: translateY(16px);
}
.c-card.reveal { opacity: 1; transform: translateY(0); }
.c-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .25s;
  background: radial-gradient(180px circle at var(--mx,50%) var(--my,50%), rgba(255,68,68,.16), transparent 70%); }
.c-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 34px rgba(255,68,68,.12); }
.c-card.reveal:hover::before { opacity: 1; }
.c-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.c-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,68,68,.10); color: var(--accent); font-size: 19px; }
.c-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.c-label { font-family: var(--mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.c-value { font-family: var(--mono); font-size: 15px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .2s; }
.c-card:hover .c-value { color: var(--accent); }
.c-hint { margin-left: auto; flex-shrink: 0; color: var(--muted); font-size: 14px; transition: color .2s; }
.c-card:hover .c-hint { color: var(--accent); }
.c-hint.copied { color: var(--green); }

/* ===== Footer ===== */
footer { padding: 36px 0; border-top: 1px solid var(--border); text-align: center; }
.footer-cmd { font-family: var(--mono); font-size: 13px; }
.footer-out { font-size: 12px; color: var(--muted); margin-top: 4px; }
