/* Technology page — premium, restrained */

.tech-hero {
  padding: 56px 0 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .tech-hero {
    padding: 88px 0 64px;
  }
}

.tech-hero h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.12;
  max-width: 14ch;
  margin: 0;
}

.tech-hero .lead {
  font-size: 17.5px;
  max-width: 52ch;
  margin: 18px 0 0;
  line-height: 1.65;
}

.tech-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--ink-faint);
  max-width: 52ch;
}

.tech-toc {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 64px;
  z-index: 20;
}

.tech-toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-toc-list a {
  font-size: 12.5px;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 6px 11px;
  transition: border-color 0.15s, color 0.15s;
}

.tech-toc-list a:hover {
  color: var(--ink);
  border-color: var(--ink-faint);
}

.tech-sections {
  padding: 40px 0 80px;
}

.tech-section {
  scroll-margin-top: 140px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.tech-section:last-child {
  border-bottom: none;
}

.tech-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  max-width: 640px;
}

.tech-section-head h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0;
}

.tech-section-head p {
  margin: 0;
  font-size: 14.5px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.tech-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 14px 14px;
  min-height: 64px;
  transition: border-color 0.15s, transform 0.15s;
}

.tech-card:hover {
  border-color: rgba(14, 124, 123, 0.35);
  transform: translateY(-1px);
}

.tech-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.tech-logo img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.tech-logo .mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: 0.02em;
}

.tech-card .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.tech-card .meta {
  display: block;
  font-size: 11.5px;
  color: var(--ink-faint);
  margin-top: 2px;
  font-weight: 400;
}

.tech-cta {
  background: var(--ink);
  color: #fff;
  padding: 64px 0;
}

.tech-cta h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}

.tech-cta p {
  color: #b7c1d1;
  max-width: 48ch;
  margin: 0 0 24px;
}

.tech-cta .eyebrow {
  color: #9fe1cb;
}

.tech-cta .eyebrow::before {
  background: #9fe1cb;
}

.tech-cta .btn-primary {
  background: #fff;
  color: var(--ink);
}

.tech-cta .btn-primary:hover {
  background: #9fe1cb;
}

.tech-cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-steps { max-width: 70ch; padding-left: 1.2rem; color: var(--ink-soft); line-height: 1.7; }
.tech-steps li { margin-bottom: 10px; }
