/* shared-styles.css — inner pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B3E;
  --navy-mid: #162040;
  --navy-light: #1F3A8C;
  --amber: #F5A623;
  --amber-light: #FFD580;
  --slate: #8A9BB8;
  --slate-light: #B8C5D9;
  --white: #F4F6FB;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(13,27,62,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--slate-light); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--amber); color: var(--navy) !important; padding: 0.6rem 1.4rem; border-radius: 6px; font-weight: 600 !important; }

.page-hero {
  padding: 5rem 4rem 4rem;
  border-bottom: 1px solid var(--card-border);
  background: linear-gradient(160deg, rgba(31,58,140,0.2) 0%, transparent 60%);
}

.page-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero h1 em { font-style: italic; color: var(--amber); }

.page-hero p {
  font-size: 1.05rem;
  color: var(--slate-light);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
}

.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--slate-light);
}

.legal-section p {
  color: var(--slate-light);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.legal-section ul {
  list-style: none;
  margin: 0.75rem 0 1rem 0;
}

.legal-section ul li {
  color: var(--slate-light);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}

.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.legal-highlight {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}

.legal-highlight p { color: var(--white); font-weight: 500; margin: 0; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }

footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--card-border);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer p { font-size: 0.8rem; color: var(--slate); }

.footer-legal a {
  font-size: 0.8rem;
  color: var(--slate);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .page-hero { padding: 3rem 1.5rem; }
  .page-content { padding: 2rem 1.5rem 4rem; }
  footer { padding: 1.5rem; flex-direction: column; text-align: center; }
  .footer-legal a { margin: 0 0.75rem; }
}
