/* TECHNICAL CAPABILITY PAGE ONLY */

.tech-hero {
  position: relative;
  padding: 120px 0 58px;
  overflow: hidden;
}

.tech-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(7, 14, 25, 0.72), rgba(7, 14, 25, 0.88));
  pointer-events: none;
}

.tech-hero .container,
.tech-metrics-section .container,
.tech-section .container {
  position: relative;
  z-index: 1;
}

.tech-hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.tech-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 20px 0 18px;
}

.tech-hero-copy p {
  max-width: 64ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.tech-metrics-section {
  padding: 0 0 84px;
}

.tech-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tech-metric-card,
.tech-capability-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tech-metric-card {
  padding: 24px;
  min-height: 170px;
}

.tech-metric-card strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.tech-metric-card span {
  color: var(--muted);
  line-height: 1.7;
}

.tech-section {
  padding: 90px 0;
}

.tech-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.tech-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.tech-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 16px 0 14px;
  letter-spacing: -0.03em;
}

.tech-section-head p {
  color: var(--muted);
  font-size: 1.04rem;
}

.tech-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tech-capability-grid.two-col-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-capability-card {
  padding: 26px;
  min-height: 220px;
}

.tech-capability-card h3 {
  font-size: 1.14rem;
  margin-bottom: 12px;
}

.tech-capability-card p {
  color: var(--muted);
  line-height: 1.75;
}

.tech-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 32px;
  align-items: center;
}

.tech-reverse {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
}

.tech-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin: 16px 0 18px;
}

.tech-copy p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 58ch;
  line-height: 1.75;
}

.tech-copy ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.tech-copy li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.tech-copy li::before {
  content: "•";
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}

.tech-image {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  overflow: hidden;
}

.tech-image img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

@media (max-width: 1180px) {
  .tech-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .tech-hero {
    padding: 110px 0 48px;
  }

  .tech-row,
  .tech-reverse,
  .tech-capability-grid.two-col-wide {
    grid-template-columns: 1fr;
  }

  .tech-hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .tech-hero {
    padding: 96px 0 40px;
  }

  .tech-hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .tech-hero-copy p {
    font-size: 1rem;
  }

  .tech-metrics-grid,
  .tech-capability-grid {
    grid-template-columns: 1fr;
  }

  .tech-image img {
    min-height: 260px;
  }
}