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

* { font-family: 'JetBrains Mono', monospace; }
body { background: #f9fafb; color: #111827; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.page { position: relative; z-index: 1; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #16a34a;
  font-weight: 600;
}

/* Cursor blinking */
.cursor::after {
  content: '█';
  animation: blink 1.1s step-end infinite;
  color: #16a34a;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.timeline-item {
  position: relative;
  padding-left: 1.25rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: -1rem;
  width: 1px;
  background: #e5e7eb;
}
.timeline-item:last-child::before { display: none; }
.timeline-item::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 0.52rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
}

@media print {
  body::before { display: none; }
  .no-print    { display: none; }
  body         { background: white; }
  .page        { box-shadow: none !important; }
  a            { color: inherit; text-decoration: none; }
}
