/* Credentials page — requires index-styles.css */

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-lt) 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; max-width: none; }
.page-hero > .container > p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 0 auto 36px; max-width: 58ch; }

/* ── TRIFECTA OVERVIEW ── */
.trifecta-section { background: var(--white); }

.trifecta-intro { max-width: 640px; margin: 0 auto 56px; }
.trifecta-intro h2 { margin-bottom: 12px; }
.trifecta-intro p { color: var(--muted); max-width: none; }

/* ── DEFINITION ── */
.definition-section { background: var(--off-white); }

.definition-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.definition-content h2 { margin-bottom: 20px; }
.definition-content p { color: var(--muted); max-width: none; margin-bottom: 20px; line-height: 1.75; }

.definition-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(13,31,60,0.14);
  border: 1px solid var(--border);
  line-height: 0;
}
.definition-img img { width: 100%; height: auto; display: block; }

/* ── CREDENTIAL SPLIT SECTIONS ── */
.cred-section { background: var(--white); }
.cred-section.alt-bg { background: var(--off-white); }

.cred-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.cred-split-reverse { direction: rtl; }
.cred-split-reverse > * { direction: ltr; }

.cred-split-content h2 { margin-bottom: 20px; }
.cred-split-content > p { color: var(--muted); margin-bottom: 28px; max-width: none; line-height: 1.75; }
.cred-split-content .check-list { margin-bottom: 28px; }
.cred-split-content .check-list li { font-size: 0.95rem; }

.cred-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(13,31,60,0.14);
  border: 1px solid var(--border);
  line-height: 0;
}
.cred-split-img img { width: 100%; height: auto; display: block; }

.examples-box {
  background: var(--steel-lt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.examples-box h4 {
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.examples-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.examples-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.examples-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ── WHAT'S NEXT ── */
.whats-next-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.whats-next-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px);
}
.whats-next-section .container { position: relative; }
.whats-next-section h2 { margin-bottom: 16px; }

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.next-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.next-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,98,10,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.next-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.next-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.next-card p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: none; }

/* ── CTA ── */
.cred-cta { background: var(--off-white); }
.cred-cta h2 { color: var(--navy); margin-bottom: 16px; max-width: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .definition-split { grid-template-columns: 1fr; gap: 40px; }
  .cred-split { grid-template-columns: 1fr; gap: 36px; }
  .cred-split-reverse { direction: ltr; }
  .next-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .examples-list { grid-template-columns: 1fr; }
}
