:root {
  --bg: #000000;
  --text: #FFFFFF;
  --accent: #4EA8DE;
  --muted: rgba(255, 255, 255, 0.6);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 32px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  margin-bottom: 8px;
}

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

header h1 {
  font-size: 24px;
  font-weight: 600;
}

main {
  flex: 1;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px;
}

main.legal {
  max-width: 720px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.btn-primary.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.features h3 {
  margin-bottom: 24px;
}

.features ul {
  list-style: none;
}

.features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact {
  margin-top: 48px;
}

main.legal h2 {
  color: var(--accent);
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

main.legal h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

main.legal p,
main.legal li {
  margin-bottom: 12px;
  opacity: 0.9;
}

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

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

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

footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 64px;
}

footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

footer nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.7;
  font-size: 14px;
}

footer nav a:hover {
  opacity: 1;
}

.copyright {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .hero h2 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .cta { flex-direction: column; }
  .btn-primary { text-align: center; }
}
