/**
 * Landing pages — dark, compact design matching site aesthetic
 * Used by: ecommerce, social-media, real-estate, wedding, cli
 */
:root {
  --lp-accent: #74d53b;
}
.lp-body {
  background: #1a1a1a !important;
  color: #ccc;
}
.lp-body .footer-share a,
.lp-body .footer-links a {
  color: #aaa !important;
}
.lp-body .footer-share a:hover,
.lp-body .footer-links a:hover {
  color: #fff !important;
}
.lp-wrap {
  padding: 20px 0 40px 0;
  max-width: 900px;
  margin: 0 auto;
}

.lp-hero {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(40, 40, 45, 0.95) 100%);
  border: 1px solid #333;
  border-left: 4px solid var(--lp-accent);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.lp-hero .lp-tagline {
  font-size: 15px;
  color: #ccc;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.lp-hero .lp-sub {
  font-size: 13px;
  color: #999;
  margin: 0 0 20px 0;
}

.lp-hero .lp-cta {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  color: #fff !important;
  background: var(--lp-accent);
  border: 1px solid var(--lp-accent);
}

.lp-hero .lp-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.lp-hero .lp-note {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}

.lp-section {
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.lp-section h2 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #444;
}

.lp-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.lp-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.lp-step-num {
  font-size: 28px;
  font-weight: 700;
  color: #666;
  margin-bottom: 4px;
}

.lp-step strong {
  color: #ddd;
  font-size: 13px;
}

.lp-step p {
  color: #999;
  font-size: 12px;
  margin: 4px 0 0 0;
}

.lp-table-wrap {
  overflow-x: auto;
}

.lp-table {
  width: 100%;
  font-size: 12px;
  border-collapse: collapse;
}

.lp-table th {
  text-align: left;
  padding: 10px 12px;
  color: #fff;
  font-weight: 600;
  background: var(--lp-accent);
}

.lp-table td {
  padding: 8px 12px;
  color: #ccc;
  border-top: 1px solid #333;
}

.lp-table tr:hover td {
  background: rgba(255,255,255,0.03);
}

.lp-before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}

.lp-ba {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
}

.lp-ba.before {
  background: rgba(180, 60, 60, 0.15);
  border-left: 4px solid #c44;
}

.lp-ba.before h3 { color: #e88; }

.lp-ba.after {
  background: rgba(60, 140, 80, 0.15);
  border-left: 4px solid #4a8;
}

.lp-ba.after h3 { color: #6c6; }

.lp-ba h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.lp-ba p {
  margin: 0;
  color: #bbb;
  line-height: 1.4;
}

.lp-cta-bottom {
  text-align: center;
  padding: 20px 0 10px 0;
}

.lp-cta-bottom .lp-cta {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  color: #fff !important;
  background: var(--lp-accent);
  border: 1px solid var(--lp-accent);
}

.lp-cta-bottom .lp-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.lp-cta-bottom .lp-note {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* Accent-colored elements */
.lp-accent-text { color: var(--lp-accent); }
.lp-accent-link { color: var(--lp-accent); text-decoration: none; }
.lp-accent-link:hover { text-decoration: underline; }

.lp-ba-accent {
  background: rgba(116, 213, 59, 0.1);
  border-left-color: var(--lp-accent);
}

/* Code blocks (CLI page) */
.lp-code { color: var(--lp-accent); }
.lp-code-block {
  background: #111;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 16px;
  font-family: monospace;
  font-size: 13px;
  color: #ccc;
  line-height: 1.7;
  overflow-x: auto;
}
.lp-comment { color: #888; }
