/* =====================================================================
   SuperSafe-AI — Landing Page
   Professional marketing page that looks like a legitimate SaaS product
   ===================================================================== */

/* Navigation */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 40px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid #1e293b;
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-brand { display: flex; align-items: center; gap: 8px; }
.nav-logo { font-size: 24px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: #94a3b8; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: #e2e8f0; text-decoration: none; }

/* Hero */
.hero {
  text-align: center; padding: 100px 20px 80px;
  max-width: 800px; margin: 0 auto;
}
.hero-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 20px; font-size: 13px; color: #38bdf8;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 56px; font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f1f5f9, #94a3b8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px; color: #94a3b8; max-width: 600px; margin: 0 auto 32px;
}
.hero-note {
  font-size: 12px; color: #475569; margin-top: 16px;
}

/* Features */
.features {
  padding: 80px 40px; text-align: center;
  background: #0b1120;
}
.features h2 {
  font-size: 36px; font-weight: 700; margin-bottom: 48px;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.feature-card {
  background: #1e293b; border: 1px solid #334155; border-radius: 12px;
  padding: 32px 24px; text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: #475569; transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #94a3b8; }

/* Trust badges */
.trust {
  padding: 60px 40px; text-align: center;
}
.trust-badges {
  display: flex; justify-content: center; gap: 32px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.badge {
  padding: 8px 20px; background: #1e293b; border: 1px solid #334155;
  border-radius: 8px; font-size: 14px; font-weight: 600;
}
.trust-note {
  max-width: 700px; margin: 0 auto;
  font-size: 14px; color: #64748b; line-height: 1.8;
}

/* Pricing */
.pricing-preview {
  padding: 80px 40px; text-align: center;
  background: #0b1120;
}
.pricing-preview h2 { font-size: 36px; margin-bottom: 48px; }
.pricing-cards {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; max-width: 900px; margin: 0 auto;
}
.pricing-card {
  background: #1e293b; border: 1px solid #334155; border-radius: 12px;
  padding: 32px; width: 260px; text-align: center; position: relative;
}
.pricing-card.featured {
  border-color: #7c3aed;
  background: linear-gradient(135deg, #1e293b, #1a1a2e);
}
.popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #7c3aed; color: white; padding: 2px 12px; border-radius: 10px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 12px; }
.price {
  font-size: 40px; font-weight: 800; margin-bottom: 12px;
}
.price span { font-size: 16px; color: #64748b; font-weight: 400; }
.pricing-card p { font-size: 14px; color: #94a3b8; }

/* Footer */
.footer {
  padding: 48px 40px; text-align: center;
  border-top: 1px solid #1e293b;
}
.footer-brand { font-size: 20px; margin-bottom: 16px; }
.footer-links { margin-bottom: 24px; }
.footer-links a {
  color: #64748b; font-size: 13px; margin: 0 12px;
}
.footer-disclaimer {
  max-width: 700px; margin: 0 auto 12px;
  font-size: 11px; color: #334155; line-height: 1.6;
}
.footer-copy { font-size: 12px; color: #475569; }
