/* ===========================================
   experiments.css — Experiments & Prototypes page
   =========================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #f5f2ec;
  font-family: "Courier New", Courier, monospace;
  color: #212131;
}

.exp-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

/* ── Header ──────────────────────────────── */

.exp-back {
  font-family: "Press Start 2P", monospace;
  font-size: 8px;
  color: #006060;
  text-decoration: none;
  letter-spacing: 1px;
  opacity: 0.65;
  display: inline-block;
  margin-bottom: 40px;
  transition: opacity 0.1s;
}

.exp-back:hover {
  opacity: 1;
}

.exp-title {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(13px, 2vw, 18px);
  color: #006060;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.exp-subtitle {
  font-size: clamp(11px, 1.3vw, 13px);
  color: #4a4a6a;
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 52px;
}

/* ── Project list ────────────────────────── */

.exp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-item {
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.7;
}

.exp-item-link {
  color: #006060;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: bold;
  transition: color 0.1s;
}

.exp-item-link:hover {
  color: #009090;
}

.exp-item-desc {
  color: #4a4a6a;
}

.exp-item--soon {
  opacity: 0.45;
}

.exp-item-link--soon {
  color: #4a4a6a;
  font-weight: bold;
  text-decoration: none;
  cursor: default;
}

.exp-soon-tag {
  color: #888;
  font-style: italic;
}

/* ── Responsive ──────────────────────────── */

@media (max-width: 500px) {
  .exp-page {
    padding: 40px 20px 60px;
  }

  .exp-title {
    font-size: 13px;
  }
}
