/* CON.AR NightNav — page-specific styles */

.tm {
  font-size: 0.45em;
  vertical-align: super;
  line-height: 1;
  font-weight: var(--fw-semibold);
}

.ba-grid { gap: 24px; }

.ba-card {
  padding: 40px;
  border-radius: var(--radius-card-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--c-white);
}

.ba-card--with {
  background-color: var(--c-marine-500);
}
.ba-card--without {
  background-color: var(--c-navy-950);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ba-card__eyebrow {
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.8);
}
.ba-card__eyebrow--muted {
  color: var(--c-slatey-400);
}

.ba-card__title {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  color: var(--c-white);
}
@media (min-width: 768px) {
  .ba-card__title { font-size: 24px; }
}

.ba-card__body {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}
.ba-card__body--muted {
  color: var(--c-slatey-400);
}

.centered-prose {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--c-slatey-400);
}
.centered-prose p {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
}

.feature-grid { gap: 24px; }

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card__title {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: var(--c-white);
}
.feature-card__body {
  font-size: var(--fs-body-sm);
  color: var(--c-slatey-400);
  line-height: 1.65;
}

/* CTA band */
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.cta-band__title {
  font-size: 28px;
  line-height: 1.25;
  color: var(--c-white);
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
  max-width: 880px;
}
@media (min-width: 768px) {
  .cta-band__title { font-size: 36px; }
}
.cta-line { display: block; }

.cta-band__body {
  max-width: 720px;
  font-size: var(--fs-body-lg);
  color: var(--c-slatey-400);
  line-height: 1.6;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
