:root {
  --bg: #0f1114;
  --text: #fafafa;
  --text-muted: #71717a;
  --accent: #a1a1aa;
}

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

html {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.logo {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 2rem;
}

.tagline {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

footer {
  padding: 2rem;
  text-align: center;
}

footer a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

@supports (font-variation-settings: normal) {
  html {
    font-family: 'Inter var', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
}

/* Legal Page Styles */
.legal {
  padding: 3rem 1.5rem;
  align-items: flex-start;
}

.legal-container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.2s ease;
}

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

.legal-section {
  margin-bottom: 4rem;
}

.legal-section h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.effective-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.legal-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.legal-section ul {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

.legal-section li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.legal-section a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.legal-section a:hover {
  opacity: 0.7;
}

.legal-caps {
  font-size: 0.875rem !important;
}

.legal-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 4rem 0;
}

/* Login Link */
.login-link {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  z-index: 100;
}

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