/* ═══════════════════════════════════════════════════════════════════
   LANDING PAGES (SEO) — extends styles.css, same design tokens
════════════════════════════════════════════════════════════════════ */

/* Hero (compact, no 100vh) */
.lp-hero {
  position: relative;
  padding: 140px 0 64px;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 480px;
  background: radial-gradient(closest-side, rgba(101, 22, 222, 0.28), transparent);
  pointer-events: none;
}
.lp-hero .container { position: relative; }

.lp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}
.lp-breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--transition);
}
.lp-breadcrumb a:hover { color: var(--text); }
.lp-breadcrumb span[aria-hidden] { color: var(--text-3); }

.lp-hero h1 {
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 18px;
}
.lp-hero__sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 28px;
}
.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.lp-hero__note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-3);
}

/* Article prose */
.lp-article {
  max-width: 780px;
  margin: 0 auto;
}
.lp-article h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.lp-article h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 28px 0 10px;
}
.lp-article p {
  font-size: 16.5px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.lp-article ul,
.lp-article ol {
  margin: 0 0 18px 22px;
  color: var(--text-2);
  line-height: 1.75;
  font-size: 16.5px;
}
.lp-article li { margin-bottom: 8px; }
.lp-article li::marker { color: var(--purple-light); }
.lp-article a {
  color: var(--purple-light);
  text-decoration: underline;
  text-decoration-color: rgba(167, 139, 250, 0.4);
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.lp-article a:hover { color: var(--text); }
.lp-article strong { color: var(--text); }

/* Tables (comparisons) */
.lp-table-wrap {
  overflow-x: auto;
  margin: 20px 0 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}
.lp-article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 480px;
}
.lp-article th,
.lp-article td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-2);
  line-height: 1.5;
}
.lp-article th {
  color: var(--text);
  font-weight: 600;
  background: var(--bg-card);
  white-space: nowrap;
}
.lp-article tr:last-child td { border-bottom: none; }

/* Callout / inline CTA box */
.lp-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 26px 0;
}
.lp-callout p { margin-bottom: 14px; }
.lp-callout p:last-child { margin-bottom: 0; }

/* Steps as ordered list (reading-friendly) */
.lp-steps {
  counter-reset: lp-step;
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
}
.lp-steps li {
  position: relative;
  padding: 0 0 22px 56px;
  counter-increment: lp-step;
}
.lp-steps li::before {
  content: counter(lp-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple-light);
  background: rgba(101, 22, 222, 0.12);
  border: 1px solid var(--border);
}
.lp-steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 4px;
  width: 1px;
  background: var(--border-subtle);
}
.lp-steps h3 { margin: 6px 0 6px; font-size: 17px; }
.lp-steps p { margin-bottom: 0; font-size: 16px; }

/* Related pages */
.lp-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.lp-related a {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color var(--transition), background var(--transition);
}
.lp-related a:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}
.lp-related a small {
  display: block;
  margin-top: 6px;
  color: var(--text-3);
  font-weight: 400;
  font-size: 13px;
}

@media (max-width: 768px) {
  .lp-hero { padding: 118px 0 48px; }
  .lp-article h2 { font-size: 24px; }
}
