/* ===========================================================================
   lp-pages.css  --  Shared landing-page shell for Pro Star Planet content pages
   ---------------------------------------------------------------------------
   Used by /about and /ai-development. These are the same visual primitives the
   earlier feature pages (ai-helper.php, custom-website.php, ...) carry inline;
   pulled into one cached file here so the two newer pages stay in step with
   each other instead of drifting apart.

   Loaded AFTER /css/style.css, so the button rules below intentionally win --
   but only inside .lp-page, so nothing else on the site is affected.
   =========================================================================== */

/* ---------- Hero ---------- */
.lp-hero {
  padding: 100px 24px 64px;
  text-align: center;
  background: linear-gradient(180deg, #060d1f 0%, #0a1428 100%);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37,99,235,.13) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero > * { position: relative; z-index: 1; }
.lp-hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #60a5fa;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(96,165,250,.2);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 20px;
}
.lp-hero h1 .highlight { color: #60a5fa; }
.lp-hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #9aa4b2;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.lp-hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- Buttons (page-scoped) ---------- */
.lp-page .btn-primary {
  background: #2563eb; color: #fff; font-weight: 600; font-size: 1rem;
  border: none; border-radius: 8px; padding: 14px 28px;
  text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
}
.lp-page .btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); }
.lp-page .btn-outline {
  background: transparent; color: #60a5fa; font-weight: 600; font-size: 1rem;
  border: 1px solid rgba(96,165,250,.4); border-radius: 8px; padding: 14px 28px;
  text-decoration: none; display: inline-block;
  transition: border-color .2s, background .2s;
}
.lp-page .btn-outline:hover { border-color: #60a5fa; background: rgba(96,165,250,.06); }

/* ---------- Section scaffolding ---------- */
.lp-band { padding: 0 24px; }
.lp-band--deep { background: #060d1f; }
.lp-band--mid  { background: #0a1428; }
.lp-section { max-width: 1080px; margin: 0 auto; padding: 72px 24px; }
.lp-section--narrow { max-width: 900px; }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #60a5fa; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
  color: #fff; margin-bottom: 16px; line-height: 1.2;
}
.section-sub {
  font-size: 1.05rem; color: #9aa4b2; max-width: 700px;
  line-height: 1.7; margin-bottom: 48px;
}
.lp-prose p { color: #cbd5e1; font-size: 1.02rem; line-height: 1.8; margin: 0 0 20px; }
.lp-prose p:last-child { margin-bottom: 0; }
.lp-prose strong { color: #fff; font-weight: 700; }

/* ---------- Proof bar ---------- */
.proof-bar {
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 12px; overflow: hidden; margin-bottom: 56px;
  background: #060d1f;
}
.proof-item {
  flex: 1; min-width: 160px; padding: 24px 16px;
  text-align: center; background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(148,163,184,.1);
}
.proof-item:last-child { border-right: none; }
.proof-item .pi-num { font-size: 1.85rem; font-weight: 800; color: #60a5fa; display: block; line-height: 1.15; }
.proof-item .pi-lbl { font-size: .8rem; color: #9aa4b2; margin-top: 6px; display: block; line-height: 1.45; }

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; margin-top: 8px;
}
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 12px; padding: 24px 22px;
}
.feature-card-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(37,99,235,.15); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 14px; color: #60a5fa;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p  { font-size: .92rem; color: #9aa4b2; line-height: 1.6; margin: 0; }

/* ---------- Pull quote ---------- */
.pull-quote {
  background: rgba(37,99,235,.08);
  border-left: 4px solid #2563eb;
  border-radius: 0 10px 10px 0;
  padding: 24px 28px; margin: 40px 0;
}
.pull-quote p {
  font-size: 1.08rem; color: #dbe6f5; margin: 0; line-height: 1.7;
}

/* ---------- Honest-boundary callout ---------- */
.lp-note {
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.18);
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 32px;
}
.lp-note h3 { color: #86efac; font-size: .95rem; font-weight: 700; margin: 0 0 8px; }
.lp-note p  { color: #9aa4b2; font-size: .92rem; line-height: 1.65; margin: 0; }

/* ---------- Timeline ---------- */
.lp-timeline { list-style: none; margin: 0; padding: 0 0 0 26px; position: relative; }
.lp-timeline::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, rgba(96,165,250,.55), rgba(96,165,250,.08));
}
.lp-timeline li { position: relative; padding: 0 0 30px 0; }
.lp-timeline li:last-child { padding-bottom: 0; }
.lp-timeline li::before {
  content: ""; position: absolute; left: -26px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #0a1428; border: 2px solid #60a5fa;
}
.lp-era { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #60a5fa; margin-bottom: 6px; }
.lp-timeline h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 7px; }
.lp-timeline p  { font-size: .95rem; color: #9aa4b2; line-height: 1.65; margin: 0; }

/* ---------- Plain checklist ---------- */
.lp-checklist { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 14px 28px; }
.lp-checklist li {
  position: relative; padding-left: 28px;
  color: #cbd5e1; font-size: .96rem; line-height: 1.6;
}
.lp-checklist li::before {
  content: ""; position: absolute; left: 4px; top: .55em;
  width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg);
  background: #2563eb;
}
.lp-checklist strong { color: #fff; font-weight: 700; }

/* ---------- FAQ ---------- */
.lp-faq { border-top: 1px solid rgba(148,163,184,.12); }
.lp-faq-item { border-bottom: 1px solid rgba(148,163,184,.12); padding: 22px 0; }
.lp-faq-item h3 { font-size: 1.02rem; font-weight: 700; color: #fff; margin: 0 0 9px; }
.lp-faq-item p  { font-size: .95rem; color: #9aa4b2; line-height: 1.7; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(37,99,235,.18) 0%, rgba(37,99,235,.06) 100%);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 16px; padding: 56px 40px; text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: #fff; margin-bottom: 14px;
}
.cta-band p {
  font-size: 1.05rem; color: #9aa4b2; max-width: 560px;
  margin: 0 auto 28px; line-height: 1.65;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .lp-section { padding: 56px 20px; }
  .lp-hero { padding: 88px 20px 52px; }
}
@media (max-width: 640px) {
  .cta-band { padding: 40px 20px; }
  .proof-item { min-width: 50%; }
  .proof-item .pi-num { font-size: 1.6rem; }
  .lp-checklist { grid-template-columns: 1fr; }
  .pull-quote { padding: 20px 20px; }
}
