/* ═══════════════════════════════════════════════════════════════
   RBL1 — Redesign: Light, Bold, Minimalistic
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: opacity .2s; }
a:hover { opacity: 0.85; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid #eee;
  transition: transform 0.35s ease;
}
.navbar.navbar-hidden {
  transform: translateY(-100%);
}
.navbar .logo img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-links a:hover { color: #111; opacity: 1; }
.nav-links .btn-join {
  background: #e8530e;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.nav-links .btn-join:hover { background: #d14a0b; opacity: 1; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #111; transition: all .3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 24px 6%;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: 160px 6% 100px;
  text-align: center;
  background: #fff;
  position: relative;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #111;
}
.hero .tagline {
  font-size: clamp(16px, 2.5vw, 22px);
  color: #777;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero .btn-cta {
  display: inline-block;
  background: #e8530e;
  color: #fff;
  padding: 16px 48px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.hero .btn-cta:hover { background: #d14a0b; opacity: 1; transform: translateY(-1px); }

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 100px 6%; }
.section-gray { background: #f8f8f8; }
.section-dark { background: #111; color: #fff; }
.section-center { text-align: center; }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.orange { color: #e8530e; }
.section-subtitle {
  font-size: 17px;
  color: #777;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: #e8530e;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: #d14a0b; opacity: 1; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #111;
  padding: 14px 36px;
  border-radius: 8px;
  border: 2px solid #111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all .2s;
}
.btn-outline:hover { background: #111; color: #fff; opacity: 1; }

.section-dark .btn-outline {
  color: #fff;
  border-color: #fff;
}
.section-dark .btn-outline:hover {
  background: #fff;
  color: #111;
}

/* ── Path Cards (Investors / Founders split) ─────────────────── */
.path-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}
.path-card {
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  flex: 1 1 360px;
  max-width: 460px;
  transition: border-color .3s, box-shadow .3s;
}
.path-card:hover {
  border-color: #e8530e;
  box-shadow: 0 8px 32px rgba(232, 83, 14, 0.08);
}
.path-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.path-card p {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Partners / Logo Bar ─────────────────────────────────────── */
.partners {
  padding: 48px 6%;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.partners-label {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 600;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.partners-grid img {
  height: 28px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: opacity .3s;
}
.partners-grid img:hover { opacity: 0.7; }

/* ── Value Props Grid ────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.value-card {
  padding: 36px 28px;
  border-radius: 12px;
  background: #f8f8f8;
  border: 1px solid #eee;
  text-align: left;
  transition: border-color .3s;
}
.value-card:hover { border-color: #e8530e; }
.value-card .value-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #e8530e;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}
.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.value-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ── Steps (Apply / Match / Connect) ─────────────────────────── */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}
.step-card {
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  padding: 40px 24px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}
.step-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonial {
  padding: 80px 6%;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial blockquote {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial .author { font-size: 16px; font-weight: 700; color: #111; }
.testimonial .role { font-size: 14px; color: #999; margin-top: 4px; }

/* ── Team ────────────────────────────────────────────────────── */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
}
.team-card { text-align: center; max-width: 340px; }
.team-card img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e8530e;
  margin: 0 auto 20px;
  transition: transform .3s;
}
.team-card img:hover { transform: scale(1.05); }
.team-card h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.team-card .team-role {
  font-size: 13px;
  font-weight: 600;
  color: #e8530e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.team-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ── Speaker Logos ────────────────────────────────────────────── */
.speaker-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.speaker-logos span {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.3px;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  padding: 100px 6%;
  text-align: center;
  background: #111;
  color: #fff;
}
.cta-banner h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px;
  color: #999;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary { padding: 16px 48px; font-size: 15px; }

/* ── Program Cards ───────────────────────────────────────────── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.program-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: left;
  transition: border-color .3s, box-shadow .3s;
}
.program-card:hover {
  border-color: #e8530e;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.program-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.program-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}
.program-card .program-link {
  font-size: 13px;
  font-weight: 700;
  color: #e8530e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.program-card .program-link:hover { opacity: 0.7; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  padding: 40px 6%;
  background: #fafafa;
  border-top: 1px solid #eee;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.footer-links a:hover { color: #111; }
.footer-copy { font-size: 12px; color: #bbb; }
.footer-icon { width: 24px; height: 24px; }
.footer-subscribe {
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.footer-subscribe p { font-size: 13px; color: #999; margin-bottom: 12px; }
.subscribe-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
}
.subscribe-form input {
  flex: 1;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #111;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.subscribe-form input:focus { border-color: #e8530e; }
.subscribe-form input::placeholder { color: #bbb; }
.subscribe-form button {
  background: #e8530e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .2s;
}
.subscribe-form button:hover { background: #d14a0b; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 140px 6% 80px; }
  .section { padding: 72px 6%; }
  .team-grid { gap: 40px; }
  .team-card img { width: 140px; height: 140px; }
  .value-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .path-card { padding: 40px 28px; }
  .cta-banner { padding: 72px 6%; }
}
