/* Dashboard Screen Styling - Matches Desktop Reference */

.dashboard-container {
  max-width: 1480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 36px 20px;
  position: relative;
  z-index: 1;
}

/* Header Area */
.dashboard-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(92, 36, 184, 0.15));
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

.brand-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: #3b286d;
  margin-top: 6px;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.live-clock-card {
  text-align: right;
  padding-right: 18px;
  border-right: 2px solid rgba(147, 51, 234, 0.25);
}

.live-clock-time {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: #1e1b4b;
  letter-spacing: -0.5px;
}

.live-clock-date {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-top: 2px;
}

.vertical-slogan {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #475569;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 24px;
}

.hero-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.hero-title .highlight-flight {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #c026d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
}

.hero-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-pill-indicator {
  width: 36px;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

/* Action Toolbar (Search & Filter) */
.dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
}

.search-box-wrapper {
  position: relative;
  min-width: 280px;
  max-width: 360px;
  flex: 1;
}

.search-box-input {
  width: 100%;
  padding: 10px 18px 10px 42px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid rgba(203, 213, 225, 0.8);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-smooth);
}

.search-box-input:focus {
  border-color: var(--accent-violet);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.category-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-pill {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.category-pill:hover,
.category-pill.active {
  background: #7c3aed;
  color: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Founder Cards Grid: 3 Rows x 5 Cols */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

/* Folder Card Style */
.founder-folder-card {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

/* Top Folder Tab Shape */
.folder-tab-top {
  width: 96px;
  height: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-radius: 10px 10px 0 0;
  margin-left: 4px;
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
}

.folder-card-body {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 0 16px 16px 16px;
  padding: 10px;
  box-shadow: 0 10px 25px -5px rgba(109, 40, 217, 0.08), 0 3px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.founder-folder-card.active-featured .folder-tab-top,
.founder-folder-card.active-featured .folder-card-body,
.founder-folder-card:hover .folder-tab-top,
.founder-folder-card:hover .folder-card-body {
  border-color: #a855f7;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.45), 0 12px 32px rgba(109, 40, 217, 0.2);
}

.founder-folder-card:hover {
  transform: translateY(-6px);
}

.founder-folder-card.active-featured {
  transform: translateY(-3px);
}

.founder-card-image-wrap {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}

.founder-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.founder-folder-card:hover .founder-card-img {
  transform: scale(1.06);
}

/* Card Footer */
.founder-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px 4px;
}

.founder-card-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-right: 8px;
}

.founder-company-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.founder-category-tag {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.founder-arrow-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.founder-folder-card:hover .founder-arrow-btn,
.founder-folder-card.active-featured .founder-arrow-btn {
  background: #7c3aed;
  color: #ffffff;
  border-color: #7c3aed;
  transform: translateX(3px);
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.4);
}

/* Bottom Tagline & Side Slogans */
.dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(147, 51, 234, 0.15);
}

.footer-left-slogan,
.footer-right-slogan {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #475569;
  text-transform: uppercase;
  line-height: 1.4;
}

.footer-center-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: #3b286d;
  text-transform: uppercase;
}

.footer-pill-dot {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 2px;
}

/* Responsive Grid */
@media (max-width: 1280px) {
  .founders-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .founders-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dashboard-header {
    grid-template-columns: 1fr auto;
  }
  .header-left {
    display: none;
  }
}

@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .hero-title {
    font-size: 28px;
  }
  .dashboard-container {
    padding: 16px;
  }
}
