/* ============================================================
   KAYOCE LABS — Legal Pages (privacy.html, terms.html)
   ============================================================ */

.legal-page {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 100px;
  min-height: 80vh;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Header */
.legal-header {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00ff80;
  margin-bottom: 16px;
}

.legal-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.legal-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #4b5563;
  letter-spacing: 0.04em;
}

/* Body sections */
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.legal-section p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.75;
}

.legal-section p strong {
  color: #d1d5db;
  font-weight: 600;
}

.legal-section a {
  color: #00ff80;
  text-decoration: none;
  transition: color 0.15s;
}

.legal-section a:hover {
  color: #00e673;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 72px;
  }

  .legal-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
  }

  .legal-section {
    padding: 24px 0;
  }
}
