/* Ourclave — Minimal Static Site */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0f;
  --bg-surface: #12121a;
  --text: #e8e8ed;
  --text-muted: #9898a6;
  --accent: #6c63ff;
  --accent-hover: #7d75ff;
  --border: #222233;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Layout --- */

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Landing Page --- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero .subheadline {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Footer --- */

footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer .footer-links {
  margin-bottom: 12px;
}

footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.2s;
}

footer .footer-links a:hover {
  color: var(--text);
}

footer .copyright {
  color: #555566;
}

/* --- Legal Pages --- */

.legal-page {
  padding: 80px 24px 60px;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-page .effective-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.legal-page ul,
.legal-page ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--text-muted);
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page strong {
  color: var(--text);
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.legal-page th,
.legal-page td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.legal-page th {
  color: var(--text);
  font-weight: 600;
}

.legal-page .back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-page .back-link:hover {
  color: var(--accent-hover);
}

/* --- Responsive --- */

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .subheadline {
    font-size: 1.05rem;
  }

  .legal-page {
    padding: 60px 20px 40px;
  }
}
