*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f172a;
  --bg2: #1e293b;
  --border: rgba(255,255,255,0.08);
  --text: #f8fafc;
  --muted: rgba(255,255,255,0.5);
  --amber: #f59e0b;
  --amber-dark: #d97706;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Nav */
.lp-nav {
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.lp-logo { font-size: 1.2rem; font-weight: 600; color: var(--text); text-decoration: none; }
.lp-logo span { color: var(--amber); }
.lp-cta {
  background: var(--amber-dark);
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.lp-cta:hover { background: var(--amber); }

/* Main */
main {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  width: 100%;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}

h3 { font-size: 1.05rem; font-weight: 600; color: var(--text); margin: 1.5rem 0 0.5rem; }

p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

a { color: var(--amber); text-decoration: underline; }
a:hover { color: var(--text); }

ul, ol { padding-left: 1.5rem; color: var(--muted); margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* CTA Banner */
.lp-hero-cta {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(234,88,12,0.08));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.lp-hero-cta p { margin: 0; color: var(--text); font-weight: 500; }
.lp-hero-cta small { display: block; color: var(--muted); font-size: 0.8rem; font-weight: 400; }
.lp-btn {
  background: var(--amber);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.lp-btn:hover { background: #fbbf24; color: #000; }

/* FAQ / details */
.faq { margin-top: 2.5rem; }
details {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
details[open] { background: rgba(255,255,255,0.05); }
summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  color: var(--amber);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}
details[open] summary::after { content: '−'; }
details p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Feature grid */
.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.lp-feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.25rem;
}
.lp-feature-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.lp-feature h3 { margin: 0 0 0.4rem; font-size: 0.95rem; }
.lp-feature p { margin: 0; font-size: 0.85rem; }

/* Compare table */
table { width: 100%; border-collapse: collapse; margin: 1rem 0 2rem; font-size: 0.9rem; }
th {
  text-align: left;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--border); color: var(--muted); }
td:first-child { color: var(--text); font-weight: 500; }
.check { color: #34d399; }
.cross { color: #f87171; }

/* Footer */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}
.lp-footer a { color: rgba(255,255,255,0.3); text-decoration: none; }
.lp-footer a:hover { color: rgba(255,255,255,0.6); }
.lp-footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.5rem; flex-wrap: wrap; }

@media (max-width: 600px) {
  main { padding: 2rem 1rem 3rem; }
  .lp-hero-cta { flex-direction: column; text-align: center; }
  .lp-nav { padding: 0.75rem 1rem; }
}
