/* ══════════════════════════════════════════════════════════
   Technology Page — /technology
   ══════════════════════════════════════════════════════════ */

/* ── SECTIONS ── */
.tech-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}
.tech-section-alt {
  background: var(--bg2);
  max-width: 100%;
}
.tech-section-alt > .container {
  max-width: 1000px;
  margin: 0 auto;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ── SUBLINE ── */
.tech-subline {
  font-size: 15px;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 680px;
}

/* ── BODY TEXT ── */
.tech-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 800px;
}
.tech-body p {
  margin-bottom: 16px;
}

/* ── SUBSECTION CARDS ── */
.tech-subsections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.tech-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  transition: border-color 0.2s;
}
.tech-card:hover {
  border-color: var(--accent);
}

.tech-card-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tech-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.tech-card-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.tech-card-body p {
  margin-bottom: 12px;
}

.tech-cta {
  margin-top: 20px;
  font-size: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .tech-subsections {
    grid-template-columns: 1fr;
  }
  .tech-section {
    padding: 60px 20px;
  }
}
