/* ============================================
   ENKORE CAPITAL — MAIN STYLESHEET
   ============================================ */

:root {
  --gold: #E8A020;
  --gold-light: #F5B84C;
  --gold-dark: #C8881A;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --gray-1: #F8F9FA;
  --gray-2: #F0F1F3;
  --gray-3: #E0E2E6;
  --gray-4: #9CA3AF;
  --text: #1A1A2E;
  --text-light: #4B5563;
  --white: #FFFFFF;
  --green: #22C55E;
  --red: #EF4444;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 18px;
  cursor: pointer; color: var(--gray-4);
}

.modal-logo { margin-bottom: 24px; }

.modal-box h2 { font-size: 22px; margin-bottom: 16px; color: var(--text); }
.modal-box p { margin-bottom: 12px; font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============ NAVBAR ============ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}

.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  height: 84px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo img { height: 72px; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover { color: var(--gold); background: rgba(232,160,32,0.1); }

.nav-phone { color: var(--gold) !important; }

.nav-login {
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 6px 14px !important;
  border-radius: 6px !important;
}

.nav-hamburger {
  display: none;
  background: none; border: none;
  color: white; font-size: 24px; cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile.open { display: flex; }

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font);
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font);
}

.btn-ghost:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* ============ HERO ============ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #0A0A0A 100%);
  background-image: url('/assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex; align-items: center;
  padding-top: 84px;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(26,26,46,0.75) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 24px;
  max-width: 760px;
  padding-left: 80px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

#hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-gold { color: var(--gold); }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex; gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.stat-item { }

.stat-value {
  font-size: 32px; font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-ctas {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-avatars {
  display: flex; align-items: center; gap: 12px;
}

.avatar-group { display: flex; }

.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--dark);
  margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.hero-avatars span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============ SECTIONS ============ */
.section-light { background: var(--gray-1); padding: 100px 0; }
.section-white { background: var(--white); padding: 100px 0; }
.section-dark { background: var(--dark); padding: 100px 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.text-gold-label { color: var(--gold); }

.section-intro {
  font-size: 17px;
  color: var(--text-light);
  max-width: 700px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.gold-line {
  width: 48px; height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

.about-left p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.fund-structure-box {
  background: var(--gray-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 24px;
}

.fund-structure-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}

.fund-structure-box p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon { font-size: 24px; margin-bottom: 10px; }

.feature-card h4 {
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px; color: var(--text-light);
  line-height: 1.6;
}

/* ============ FUND STATS ============ */
.fund-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.fund-stat-card {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
}

.fund-stat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.fund-stat-icon { font-size: 28px; margin-bottom: 12px; }

.fund-stat-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.fund-stat-value {
  font-size: 28px; font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}

.fund-stat-sub {
  font-size: 12px; color: var(--text-light);
}

/* ============ CAPITAL RAISE ============ */
.capital-raise-section { margin-bottom: 64px; }

.capital-raise-section h3 {
  font-size: 32px; font-weight: 800;
  margin-bottom: 12px;
}

.capital-raise-section > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.phases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.phase-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid;
}

.phase-active {
  background: rgba(232,160,32,0.05);
  border-color: var(--gold);
}

.phase-upcoming {
  background: var(--gray-1);
  border-color: var(--gray-3);
}

.phase-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px;
}

.phase-number {
  font-size: 20px; font-weight: 800;
  color: var(--text);
}

.phase-reg {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.phase-status {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.phase-status.active {
  background: rgba(232,160,32,0.15);
  color: var(--gold);
}

.phase-status.upcoming {
  background: var(--gray-3);
  color: var(--text-light);
}

.phase-details { margin-bottom: 16px; }

.phase-detail {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 6px;
}

.phase-desc {
  font-size: 14px; color: var(--text-light);
  line-height: 1.6;
}

.legal-note {
  background: var(--gray-2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-light);
}

/* ============ WATERFALL ============ */
.waterfall-section { margin-bottom: 64px; }

.waterfall-section h3 {
  font-size: 28px; font-weight: 800;
  margin-bottom: 8px;
}

.waterfall-section > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.waterfall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.waterfall-step {
  background: var(--gray-1);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--gold);
}

.waterfall-num {
  font-size: 32px; font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.5;
}

.waterfall-step h4 {
  font-size: 15px; font-weight: 700;
  margin-bottom: 8px;
}

.waterfall-step p {
  font-size: 13px; color: var(--text-light);
  line-height: 1.6;
}

/* ============ WHY INVEST ============ */
.why-invest-section { }

.why-invest-section h3 {
  font-size: 28px; font-weight: 800;
  margin-bottom: 32px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.reason-card {
  background: var(--gray-1);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-3);
  transition: all 0.2s;
}

.reason-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.reason-num {
  font-size: 40px; font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}

.reason-card h4 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 14px; color: var(--text-light);
  line-height: 1.6;
}

/* ============ ANALYTICS ============ */
.charts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.chart-card {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  padding: 28px;
}

.chart-wide { grid-column: span 2; }

.chart-card h4 {
  font-size: 16px; font-weight: 700;
  margin-bottom: 6px;
}

.chart-sub {
  font-size: 12px; color: var(--text-light);
  margin-bottom: 20px;
}

.milestones-section { }

.milestones-section h3 {
  font-size: 28px; font-weight: 800;
  margin-bottom: 8px;
}

.milestones-section > p {
  color: var(--text-light);
  margin-bottom: 28px;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.milestone-card {
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid;
}

.milestone-active {
  background: rgba(232,160,32,0.05);
  border-color: var(--gold);
}

.milestone-upcoming {
  background: var(--white);
  border-color: var(--gray-3);
}

.milestone-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
}

.milestone-title {
  font-size: 15px; font-weight: 700;
  margin-bottom: 4px;
}

.milestone-sub {
  font-size: 12px; color: var(--text-light);
}

.milestone-target {
  font-size: 18px; font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

.milestone-status {
  font-size: 13px;
  margin-bottom: 12px;
}

.milestone-status.active { color: var(--gold); }
.milestone-status.upcoming { color: var(--text-light); }

.milestone-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--dark);
}

.milestone-badge.upcoming {
  background: var(--gray-3);
  color: var(--text-light);
}

.analytics-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px;
}

.analytics-stat { text-align: center; }

.analytics-val {
  font-size: 28px; font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}

.analytics-label {
  font-size: 13px; font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.analytics-sub {
  font-size: 12px; color: rgba(255,255,255,0.5);
}

.disclaimer-text {
  font-size: 12px; color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

/* ============ PROJECTS ============ */
.projects-sort {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  font-size: 14px; color: var(--text-light);
}

.projects-sort select {
  padding: 8px 14px;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--white);
  cursor: pointer;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-card-header {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  padding: 20px;
  position: relative;
  min-height: 140px;
}

.project-card-header-img {
  min-height: 160px;
}

.project-card-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 100%);
  z-index: 0;
}

.project-card-header .project-badge,
.project-card-header .project-location,
.project-card-header .project-type {
  position: relative; z-index: 1;
}

.project-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.project-location {
  font-size: 11px; color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.project-type {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.project-card-body { padding: 20px; }

.project-name {
  font-size: 18px; font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.project-desc {
  font-size: 13px; color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-return {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.project-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}

.project-tag {
  font-size: 11px;
  background: var(--gray-2);
  color: var(--text-light);
  padding: 3px 10px;
  border-radius: 100px;
}

.project-investors {
  font-size: 12px; color: var(--text-light);
  display: flex; align-items: center; gap: 4px;
}

.project-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--gray-3);
  display: flex; justify-content: space-between; align-items: center;
}

.project-detail-link {
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

/* ============ HOW TO INVEST ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all 0.2s;
}

.step-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.step-num {
  font-size: 48px; font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h4 {
  font-size: 16px; font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px; color: var(--text-light);
  line-height: 1.6;
}

.invest-cta {
  text-align: center;
  background: var(--gray-2);
  border-radius: var(--radius);
  padding: 48px;
}

.invest-cta h3 {
  font-size: 28px; font-weight: 800;
  margin-bottom: 12px;
}

.invest-cta p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.team-card {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.2s;
}

.team-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.team-card h4 {
  font-size: 18px; font-weight: 800;
  margin-bottom: 6px;
}

.team-title {
  font-size: 13px; color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px; color: var(--text-light);
  line-height: 1.6;
}

.team-note {
  background: var(--gray-1);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 14px; color: var(--text-light);
  line-height: 1.6;
}

.team-note a { color: var(--gold); }

/* ============ REGISTER FORM ============ */
.register-header {
  text-align: center;
  margin-bottom: 48px;
}

.register-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.register-header p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.register-anchor-link {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.register-form-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
}

.form-section-title {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-3);
}

.form-section-title:first-child { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-3);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.btn-group {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}

.btn-group-wrap { flex-wrap: wrap; }

.btn-toggle {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-3);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
  color: var(--text);
}

.btn-toggle:hover { border-color: var(--gold); color: var(--gold); }

.btn-toggle.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

.form-note {
  font-size: 12px; color: var(--text-light);
  margin-top: 6px;
}

.file-upload-area {
  border: 2px dashed var(--gray-3);
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-light);
  font-size: 14px;
}

.file-upload-area:hover { border-color: var(--gold); background: rgba(232,160,32,0.03); }

.file-upload-icon { font-size: 28px; margin-bottom: 8px; }

.file-upload-sub { font-size: 12px; color: var(--gray-4); margin-top: 4px; }

.file-name {
  font-size: 13px; color: var(--gold);
  margin-top: 8px;
  font-weight: 600;
}

.form-disclaimer {
  font-size: 12px; color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.form-success {
  background: rgba(34,197,94,0.1);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.success-icon {
  width: 56px; height: 56px;
  background: var(--green);
  color: white;
  font-size: 24px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 8px;
}

.form-success p { color: var(--text-light); }

.form-error {
  background: rgba(239,68,68,0.1);
  border: 1.5px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--red);
  margin-bottom: 16px;
}

/* ============ FOOTER ============ */
#footer {
  background: var(--dark-2);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img { margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-contact {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 20px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-social { }

.footer-social span {
  font-size: 11px; color: rgba(255,255,255,0.4);
  display: block; margin-bottom: 8px;
}

.social-links { display: flex; gap: 8px; }

.social-links a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 14px; font-weight: 700;
  transition: all 0.2s;
}

.social-links a:hover { background: var(--gold); color: var(--dark); }

.footer-nav h5,
.footer-markets h5,
.footer-details h5 {
  font-size: 13px; font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-nav a,
.footer-markets span,
.footer-details span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.footer-disclaimer p {
  font-size: 11px; color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-badge {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

/* ============ CHAT WIDGET ============ */
.chat-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  z-index: 900;
  overflow: hidden;
  border: 1px solid var(--gray-3);
}

.chat-header {
  background: var(--dark);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}

.chat-avatar {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800; font-size: 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.chat-name {
  font-size: 14px; font-weight: 700;
  color: var(--white);
}

.chat-status {
  font-size: 11px; color: rgba(255,255,255,0.5);
}

.chat-toggle {
  margin-left: auto;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  transition: transform 0.2s;
}

.chat-body { display: none; }
.chat-body.open { display: block; }

.chat-messages {
  padding: 16px;
  max-height: 200px;
  overflow-y: auto;
}

.chat-msg {
  margin-bottom: 12px;
}

.chat-msg.bot p {
  background: var(--gray-1);
  padding: 10px 14px;
  border-radius: 12px 12px 12px 4px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.chat-msg.user p {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 12px 12px 4px 12px;
  font-size: 13px;
  line-height: 1.5;
  margin-left: auto;
  max-width: 85%;
  display: inline-block;
  text-align: right;
  float: right;
  clear: both;
}

.chat-quick-btns {
  padding: 8px 12px;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--gray-3);
}

.chat-quick-btns button {
  background: none;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  text-align: left;
  color: var(--text-light);
  transition: all 0.2s;
  font-family: var(--font);
}

.chat-quick-btns button:hover { border-color: var(--gold); color: var(--gold); }

.chat-input-row {
  display: flex;
  padding: 10px 12px;
  gap: 8px;
  border-top: 1px solid var(--gray-3);
}

.chat-input-row input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font);
  outline: none;
}

.chat-input-row input:focus { border-color: var(--gold); }

.chat-input-row button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
}

.chat-disclaimer {
  font-size: 10px; color: var(--gray-4);
  text-align: center;
  padding: 6px;
}

/* ============ DISCLOSURE MODAL (REDESIGNED) ============ */
.disc-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.72);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.disc-overlay.hidden { display: none; }

.disc-box {
  background: var(--white);
  width: 100%; max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  max-height: 92vh;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

/* Close button */
.disc-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  font-size: 18px; color: rgba(0,0,0,0.45);
  cursor: pointer; z-index: 10;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.disc-close:hover { background: var(--gray-2); color: var(--text); }

/* Logo band */
.disc-logo-band {
  background: var(--white);
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gray-3);
  flex-shrink: 0;
}
.disc-logo-band img { display: block; }

/* Scrollable body */
.disc-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.disc-title {
  font-size: 22px; font-weight: 800;
  color: var(--text); margin-bottom: 16px;
  font-style: italic;
}

.disc-lead {
  font-size: 14px; font-weight: 700;
  color: var(--text); line-height: 1.65;
  margin-bottom: 16px;
}

.disc-text {
  font-size: 14px; font-weight: 400;
  color: #333; line-height: 1.7;
  margin-bottom: 14px;
}
.disc-text:last-child { margin-bottom: 0; }
.disc-text strong { font-weight: 700; color: var(--text); }

/* Sticky CTA footer */
.disc-footer {
  padding: 20px 28px;
  background: var(--white);
  border-top: 1px solid var(--gray-3);
  flex-shrink: 0;
}

.disc-cta {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
.disc-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.disc-cta:active { transform: translateY(0); }

/* ============ STEP BADGE TAG ============ */
.step-badge-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  background: rgba(232,160,32,0.12);
  color: var(--gold);
  border: 1px solid rgba(232,160,32,0.3);
  padding: 4px 12px; border-radius: 100px;
  margin-top: 12px;
}

/* ============ FUND TIMELINE ============ */
.timeline-section {
  margin-bottom: 48px;
}
.timeline-section h3 {
  font-size: 24px; font-weight: 800;
  margin-bottom: 8px;
}
.timeline-section > p {
  color: var(--text-light); margin-bottom: 28px;
}
.timeline-grid {
  position: relative;
  padding-left: 32px;
}
.timeline-grid::before {
  content: '';
  position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-3);
}
.timeline-item {
  display: flex; gap: 20px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gray-3); border: 3px solid var(--white);
  flex-shrink: 0; margin-top: 2px;
  position: absolute; left: -42px;
  box-shadow: 0 0 0 3px var(--gray-3);
}
.timeline-dot.active {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.3);
}
.timeline-content { padding-left: 4px; }
.timeline-date {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 4px;
}
.timeline-title {
  font-size: 15px; font-weight: 600; color: var(--text);
}
.timeline-badge-you {
  display: inline-block; margin-top: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  background: var(--gold); color: var(--dark);
  padding: 2px 10px; border-radius: 100px;
}
.timeline-item.timeline-active .timeline-title { color: var(--gold); }

/* ============ JV NOTE ============ */
.jv-note {
  background: var(--gray-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 32px;
}

/* ============ TEAM LIST ============ */
.team-list {
  list-style: none; padding: 0; margin-top: 14px;
}
.team-list li {
  font-size: 13px; color: var(--text-light);
  padding: 6px 0; border-bottom: 1px solid var(--gray-3);
  display: flex; align-items: center; gap: 8px;
}
.team-list li::before {
  content: '✓'; color: var(--gold); font-weight: 700; font-size: 12px;
}
.team-list li:last-child { border-bottom: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .fund-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .waterfall-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding-left: 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-stats { gap: 20px; }
  .hero-ctas { flex-direction: column; }
  .phases-grid { grid-template-columns: 1fr; }
  .charts-grid { grid-template-columns: 1fr; }
  .chart-wide { grid-column: span 1; }
  .milestones-grid { grid-template-columns: 1fr; }
  .analytics-summary { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .register-form-container { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .chat-widget { width: calc(100vw - 32px); right: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .waterfall-grid { grid-template-columns: 1fr; }
  .fund-stats-grid { grid-template-columns: 1fr; }
}
