/* ═══════════════════════════════════════════════
   APEX COACH — Landing Page Styles
   Marketing site: nav, hero, features, pricing
   ═══════════════════════════════════════════════ */

/* ── Landing Nav ── */
.land-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(7, 9, 10, .88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  z-index: 200;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text-1); }

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ── Hero ── */
.land-hero {
  padding: 148px 56px 80px;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 76px;
  line-height: .92;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-title .hi { color: var(--accent); }

.hero-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}
.h-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
}
.h-stat-lbl {
  font-size: 11px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
}

/* ── Mock Preview ── */
.hero-preview {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  overflow: hidden;
}
.preview-topbar {
  background: var(--surface-2);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 6px;
  align-items: center;
}
.pdot { width: 10px; height: 10px; border-radius: 50%; }
.pr { background: #F87171; }
.py { background: #FBBF24; }
.pg { background: #4ADE80; }
.preview-body { padding: 20px; }
.p-label {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-2);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.p-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.p-stat {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 10px 12px;
}
.p-num {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}
.p-lbl {
  font-size: 10px;
  color: var(--text-2);
  margin-top: 2px;
}
.p-clients {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.p-client {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.p-name { font-size: 11px; font-weight: 600; }
.p-goal { font-size: 10px; color: var(--text-2); }
.p-pill {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  background: rgba(74,222,128,.13);
  color: var(--success);
}

/* ── Sections ── */
.land-section {
  padding: 80px 56px;
  max-width: 1260px;
  margin: 0 auto;
}
.sec-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 52px;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s;
}
.feat-card:hover { border-color: var(--border-2); }
.feat-ico {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 16px;
}
.feat-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.price-card.featured { border-color: var(--accent); }
.price-top-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #080A0A;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .4px;
}
.price-plan {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.price-val {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  margin-bottom: 4px;
}
.price-val sup { font-size: 18px; vertical-align: super; }
.price-period {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 20px;
}
.price-div { height: 1px; background: var(--border); margin: 18px 0; }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.price-features li {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 9px;
}
.chk {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(74,222,128,.13);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

/* ── CTA & Footer ── */
.land-cta {
  text-align: center;
  padding: 80px 56px;
  border-top: 1px solid var(--border);
}
.land-footer {
  border-top: 1px solid var(--border);
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--text-2);
  font-size: 12px;
  transition: color .15s;
}
.footer-links a:hover { color: var(--text-1); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .land-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .land-hero {
    padding: 100px 24px 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title { font-size: 56px; }
  .land-section { padding: 60px 24px; }
  .sec-title { font-size: 40px; }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .land-footer { flex-direction: column; gap: 16px; padding: 24px; }
}
