.site-wrap {
  min-height: 100vh;
  background: var(--white);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: var(--section-y) var(--gutter);
}

.section--band {
  padding: clamp(64px, 7vw, 112px) var(--gutter);
}

.section--tight {
  padding: clamp(64px, 7vw, 112px) var(--gutter) 0;
}

.label-col {
  color: var(--accent);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 2px solid var(--navy-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(4, 128, 254, 0.55);
  color: var(--accent);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.display-h1 {
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--navy-deep);
}

.display-h1--light {
  color: var(--white);
}

.display-h1 .accent {
  color: var(--accent);
}

.section-h2 {
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--navy-mid);
}

.section-h2--light {
  color: var(--white);
}

.section-h2--xl {
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.lead {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
  color: rgba(6, 42, 84, 0.78);
  max-width: 620px;
}

.lead--light {
  color: rgba(255, 255, 255, 0.74);
}

.body-text {
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(6, 42, 84, 0.78);
  max-width: 620px;
}

.ghost-num {
  position: absolute;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(160px, 22vw, 320px);
  font-weight: 600;
  line-height: 0.75;
  letter-spacing: -0.05em;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
}

.hairline {
  height: 1px;
  background: rgba(6, 42, 84, 0.14);
}

.hairline--light {
  background: rgba(255, 255, 255, 0.18);
}
