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

:root {
  --bg: #09090b;
  --text: #fff;
  --text-secondary: #888;
  --text-muted: #555;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Landing Page */
.landing {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow-x: hidden;
}

.landing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.12) 0%, rgba(0, 255, 136, 0.04) 35%, transparent 70%);
  pointer-events: none;
}

.landing-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.brand {
  font-family: 'Russo One', sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.app-badge img {
  height: 50px;
}

.landing-footer {
  padding: 2rem;
  font-size: 0.875rem;
}

.landing-footer a {
  color: var(--text-muted);
}

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

.divider {
  color: var(--text-muted);
  margin: 0 0.75rem;
}

/* Legal Pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

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

.legal-page .effective-date {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-page ul, .legal-page ol {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--text);
  text-decoration: underline;
}

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

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.back-link:hover {
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .brand {
    font-size: 2.25rem;
  }

  .logo {
    width: 140px;
  }

  .tagline {
    font-size: 1rem;
  }

  .legal-page {
    padding: 2rem 1.5rem;
  }

  .legal-page h1 {
    font-size: 1.5rem;
  }
}
