/* ════════════════════════════════════════════════════════════════
   DeployPro — Landing Page CSS
   ════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #080d1a;
  --bg-2:    #0d1426;
  --bg-3:    #111b30;
  --border:  #1e2d4a;
  --accent:  #4f46e5;
  --accent-2:#7c3aed;
  --accent-g: rgba(79,70,229,.22);
  --blue:    #3b82f6;
  --green:   #10b981;
  --yellow:  #f59e0b;
  --red:     #ef4444;
  --purple:  #8b5cf6;
  --cyan:    #06b6d4;
  --text-1:  #e2e8f0;
  --text-2:  #94a3b8;
  --text-3:  #475569;
  --font:    'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text-1); font-family: var(--font); line-height: 1.6; }

a { text-decoration: none; color: inherit; }

/* ── Nav ─────────────────────────────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,13,26,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.lp-nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.lp-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; color: var(--text-1);
}
.lp-brand-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff;
}
.lp-brand-name { letter-spacing: -.3px; }

.lp-nav-links {
  display: flex; align-items: center; gap: 8px;
}
.lp-nav-links a {
  padding: 7px 14px;
  font-size: 13.5px;
  color: var(--text-2);
  transition: color .2s;
}
.lp-nav-links a:hover { color: var(--text-1); }

.lp-btn-outline {
  border: 1px solid var(--border) !important;
  color: var(--text-1) !important;
  transition: border-color .2s, color .2s !important;
}
.lp-btn-outline:hover { border-color: var(--accent) !important; color: var(--accent) !important; }

.lp-btn-primary, .lp-cta-primary {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .1s;
  border: none; cursor: pointer;
}
.lp-btn-primary:hover, .lp-cta-primary:hover { background: #4338ca; }
.lp-btn-primary:active, .lp-cta-primary:active { transform: scale(.97); }
.lp-cta-primary.lp-cta-disabled {
  background: var(--bg-3) !important;
  color: var(--text-3) !important;
  cursor: not-allowed;
  pointer-events: none;
}

.lp-cta-ghost {
  padding: 8px 18px;
  border: 1px solid var(--border);
  color: var(--text-2) !important;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color .2s, color .2s;
}
.lp-cta-ghost:hover { border-color: var(--text-2); color: var(--text-1) !important; }

/* ── Hero ────────────────────────────────────────────── */
.lp-hero {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(79,70,229,.15);
  border: 1px solid rgba(79,70,229,.35);
  color: #a5b4fc;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.lp-hero-title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.lp-gradient {
  background: linear-gradient(90deg, #6366f1, #a78bfa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 32px;
}

.lp-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lp-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-3);
}

.lp-hero-meta span {
  display: flex; align-items: center; gap: 6px;
}

.lp-hero-meta i { color: var(--text-2); }

/* ── Terminal mockup ─────────────────────────────────── */
.lp-terminal {
  background: #050810;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(79,70,229,.15);
  overflow: hidden;
}

.lp-term-bar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.lp-dot.red    { background: #ef4444; }
.lp-dot.yellow { background: #f59e0b; }
.lp-dot.green  { background: #10b981; }

.lp-term-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-left: -48px;
}

.lp-term-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.75;
}

.lp-ts { color: var(--text-3); margin-right: 6px; font-size: 11px; }
.lp-term-line.info    { color: #8bb8f8; }
.lp-term-line.success { color: #10b981; }
.lp-term-line.warning { color: #f59e0b; }

.lp-term-cursor {
  display: inline-block;
  color: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Sections ────────────────────────────────────────── */
.lp-section {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.lp-section-dark { background: var(--bg-2); }
.lp-section-inner { max-width: 1100px; margin: 0 auto; }

.lp-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.lp-section-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: -.3px;
}
.lp-section-header p {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Feature cards ───────────────────────────────────── */
.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.lp-feat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.lp-feat:hover { border-color: var(--accent); transform: translateY(-2px); }

.lp-feat-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.lp-feat-icon.blue   { background: rgba(59,130,246,.15); color: #93c5fd; }
.lp-feat-icon.green  { background: rgba(16,185,129,.15); color: #6ee7b7; }
.lp-feat-icon.purple { background: rgba(139,92,246,.15); color: #c4b5fd; }
.lp-feat-icon.yellow { background: rgba(245,158,11,.15); color: #fcd34d; }
.lp-feat-icon.cyan   { background: rgba(6,182,212,.15);  color: #67e8f9; }
.lp-feat-icon.red    { background: rgba(239,68,68,.15);  color: #fca5a5; }

.lp-feat h3 { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.lp-feat p  { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

/* ── Install steps ───────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.lp-step {
  display: flex;
  gap: 16px;
}

.lp-step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}

.lp-step-body h3 { font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.lp-step-body p  { font-size: 13px; color: var(--text-2); }
.lp-step-body code {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 1px 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #a5b4fc;
}

.lp-code-block {
  border: 1px solid var(--border);
  overflow: hidden;
}
.lp-code-bar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-3);
}
.lp-copy-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 3px 10px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: border-color .2s, color .2s;
}
.lp-copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.lp-code {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #a5b4fc;
  background: #050810;
  overflow-x: auto;
  white-space: pre;
  line-height: 1.8;
}

/* ── Download section ────────────────────────────────── */
.lp-download-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 28px 32px;
  max-width: 700px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lp-dl-icon {
  font-size: 40px;
  color: #93c5fd;
  flex-shrink: 0;
}
.lp-dl-info { flex: 1; min-width: 180px; }
.lp-dl-name { font-size: 18px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.lp-dl-meta { font-size: 12.5px; color: var(--text-3); }
.lp-dl-ver {
  background: rgba(255,255,255,.15);
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
}
.lp-dl-note {
  font-size: 12.5px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* ── Footer ──────────────────────────────────────────── */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}
.lp-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
}
.lp-brand-icon-sm {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff;
}
.lp-footer-links {
  display: flex;
  gap: 20px;
}
.lp-footer-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color .2s;
}
.lp-footer-links a:hover { color: var(--text-1); }
.lp-footer-copy { font-size: 12px; color: var(--text-3); }

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.lp-plan {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.lp-plan:hover { border-color: var(--accent); transform: translateY(-4px); }
.lp-plan-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #1a1560 0%, var(--bg-3) 70%);
  box-shadow: 0 0 40px rgba(79,70,229,.25);
}
.lp-plan-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.lp-plan-badge-gold { background: var(--yellow); color: #000; }
.lp-plan-name { font-size: 20px; font-weight: 700; color: var(--text-1); margin-bottom: 16px; }
.lp-plan-price { font-size: 48px; font-weight: 800; color: var(--text-1); line-height: 1; }
.lp-plan-price sup { font-size: 22px; font-weight: 600; vertical-align: top; margin-top: 10px; }
.lp-plan-amt {}
.lp-plan-per { font-size: 18px; font-weight: 400; color: var(--text-2); }
.lp-plan-cycle { font-size: 12px; color: var(--text-3); margin: 6px 0 24px; }
.lp-plan-features { list-style: none; flex: 1; margin-bottom: 28px; }
.lp-plan-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  font-size: 14px; color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.lp-plan-features li:last-child { border: none; }
.lp-plan-features li .fa-check { color: var(--green); flex-shrink: 0; }
.lp-plan-cta {
  display: block; text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  transition: all .2s;
}
.lp-plan-cta-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
}
.lp-plan-cta-primary:hover { background: #6366f1; }
.lp-plan-cta-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border);
}
.lp-plan-cta-ghost:hover { border-color: var(--accent); color: var(--accent); }
.lp-pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-3);
}
.lp-pricing-note a { color: var(--blue); }
.lp-pricing-note a:hover { text-decoration: underline; }

/* ── Video Guides ────────────────────────────────────────────────────────── */
.lp-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
  gap: 24px;
}
.lp-video-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.lp-video-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.lp-video-thumb {
  background: linear-gradient(135deg, #1e2d4a, #0d1426);
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-size: 48px; color: rgba(255,255,255,.3);
  transition: color .2s;
}
.lp-video-card:hover .lp-video-thumb { color: rgba(255,255,255,.7); }
.lp-vt-green  { background: linear-gradient(135deg, #052e16, #0d1426); }
.lp-vt-purple { background: linear-gradient(135deg, #2e1065, #0d1426); }
.lp-vt-yellow { background: linear-gradient(135deg, #422006, #0d1426); }
.lp-vt-cyan   { background: linear-gradient(135deg, #083344, #0d1426); }
.lp-vt-red    { background: linear-gradient(135deg, #450a0a, #0d1426); }
.lp-video-dur {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.7);
  color: #fff; font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
}
.lp-video-info { padding: 20px; }
.lp-video-tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .8px; color: var(--blue); margin-bottom: 6px;
}
.lp-video-title { font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 8px; }
.lp-video-info p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── Install step extras ─────────────────────────────────────────────────── */
.lp-req-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.lp-req-grid span {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px; color: var(--text-2);
  display: flex; align-items: center; gap: 6px;
}
.lp-code-inline {
  background: #0a0f1c;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
  margin-top: 10px;
}
.lp-step-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}
.lp-step-link:hover { text-decoration: underline; }

/* ── Download extras ─────────────────────────────────────────────────────── */
.lp-dl-actions {
  display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.lp-faq {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.lp-faq-item {
  border-bottom: 1px solid var(--border);
}
.lp-faq-item summary {
  padding: 20px 0;
  font-size: 16px; font-weight: 600; color: var(--text-1);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.lp-faq-item summary::after {
  content: '+';
  font-size: 22px; color: var(--text-3);
  transition: transform .2s;
  flex-shrink: 0;
}
.lp-faq-item[open] summary::after { transform: rotate(45deg); }
.lp-faq-item p {
  padding: 0 0 20px;
  color: var(--text-2); font-size: 15px; line-height: 1.7;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-hero { grid-template-columns: 1fr; }
  .lp-terminal { display: none; }
  .lp-nav-links a:not(.lp-btn-primary):not(.lp-btn-outline) { display: none; }
  .lp-download-card { flex-direction: column; align-items: flex-start; }
  .lp-footer-inner { flex-direction: column; text-align: center; }
  .lp-footer-links { justify-content: center; flex-wrap: wrap; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-videos-grid { grid-template-columns: 1fr; }
  .lp-dl-actions { flex-direction: column; align-items: center; }
}
