:root {
  --bg: #080810;
  --surface: #10101A;
  --card: #161622;
  --border: #252538;
  --accent: #7C6FFF;
  --accent-light: #A59BFF;
  --text-primary: #F0F0F8;
  --text-secondary: #8888A8;
  --pro-gradient: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Sora', sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Noise Effect */
body::before {
  content: "";
  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='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-pro {
  font-size: 12px;
  background: var(--pro-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-transform: uppercase;
  margin-left: 2px;
}

.logo-icon { color: var(--accent); width: 28px; }

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}

.btn-primary {
  background: var(--pro-gradient);
  color: white;
  border: none;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(124, 111, 255, 0.3); }

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0 120px;
}

h1 {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 120px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 20px;
  transition: 0.3s;
}

.feature-card:hover { border-color: var(--accent); }

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 { margin-bottom: 12px; font-size: 20px; }
.feature-card p { color: var(--text-secondary); font-size: 15px; }

/* Pricing Section */
.pricing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  margin-bottom: 120px;
}

.price-tag { font-size: 48px; font-weight: 800; margin: 20px 0; }
.price-sub { color: var(--text-secondary); margin-bottom: 30px; }

/* Policies (Footer) */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 { color: var(--text-primary); margin-bottom: 20px; font-size: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: inherit; text-decoration: none; }
.footer-col a:hover { color: var(--accent); }

.copyright { text-align: center; border-top: 1px solid var(--border); padding-top: 30px; }

@media (max-width: 768px) {
  .hero { padding: 40px 0 80px; }
  .pricing { padding: 40px 24px; }
}
