:root {
  --bg: #0a0a12;
  --surface: #12121f;
  --border: rgba(0, 255, 255, 0.15);
  --cyan: #00ffff;
  --magenta: #ff00ff;
  --purple: #9d4edd;
  --text: #e8e8f0;
  --muted: #8888a0;
  --gradient: linear-gradient(135deg, var(--cyan), var(--magenta));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-link img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.logo-link span {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav { display: flex; gap: 24px; }
nav a { color: var(--muted); font-size: 0.9rem; text-decoration: none; }
nav a:hover { color: var(--cyan); text-decoration: none; }

/* Hero */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 255, 255, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(255, 0, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin: 0 auto 28px;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.25), 0 0 80px rgba(255, 0, 255, 0.15);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.badge:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
  text-decoration: none;
}

/* Features */
.features {
  padding: 60px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--cyan);
}

.feature-card p { color: var(--muted); font-size: 0.9rem; }

/* Legal pages */
.legal-page { padding: 48px 24px 80px; }

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.2rem;
  color: var(--cyan);
  margin: 32px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.legal-page h3 {
  font-size: 1rem;
  color: var(--text);
  margin: 20px 0 8px;
}

.legal-page p, .legal-page li {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page strong { color: var(--text); }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

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

@media (max-width: 600px) {
  nav { gap: 16px; }
  .hero { padding: 60px 24px 40px; }
}
