/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(2rem, 4.5vw, 6rem);
  padding-right: clamp(2rem, 4.5vw, 6rem);
}
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: #637b91;  
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0rem;
  margin-top: 3%
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.05px;
  background: var(--blue);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 3vw, 5.5rem);
  color: #1f82ff;
  margin: 18px 0 10px;
  font-weight: 900;
  letter-spacing: 0.06rem;
  line-height: 1.5;
  margin-bottom: 1.4rem;
  color: var(--text);
}

.section-lead {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 680px;
}

.accent { color: var(--blue-light); }   /* RC colour pop in wordmark */

@media (max-width: 700px) {
  .container {
    width: min(100% - 2rem, 1180px);
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }
}