/* =============================================
   LaunchPad Hub - Custom Styles
   Design: Dark Futuristic with Electric Accents
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #FF6B35;
  --primary-dark: #e5521c;
  --accent: #00F5D4;
  --accent2: #B829FF;
  --dark: #0A0A0F;
  --dark-2: #111118;
  --dark-3: #1A1A25;
  --dark-4: #22222F;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --text-primary: #F0F0F8;
  --text-secondary: #9898B0;
  --text-muted: #5A5A72;
  --border: rgba(255,255,255,0.07);
  --card-radius: 16px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-glow: 0 0 40px rgba(255,107,53,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; }

::selection { background: var(--primary); color: white; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--dark-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── Utility Classes ── */
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted-custom { color: var(--text-secondary) !important; }
.bg-dark-custom { background: var(--dark-3) !important; }
.font-display { font-family: var(--font-display) !important; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.25);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #FF9A5C 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navigation ── */
.navbar {
  background: rgba(10,10,15,0.85) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.navbar .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--text-primary) !important;
  background: var(--glass);
}

.btn-nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

/* ── Hero Section ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,245,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary-custom {
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}

.btn-outline-custom {
  background: transparent;
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--glass);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.7s ease 0.4s both;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-card-float {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  animation: float 4s ease-in-out infinite;
}

.hero-card-float.card-1 { animation-delay: 0s; }
.hero-card-float.card-2 { animation-delay: 1.5s; transform: translateY(-20px); }
.hero-card-float.card-3 { animation-delay: 0.8s; }

.startup-badge {
  background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(0,245,212,0.1));
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.funding-pill {
  background: rgba(0,245,212,0.1);
  border: 1px solid rgba(0,245,212,0.2);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Cards ── */
.hub-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 28px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hub-card:hover {
  border-color: rgba(255,107,53,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.hub-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Section Styling ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* ── Process Steps ── */
.process-step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ── Mentors ── */
.mentor-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.mentor-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-4px);
}

.mentor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 16px;
  border: 3px solid var(--dark-4);
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-quote {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.stars { color: #FFB800; letter-spacing: 2px; }

/* ── Events ── */
.event-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.event-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-4px);
}

.event-type-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Forms ── */
.hub-form-control {
  background: var(--dark-4) !important;
  border: 1px solid var(--glass-border) !important;
  color: var(--text-primary) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.hub-form-control:focus {
  border-color: rgba(255,107,53,0.5) !important;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1) !important;
  background: var(--dark-3) !important;
  outline: none;
}

.hub-form-control::placeholder { color: var(--text-muted) !important; }

.hub-form-label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.hub-form-select {
  background: var(--dark-4) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239898B0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") right 12px center/16px auto no-repeat !important;
  border: 1px solid var(--glass-border) !important;
  color: var(--text-primary) !important;
  border-radius: 10px !important;
  padding: 12px 40px 12px 16px !important;
  -webkit-appearance: none;
}

/* ── Auth Pages ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 65%);
}

.auth-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

/* ── Dashboard ── */
.dashboard-sidebar {
  background: var(--dark-2);
  border-right: 1px solid var(--glass-border);
  min-height: 100vh;
  width: 260px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 0;
  transition: transform 0.3s ease;
}

.sidebar-brand {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.sidebar-brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-nav { padding: 20px 12px; }

.sidebar-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 16px 12px 8px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 3px;
  border: 1px solid transparent;
}

.sidebar-item:hover {
  background: var(--glass);
  color: var(--text-primary);
  border-color: var(--glass-border);
}

.sidebar-item.active {
  background: rgba(255,107,53,0.12);
  color: var(--primary);
  border-color: rgba(255,107,53,0.2);
}

.sidebar-item i { font-size: 1.1rem; width: 20px; text-align: center; }

.dashboard-main {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--dark);
}

.dashboard-header {
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 99;
}

.dashboard-content { padding: 32px; }

/* ── Stats Cards ── */
.stat-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card:hover { transform: translateY(-2px); }

.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.stat-card-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ── Tables ── */
.hub-table {
  width: 100%;
  border-collapse: collapse;
}

.hub-table th {
  background: var(--dark-4);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 16px;
  border: none;
  white-space: nowrap;
}

.hub-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.9rem;
  vertical-align: middle;
}

.hub-table tbody tr:hover { background: var(--glass); }

.hub-table-wrapper {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  overflow: hidden;
}

/* ── Badges ── */
.badge-custom {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-success { background: rgba(0,245,212,0.12); color: var(--accent); }
.badge-warning { background: rgba(255,184,0,0.12); color: #FFB800; }
.badge-danger  { background: rgba(255,77,77,0.12);  color: #FF4D4D; }
.badge-info    { background: rgba(69,183,209,0.12); color: #45B7D1; }
.badge-primary { background: rgba(255,107,53,0.12); color: var(--primary); }

/* ── Progress Bar ── */
.hub-progress {
  background: var(--dark-4);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}

.hub-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  transition: width 0.8s ease;
}

/* ── Milestone ── */
.milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.milestone-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── Notification Bell ── */
.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid var(--dark-2);
}

/* ── Avatar ── */
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.footer-link:hover { color: var(--primary); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-btn:hover {
  background: rgba(255,107,53,0.12);
  color: var(--primary);
  border-color: rgba(255,107,53,0.3);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,107,53,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,107,53,0.6); }
}

.animate-fade-up { animation: fadeInUp 0.6s ease both; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
    z-index: 200;
  }
  .dashboard-sidebar.open { transform: translateX(0); }
  .dashboard-main { margin-left: 0; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 768px) {
  .auth-card { padding: 32px 24px; }
  .dashboard-content { padding: 20px; }
  .section { padding: 60px 0; }
  .hero-title { font-size: 2.5rem; }
}

/* ── Custom Bootstrap overrides ── */
.btn { font-family: var(--font-body); font-weight: 600; }
.alert { border-radius: 12px; border: none; }
.alert-success { background: rgba(0,245,212,0.1); color: var(--accent); }
.alert-danger   { background: rgba(255,77,77,0.1);  color: #FF4D4D; }
.alert-warning  { background: rgba(255,184,0,0.1);  color: #FFB800; }
.alert-info     { background: rgba(69,183,209,0.1); color: #45B7D1; }

.modal-content {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--text-primary);
}

.modal-header {
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 28px;
}

.modal-footer {
  border-top: 1px solid var(--glass-border);
}

.dropdown-menu {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px;
}

.dropdown-item {
  color: var(--text-secondary);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--glass);
  color: var(--text-primary);
}

.dropdown-divider { border-color: var(--glass-border); }

/* ── Glow pulse on CTA ── */
.pulse-btn { animation: pulse-glow 2.5s ease-in-out infinite; }
