.cs-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bd2);
}

.cs-hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.cs-hero-inner {
  position: relative;
  z-index: var(--z-content);
  max-width: var(--cs-container-width);
  margin: 0 auto;
}

.cs-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  color: var(--w);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.cs-title .a {
  color: var(--accent);
}

.cs-subtitle {
  font-size: 18px;
  color: var(--w2);
  line-height: 1.7;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.cs-body {
  max-width: var(--cs-body-width);
  margin: 0 auto;
  padding: 80px 5%;
  position: relative;
  z-index: var(--z-content);
}

.cs-section {
  margin-bottom: 70px;
}

.cs-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--bd2);
}

.cs-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--w);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.cs-section p {
  font-size: 16px;
  color: var(--w2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.cs-section p strong {
  color: var(--w);
  font-weight: 500;
}

.cs-section p em {
  color: var(--accent);
  font-style: normal;
}

.cs-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1rem;
}

.cs-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--bd2);
}

.cs-pager-link {
  padding: 28px 5%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background var(--transition-fast);
}

.cs-pager-link:hover {
  background: var(--navy2);
}

.cs-pager-next {
  text-align: right;
  border-left: 1px solid var(--bd2);
}

.cs-pager-dir {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.cs-pager-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--w);
}

@media (max-width: 600px) {
  .cs-pager {
    grid-template-columns: 1fr;
  }
  .cs-pager-next {
    border-left: none;
    border-top: 1px solid var(--bd2);
    text-align: left;
  }
}

@media (max-width: 768px) {
  .cs-metrics {
    gap: 1.5rem;
  }
  .cs-before-after {
    grid-template-columns: 1fr;
  }
}
