/* ===== LANDING PAGE SUPPLEMENTAL STYLES ===== */

/* HERO */
.lp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.lp-hero-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.lp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

/* FEATURES */
.lp-features {
  padding: 80px 24px;
  background: var(--bg-subtle);
}

.lp-features-inner {
  max-width: 960px;
  margin: 0 auto;
}

.lp-features-heading {
  text-align: center;
  margin-bottom: 56px;
}

.lp-features-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lp-feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lp-feature-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 0 30px var(--accent-glow);
}

.lp-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.lp-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.lp-feature-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* CTA BANNER */
.lp-cta {
  padding: 100px 24px;
  text-align: center;
}

.lp-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.lp-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lp-hero { min-height: 70vh; padding: 80px 20px; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-features { padding: 60px 20px; }
  .lp-cta { padding: 80px 20px; }
}