/* Legal / support pages — extends landing styles.css */

.page-hero {
  padding: calc(64px + clamp(40px, 6vw, 64px)) 0 clamp(40px, 5vw, 56px);
  background: linear-gradient(165deg, var(--blue-top) 0%, var(--blue) 55%, #0D47A1 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-hero-sub {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 560px;
}

.page-hero-actions {
  margin-top: 16px;
}

.page-hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero-actions a:hover {
  color: var(--white);
}

.legal-main {
  padding: clamp(40px, 6vw, 64px) 0 clamp(64px, 8vw, 96px);
}

.legal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
}

.legal-card h2 {
  margin: 28px 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.legal-card ul {
  margin: 0 0 16px;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.legal-card li {
  margin-bottom: 6px;
}

.legal-card a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-card a:hover {
  color: var(--blue-top);
}

.legal-card strong {
  color: var(--text);
  font-weight: 700;
}

.legal-card .subsection-title {
  margin: 20px 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.nav-links a.is-active,
.footer-col a.is-active {
  color: var(--blue) !important;
  font-weight: 700;
}

.footer-col a.is-active {
  color: var(--white) !important;
}
