/* Wovelr landing page — Phase 60 */
:root {
  --lp-fg:        #1a1a1a;
  --lp-fg-muted: #6B6B6B;
  --lp-bg:       #FBF7F0;
  --lp-bg-card:  #FFFFFF;
  --lp-bg-soft:  #F4EFE6;
  --lp-accent:   #C8643C;
  --lp-accent-d: #A85128;
  --lp-jade:     #1F8A5B;
  --lp-border:   #E5DDD0;
  --lp-shadow:   0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--lp-bg);
  color: var(--lp-fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ── Buttons ── */
.lp-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .1s, box-shadow .15s;
}
.lp-btn-lg { padding: 14px 28px; font-size: 15px; }
.lp-btn-primary { background: var(--lp-accent); color: white; }
.lp-btn-primary:hover { background: var(--lp-accent-d); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,100,60,.3); }
.lp-btn-ghost { background: transparent; color: var(--lp-fg); border-color: var(--lp-border); }
.lp-btn-ghost:hover { background: var(--lp-bg-soft); border-color: var(--lp-fg); }

/* ── Nav ── */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 14px 32px;
  background: rgba(251,247,240,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-logo { margin-right: 32px; display: inline-flex; align-items: center; }
.lp-links {
  display: flex; gap: 28px; flex: 1;
}
.lp-links a { color: var(--lp-fg-muted); text-decoration: none; font-weight: 500; font-size: 14px; }
.lp-links a:hover { color: var(--lp-fg); }
.lp-cta-nav { display: flex; gap: 10px; }

/* ── Hero ── */
.lp-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  padding: 80px 64px 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}
.lp-eyebrow {
  display: inline-block; padding: 4px 10px;
  background: var(--lp-bg-soft); color: var(--lp-accent);
  border-radius: 4px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 16px;
}
.lp-hero h1 {
  font-size: 52px; line-height: 1.1; margin: 0 0 20px;
  letter-spacing: -0.02em; font-weight: 800;
}
.lp-accent { color: var(--lp-accent); }
.lp-lead { font-size: 18px; color: var(--lp-fg-muted); margin: 0 0 28px; max-width: 540px; }
.lp-cta-row { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.lp-fineprint { font-size: 13px; color: var(--lp-fg-muted); margin: 0; }

.lp-hero-visual { display: flex; justify-content: center; }
.lp-screenshot {
  background: var(--lp-bg-card);
  border-radius: 10px;
  box-shadow: var(--lp-shadow), 0 16px 48px rgba(0,0,0,.08);
  width: 100%; max-width: 520px;
  overflow: hidden;
}
.lp-screenshot-bar {
  background: var(--lp-bg-soft);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-screenshot-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lp-border);
}
.lp-screenshot-bar code {
  margin-left: 16px; font-family: "JetBrains Mono", monospace;
  font-size: 11px; color: var(--lp-fg-muted);
}
.lp-screenshot-body { position: relative; height: 280px; padding: 30px; }
.lp-mock-eq {
  position: absolute; width: 70px;
  background: var(--lp-bg-card); border: 1.5px solid var(--lp-fg);
  border-radius: 4px; padding: 8px 10px; font-size: 13px; font-weight: 600;
  text-align: center;
}
.lp-mock-eq small { display: block; font-family: "JetBrains Mono", monospace; font-size: 9px; color: var(--lp-fg-muted); font-weight: 400; margin-top: 2px; }
.lp-mock-wires { position: absolute; inset: 0; pointer-events: none; }

/* ── Section titles ── */
.lp-section-title {
  text-align: center; font-size: 36px; margin: 0 0 8px;
  letter-spacing: -0.02em; font-weight: 800;
}
.lp-section-sub {
  text-align: center; color: var(--lp-fg-muted);
  font-size: 16px; max-width: 600px; margin: 0 auto 36px;
}

/* ── Features ── */
.lp-features { padding: 80px 64px; max-width: 1300px; margin: 0 auto; }
.lp-features-grid {
  margin-top: 48px;
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.lp-feature {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 28px;
  transition: transform .15s, box-shadow .15s;
}
.lp-feature:hover { transform: translateY(-3px); box-shadow: var(--lp-shadow); }
.lp-feature-icon {
  font-size: 28px; color: var(--lp-accent);
  width: 48px; height: 48px;
  background: var(--lp-bg-soft); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lp-feature h3 { font-size: 18px; margin: 0 0 8px; font-weight: 700; }
.lp-feature p { color: var(--lp-fg-muted); font-size: 14px; margin: 0; }
.lp-badge-pro {
  display: inline-block; padding: 2px 6px;
  background: var(--lp-accent); color: white;
  font-size: 9px; font-weight: 700; letter-spacing: .05em;
  border-radius: 3px; margin-left: 6px; vertical-align: middle;
}

/* ── Pricing ── */
.lp-pricing {
  padding: 80px 64px; background: var(--lp-bg-soft);
}
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1300px; margin: 0 auto;
}
.lp-plan {
  position: relative;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 28px;
  display: flex; flex-direction: column;
}
.lp-plan-featured {
  border: 2px solid var(--lp-accent);
  transform: scale(1.03);
  box-shadow: var(--lp-shadow);
}
.lp-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--lp-accent); color: white;
  padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  white-space: nowrap;
}
.lp-plan-name { font-size: 18px; margin: 0; font-weight: 700; color: var(--lp-fg-muted); text-transform: uppercase; letter-spacing: .05em; }
.lp-plan-price { font-size: 36px; font-weight: 800; margin: 12px 0 8px; letter-spacing: -0.02em; }
.lp-plan-price span { font-size: 14px; color: var(--lp-fg-muted); font-weight: 500; }
.lp-plan-lead { font-size: 14px; color: var(--lp-fg-muted); margin: 0 0 20px; }
.lp-plan-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  font-size: 14px; flex: 1;
}
.lp-plan-features li { padding: 5px 0; color: var(--lp-fg); }
.lp-plan-features li:first-letter { font-weight: 700; }
.lp-plan-cta { text-align: center; }

/* ── About ── */
.lp-about {
  padding: 80px 64px; max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center;
}
.lp-about p { color: var(--lp-fg-muted); font-size: 16px; }
.lp-about-list { list-style: none; padding: 0; margin: 24px 0 0; }
.lp-about-list li { padding: 8px 0; font-size: 14px; }

.lp-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.lp-stat {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.lp-stat-n {
  display: block; font-size: 36px; font-weight: 800; color: var(--lp-accent);
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.lp-stat-lbl { font-size: 12px; color: var(--lp-fg-muted); text-transform: uppercase; letter-spacing: .05em; }

/* ── Contact ── */
.lp-contact { padding: 80px 64px; background: var(--lp-bg-soft); }
.lp-contact-form {
  max-width: 600px; margin: 0 auto;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 28px;
}
.lp-contact-form input,
.lp-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  border-radius: 6px;
  font-family: inherit; font-size: 14px;
  margin-bottom: 12px;
  background: var(--lp-bg);
  color: var(--lp-fg);
  box-sizing: border-box;
}
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-form-foot { align-items: center; }
.lp-form-foot p { margin: 0; }
.lp-form-msg { margin-top: 12px; font-size: 14px; padding: 10px; border-radius: 4px; min-height: 20px; }
.lp-form-msg.ok { background: rgba(31,138,91,.1); color: var(--lp-jade); }
.lp-form-msg.err { background: rgba(192,57,43,.1); color: #C0392B; }

/* ── Footer ── */
.lp-footer { padding: 60px 64px 30px; background: var(--lp-fg); color: white; }
.lp-footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1300px; margin: 0 auto;
}
.lp-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.6); margin: 0 0 12px; }
.lp-footer a { display: block; color: rgba(255,255,255,.85); text-decoration: none; padding: 4px 0; font-size: 14px; }
.lp-footer a:hover { color: var(--lp-accent); }
.lp-footer .lp-fineprint { color: rgba(255,255,255,.6); margin-top: 8px; }
.lp-footer-baseline {
  max-width: 1300px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center; font-size: 12px; color: rgba(255,255,255,.5);
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .lp-hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .lp-hero h1 { font-size: 36px; }
  .lp-links { display: none; }
  .lp-features, .lp-pricing, .lp-about, .lp-contact { padding: 48px 24px; }
  .lp-about { grid-template-columns: 1fr; gap: 32px; }
  .lp-footer-cols { grid-template-columns: 1fr 1fr; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-plan-featured { transform: none; }
}
