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

:root {
  --primary: #6C63FF;
  --primary-dark: #5046e4;
  --accent: #FF6B6B;
  --bg: #0f0f1a;
  --surface: #1a1a2e;
  --surface2: #252540;
  --text: #f0f0f8;
  --text-muted: #9090b0;
  --radius: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(15,15,26,0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(108,99,255,0.2);
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
  text-align: center;
  padding: 6rem 5% 5rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,99,255,0.18) 0%, transparent 70%);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), #a78bfa, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* APPS SECTION */
.section { padding: 5rem 5%; }
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  font-size: 1rem;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.app-card {
  background: var(--surface);
  border: 1px solid rgba(108,99,255,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,99,255,0.5);
  box-shadow: 0 16px 48px rgba(108,99,255,0.15);
}

.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.app-card h3 { font-size: 1.25rem; font-weight: 700; }
.app-card p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }

.app-tag {
  display: inline-block;
  background: rgba(108,99,255,0.15);
  color: #a78bfa;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.app-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: auto;
  transition: gap 0.2s;
}
.app-link:hover { gap: 0.7rem; }

/* COMING SOON BANNER */
.coming-soon {
  background: var(--surface);
  border: 1px dashed rgba(108,99,255,0.3);
  border-radius: var(--radius);
  text-align: center;
  padding: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--text-muted);
}
.coming-soon span { color: var(--primary); font-weight: 600; }

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

footer a { color: var(--text-muted); transition: color 0.2s; }
footer a:hover { color: var(--text); }

/* PRIVACY PAGE */
.policy-hero {
  padding: 5rem 5% 3rem;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(108,99,255,0.14) 0%, transparent 70%);
}
.policy-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; }
.policy-hero p { color: var(--text-muted); margin-top: 0.6rem; }

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 5% 5rem;
}
.policy-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: #a78bfa;
}
.policy-content p, .policy-content li {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 0.6rem;
}
.policy-content ul { padding-left: 1.4rem; }
.policy-placeholder {
  background: var(--surface);
  border: 1px dashed rgba(108,99,255,0.35);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 2rem;
  text-align: center;
}
.policy-placeholder strong { color: var(--primary); }

/* RESPONSIVE */
@media (max-width: 600px) {
  .nav-links { gap: 1.2rem; }
  footer { flex-direction: column; text-align: center; }
}
