/* =========================================================
   resources.css — Resources, Consultation & Project Experience
   Tactical-telemetry language: dark substrate, orange accent,
   1px structural dividers, mono uppercase metadata, 0 radius.
   ========================================================= */

.res-section { padding: clamp(40px, 6vw, 64px) 0; }
.res-section + .res-section { border-top: 1px solid var(--border); }

/* ---- Status label next to section heads ---------------- */
.res-status {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.res-status::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--primary);
  display: inline-block;
}

/* ---- Coming-soon panel (free resources) ---------------- */
.coming-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(24px, 4vw, 40px);
}
.coming-panel-lead {
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}
.coming-panel-lead strong { color: var(--text); font-weight: 700; }

.coming-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 28px 0 0;
}
.coming-points li {
  background: var(--surface-2);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--muted);
}
.coming-points li::before {
  content: "\2192";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

/* Queued items list — clearly "in preparation", not broken cards */
.queue-head {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin: 32px 0 12px;
}
.queue-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.queue-item {
  background: var(--surface);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.queue-item-name { font-weight: 700; font-size: .95rem; letter-spacing: -.01em; }
.queue-tag {
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  border: 1px solid var(--border-strong);
  padding: 3px 8px;
  white-space: nowrap;
}

/* ---- E-book development roadmap ------------------------ */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.roadmap-card {
  background: var(--surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.roadmap-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--primary);
  transition: height var(--t-med);
}
.roadmap-card:hover::before { height: 100%; }
.roadmap-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.roadmap-cat {
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-line);
  padding: 3px 9px;
}
.roadmap-stage {
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}
.roadmap-title { font-size: 1.05rem; font-weight: 800; line-height: 1.25; letter-spacing: -.01em; }
.roadmap-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ---- Engineering consultation -------------------------- */
.consult {
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, var(--primary-dim), transparent 60%),
    var(--surface);
  padding: clamp(28px, 5vw, 48px);
}
.consult h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 24ch;
}
.consult-lead {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
  max-width: 68ch;
  margin-bottom: 26px;
}
.consult-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.consult-service {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  padding: 8px 13px;
}
.consult-service::before {
  content: "// ";
  color: var(--primary);
}
.consult-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.consult-note {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .03em;
}

/* ---- Selected project experience ----------------------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.project-card {
  background: var(--surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: background var(--t);
}
.project-card:hover { background: var(--surface-hover); }
.project-index {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--subtle);
  letter-spacing: .06em;
}
.project-name { font-size: 1.06rem; font-weight: 800; line-height: 1.25; letter-spacing: -.01em; }
.project-spec {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-line);
  padding: 4px 10px;
}
.project-scope { font-size: .86rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 560px) {
  .consult-cta-row { flex-direction: column; align-items: stretch; }
  .consult-cta-row .btn { width: 100%; }
}
</content>
