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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
  filter: drop-shadow(0 0 24px rgba(168,85,247,0.45)) brightness(0) invert(1);
}

h1 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-top: 36px;
  margin-bottom: 12px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 8px;
}

p {
  margin-bottom: 14px;
  font-size: 15px;
  color: #c0c0c0;
}

ul, ol {
  margin: 0 0 14px 22px;
  color: #c0c0c0;
}

li {
  font-size: 15px;
  margin-bottom: 6px;
}

a {
  color: #c084fc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  color: #fff;
  font-weight: 700;
}

.meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 32px;
  font-weight: 500;
}

hr {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 40px 0;
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #666;
}

.footer a { color: #888; }

.hero {
  text-align: center;
  padding: 60px 0 40px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 18px;
  color: #888;
  margin-bottom: 30px;
}

.coming-soon {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 100px;
  color: #c084fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}

.legal-link {
  padding: 16px 20px;
  background: #141416;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.15s;
}

.legal-link:hover {
  border-color: #a855f7;
  text-decoration: none;
  transform: translateY(-1px);
}

.legal-link span:last-child { color: #666; }

@media (max-width: 480px) {
  .container { padding: 40px 20px 60px; }
  h1 { font-size: 28px; }
  .hero-title { font-size: 36px; }
}
