@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@400;500;600&display=swap');

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

:root {
  --bg-primary: #1A1A1E;
  --bg-secondary: #222226;
  --bg-tertiary: #2A2A2E;
  --bg-elevated: #303034;
  --text-primary: #F5F0E8;
  --text-secondary: #8A8478;
  --text-tertiary: #6A6460;
  --gold: #C9A84C;
  --gold-hover: #D4B459;
  --gold-muted: rgba(201, 168, 76, 0.15);
  --border-subtle: #2A2A2E;
  --border-medium: #3A3A3E;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-hover);
}

/* ── Layout ─────────────────────────────────────────── */

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

/* ── Header ─────────────────────────────────────────── */

header {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-subtle);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}

nav a:hover {
  color: var(--text-primary);
}

/* ── Hero ───────────────────────────────────────────── */

.hero {
  text-align: center;
  padding: 96px 0 80px;
}

.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero h1 span {
  color: var(--gold);
}

.hero .tagline {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.store-badge img {
  height: 52px;
  width: auto;
}

.store-badge.coming-soon img {
  opacity: 0.4;
  filter: grayscale(100%);
  pointer-events: none;
}

.coming-soon-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Features ───────────────────────────────────────── */

.features {
  padding: 64px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature {
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────── */

footer {
  padding: 40px 0;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.copyright {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── Legal Pages ────────────────────────────────────── */

.legal {
  padding: 64px 0 80px;
}

.legal h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 8px;
}

.legal .effective-date {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 48px;
}

.legal h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal li {
  margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal strong {
  color: var(--text-primary);
  font-weight: 500;
}

.legal a {
  color: var(--gold);
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 600px) {
  .hero {
    padding: 64px 0 56px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero .tagline {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  header .container {
    flex-direction: column;
    gap: 16px;
  }

  nav {
    gap: 16px;
  }
}
