/* Landing pages shared styles */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

body.landing-page {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  background: #111318;
  color: #e0e2e8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Header */
.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  background: rgba(17,19,24,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.landing-header-logo img { height: 28px; }
.landing-header-nav { display: flex; gap: 20px; align-items: center; }
.landing-header-nav a {
  color: #8b8fa3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.landing-header-nav a:hover { color: #fff; }
.landing-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0A84FF;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.landing-header-cta:hover { background: #0070e0; }

/* Hero */
.landing-hero {
  text-align: center;
  padding: 64px 24px 48px;
  max-width: 800px;
  margin: 0 auto;
}
.landing-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.landing-hero-accent {
  background: linear-gradient(135deg, #0A84FF 0%, #5AC8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.landing-hero p {
  font-size: 18px;
  color: #8b8fa3;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.landing-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A84FF;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.landing-hero-btn:hover { background: #0070e0; transform: translateY(-1px); }

/* Content sections */
.landing-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.landing-section {
  margin-bottom: 40px;
}
.landing-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.landing-section p {
  color: #b6bac4;
  font-size: 16px;
  margin-bottom: 12px;
}
.landing-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.landing-section li {
  background: #1c1f28;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
  color: #b6bac4;
  font-size: 14px;
}

/* Features grid */
.landing-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.landing-feature {
  background: #1c1f28;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
}
.landing-feature-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.landing-feature h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.landing-feature p {
  font-size: 14px;
  color: #8b8fa3;
}

/* FAQ */
.landing-faq {
  margin: 48px 0;
}
.landing-faq h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.landing-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}
.landing-faq-q {
  font-size: 16px;
  font-weight: 600;
  color: #e0e2e8;
  margin-bottom: 8px;
}
.landing-faq-a {
  font-size: 15px;
  color: #8b8fa3;
  line-height: 1.6;
}

/* CTA bottom */
.landing-cta {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,132,255,0.06) 100%);
  border-radius: 20px;
  margin: 32px 0;
}
.landing-cta h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.landing-cta p {
  color: #8b8fa3;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Footer / internal links */
.landing-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.landing-footer-title {
  font-size: 14px;
  font-weight: 600;
  color: #8b8fa3;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  padding: 0;
}
.landing-footer-links a {
  color: #0A84FF;
  text-decoration: none;
  font-size: 14px;
}
.landing-footer-links a:hover { text-decoration: underline; }
.landing-footer-copy {
  margin-top: 20px;
  font-size: 13px;
  color: #555;
}

/* Responsive */
@media (max-width: 640px) {
  .landing-hero h1 { font-size: 28px; }
  .landing-hero p { font-size: 16px; }
  .landing-section h2 { font-size: 20px; }
  .landing-header-nav { display: none; }
  .landing-features { grid-template-columns: 1fr; }
}
