/* Legal Page Specific Styles with Dark Mode Support */

:root {
  /* Light theme (default) */
  --legal-bg: #ffffff;
  --legal-text: #1a1a1a;
  --legal-card-bg: #f8f9fa;
  --legal-card-text: #212529;
  --legal-border: #e0e0e0;
  --legal-accent: #0d6efd;
  --legal-muted: #6c757d;
  --legal-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --legal-hover-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --legal-bg: #06142f;
    --legal-text: #f8fbff;
    --legal-card-bg: rgba(14, 45, 94, 0.55);
    --legal-card-text: #f6f8ff;
    --legal-border: rgba(255, 255, 255, 0.1);
    --legal-accent: #4dabf7;
    --legal-muted: #adb5bd;
    --legal-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --legal-hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }
}

.static-page--legal {
  background-color: var(--legal-bg);
  color: var(--legal-text);
  padding: 2rem 0;
  min-height: 100vh;
}

.static-page--legal .static-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.static-page--legal .static-page__header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.static-page--legal .static-page__eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--legal-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.static-page--legal .static-page__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--legal-text);
  line-height: 1.2;
  font-weight: 700;
}

.static-page--legal .static-page__intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--legal-muted);
  opacity: 0.95;
}

.static-page--legal .static-page__sections {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.static-page--legal .static-page__section {
  background: var(--legal-card-bg);
  color: var(--legal-card-text);
  padding: 2rem;
  border-radius: 0.65rem;
  border: 1px solid var(--legal-border);
  box-shadow: var(--legal-shadow);
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.static-page--legal .static-page__section:hover,
.static-page--legal .static-page__section:focus-within {
  transform: translateX(12px);
  box-shadow: var(--legal-hover-shadow);
}

.static-page--legal .static-page__section-title {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--legal-text);
  line-height: 1.3;
  font-weight: 600;
}

.static-page--legal .static-page__section-paragraph {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--legal-card-text);
  opacity: 0.9;
}

.static-page--legal .static-page__section-paragraph:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .static-page--legal .static-page__inner {
    padding: 0 1.5rem;
  }
  
  .static-page--legal .static-page__title {
    font-size: 2rem;
  }
  
  .static-page--legal .static-page__intro {
    font-size: 1.1rem;
  }
  
  .static-page--legal .static-page__section {
    padding: 1.5rem;
  }
  
  .static-page--legal .static-page__section-title {
    font-size: 1.3rem;
  }
}
