/* Landing page — public marketing screen */

.landing-body {
  background: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Nav ── */
.landing-nav {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(8px);
}
.landing-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.landing-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--text-primary);
}
.brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--r-input);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--text-primary); }

/* ── Hero ── */
.hero {
  padding: 100px 24px 72px;
}
.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 16px 6px 8px;
}
.hero-badge-text { font-size: 13px; color: var(--text-muted); }
.hero-title {
  font-size: clamp(40px, 6.5vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.hero-title-accent { color: var(--green); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.btn-lg { padding: 14px 32px; font-size: 15px; font-weight: 700; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.hero-note { font-size: 12px; color: var(--text-dim, #4b5563); }

/* ── Stats row ── */
.stats-row {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 28px 24px;
}
.stats-row-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 40px;
}
.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}
.stat-label { font-size: 12px; color: var(--text-muted); }
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Section header shared ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
}
.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Features ── */
.features {
  padding: 80px 24px;
}
.features-inner { max-width: 1080px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px;
  border-radius: var(--r-card, 12px);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--green); }
.feature-icon-wrap { font-size: 30px; margin-bottom: 14px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.feature-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── How it works ── */
.how-it-works {
  padding: 80px 24px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 1080px; margin: 0 auto; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}
.step-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-card, 12px);
  padding: 32px 28px;
  flex: 1;
  max-width: 280px;
}
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}
.step-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 10px; }
.step-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.step-arrow {
  font-size: 22px;
  color: var(--border);
  padding-top: 46px;
  flex-shrink: 0;
}

/* ── Pricing ── */
.plans-section {
  padding: 80px 24px;
}
.plans-inner { max-width: 900px; margin: 0 auto; }
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plan-card-landing {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.plan-card-landing--pro {
  background: #0f2817;
  border: 2px solid var(--green);
  box-shadow: 0 0 40px rgba(16,185,129,0.12);
}
.badge-popular-landing {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--green);
  color: #0d1117;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}
.plan-card-top { margin-bottom: 20px; }
.plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 6px;
}
.plan-price-amount {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}
.plan-price-amount--green { color: var(--green); }
.plan-price-period { font-size: 15px; color: var(--text-muted); }
.plan-price-note { font-size: 12px; color: var(--text-muted); margin: 0; }
.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features-list li { font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.pf-yes::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pf-no  { color: var(--text-dim, #4b5563); text-decoration: line-through; }
.pf-no::before { content: '✗'; color: var(--text-dim, #4b5563); flex-shrink: 0; }
.pf-bold { font-weight: 600; color: var(--text-primary); }
.plan-cta-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--r-input);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 12px;
}
a.btn-primary.plan-cta-btn {
  background: var(--green);
  color: #0d1117;
  border: none;
}
a.btn-outline.plan-cta-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
a.btn-outline.plan-cta-btn:hover { border-color: var(--text-muted); color: var(--text-primary); }
.plan-trust { font-size: 11px; color: var(--text-muted); text-align: center; margin: 0; }

/* ── Footer ── */
.landing-footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.landing-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); margin: 0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--green); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid    { grid-template-columns: 1fr; }
  .steps-grid    { flex-direction: column; align-items: center; }
  .step-arrow    { transform: rotate(90deg); padding-top: 0; }
  .step-card     { max-width: 100%; width: 100%; }
}
@media (max-width: 600px) {
  .features-grid         { grid-template-columns: 1fr; }
  .stat-item             { padding: 8px 20px; }
  .hero                  { padding: 64px 20px 48px; }
  .landing-footer-inner  { flex-direction: column; align-items: flex-start; }
  .landing-nav-actions .btn-ghost { display: none; }
}
