.tech-hero {
  padding-block: clamp(5rem, 11vw, 9rem);
  background: linear-gradient(140deg, var(--color-paper), var(--color-ocean-soft));
}

.tech-hero-inner > p:not(.eyebrow) {
  max-width: 54ch;
  margin: 1.5rem 0 0;
  color: var(--color-ink-muted);
  font-family: var(--font-reading);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.tech-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.tech-jump a {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--color-rule);
  border-radius: 99rem;
  background: color-mix(in oklch, var(--color-surface) 76%, transparent);
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.tech-jump a:hover {
  border-color: var(--color-ocean);
  color: var(--color-ocean);
}

.tech-section {
  padding-block: var(--space-section);
  scroll-margin-top: 2rem;
  background: var(--color-paper);
}

.tech-section-coral {
  background: var(--color-coral-soft);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.tech-grid-reverse .tech-copy {
  order: 2;
}

.tech-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: var(--color-ink-muted);
  font-family: var(--font-reading);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.tech-facts {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.tech-facts li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-ink-muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.tech-facts li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-coral);
  content: "";
}

.tech-section-dark {
  background: var(--color-plum);
  color: var(--color-on-dark);
}

.tech-section-dark .eyebrow {
  color: var(--color-coral);
}

.tech-section-dark .tech-copy > p:not(.eyebrow) {
  color: color-mix(in oklch, var(--color-on-dark) 72%, transparent);
}

.routing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(22rem, 1.15fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.tech-footer {
  padding-block: 2.5rem;
  background: var(--color-ink);
  color: color-mix(in oklch, var(--color-on-dark) 68%, transparent);
}

.tech-footer > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.tech-footer .wordmark,
.tech-footer .wordmark:visited {
  color: var(--color-on-dark);
}

.tech-footer p {
  margin: 0;
  font-family: var(--font-reading);
  font-size: 0.86rem;
}

.tech-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-footer nav a,
.tech-footer nav a:visited {
  color: var(--color-on-dark);
  font-size: 0.84rem;
}

@media (max-width: 52rem) {
  .nav-links {
    display: none;
  }

  .nav-inner .button {
    margin-left: auto;
  }

  .tech-grid,
  .routing-layout {
    grid-template-columns: 1fr;
  }

  .tech-grid-reverse .tech-copy {
    order: initial;
  }

  .tech-grid-reverse .tech-diagram {
    order: -1;
  }

  .tech-footer > div {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 34rem) {
  .tech-hero {
    padding-block: 4rem;
  }

  .tech-jump a {
    width: 100%;
  }

  .tech-footer nav {
    flex-direction: column;
  }
}
