/* Hustlers Network — premium entrepreneurship course */
:root {
  --brand-font: "Poppins", system-ui, sans-serif;
  --brand-bg: #0a0a0f;
  --brand-text: #f4f4f5;
  --brand-primary: #f5c518;
  --brand-primary-hover: #e6b800;
  --brand-announcement-bg: #111118;
  --brand-announcement-text: #f5c518;
  --brand-nav-bg: #0a0a0f;
  --brand-section-bg: #12121a;
  --brand-footer-bg: #050508;
  --brand-footer-text: #a1a1aa;
  --brand-cta-text: #0a0a0f;
}

.brand-site { background: var(--brand-bg); color: var(--brand-text); }
.brand-site .navbar { border-bottom: 1px solid #27272a; }
.brand-site .navbar ul li a { color: #e4e4e7; }
.brand-site .navbar ul li a.nav-primary { color: var(--brand-primary); }
.brand-site .logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--brand-primary);
  text-decoration: none;
}
.brand-site .hero {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f18 100%);
  min-height: 72vh;
}
.brand-site .hero h1 { text-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.brand-site .intro-copy { color: #d4d4d8; font-size: 1.2em; max-width: 900px; }
.brand-site .course-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 32px 6vw 48px;
  background: #12121a;
  border-bottom: 1px solid #27272a;
}
.brand-site .stat {
  text-align: center;
  padding: 16px 28px;
  background: #18181f;
  border: 1px solid #3f3f46;
  border-radius: 12px;
  min-width: 140px;
}
.brand-site .stat strong { display: block; font-size: 28px; color: var(--brand-primary); }
.brand-site .stat span { font-size: 13px; color: #a1a1aa; text-transform: uppercase; letter-spacing: 0.08em; }
.brand-site .course-curriculum { max-width: 1100px; margin: 0 auto; padding: 48px 6vw 80px; }
.brand-site .course-curriculum > h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
  color: var(--brand-primary);
}
.brand-site .course-curriculum > .sub {
  text-align: center;
  color: #a1a1aa;
  margin-bottom: 48px;
  font-size: 16px;
}
.brand-site .course-module {
  margin-bottom: 40px;
  padding: 28px 32px;
  background: #14141c;
  border: 1px solid #27272a;
  border-radius: 16px;
}
.brand-site .module-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #27272a;
}
.brand-site .module-head h3 { margin: 0; font-size: 22px; color: #fff; flex: 1; }
.brand-site .module-meta { font-size: 13px; color: var(--brand-primary); font-weight: 600; }
.brand-site .module-desc { color: #a1a1aa; font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.brand-site .video-list { list-style: none; margin: 0; padding: 0; }
.brand-site .video-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #1f1f28;
  font-size: 14px;
}
.brand-site .video-list li:last-child { border-bottom: none; }
.brand-site .vid-num {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: #27272a;
  color: var(--brand-primary);
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
}
.brand-site .vid-title { font-weight: 600; color: #fafafa; margin-bottom: 4px; }
.brand-site .vid-outcome { color: #71717a; line-height: 1.45; font-size: 13px; }
.brand-site .vid-dur {
  font-size: 12px;
  color: #a1a1aa;
  white-space: nowrap;
  padding: 4px 10px;
  background: #1f1f28;
  border-radius: 6px;
}
.brand-site .pricing-block {
  text-align: center;
  padding: 64px 6vw;
  background: linear-gradient(180deg, #12121a, #0a0a0f);
  border-top: 1px solid #27272a;
}
.brand-site .pricing-block h2 { font-size: 28px; margin-bottom: 12px; }
.brand-site .pricing-block .price-tag {
  font-size: 42px;
  font-weight: 800;
  color: var(--brand-primary);
  margin: 16px 0;
}
.brand-site .pricing-block p { max-width: 560px; margin: 0 auto 24px; color: #a1a1aa; line-height: 1.6; }
.brand-site .feature-card { background: #18181f; color: #e4e4e7; }
.brand-site .feature-card h3 { color: var(--brand-primary); }
.brand-site .review-card { background: #18181f; border-color: #3f3f46; color: #e4e4e7; }
