* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #050505;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
}

.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,132,252,0.3) 0%, rgba(192,132,252,0) 70%);
}

.orb-2 {
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,97,135,0.25) 0%, rgba(255,97,135,0) 70%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 64px;
  position: relative;
  z-index: 2;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #c084fc, #ff6187);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover {
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
}

main {
  display: flex;
  justify-content: center;
  margin-bottom: 120px;
}

.hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  color: #a3a3a3;
  margin-bottom: 24px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #10b981;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #c084fc, #ff6187);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: #a3a3a3;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #c084fc, #ff6187);
  border: none;
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192,132,252,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stats strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-stats span {
  color: #a3a3a3;
  font-size: 0.8rem;
}

.features {
  margin-bottom: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.75rem;
  color: #c084fc;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  color: #a3a3a3;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(15,15,15,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(20,20,20,0.6);
  border-color: rgba(255,255,255,0.12);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: #a3a3a3;
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq {
  margin-bottom: 100px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.faq-item {
  background: rgba(15,15,15,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s;
}

.faq-item:hover {
  background: rgba(20,20,20,0.6);
  border-color: rgba(255,255,255,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.faq-question span {
  font-size: 1.25rem;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-item p {
  color: #a3a3a3;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 32px;
}

.download {
  margin-bottom: 80px;
}

.download-card {
  background: linear-gradient(135deg, rgba(192,132,252,0.08), rgba(255,97,135,0.08));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 48px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.download-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.download-info p {
  color: #a3a3a3;
  margin-bottom: 20px;
}

.platforms {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.platforms span {
  font-size: 0.75rem;
  background: rgba(255,255,255,0.05);
  padding: 4px 12px;
  border-radius: 40px;
  color: #d4d4d4;
}

.btn-primary.large {
  padding: 14px 36px;
  font-size: 1rem;
}

footer {
  text-align: center;
  color: #525252;
  font-size: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 40px;
}

@media (max-width: 900px) {
  .container {
    padding: 20px 24px 48px;
  }
  h1 {
    font-size: 2.5rem;
  }
  nav {
    flex-direction: column;
    margin-bottom: 48px;
  }
  .nav-links {
    gap: 24px;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .download-card {
    flex-direction: column;
    text-align: center;
  }
  .platforms {
    justify-content: center;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-item p {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 24px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}