:root {
  --bg: #0a0a0a;
  --panel: #131110;
  --panel-edge: #262220;
  --amber: #e8a33d;
  --amber-dim: #7a5a26;
  --text: #efece4;
  --text-dim: #8f8a80;
  --green: #6fcf7a;
  --red: #d9564a;
  --font: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background-image:
    radial-gradient(ellipse at top, rgba(232,163,61,0.05), transparent 60%);
}

.panel {
  width: 100%;
  max-width: 560px;
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 6px;
  padding: 40px clamp(20px, 5vw, 44px) 32px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 30px 60px -20px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

/* Faceplate header */
.brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.brand-mark {
  color: var(--amber);
  font-size: 13px;
}

.brand-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

.name {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--text);
  text-shadow: 0 0 24px rgba(239,236,228,0.06);
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding: 10px 14px;
  border: 1px solid var(--panel-edge);
  border-radius: 4px;
  width: fit-content;
  background: rgba(255,255,255,0.015);
}

.status-text strong {
  color: var(--text);
  letter-spacing: 0.06em;
}

.led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}

.led-on {
  background: var(--green);
  box-shadow: 0 0 8px 1px rgba(111,207,122,0.7);
}

.led-off {
  background: var(--red);
  box-shadow: 0 0 8px 1px rgba(217,86,74,0.55);
}

/* Equalizer signature element */
.eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 34px;
  margin: 30px 0 34px;
  padding: 0 2px;
}

.eq-bar {
  flex: 1;
  background: linear-gradient(to top, var(--amber-dim), var(--amber));
  border-radius: 1px;
  opacity: 0.85;
  animation: eq-move 1.6s ease-in-out infinite;
  animation-play-state: running;
}

@keyframes eq-move {
  0%, 100% { height: 15%; }
  50% { height: 100%; }
}

.eq-bar:nth-child(1)  { animation-delay: -0.1s; }
.eq-bar:nth-child(2)  { animation-delay: -1.3s; }
.eq-bar:nth-child(3)  { animation-delay: -0.6s; }
.eq-bar:nth-child(4)  { animation-delay: -1.0s; }
.eq-bar:nth-child(5)  { animation-delay: -0.2s; }
.eq-bar:nth-child(6)  { animation-delay: -1.5s; }
.eq-bar:nth-child(7)  { animation-delay: -0.4s; }
.eq-bar:nth-child(8)  { animation-delay: -0.9s; }
.eq-bar:nth-child(9)  { animation-delay: -1.2s; }
.eq-bar:nth-child(10) { animation-delay: -0.3s; }
.eq-bar:nth-child(11) { animation-delay: -0.7s; }
.eq-bar:nth-child(12) { animation-delay: -1.4s; }
.eq-bar:nth-child(13) { animation-delay: -0.5s; }
.eq-bar:nth-child(14) { animation-delay: -1.1s; }
.eq-bar:nth-child(15) { animation-delay: -0.15s; }
.eq-bar:nth-child(16) { animation-delay: -0.8s; }
.eq-bar:nth-child(17) { animation-delay: -1.35s; }
.eq-bar:nth-child(18) { animation-delay: -0.45s; }
.eq-bar:nth-child(19) { animation-delay: -0.95s; }
.eq-bar:nth-child(20) { animation-delay: -0.25s; }
.eq-bar:nth-child(21) { animation-delay: -1.25s; }
.eq-bar:nth-child(22) { animation-delay: -0.55s; }
.eq-bar:nth-child(23) { animation-delay: -0.75s; }
.eq-bar:nth-child(24) { animation-delay: -1.05s; }

/* Content blocks */
.block { margin-bottom: 30px; }
.block:last-of-type { margin-bottom: 0; }

.block-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.idx {
  color: var(--amber);
  font-weight: 700;
}

.skills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

.skill {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
  padding: 9px 10px;
  border: 1px solid var(--panel-edge);
  border-radius: 4px;
  background: rgba(255,255,255,0.012);
}

.skill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex: none;
  box-shadow: 0 0 6px 0 rgba(232,163,61,0.6);
}

.passion {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  border-left: 2px solid var(--amber-dim);
  padding-left: 14px;
}

.faceplate-footer {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--panel-edge);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dial {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--amber-dim);
  position: relative;
  flex: none;
}

.dial::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 50%;
  width: 1.5px;
  height: 5px;
  background: var(--amber);
  transform: translateX(-50%);
}

.footer-text {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .eq-bar { animation: none; height: 55%; }
}

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