.about-section {
  position: relative;
  min-height: 100vh;
  background: #0a0c10;
  padding: 100px 24px 140px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.road {
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00ffe1, #ff2ec4);
  opacity: 0.55;
  box-shadow: 0 0 10px rgba(0,255,225,0.5), 0 0 22px rgba(255,46,196,0.25);
  z-index: 0;
}

.road::before,
.road::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.2) 0 12px, transparent 12px 26px);
}
.road::before { left: -14px; }
.road::after { left: 14px; }

.road-marker {
  position: absolute;
  left: 36px;
  top: 0;
  width: 14px;
  height: 14px;
  margin-left: -6px;
  border-radius: 50%;
  background: #00ffe1;
  box-shadow: 0 0 10px rgba(0,255,225,0.9), 0 0 26px rgba(0,255,225,0.5), 0 0 42px rgba(255,46,196,0.35);
  z-index: 1;
}

@media (max-width: 700px) {
  .road, .road::before, .road::after, .road-marker { display: none; }
}

.glitch-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.glitch-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  mix-blend-mode: screen;
  opacity: 0;
  animation: glitchFlash 0.35s ease-out forwards;
}
@keyframes glitchFlash {
  0% { opacity: 0; transform: scaleX(0.6); }
  30% { opacity: 0.6; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,225,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,225,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.about-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: #7fe9e0;
  text-align: center;
}
.about-heading::before { content: "// "; color: #ff2ec4; }

.terminals-row {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 820px) {
  .terminals-row {
    grid-template-columns: 1fr;
  }
}

.terminal-col .project-name {
  margin-bottom: 8px;
}

.terminal {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  background: #0d0f14;
  border: 1px solid rgba(0,255,225,0.2);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,255,225,0.08), 0 0 70px rgba(255,46,196,0.05);
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  background: #111319;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-magenta { background: #ff2ec4; }
.dot-cyan { background: #00ffe1; }
.dot-dim { background: #3d4550; }

.terminal-title {
  margin: 0 auto;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: #5a6570;
}

.terminal-body {
  padding: 24px;
  min-height: 360px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13.5px;
  line-height: 1.9;
}

.line {
  opacity: 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.line.shown { opacity: 1; }

.line.cmd { color: #eafffb; }
.line.cmd::before { content: "$ "; color: #ff2ec4; }

.line.out { color: #7fe9e0; padding-left: 14px; }
.line.out.commit { color: #8fa3a0; }
.line.out.commit .hash { color: #00ffe1; }
.line.out.highlight { color: #ff2ec4; }

.type-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: #00ffe1;
  margin-left: 2px;
  vertical-align: -2px;
  animation: blinkCursor 0.9s steps(1) infinite;
}
@keyframes blinkCursor { 50% { opacity: 0; } }
