/* ── FOUNDING-5 PAGE STYLES ──────────────────────────────────────── */
/* All classes prefixed f5- to avoid collisions with theme.css        */

/* NAV */
.f5-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);
  padding: 0 24px;
}
.f5-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.f5-nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.f5-nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.f5-nav-cta:hover { opacity: 0.8; }

/* HERO */
.f5-hero {
  padding: 80px 24px 72px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.f5-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}
.f5-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(255,68,0,0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.f5-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--fg);
  margin-bottom: 20px;
}
.f5-highlight { color: var(--accent); }
.f5-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* SLOT COUNTER */
.f5-slots {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 32px;
}
.f5-slots-bar {
  display: flex;
  gap: 10px;
  align-items: center;
}
.f5-slot-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: background 0.3s;
}
.f5-slot-dot.open  { background: var(--accent); box-shadow: 0 0 8px rgba(255,68,0,0.5); }
.f5-slot-dot.taken { background: rgba(255,255,255,0.1); border: 1px solid var(--border); }
.f5-slots-label {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}
.f5-slots-label strong { color: var(--accent); }
.f5-slots-full { color: var(--fg-muted); }
.f5-slots-full a { color: var(--accent); text-decoration: none; }

.f5-hero-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 6px;
  transition: opacity 0.15s, transform 0.1s;
}
.f5-hero-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* SHARED INNER */
.f5-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.f5-section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 40px;
  max-width: 560px;
}

/* BENEFITS */
.f5-benefits {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.f5-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.f5-benefit-card {
  background: var(--bg2);
  padding: 32px 28px;
}
.f5-benefit-card:nth-child(even) { background: #111116; }
.f5-benefit-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.f5-benefit-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.f5-benefit-card p { color: var(--fg-muted); font-size: 14px; line-height: 1.65; }

/* CONCEPTS */
.f5-concepts {
  padding: 80px 24px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.f5-concepts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.f5-concept-card {
  background: var(--bg);
  padding: 28px 22px;
}
.f5-concept-card:nth-child(even) { background: #111116; }
.f5-niche-tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(255,68,0,0.2);
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.f5-concept-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.f5-concept-card p { color: var(--fg-muted); font-size: 13px; line-height: 1.65; }

/* RISK REVERSAL */
.f5-risk {
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
}
.f5-risk-card {
  background: rgba(255,68,0,0.04);
  border: 1px solid rgba(255,68,0,0.2);
  border-radius: 12px;
  padding: 36px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 860px;
}
.f5-risk-icon { font-size: 32px; flex-shrink: 0; }
.f5-risk-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.f5-risk-card p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; margin-bottom: 8px; }
.f5-risk-sub { font-size: 13px !important; color: rgba(138,138,154,0.7) !important; }

/* PLANS */
.f5-plans {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.f5-plans-sub {
  color: var(--fg-muted);
  font-size: 16px;
  margin-bottom: 48px;
  margin-top: -28px;
  max-width: 520px;
}
.f5-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: stretch;
}
.f5-tier {
  background: var(--bg2);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.f5-tier:nth-child(1) { background: #111116; }
.f5-tier:nth-child(3) { background: #0E0E13; }
.f5-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.12) inset;
}
.f5-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: 20px;
  align-self: flex-start;
}
.f5-tier-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.f5-tier-price-block { margin-bottom: 24px; }
.f5-tier-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.f5-tier-price span { font-size: 18px; font-weight: 500; color: var(--fg-muted); }
.f5-tier-was {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-top: 4px;
}
.f5-tier-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.f5-tier-features li {
  font-size: 14px;
  color: var(--fg);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.f5-tier-features li:last-child { border-bottom: none; }
.f5-tier-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  margin-top: auto;
}
.f5-tier-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.f5-tier-btn--primary { background: var(--accent); color: #fff; }
.f5-tier-btn--outline { border: 1px solid var(--border); color: var(--fg); }
.f5-tier-btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.f5-plans-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 24px;
}

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

/* SUCCESS PAGE */
.f5-success { padding: 80px 24px; min-height: 60vh; }
.f5-success-inner { max-width: 680px; margin: 0 auto; }
.f5-success-icon { font-size: 48px; margin-bottom: 24px; }
.f5-success-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}
.f5-success-sub {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.f5-success-steps { display: flex; flex-direction: column; gap: 0; }
.f5-success-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.f5-success-step:first-child { border-top: 1px solid var(--border); }
.f5-success-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(255,68,0,0.3);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.f5-success-step strong { display: block; margin-bottom: 4px; font-size: 15px; }
.f5-success-step span { color: var(--fg-muted); font-size: 14px; line-height: 1.6; }

/* STICKY MOBILE CTA BAR */
.f5-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 200;
}
.f5-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.f5-sticky-left { display: flex; flex-direction: column; gap: 1px; }
.f5-sticky-left strong { font-size: 14px; }
.f5-sticky-sub { font-size: 12px; color: var(--fg-muted); }
.f5-sticky-btn {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .f5-benefits-grid { grid-template-columns: 1fr; }
  .f5-concepts-grid { grid-template-columns: 1fr 1fr; }
  .f5-tiers-grid { grid-template-columns: 1fr; }
  .f5-risk-card { flex-direction: column; padding: 28px 24px; }
  .f5-sticky-bar { display: block; }
  body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
  .f5-concepts-grid { grid-template-columns: 1fr; }
}
