/* assets/css/landing.css — Public landing page */

.lp-body { background: #fff; color: var(--text); }

/* ── NAV ─────────────────────────────────── */
.lp-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.lp-nav-inner { max-width: 1120px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; }
.lp-brand { display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--text); }
.lp-nav-links { display: flex; align-items: center; gap: 26px; }
.lp-nav-links a { text-decoration: none; color: var(--text-2); font-size: .9rem; font-weight: 500;
  transition: color var(--transition); }
.lp-nav-links a:hover { color: var(--primary); }
.lp-nav-links .btn-primary, .lp-nav-links .btn-secondary { color: #fff; }
.lp-nav-links .btn-secondary { color: var(--primary); }

/* ── HERO ────────────────────────────────── */
.lp-hero { position: relative; overflow: hidden;
  background: linear-gradient(180deg, #f5f4ff 0%, #fff 100%); }
.lp-hero::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: url('../Star%20Logo.png') no-repeat center center / contain;
  opacity: 0.15; z-index: 0; pointer-events: none;
}
.lp-hero-inner { max-width: 880px; margin: 0 auto; padding: 80px 24px 60px;
  text-align: center; position: relative; z-index: 2; }
.lp-hero-glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; background: radial-gradient(circle, rgba(124,58,237,.18), transparent 70%);
  filter: blur(40px); z-index: 1; }
.lp-badge { display: inline-block; background: var(--surface-3); color: var(--primary);
  font-size: .8rem; font-weight: 600; padding: 6px 16px; border-radius: 50px;
  border: 1px solid var(--border); margin-bottom: 24px; }
.lp-title { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800;
  line-height: 1.08; letter-spacing: -.02em; margin-bottom: 20px; }
.lp-grad { background: linear-gradient(120deg, var(--primary), #9333ea, var(--accent-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lp-sub { font-size: 1.12rem; color: var(--text-2); max-width: 620px; margin: 0 auto 32px;
  line-height: 1.6; }
.lp-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.lp-cta-lg { padding: 14px 28px !important; font-size: .98rem !important; border-radius: 12px !important; }

.lp-search-preview { max-width: 560px; margin: 0 auto; }
.lp-search-bar { display: flex; align-items: center; gap: 12px; background: #fff;
  border: 1.5px solid var(--border); border-radius: 14px; padding: 16px 20px;
  box-shadow: var(--shadow-lg); color: var(--text-3); text-align: left; }
.lp-typed { color: var(--text); font-size: 1rem; font-weight: 500; }
.lp-cursor { color: var(--primary); font-weight: 700; animation: blink 1s steps(2) infinite; }
@keyframes blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }
.lp-search-hint { font-size: .78rem; color: var(--text-3); margin-top: 12px; }

/* ── STATS ───────────────────────────────── */
.lp-stats { max-width: 1000px; margin: -30px auto 0; padding: 0 24px; position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; text-align: center; box-shadow: var(--shadow); }
.lp-stat-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--primary); }
.lp-stat-label { font-size: .82rem; color: var(--text-3); margin-top: 4px; }

/* ── SECTIONS ────────────────────────────── */
.lp-section { max-width: 1120px; margin: 0 auto; padding: 80px 24px; }
.lp-section-head { text-align: center; margin-bottom: 48px; }
.lp-section-head h2 { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700;
  letter-spacing: -.01em; margin-bottom: 10px; }
.lp-section-head p { color: var(--text-3); font-size: 1.05rem; }

/* ── FEATURES ────────────────────────────── */
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-feature { background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform var(--transition), box-shadow var(--transition); }
.lp-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-feature-icon { width: 52px; height: 52px; border-radius: 13px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 18px; }
.lp-feature h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.lp-feature p { color: var(--text-2); font-size: .9rem; line-height: 1.6; }

/* ── HOW IT WORKS ────────────────────────── */
.lp-how { background: var(--surface-2); border-radius: 24px; margin-bottom: 80px; }
.lp-steps { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.lp-step { flex: 1; min-width: 220px; max-width: 300px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.lp-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 16px; }
.lp-step h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; }
.lp-step p { color: var(--text-2); font-size: .88rem; line-height: 1.55; }
.lp-step-arrow { display: flex; align-items: center; color: var(--text-3); font-size: 1.5rem; font-weight: 300; }

/* ── CATEGORIES ──────────────────────────── */
.lp-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-cat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
  transition: border-color var(--transition); }
.lp-cat:hover { border-color: var(--primary); }
.lp-cat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.lp-cat-name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.lp-cat-desc { color: var(--text-3); font-size: .85rem; line-height: 1.5; }

/* ── CTA BAND ────────────────────────────── */
.lp-cta-band { background: linear-gradient(120deg, var(--primary-dark), #6d28d9);
  margin: 40px 24px; border-radius: 24px; max-width: 1120px;
  margin-left: auto; margin-right: auto; overflow: hidden; position: relative; }
.lp-cta-band-inner { padding: 64px 24px; text-align: center; position: relative; z-index: 2; }
.lp-cta-band h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.lp-cta-band p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 28px; }
.lp-cta-band .btn-accent { background: #fff; color: var(--primary-dark); }
.lp-cta-band .btn-accent:hover { background: var(--accent); color: var(--text); }
.lp-cta-note { color: rgba(255,255,255,.7); font-size: .82rem; margin-top: 16px; }

/* ── FOOTER ──────────────────────────────── */
.lp-footer { border-top: 1px solid var(--border); background: var(--surface-2); }
.lp-footer-inner { max-width: 1120px; margin: 0 auto; padding: 40px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.lp-footer-links { display: flex; gap: 24px; }
.lp-footer-links a { color: var(--text-2); text-decoration: none; font-size: .88rem; }
.lp-footer-links a:hover { color: var(--primary); }
.lp-footer-copy { color: var(--text-3); font-size: .82rem; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 880px) {
  .lp-title { font-size: 2.3rem; }
  .lp-features, .lp-cats { grid-template-columns: 1fr 1fr; }
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-step-arrow { display: none; }
  .lp-nav-links a:not(.btn-primary):not(.btn-secondary) { display: none; }
}
@media (max-width: 560px) {
  .lp-title { font-size: 1.9rem; }
  .lp-features, .lp-cats, .lp-stats { grid-template-columns: 1fr; }
  .lp-section { padding: 56px 20px; }
}
