/* BobBoard — landing page styles */
:root {
  --bb-bg: #08080d;
  --bb-surface: #111118;
  --bb-surface2: #18181f;
  --bb-border: rgba(255,255,255,0.07);
  --bb-text: #eee8dc;
  --bb-text-dim: #7a7680;
  --bb-gold: #d4af37;
  --bb-gold-dim: rgba(212,175,55,0.12);
  --bb-green: #10b981;
  --bb-red: #ef4444;
  --bb-blue: #3b82f6;
}

body { background: var(--bb-bg); color: var(--bb-text); font-family: 'DM Sans', system-ui, sans-serif; }

/* ─── Topbar ─── */
.bb-topbar {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--bb-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,13,0.85);
  backdrop-filter: blur(12px);
}
.bb-topbar-logo { font-size: 15px; font-weight: 500; color: var(--bb-text); text-decoration: none; }
.bb-topbar-logo span { color: var(--bb-gold); }
.bb-topbar-nav { display: flex; align-items: center; gap: 2rem; }
.bb-topbar-nav a {
  font-size: 13px; color: var(--bb-text-dim); text-decoration: none;
  transition: color 0.15s;
}
.bb-topbar-nav a:hover, .bb-topbar-nav a.active { color: var(--bb-text); }
.bb-topbar-nav a.active { color: var(--bb-gold); }
.bb-topbar-back { font-size: 13px; color: var(--bb-text-dim); text-decoration: none; }

/* ─── Page Container ─── */
.bb-page { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ─── Hero ─── */
.bb-hero {
  text-align: center;
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--bb-border);
}
.bb-header-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bb-gold);
  background: var(--bb-gold-dim);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.bb-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--bb-text);
  margin-bottom: 0.75rem;
}
.bb-hero h1 span { color: var(--bb-gold); }
.bb-hero-sub {
  font-size: 1.1rem;
  color: var(--bb-text-dim);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.bb-tagline {
  font-size: 0.9rem;
  color: var(--bb-text-dim);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
}
.bb-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bb-gold);
  color: #0c1220;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.bb-hero-cta:hover { background: #e0bc3f; }

/* ─── Legal Notice ─── */
.bb-legal {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 12px;
  color: #b8b0a0;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.bb-legal strong { color: #ef4444; }

/* ─── Section ─── */
.bb-section { padding: 4rem 0; border-bottom: 1px solid var(--bb-border); }
.bb-section:last-of-type { border-bottom: none; }
.bb-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin-bottom: 0.75rem;
}
.bb-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--bb-text);
  margin-bottom: 0.5rem;
}
.bb-section-sub {
  font-size: 0.95rem;
  color: var(--bb-text-dim);
  margin-bottom: 3rem;
}

/* ─── Features Grid ─── */
.bb-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bb-feature-card {
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.bb-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bb-gold), transparent);
  opacity: 0.6;
}
.bb-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--bb-gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 18px;
}
.bb-feature-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--bb-text);
  margin-bottom: 0.5rem;
}
.bb-feature-desc {
  font-size: 12.5px;
  color: var(--bb-text-dim);
  line-height: 1.55;
}

/* ─── Pricing Cards ─── */
.bb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: start;
}
.bb-tier-card {
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}
.bb-tier-card.featured {
  border-color: var(--bb-gold);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.25);
}
.bb-tier-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bb-gold);
  color: #0c1220;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.bb-tier-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--bb-text);
  margin-bottom: 4px;
}
.bb-tier-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--bb-gold);
  margin-bottom: 4px;
  line-height: 1.2;
}
.bb-tier-price small {
  font-size: 0.7em;
  color: var(--bb-text-dim);
  font-family: 'DM Sans', sans-serif;
}
.bb-tier-target {
  font-size: 11px;
  color: var(--bb-text-dim);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bb-border);
}
.bb-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.bb-tier-features li {
  font-size: 12px;
  color: var(--bb-text-dim);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.bb-tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bb-green);
  font-size: 10px;
  font-weight: 700;
  top: 5px;
}
.bb-tier-btn {
  width: 100%;
  padding: 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  text-align: center;
  text-decoration: none;
  display: block;
}
.bb-tier-btn.primary {
  background: var(--bb-gold);
  color: #0c1220;
}
.bb-tier-btn.primary:hover { background: #e0bc3f; }
.bb-tier-btn.outline {
  background: transparent;
  color: var(--bb-text-dim);
  border: 1px solid var(--bb-border);
}
.bb-tier-btn.outline:hover { border-color: var(--bb-gold); color: var(--bb-gold); }

/* ─── Advisors Section ─── */
.bb-advisors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.bb-advisor-card {
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
}
.bb-advisor-icon {
  font-size: 24px;
  margin-bottom: 0.75rem;
  display: block;
}
.bb-advisor-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--bb-text);
  margin-bottom: 0.35rem;
}
.bb-advisor-desc {
  font-size: 12px;
  color: var(--bb-text-dim);
  line-height: 1.5;
}

/* ─── Footer CTA ─── */
.bb-footer-cta {
  text-align: center;
  padding: 5rem 0;
  border-top: 1px solid var(--bb-border);
}
.bb-footer-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--bb-text);
  margin-bottom: 1rem;
}
.bb-footer-cta p {
  font-size: 1rem;
  color: var(--bb-text-dim);
  margin-bottom: 2rem;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .bb-features-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-advisors-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-pricing-grid { grid-template-columns: 1fr 1fr; }
  .bb-hero h1 { font-size: 2.2rem; }
}
@media (max-width: 600px) {
  .bb-features-grid { grid-template-columns: 1fr; }
  .bb-advisors-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-pricing-grid { grid-template-columns: 1fr; }
  .bb-hero { padding: 3rem 0 2rem; }
  .bb-hero h1 { font-size: 1.8rem; }
}