/* ── Navigation ───────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,46,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--navy-border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand:hover { text-decoration: none; }
.nav-logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.18em;
  background: var(--gold-antique);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--parchment); }
.nav-links a.active {
  background: var(--gold-matte);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-signin {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 6px 14px;
  border: 0.5px solid var(--navy-border);
  border-radius: var(--radius);
  transition: color 0.15s, border-color 0.15s;
}
.nav-signin:hover { color: var(--parchment); border-color: var(--text-dim); text-decoration: none; }
.nav-cta { font-size: 13px; padding: 8px 18px; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  border-radius: 2px;
}
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.nav-mobile-overlay a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--parchment);
  text-decoration: none;
}
.nav-mobile-overlay a:hover { color: var(--gold-mid); }

/* ── Splash hero ──────────────────────────────────────────────── */
.hero-splash {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 4rem;
  text-align: center;
}
.splash-medallion {
  margin-bottom: 1.5rem;
  display: block;
  object-fit: contain;
}
.nav-logo-mark,
.role-icon {
  object-fit: contain;
}
.splash-wordmark {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  letter-spacing: 0.28em;
  background: var(--gold-antique);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.splash-sub {
  font-family: var(--font-sans);
  font-size: clamp(10px, 2.2vw, 13px);
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: none;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  line-height: 1.45;
}
.splash-tagline-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.splash-tagline-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 3rem;
  max-width: 36rem;
  text-align: left;
}
.splash-tagline-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.splash-tagline-list li:last-child {
  margin-bottom: 0;
}
.splash-tagline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-mid);
}
.splash-tagline-list strong {
  font-weight: 600;
  color: var(--parchment);
}

/* ── Role selector ────────────────────────────────────────────── */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.role-card {
  background: var(--navy-mid);
  border: 0.5px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
}
.role-card:hover { border-color: var(--gold-dark); transform: translateY(-2px); text-decoration: none; }
.role-card.featured { border-color: rgba(212,175,55,0.4); }
.role-icon { width: 48px; height: 48px; margin-bottom: 0.25rem; opacity: 0.85; }
.role-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--parchment);
}
.role-description { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.role-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.role-pill {
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--navy-border);
  color: var(--text-dim);
}
.role-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 0.75rem;
  background: var(--gold-matte);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.splash-trial-note { font-size: 12px; color: var(--text-dim); letter-spacing: 0.04em; }
.splash-trial-note a { color: var(--text-dim); text-decoration: underline; }

/* ── Standard hero ────────────────────────────────────────────── */
.hero {
  padding: 6rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-centered { text-align: center; }
.hero-centered .body-lead,
.hero-centered .gold-rule { margin-left: auto; margin-right: auto; }
.hero-centered .btn-group { justify-content: center; }
.hero h1 { margin-bottom: 1.25rem; }
.hero .body-lead { margin-bottom: 2rem; }

/* ── Sections ─────────────────────────────────────────────────── */
.section { padding: var(--section-pad); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--navy-light); }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .gold-rule,
.section-header.centered .body-lead { margin-left: auto; margin-right: auto; }

/* ── CTA band ─────────────────────────────────────────────────── */
.cta-band {
  padding: var(--section-pad);
  text-align: center;
  background: var(--navy-light);
  border-top: 0.5px solid var(--navy-border);
}
.cta-band h2 { margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-light);
  border-top: 0.5px solid var(--navy-border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  background: var(--gold-burnt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text-dim); letter-spacing: 0.04em; text-decoration: none; }
.footer-links a:hover { color: var(--text-muted); }
.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--navy-border);
  text-align: center;
}
.footer-phi {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(74,54,7,0.5);
  margin-top: 4px;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 767px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero-splash { padding: 2rem 1.25rem 3rem; }
  .role-grid { grid-template-columns: 1fr; max-width: 420px; }
  .plan-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-actions .nav-signin { display: none; }
  .site-nav { padding: 0 1.25rem; }
}
