/* Shared styles for static pages: privacy, terms, help center */
.static-page {
  min-height: 100vh;
  padding: 3.5rem 1.5rem 4rem;
  background: var(--bg-primary);
}

.static-page-inner {
  max-width: 960px;
  margin: 0 auto;
}

.static-page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.static-page-back i {
  font-size: 1rem;
}

.static-page-back:hover {
  color: #ff9900;
}

.static-hero {
  margin-bottom: 2.25rem;
  text-align: left;
}

.static-hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 0.5rem;
}

.static-hero-title {
  font-size: clamp(2.1rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.static-hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-secondary);
  max-width: 640px;
}

.static-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Explicit dark card – do NOT use --card-bg (orange) */
.static-section {
  background: black;
  border-radius: 20px;
  border: 1px solid rgba(230, 112, 9, 0.25);
  padding: 1.6rem 1.7rem;
}

.static-section .static-section-title {
  color: #f1f5f9;
}

.static-section .static-section-body {
  color: #cbd5e1;
}

.static-section .static-section-body strong {
  color: #f1f5f9;
}

/* Light theme: light card, dark text */
[data-theme="light"] .static-section {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .static-section .static-section-title {
  color: #111827;
}

[data-theme="light"] .static-section .static-section-body {
  color: #374151;
}

[data-theme="light"] .static-section .static-section-body strong {
  color: #111827;
}

.static-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.static-section-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 0, 0.15);
  color: #ff9900;
  font-size: 1.1rem;
}

.static-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.static-section-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.static-section-body strong {
  color: var(--text-primary);
}

.static-section-body ul {
  margin: 0.6rem 0 0.2rem 1.3rem;
  padding: 0;
}

.static-section-body li {
  margin-bottom: 0.4rem;
}

.static-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(148, 163, 184, 0.14);
  color: var(--text-secondary);
}

/* All links on static pages: visible orange in both themes */
.static-links a,
.static-section-body a {
  color: #ff9900 !important;
  text-decoration: none;
}

.static-links a:hover,
.static-section-body a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .static-page {
    padding: 2.5rem 1.1rem 3.5rem;
  }

  .static-section {
    padding: 1.4rem 1.35rem;
  }
}

