:root {
  --bg:          #000000;
  --surface:     #111111;
  --accent:      #C9A96E;
  --text:        #F5F0EB;
  --text-muted:  rgba(245, 240, 235, 0.6);
  --text-faint:  rgba(245, 240, 235, 0.35);
  --border:      rgba(245, 240, 235, 0.12);

  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --radius: 12px;
  --max-width: 680px;
}

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 28px; list-style: none; }

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── Page shell ───────────────────────────────────── */
main { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

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

.hero-mark {
  font-family: var(--serif);
  font-size: 100px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.hero-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
}

/* ── Store buttons ────────────────────────────────── */
.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.store-button {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 28px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1.3;
  text-align: center;
}
.store-button:hover {
  border-color: var(--accent);
  background: rgba(201, 169, 110, 0.08);
}
.store-button small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2px;
}

/* ── Features ─────────────────────────────────────── */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.features-grid { display: grid; gap: 48px; }

.feature { display: flex; gap: 20px; align-items: flex-start; }

.feature-icon {
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.feature h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.feature p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ── Footer ───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.footer-links { display: flex; justify-content: center; gap: 32px; list-style: none; margin-bottom: 16px; }

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-copy { font-size: 12px; color: var(--text-faint); }

/* ── Legal pages ──────────────────────────────────── */
.legal { padding: 120px 0 80px; }

.legal h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin: 44px 0 16px;
}

.legal h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 10px;
}

.legal p {
  font-size: 15px;
  color: rgba(245, 240, 235, 0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal ul, .legal ol {
  font-size: 15px;
  color: rgba(245, 240, 235, 0.85);
  line-height: 1.8;
  margin: 0 0 16px 24px;
}

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

.legal a { color: var(--accent); text-decoration: none; }
.legal a:hover { text-decoration: underline; }

.legal .callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .hero-mark { font-size: 72px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .legal h1 { font-size: 28px; }
  .legal h2 { font-size: 20px; }
}
