/* ============================================
   SANKET PATIL — PREMIUM PORTFOLIO
   Design System & Core Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  --bg-primary: #08080a;
  --bg-surface: #0f0f14;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --accent-cyan: #00d4ff;
  --accent-violet: #7c3aed;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --text-primary: #e4e4e7;
  --text-secondary: #71717a;
  --text-muted: #3f3f46;
  --border-subtle: rgba(255,255,255,0.06);
  --border-glow: rgba(0,212,255,0.3);
  --glass-bg: rgba(15,15,20,0.7);
  --glass-border: rgba(255,255,255,0.08);
  --gradient-primary: linear-gradient(135deg, #00d4ff, #7c3aed);
  --gradient-surface: linear-gradient(180deg, rgba(0,212,255,0.03) 0%, transparent 100%);
  --font-display: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) var(--bg-primary);
}

body {
  font-family: var(--font-display);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-cyan); border-radius: 3px; }

a { color: var(--accent-cyan); text-decoration: none; transition: color 0.3s; }
a:hover { color: #fff; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Noise Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--accent-cyan); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-primary);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 30%, rgba(124,58,237,0.05) 0%, transparent 60%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 0 24px;
}

.hero-left {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-status-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-secondary);
}

.status-pill .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  animation: pulse-dot 2s ease infinite;
}

.status-pill .icon {
  color: var(--accent-cyan);
  font-size: 0.8rem;
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.5s forwards;
}

.hero-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 0 32px 0;
  line-height: 1.7;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero-roles {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent-cyan);
  margin-bottom: 36px;
  min-height: 1.4em;
  text-align: left;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

.hero-roles .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent-cyan);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

.hero-metrics {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 1.1s forwards;
}

.hero-metric {
  text-align: left;
}

.hero-metric .number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-metric .label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 1.2s forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.hero-btn.primary {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: 1px solid var(--accent-cyan);
}

.hero-btn.primary:hover {
  background: transparent;
  color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-btn.secondary {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.hero-btn.secondary:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* --- System Monitor Panel --- */
.system-monitor-panel {
  width: 100%;
  max-width: 440px;
  background: rgba(10, 10, 15, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.8s forwards;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.panel-controls {
  display: flex;
  gap: 6px;
}

.panel-controls .p-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.panel-controls .p-dot.red { background: #ef4444; }
.panel-controls .p-dot.yellow { background: #f59e0b; }
.panel-controls .p-dot.green { background: #10b981; }

.panel-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.panel-status-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s;
}

.panel-body {
  padding: 20px;
}

.monitor-section {
  margin-bottom: 20px;
}

.monitor-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.node-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.node-item {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 4px;
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.node-item:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.03);
}

.node-item.failed {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.05);
}

.node-item .node-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  margin-bottom: 6px;
  transition: background 0.3s, box-shadow 0.3s;
}

.node-item.failed .node-dot {
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

.node-lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-primary);
}

.node-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-muted);
}

.monitor-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.monitor-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.monitor-metric-item .m-lbl {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-muted);
}

.monitor-metric-item .m-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chart-container {
  width: 100%;
  height: 80px;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.monitor-controls {
  display: flex;
  gap: 8px;
}

.ctrl-btn {
  flex: 1;
  padding: 8px 4px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s;
}

.ctrl-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.05);
}

.ctrl-btn:active {
  transform: scale(0.95);
}

.hero-metric {
  text-align: center;
}

.hero-metric .number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-metric .label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 1.3s forwards;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-cyan), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* --- Section Styles --- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-cyan);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-visual {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

/* --- Experience Timeline --- */
.timeline {
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-violet), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out-expo);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
  z-index: 1;
}

.timeline-item:first-child::before {
  background: var(--accent-cyan);
}

.timeline-role {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.timeline-company {
  font-size: 1rem;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline-desc li {
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.timeline-desc li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

.timeline-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tech-pill {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all 0.3s;
}

.tech-pill:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0,212,255,0.1);
}

/* --- Projects Section --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.project-card:hover::before { opacity: 1; }

.project-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.project-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.project-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.project-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-features {
  list-style: none;
  margin-bottom: 20px;
}

.project-features li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.project-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent-emerald);
  font-size: 0.6rem;
  top: 7px;
}

.project-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.project-link:hover { color: var(--accent-cyan); }

.project-link svg {
  width: 16px;
  height: 16px;
}

/* --- Skills Section --- */
.skills-canvas-wrap {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  overflow: hidden;
}

.skills-canvas-wrap canvas {
  width: 100%;
  height: 100%;
}

.skills-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* --- Architecture Section --- */
.arch-diagram {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  overflow: hidden;
}

/* --- Blog Section --- */
/* --- Thoughts Section (Bento Grid) --- */
.thoughts-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(20px);
}

.bento-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.bento-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bento-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
}

.bento-wide .bento-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-wide .bento-card-interactive {
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.thought-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.thought-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.thought-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Card 1 Logger */
.terminal-mockup {
  background: #06060a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #a1a1aa;
  overflow: hidden;
}

.mockup-header {
  background: #0f0f16;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-title {
  font-size: 0.65rem;
  margin-left: 8px;
  color: var(--text-muted);
}

.mockup-body {
  padding: 12px;
  height: 140px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.log-item {
  line-height: 1.4;
  opacity: 0;
  animation: slideInLog 0.2s forwards;
}

@keyframes slideInLog {
  to { opacity: 1; }
}

/* Card 2 Goroutine Sim */
.goroutine-sim {
  background: #06060a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 180px;
  justify-content: center;
  margin-top: 20px;
}

.worker-pool {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.worker-node {
  padding: 6px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.worker-node .status {
  font-weight: 700;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.worker-node.working {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.02);
}
.worker-node.working .status {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent-cyan);
}

.scheduler-queue {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.queue-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.queue-slots {
  display: flex;
  gap: 6px;
}

.queue-slots .slot {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  transition: background 0.2s;
}

.queue-slots .slot.active {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

/* Card 3 Tools Selector */
.tools-mockup {
  background: #06060a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  height: 180px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 20px;
}

.tools-header {
  background: #0f0f16;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-btn {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.tool-btn.active {
  background: rgba(255, 255, 255, 0.02);
  color: var(--accent-cyan);
  border-bottom: 2px solid var(--accent-cyan);
}

.tools-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tool-code-preview {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #a1a1aa;
}

.tool-code-preview code {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
}

.tool-status {
  font-size: 0.65rem;
  color: var(--accent-emerald);
}

/* Card 4 Slider */
.slider-mockup {
  background: #06060a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.slider-lbl {
  color: var(--text-secondary);
}

.slider-multiplier {
  color: var(--accent-cyan);
}

.bento-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  margin: 8px 0;
}

.bento-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-cyan);
  transition: transform 0.1s;
}

.bento-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.slider-telemetry {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
}

.telemetry-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.telemetry-col .lbl {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.telemetry-col .val {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* --- Contact Section --- */
.contact-terminal {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 2;
}

.terminal-line {
  margin-bottom: 4px;
}

.terminal-prompt {
  color: var(--accent-cyan);
}

.terminal-cmd {
  color: var(--text-primary);
}

.terminal-output {
  color: var(--text-secondary);
  padding-left: 16px;
}

.terminal-output a {
  color: var(--accent-cyan);
  border-bottom: 1px dashed var(--accent-cyan);
  transition: all 0.3s;
}

.terminal-output a:hover {
  color: #fff;
  border-color: #fff;
}

/* --- Footer --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent-cyan); }

/* --- Animations --- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Mobile Navigation --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8,8,10,0.95);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--accent-cyan); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
   font-size: 2rem;
  cursor: pointer;
}

/* --- Custom Cursor --- */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
  display: none;
}
.custom-cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  display: none;
}
@media (pointer: fine) {
  .custom-cursor, .custom-cursor-dot { display: block; }
  body { cursor: none; }
  a, button, .project-card, .thought-card, .linkedin-card { cursor: none !important; }
}

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  z-index: 2000;
  box-shadow: 0 0 8px var(--accent-cyan);
}

/* --- Contact Grid & LinkedIn Card --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.linkedin-card {
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.linkedin-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, #0077b5, var(--accent-violet));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.linkedin-card:hover::before {
  opacity: 1;
}

.linkedin-card:hover {
  background: var(--bg-card-hover);
  box-shadow: 0 20px 50px rgba(0, 119, 181, 0.15);
}

.linkedin-card-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.linkedin-avatar-wrap {
  position: relative;
  width: 60px;
  height: 60px;
}

.linkedin-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-subtle);
}

/* --- About Meta Profile Card --- */
.about-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.about-avatar-container {
  position: relative;
  width: 72px;
  height: 72px;
}

.about-core-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
  position: relative;
  z-index: 1;
}

.about-core-icon svg {
  width: 28px;
  height: 28px;
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 212, 255, 0.4);
  animation: rotateClockwise 20s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-meta-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-meta-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.about-meta-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  margin: 0;
}

.about-badge-links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.linkedin-badge-pill, .github-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.3s;
}

.linkedin-badge-pill {
  background: rgba(0, 119, 181, 0.1);
  border: 1px solid rgba(0, 119, 181, 0.2);
  color: #00d4ff;
}

.linkedin-badge-pill:hover {
  background: #0077b5;
  color: #ffffff;
  border-color: #0077b5;
  box-shadow: 0 0 10px rgba(0, 119, 181, 0.4);
}

.github-badge-pill {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.github-badge-pill:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.linkedin-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0077b5, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  border: 2px solid var(--border-subtle);
}

.linkedin-badge-logo {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0077b5;
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-primary);
}

.linkedin-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.linkedin-title {
  font-size: 0.85rem;
  color: var(--accent-cyan);
}

.linkedin-company {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.linkedin-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.linkedin-metric {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.metric-lbl {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.linkedin-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.linkedin-actions {
  margin-bottom: 20px;
}

.linkedin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 119, 181, 0.1);
  border: 1px solid rgba(0, 119, 181, 0.2);
  color: #00d4ff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.linkedin-btn:hover {
  background: #0077b5;
  color: #fff;
  border-color: #0077b5;
  box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
}

.official-badge-container {
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px dashed var(--border-subtle);
  min-height: 100px;
}

.official-badge-container .badge-base {
  margin: 0 auto;
}

@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .mobile-menu { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-metrics { gap: 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .thoughts-bento { grid-template-columns: 1fr; }
  .bento-wide { flex-direction: column; align-items: stretch; gap: 20px; }
  .bento-wide .bento-card-interactive { width: 100%; }
  .skills-canvas-wrap { height: 350px; }
  .arch-diagram { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-left { text-align: center; align-items: center; }
  .hero-subtitle { text-align: center; margin: 0 auto 32px auto; }
  .hero-roles { text-align: center; }
  .hero-metrics { justify-content: center; }
  .hero-right { justify-content: center; }
}

@media (max-width: 600px) {
  .hero-title { letter-spacing: -1px; }
  .hero-metrics { flex-direction: column; gap: 16px; }
  .section { padding: 80px 0; }
  .timeline { padding-left: 32px; }
  .container { padding: 0 16px; }
}

/* --- Project Visualizations (WOW Factor) --- */
.project-viz {
  background: #06060a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 14px;
  margin: 16px 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}

.viz-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.active-cyan { color: var(--accent-cyan); font-weight: 700; }
.active-emerald { color: var(--accent-emerald); font-weight: 700; }
.active-violet { color: var(--accent-violet); font-weight: 700; }

.cache-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.cache-fill {
  height: 100%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  transition: width 0.3s;
}

/* Storage Viz */
.storage-nodes {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.storage-node {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.65rem;
  transition: all 0.3s;
}

.storage-node.active {
  border-color: var(--accent-violet);
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-violet);
}

.storage-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Forge Viz */
.forge-endpoint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.forge-endpoint .method {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.65rem;
}

.forge-endpoint .path {
  color: #fff;
  flex: 1;
  font-size: 0.7rem;
}

.forge-run-btn {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border: none;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s;
}

.forge-run-btn:active {
  transform: scale(0.9);
}

.forge-response {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  padding: 8px;
  margin: 0;
  font-size: 0.65rem;
  color: #8b5cf6;
  white-space: pre-wrap;
  word-break: break-all;
  height: 38px;
  overflow: hidden;
}

/* Compiler Viz */
.compiler-source {
  background: rgba(0, 0, 0, 0.2);
  padding: 6px;
  border-radius: 4px;
  margin-bottom: 8px;
  border-left: 2px solid var(--accent-cyan);
}

.compiler-source code {
  color: #a1a1aa;
  font-size: 0.65rem;
}

.compiler-output {
  display: flex;
  align-items: center;
  gap: 8px;
}

.compiler-output .lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.compiler-output .progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.compiler-output .progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

/* phpgo Viz */
.thread-channel {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 8px;
}

.thread {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
}

.php-t { background: rgba(79, 93, 153, 0.15); color: #8892bf; border: 1px solid rgba(79, 93, 153, 0.3); }
.go-t { background: rgba(0, 212, 255, 0.1); color: var(--accent-cyan); border: 1px solid rgba(0, 212, 255, 0.3); }

.channel-arrow {
  color: var(--text-muted);
  animation: pulseArrow 1s infinite alternate;
}

@keyframes pulseArrow {
  from { opacity: 0.3; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.1); }
}

.thread-telemetry {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Mesh Nodes Micro */
.mesh-nodes-micro {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.mesh-nodes-micro .m-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.mesh-nodes-micro .m-node::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--accent-emerald);
  animation: pulseNodeRing 1.5s infinite;
  opacity: 0;
}

.mesh-nodes-micro .m-node.healthy {
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.mesh-nodes-micro .m-node.healthy::after {
  border-color: var(--accent-emerald);
}

.mesh-nodes-micro .m-node.warning {
  background: var(--accent-amber);
  box-shadow: 0 0 8px var(--accent-amber);
}

.mesh-nodes-micro .m-node.warning::after {
  border-color: var(--accent-amber);
}

@keyframes pulseNodeRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.mesh-status-micro {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-muted);
}
