/* ── NICHE LANDING PAGE SHARED STYLES ─────────────────────────────────── */

/* NAV */
.niche-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.niche-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.niche-nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.niche-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.niche-nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.niche-nav-links a:hover { color: var(--fg); }
.niche-nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: opacity 0.15s;
}
.niche-nav-cta:hover { opacity: 0.85; }

/* HERO */
.niche-hero {
  padding: 80px 24px 72px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.niche-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.niche-hero-content { position: relative; z-index: 1; }
.niche-overline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.niche-icon { font-size: 20px; }
.niche-overline-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.niche-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 20px;
}
.niche-hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}
.niche-slots { margin-bottom: 28px; }
.niche-slots-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.niche-slot-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: background 0.2s;
}
.niche-slot-dot.open { border-color: var(--accent); }
.niche-slot-dot.taken {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 0.6;
}
.niche-slots-label {
  font-size: 14px;
  color: var(--fg-muted);
}
.niche-slots-label strong { color: var(--fg); }
.niche-slots-label-soldout {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.niche-slots-label-soldout a { color: var(--accent); }
.niche-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.niche-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.niche-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.niche-btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s;
}
.niche-btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.niche-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* SOCIAL PROOF */
.niche-social-proof {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.niche-social-proof-text {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--fg-muted);
}
.niche-social-proof-text span { font-weight: 600; }
.niche-social-proof-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.niche-social-proof-link:hover { text-decoration: underline; }

/* CONCEPTS */
.niche-concepts {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.niche-inner { max-width: 1100px; margin: 0 auto; }
.niche-section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 12px;
}
.niche-section-sub {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 40px;
}
.niche-concepts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}
.niche-concept-card {
  background: var(--bg2);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.niche-concept-card:nth-child(even) { background: #111116; }
.niche-concept-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 4px;
  flex-shrink: 0;
}
.niche-concept-body { flex: 1; }
.niche-concept-hook {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.3;
}
.niche-concept-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.niche-concept-format {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.niche-concept-outcome {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.niche-concepts-cta { text-align: center; padding-top: 8px; }
.niche-text-link {
  color: var(--accent);
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}
.niche-text-link:hover { text-decoration: underline; }

/* WHY IT WORKS */
.niche-why {
  padding: 80px 24px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.niche-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 36px;
}
.niche-why-item {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.niche-why-item:nth-child(even) { background: #111116; }
.niche-why-icon { color: var(--accent); font-size: 18px; flex-shrink: 0; padding-top: 2px; }
.niche-why-text { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* FOUNDING 5 PRICING */
.niche-f5 {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.niche-f5-sub {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}
.niche-accent { color: var(--accent); }
.niche-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 24px;
}
.niche-tier {
  background: var(--bg2);
  padding: 32px 24px;
  position: relative;
}
.niche-tier:nth-child(1) { background: #111116; }
.niche-tier:nth-child(3) { background: #0E0E13; }
.niche-tier--featured {
  background: #18181F !important;
  border: 1px solid rgba(255, 68, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 68, 0, 0.15) inset;
}
.niche-tier-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.niche-tier-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.niche-tier-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.niche-tier-price span { font-size: 18px; font-weight: 500; color: var(--fg-muted); }
.niche-tier-was {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-bottom: 20px;
}
.niche-tier-features { list-style: none; margin-bottom: 24px; }
.niche-tier-features li {
  font-size: 14px;
  color: var(--fg);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.niche-tier-features li:last-child { border-bottom: none; }
.niche-tier-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  margin-top: auto;
}
.niche-tier-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.niche-tier-btn--primary { background: var(--accent); color: #fff; }
.niche-tier-btn--outline { border: 1px solid var(--border); color: var(--fg); }
.niche-tier-btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.niche-tiers-note {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.niche-tiers-note a { color: var(--accent); }

/* WAITLIST */
.niche-waitlist {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.niche-waitlist-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
}
.niche-waitlist-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.niche-waitlist-card p {
  color: var(--fg-muted);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* STICKY BAR */
.niche-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(12, 12, 15, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
}
.niche-sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.niche-sticky-left { display: flex; flex-direction: column; }
.niche-sticky-left strong { font-size: 14px; font-weight: 600; }
.niche-sticky-sub { font-size: 12px; color: var(--fg-muted); }
.niche-sticky-btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.niche-sticky-btn:hover { opacity: 0.85; }

/* MOBILE */
@media (max-width: 900px) {
  .niche-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .niche-hero-img { height: 240px; }
  .niche-concepts-grid { grid-template-columns: 1fr; }
  .niche-why-grid { grid-template-columns: 1fr; }
  .niche-tiers-grid { grid-template-columns: 1fr; }
  .niche-hero-ctas { flex-direction: column; }
  .niche-hero-ctas .niche-btn-primary,
  .niche-hero-ctas .niche-btn-secondary { text-align: center; }
  .niche-nav-links a:not(.niche-nav-cta) { display: none; }
  body { padding-bottom: 64px; } /* space for sticky bar */
}