/* Landing pages SEO — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0f1117; --bg2: #1a1d27; --bg3: #232734;
  --text: #e2e8f0; --text2: #94a3b8; --text3: #64748b;
  --accent: #6366f1; --accent2: #818cf8; --green: #22c55e;
  --orange: #f97316; --red: #ef4444;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* Header */
.lp-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(15,17,23,.88); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.06); }
.lp-header-inner { max-width: 1100px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lp-logo { font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; text-decoration: none; flex-shrink: 0; }
.lp-logo span { color: var(--text); }
.lp-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.lp-nav a { color: var(--text2); font-size: 13px; font-weight: 500; padding: 6px 10px; border-radius: 6px; transition: color .2s, background .2s; text-decoration: none; white-space: nowrap; }
.lp-nav a:hover, .lp-nav a.active { color: var(--text); background: rgba(255,255,255,.06); }
.lp-nav-cta { background: var(--accent) !important; color: #fff !important; padding: 7px 16px !important; border-radius: 8px !important; font-weight: 600 !important; }
.lp-nav-cta:hover { background: var(--accent2) !important; }

/* Hero */
.lp-hero { padding: 120px 20px 48px; text-align: center; max-width: 820px; margin: 0 auto; }
.lp-hero h1 { font-size: clamp(26px, 4.5vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px; }
.lp-hero h1 em { font-style: normal; color: var(--orange); }
.lp-hero .lp-subtitle { font-size: clamp(15px, 2.2vw, 18px); color: var(--text2); max-width: 620px; margin: 0 auto 16px; }
.lp-hero .lp-subtitle-sm { font-size: clamp(13px, 1.8vw, 15px); color: var(--text3); max-width: 540px; margin: 0 auto 32px; }

/* CTA button */
.lp-cta { display: inline-block; background: var(--orange); color: #fff; padding: 14px 32px; border-radius: 10px; font-size: 16px; font-weight: 700; transition: transform .2s, background .2s; text-decoration: none; }
.lp-cta:hover { background: #ea580c; transform: translateY(-2px); text-decoration: none; }
.lp-cta-sub { display: block; margin-top: 10px; font-size: 13px; color: var(--text3); }

/* Content */
.lp-content { max-width: 780px; margin: 0 auto; padding: 0 20px 60px; }
.lp-content h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; margin: 48px 0 16px; color: var(--text); letter-spacing: -0.3px; }
.lp-content h3 { font-size: clamp(17px, 2.5vw, 21px); font-weight: 600; margin: 32px 0 12px; color: var(--accent2); }
.lp-content p { margin-bottom: 16px; color: var(--text2); font-size: 16px; text-align: justify; }
.lp-content strong { color: var(--text); font-weight: 600; }
.lp-content ul, .lp-content ol { margin: 0 0 16px 20px; color: var(--text2); }
.lp-content li { margin-bottom: 8px; font-size: 16px; }

/* Stat cards */
.lp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 32px 0; }
.lp-stats-4 { grid-template-columns: repeat(3, 1fr); }
.lp-stat { background: var(--bg2); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 20px; text-align: center; }
.lp-stat-num { font-size: 32px; font-weight: 800; color: var(--orange); display: block; }
.lp-stat-label { font-size: 14px; color: var(--text2); margin-top: 4px; display: block; }
.lp-stat-alert { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; border-color: rgba(239,68,68,.4); background: rgba(239,68,68,.1); border-width: 2px; padding: 28px 20px; border-radius: 16px; }
.lp-stat-alert .lp-stat-num { color: var(--red); font-size: 44px; }
.lp-stat-alert .lp-stat-label { font-size: 16px; font-weight: 600; color: var(--text); margin-top: 6px; }

/* Steps */
.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 32px 0; }
.lp-step { background: var(--bg2); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 24px; position: relative; }
.lp-step-num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.lp-step h3 { margin: 0 0 8px; color: var(--text); font-size: 17px; }
.lp-step p { margin: 0; font-size: 14px; color: var(--text2); }

/* Screenshots */
.lp-screenshots { display: flex; flex-direction: column; gap: 24px; margin: 28px 0; }
.lp-screenshot { margin: 0; }
.lp-screenshot img { width: 100%; height: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,.1); }
.lp-screenshot figcaption { font-size: 13px; color: var(--text3); margin-top: 8px; text-align: center; }

/* Highlight box */
.lp-highlight { background: var(--bg2); border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 28px 0; }
.lp-highlight p { margin: 0; }

/* Bottom CTA section */
.lp-bottom-cta { text-align: center; padding: 48px 20px 56px; background: var(--bg2); border-top: 1px solid rgba(255,255,255,.06); }
.lp-bottom-cta h2 { font-size: clamp(22px, 3.5vw, 32px); font-weight: 700; margin-bottom: 12px; }
.lp-bottom-cta p { color: var(--text2); margin-bottom: 24px; font-size: 16px; }

/* Footer */
.lp-footer { padding: 32px 20px; border-top: 1px solid rgba(255,255,255,.06); }
.lp-footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 24px; }
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.lp-footer-links a { color: var(--text3); font-size: 13px; text-decoration: none; }
.lp-footer-links a:hover { color: var(--text2); }
.lp-footer-copy { color: var(--text3); font-size: 13px; }

/* Demo table */
.lp-demo-table-wrap { overflow-x: auto; margin: 24px 0; border-radius: 12px; border: 1px solid rgba(255,255,255,.06); }
.lp-demo-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.lp-demo-table th { background: var(--bg3); color: var(--text2); font-weight: 600; text-align: left; padding: 10px 14px; white-space: nowrap; }
.lp-demo-table td { padding: 10px 14px; border-top: 1px solid rgba(255,255,255,.04); color: var(--text2); }
.lp-demo-table td:first-child { font-weight: 500; color: var(--text); }
.lp-demo-table td:not(:first-child) { white-space: nowrap; text-align: right; }
.lp-demo-table th:not(:first-child) { text-align: right; }
.lp-demo-table tbody tr:hover { background: rgba(255,255,255,.03); }
.lp-demo-table .lp-cell-alert { color: var(--red); font-weight: 700; }
.lp-demo-table .lp-cell-warn { color: var(--orange); font-weight: 600; }

/* Responsive */
@media (max-width: 640px) {
  .lp-header-inner { padding: 10px 14px; }
  .lp-nav a { font-size: 12px; padding: 5px 7px; }
  .lp-hero { padding-top: 100px; padding-bottom: 32px; }
  .lp-content { padding: 0 16px 40px; }
  .lp-stats, .lp-stats-4 { grid-template-columns: 1fr 1fr; }
  .lp-stat-alert { max-width: 100%; }
  .lp-stat-alert .lp-stat-num { font-size: 36px; }
  .lp-demo-table { font-size: 13px; }
  .lp-demo-table th, .lp-demo-table td { padding: 8px 10px; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-footer-inner { flex-direction: column; align-items: center; text-align: center; }
}
