/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0e17;
  color: #e0e6ed;
  line-height: 1.6;
}

a { color: #6c63ff; text-decoration: none; transition: color .2s; }
a:hover { color: #8b83ff; }

img { max-width: 100%; display: block; }

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

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(10,14,23,.85);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(108,99,255,.15);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.35rem; font-weight: 700; color: #fff;
  letter-spacing: -.5px;
}
.nav-logo span { color: #6c63ff; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: #a0aec0; font-size: .9rem; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: #6c63ff; color: #fff; padding: 8px 20px;
  border-radius: 6px; font-size: .9rem; font-weight: 600;
  transition: background .2s;
}
.nav-cta:hover { background: #5a52e0; color: #fff; }

/* hamburger (mobile) */
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* === Hero === */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(108,99,255,.12) 0%, transparent 70%);
}
.hero h1 {
  font-size: 3.2rem; font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: #6c63ff; }
.hero p {
  font-size: 1.15rem; color: #8892a4; max-width: 620px;
  margin: 0 auto 36px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: #6c63ff; color: #fff; padding: 14px 32px;
  border-radius: 8px; font-size: 1rem; font-weight: 600;
  transition: background .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #5a52e0; color: #fff; }
.btn-secondary {
  background: transparent; color: #6c63ff; padding: 14px 32px;
  border-radius: 8px; font-size: 1rem; font-weight: 600;
  border: 1px solid rgba(108,99,255,.4); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: #6c63ff; color: #fff; }

/* === Section common === */
section { padding: 100px 0; }
.section-label {
  text-transform: uppercase; font-size: .8rem; font-weight: 700;
  color: #6c63ff; letter-spacing: 2px; margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-size: 2.2rem; font-weight: 700; color: #fff;
  text-align: center; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: #8892a4; text-align: center;
  max-width: 600px; margin: 0 auto 56px;
}

/* === Features === */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 36px 28px;
  transition: border-color .3s, transform .3s;
}
.feature-card:hover {
  border-color: rgba(108,99,255,.35);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  background: rgba(108,99,255,.12);
}
.feature-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: .95rem; color: #8892a4; }

/* === Highlight === */
.highlight-card {
  display: flex; align-items: center; gap: 28px;
  background: rgba(108,99,255,.08);
  border: 1px solid rgba(108,99,255,.25);
  border-radius: 14px; padding: 36px 32px;
  margin-top: 40px;
}
.highlight-icon {
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
  background: rgba(108,99,255,.15);
}
.highlight-content h3 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.highlight-content p { font-size: .95rem; color: #a0aec0; }
.highlight-content strong { color: #6c63ff; }

/* === Screenshots === */
.screenshots { background: rgba(108,99,255,.04); }
.screenshot-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.screenshot-grid img {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s;
}
.screenshot-grid img:hover { transform: scale(1.02); }

/* === How it works === */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; counter-reset: step;
}
.step-card {
  text-align: center; padding: 32px 20px;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(108,99,255,.15); color: #6c63ff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 20px;
}
.step-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.step-card p { font-size: .93rem; color: #8892a4; }

/* === Team === */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; max-width: 700px; margin: 0 auto;
}
.team-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 36px; text-align: center;
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(108,99,255,.18); color: #6c63ff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 700; margin-bottom: 16px;
}
.team-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.team-card .role { font-size: .9rem; color: #6c63ff; margin-bottom: 12px; }
.team-card p { font-size: .9rem; color: #8892a4; }

/* === Pricing === */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin: 20px 0;
}
.pricing-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 32px 24px;
  text-align: center; position: relative;
  transition: border-color .3s, transform .3s;
}
.pricing-card:hover {
  border-color: rgba(108,99,255,.35);
  transform: translateY(-4px);
}
.pricing-featured {
  border-color: rgba(108,99,255,.4);
  background: rgba(108,99,255,.06);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #6c63ff; color: #fff; font-size: .75rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-tier {
  font-size: 1.1rem; font-weight: 700; color: #6c63ff;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.pricing-price {
  font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 4px;
}
.pricing-price span { font-size: .9rem; font-weight: 500; color: #8892a4; }
.pricing-target {
  font-size: .85rem; color: #8892a4; margin-bottom: 20px;
}
.pricing-features {
  list-style: none; padding: 0; margin: 0 0 24px; text-align: left;
}
.pricing-features li {
  padding: 6px 0; font-size: .9rem; color: #c0c8d4;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pricing-features li::before {
  content: "\2713 "; color: #6c63ff; font-weight: bold; margin-right: 6px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-btn { width: 100%; display: block; text-align: center; }
.pricing-note {
  text-align: center; font-size: .9rem; color: #8892a4; margin-top: 24px;
}

/* === CTA === */
.cta-section {
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(108,99,255,.1) 0%, transparent 70%);
}
.cta-section h2 { font-size: 2rem; color: #fff; margin-bottom: 16px; }
.cta-section p { color: #8892a4; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* === Footer === */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center; font-size: .85rem; color: #5a6577;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .features-grid, .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .screenshot-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
