:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: #a3a3a3;
  --muted-2: #737373;
  --max-copy: 20rem;
  --font-sans: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.landing-body {
  overflow: hidden;
}

.landing-shell {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.landing-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-icon {
  width: clamp(120px, 30vw, 180px);
}

.brand-wordmark {
  width: clamp(200px, 55vw, 340px);
  margin-top: -20px;
}

.hero-copy {
  margin: 16px 0 0;
  max-width: var(--max-copy);
  color: var(--muted);
  font-size: clamp(12px, 2.5vw, 15px);
  line-height: 1.75;
}

.cta-link {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.cta-link:hover {
  color: #d4d4d4;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted-2);
}

.footer-links a {
  transition: color 160ms ease;
}

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

.protected-asset {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.legal-shell {
  min-height: 100vh;
  padding: 80px 24px;
}

.legal-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.back-link {
  font-size: 14px;
  color: var(--muted-2);
  transition: color 160ms ease;
}

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

.legal-title {
  margin: 80px 0 0;
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.legal-lead {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.7;
}

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 120px;
  padding-bottom: 120px;
}

.legal-section h2 {
  margin: 0;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 500;
}

.legal-section p {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 3.5vw, 20px);
  line-height: 1.75;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.legal-list p {
  margin: 0;
}

.support-email {
  display: inline-block;
  margin-top: 24px;
  font-size: clamp(18px, 4vw, 22px);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.support-email:hover {
  color: #d4d4d4;
}

@media (max-width: 640px) {
  .landing-body {
    overflow: auto;
  }
}
