/* ─── Hero ─── */
.hero {
  min-height: calc(100vh - 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(79,195,247,0.08) 0%, transparent 60%),
    var(--eve-bg);
  padding: 40px 24px;
}

.hero-inner { max-width: 820px; }

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--eve-accent);
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.hero-title span { color: var(--eve-accent); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--eve-text-dim);
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-hero {
  padding: 13px 30px;
  font-size: 1rem;
}

.hero-microtext {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--eve-text-dim);
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
}

.trust-bar {
  margin-top: 26px;
  font-size: 0.74rem;
  color: var(--eve-text-dim);
  letter-spacing: 0.4px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 8px 16px;
  border: 1px solid var(--eve-border);
  border-radius: 3px;
  background: rgba(13, 21, 38, 0.4);
}

/* ─── Section common ─── */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section--narrow { max-width: 980px; }

.section-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--eve-accent);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--eve-text-dim);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ─── Social proof bar ─── */
.social-bar {
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--eve-panel);
  border-top: 1px solid var(--eve-border);
  border-bottom: 1px solid var(--eve-border);
}
.social-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.social-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--eve-accent);
  line-height: 1;
  letter-spacing: 1px;
}
.social-label {
  font-size: 0.72rem;
  color: var(--eve-text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.social-sep {
  width: 1px;
  height: 36px;
  background: var(--eve-border);
}

/* ─── Pain block ─── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.pain-card {
  background: var(--eve-panel);
  border: 1px solid var(--eve-border);
  border-left: 3px solid var(--eve-red);
  border-radius: 4px;
  padding: 18px 20px;
}
.pain-icon { font-size: 1.6rem; margin-bottom: 8px; }
.pain-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}
.pain-desc {
  font-size: 0.82rem;
  color: var(--eve-text-dim);
  line-height: 1.55;
}

/* ─── Screenshots ─── */
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.shot-card {
  background: var(--eve-panel);
  border: 1px solid var(--eve-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.shot-card:hover {
  border-color: var(--eve-accent);
  transform: translateY(-2px);
}

.shot-image-wrap {
  aspect-ratio: 16 / 10;
  background: #050810;
  border-bottom: 1px solid var(--eve-border);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.shot-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  transition: transform 0.3s;
}
.shot-card:hover .shot-image-wrap img { transform: scale(1.02); }

.shot-image-wrap::after {
  content: "⤢";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: rgba(6, 9, 15, 0.75);
  border: 1px solid var(--eve-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eve-text);
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}
.shot-card:hover .shot-image-wrap::after { opacity: 1; }

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  cursor: zoom-out;
  animation: lightboxFadeIn 0.18s ease;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(79, 195, 247, 0.15);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--eve-border);
  background: rgba(13, 21, 38, 0.9);
  color: var(--eve-text);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.lightbox-close:hover {
  background: var(--eve-highlight);
  border-color: var(--eve-accent);
  color: var(--eve-accent);
}
.lightbox-caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--eve-text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
  background: rgba(13, 21, 38, 0.85);
  border: 1px solid var(--eve-border);
  padding: 6px 14px;
  border-radius: 3px;
  max-width: calc(100% - 48px);
  text-align: center;
}
@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body.lightbox-open { overflow: hidden; }

.shot-body { padding: 18px 20px 22px; }

.shot-title {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 6px;
}

.shot-desc {
  font-size: 0.86rem;
  color: var(--eve-text-dim);
  line-height: 1.5;
}

.shots-cta {
  text-align: center;
  margin-top: 36px;
}

/* ─── Features ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--eve-panel);
  border: 1px solid var(--eve-border);
  border-radius: 4px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--eve-accent), transparent);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.feature-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
}

.feature-hook {
  font-size: 0.88rem;
  color: var(--eve-accent);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--eve-text-dim);
  line-height: 1.6;
}

/* ─── Pricing preview ─── */
.pricing-preview {
  padding: 80px 24px;
  background: var(--eve-panel);
  border-top: 1px solid var(--eve-border);
  border-bottom: 1px solid var(--eve-border);
}
.pricing-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.plan-card {
  background: var(--eve-bg);
  border: 1px solid var(--eve-border);
  border-radius: 4px;
  padding: 26px 22px;
  position: relative;
}
.plan-card.featured {
  border-color: var(--eve-accent);
  background: var(--eve-highlight);
}
.plan-card.featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--eve-accent);
  border-radius: 4px 4px 0 0;
}
.plan-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--eve-accent);
  color: #061425;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
}

.plan-name {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eve-text-dim);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-mono);
}
.plan-price small {
  font-size: 0.72rem;
  color: var(--eve-text-dim);
  font-family: var(--font-main);
}

.plan-features {
  margin-top: 16px;
  list-style: none;
  text-align: left;
  padding: 0;
}
.plan-features li {
  font-size: 0.85rem;
  color: var(--eve-text-dim);
  padding: 5px 0;
}
.plan-features li::before { content: "✓ "; color: var(--eve-green); }
.plan-features li.no::before { content: "✗ "; color: var(--eve-red); }
.plan-features li.no { color: #3a5070; }

.plan-cta-row { margin-top: 18px; text-align: center; }

.pricing-hint {
  margin-top: 34px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--eve-text-dim);
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Comparison table ─── */
.cmp-wrap {
  overflow-x: auto;
  border: 1px solid var(--eve-border);
  border-radius: 4px;
  background: var(--eve-panel);
}
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table thead th {
  text-align: left;
  padding: 14px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--eve-text-dim);
  border-bottom: 1px solid var(--eve-border);
  background: #050810;
}
.cmp-table th.cmp-us, .cmp-table td.cmp-us {
  background: rgba(79, 195, 247, 0.06);
  color: var(--eve-accent);
}
.cmp-table tbody tr {
  border-bottom: 1px solid #122036;
}
.cmp-table tbody tr:last-child { border-bottom: none; }
.cmp-table td {
  padding: 12px 18px;
  font-size: 0.9rem;
  color: var(--eve-text);
}
.cmp-yes { color: var(--eve-green); font-weight: 600; }
.cmp-no  { color: #4a5e7a; font-weight: 400; }
.cmp-hint {
  margin-top: 18px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--eve-text-dim);
  font-style: italic;
}
.cmp-hint strong { color: var(--eve-text); font-style: normal; }

/* ─── How it works (3 steps) ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  position: relative;
}

.step {
  background: var(--eve-panel);
  border: 1px solid var(--eve-border);
  border-radius: 4px;
  padding: 26px 22px;
  position: relative;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--eve-accent);
  margin-bottom: 8px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--eve-text-dim);
  line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--eve-border);
  padding: 18px 0;
}
.faq-item:first-child { border-top: 1px solid var(--eve-border); }

.faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.faq-q .marker {
  color: var(--eve-accent);
  font-family: var(--font-mono);
  font-weight: 700;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--eve-text-dim);
  line-height: 1.7;
  padding-left: 22px;
}

/* ─── Final CTA ─── */
.final-cta {
  padding: 80px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(79,195,247,0.10) 0%, transparent 60%),
    var(--eve-bg);
}

.final-cta .btn-hero { margin-top: 18px; }

/* ─── Footer ─── */
.footer-block {
  background: #06090f;
  border-top: 1px solid var(--eve-border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--eve-text-dim);
}
.footer-brand strong { color: #fff; font-weight: 700; }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--eve-text-dim);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--eve-accent); }
.footer-disclaimer {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--eve-text-dim);
  text-align: center;
  font-style: italic;
}
