/* Ascentra Premium Dark Glassmorphic Design System */

:root {
  --bg-primary: #0a0b10;
  --bg-secondary: rgba(18, 20, 29, 0.7);
  --bg-tertiary: rgba(30, 32, 45, 0.5);
  
  --accent-purple: #704df4;
  --accent-purple-glow: rgba(112, 77, 244, 0.4);
  --accent-cyan: #00d2ff;
  --accent-cyan-glow: rgba(0, 210, 255, 0.3);
  
  --text-primary: #f1f2f6;
  --text-secondary: #a4a9c6;
  --text-muted: #676b88;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(112, 77, 244, 0.3);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glass-blur: blur(16px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-purple) var(--bg-primary);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
  top: -15%;
  right: -10%;
}

.orb-2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
  bottom: -20%;
  left: -15%;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-purple);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5c3ce0;
}

/* AUTHENTICATION SHIELD */
.auth-panel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px;
  overflow-y: auto;
}

.auth-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 650px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform 0.3s ease;
  margin: auto 0;
}

.auth-brand {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 5px;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.logo-accent {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 25px;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.auth-tab.active {
  color: var(--accent-purple);
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
}

.auth-form {
  display: none;
}

.auth-form.active-form {
  display: block;
}

/* FORMS STYLE */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required {
  color: #ff4757;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(112, 77, 244, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

input[type="file"] {
  background: transparent;
  border: 1px dashed var(--border-color);
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-secondary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  text-transform: none;
  font-size: 13px;
  line-height: 1.5;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), #5c3ce0);
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--accent-purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(112, 77, 244, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.auth-submit-btn {
  width: 100%;
  margin-top: 10px;
}

.hidden {
  display: none !important;
}

/* COMMAND SHELL LAYOUT */
.command-shell {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
  width: 280px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sidebar-header {
  padding: 25px 20px;
  border-bottom: 1px solid var(--border-color);
}

.brand {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.role-badge {
  display: inline-block;
  font-size: 11px;
  background: var(--accent-purple-glow);
  color: var(--accent-cyan);
  padding: 3px 8px;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
}

.sidebar-nav {
  padding: 20px 10px;
  flex-grow: 1;
  overflow-y: auto;
}

.nav-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 10px 5px 10px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all 0.2s ease;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(112, 77, 244, 0.15) 0%, rgba(112, 77, 244, 0.03) 100%);
  color: var(--text-primary);
  border-left: 3px solid var(--accent-purple);
  padding-left: 12px;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.user-profile-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.user-text {
  overflow: hidden;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-email {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-logout {
  width: 100%;
  padding: 8px;
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.2);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background: rgba(255, 71, 87, 0.25);
  color: #ff6b81;
}

/* MAIN CONTENT VIEWPORT */
.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
}

.main-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(10, 11, 16, 0.6);
  backdrop-filter: var(--glass-blur);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 90;
}

.main-header h2 {
  font-size: 22px;
  font-weight: 700;
}

.header-notification-bell {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  color: var(--text-primary);
  font-size: 16px;
}

.header-notification-bell:hover {
  background: rgba(255, 255, 255, 0.08);
}

.notification-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff4757;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
  font-weight: 700;
}

.dashboard-views-container {
  padding: 30px;
  flex-grow: 1;
}

.dashboard-view {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.dashboard-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* PANEL CARD */
.panel-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow-md);
  margin-bottom: 25px;
}

.panel-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.section-actions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: -15px;
  margin-bottom: 25px;
}

/* STATS CARDS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent-purple-glow);
  box-shadow: 0 0 15px rgba(112, 77, 244, 0.15);
  transform: translateY(-2px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* DOUBLE COLUMN ROW */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

@media (max-width: 900px) {
  .grid-2col {
    grid-template-columns: 1fr;
  }
}

.summary-blocks-row {
  display: flex;
  gap: 25px;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

@media (max-width: 900px) {
  .summary-blocks-row {
    flex-direction: column;
  }
}

/* DATA TABLE */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  padding: 12px 15px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 14px 15px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* BADGES */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-pending {
  background: rgba(255, 159, 67, 0.15);
  color: #ff9f43;
}

.badge-approved, .badge-success {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
}

.badge-rejected, .badge-error {
  background: rgba(255, 71, 87, 0.15);
  color: #ff4757;
}

.badge-active {
  background: rgba(0, 210, 255, 0.15);
  color: var(--accent-cyan);
}

/* WELCOME CARD */
.welcome-box {
  background: linear-gradient(135deg, rgba(112, 77, 244, 0.2), rgba(0, 210, 255, 0.1));
  border: 1px solid var(--border-color-glow);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.welcome-box h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.welcome-box p {
  color: var(--text-secondary);
}

/* KANBAN BOARD SYSTEM */
.kanban-board {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 15px;
}

.kanban-column {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  max-height: 70vh;
}

.kanban-column-header {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.count-badge {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2px 7px;
  border-radius: 10px;
  font-size: 11px;
}

.kanban-cards-list {
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.kanban-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s ease;
}

.kanban-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-purple-glow);
}

.kanban-card-title {
  font-size: 14px;
  font-weight: 600;
}

.kanban-card-meta {
  font-size: 12px;
  color: var(--text-secondary);
}

.kanban-card-action {
  margin-top: 10px;
  width: 100%;
  font-size: 12px;
  padding: 6px;
  border-radius: 6px;
}

/* MEETINGS TIMELINE */
.meetings-timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.timeline-item {
  padding: 15px;
  border-left: 2px solid var(--accent-purple);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.timeline-item.active {
  border-left-color: var(--accent-cyan);
  background: rgba(0, 210, 255, 0.05);
}

.timeline-title {
  font-weight: 600;
  font-size: 15px;
}

.timeline-date {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.attendance-check-list {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 8px;
  max-height: 120px;
  overflow-y: auto;
}

.attendance-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}

/* MENTORSHIP MODULE & DYNAMIC TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: var(--border-color);
}

.timeline-node {
  position: relative;
  margin-bottom: 20px;
}

.timeline-node::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-purple);
}

.timeline-node-content {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 15px;
  border-radius: 10px;
}

.list-selection-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.selection-card {
  padding: 15px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.selection-card:hover, .selection-card.selected {
  border-color: var(--accent-purple);
  background: rgba(112, 77, 244, 0.05);
}

/* AGREEMENT BOX & INVOICE LAYOUTS */
.agreement-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.agreement-sign-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

.document-link-box {
  margin-top: 15px;
}

.doc-download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 13px;
  background: rgba(0, 210, 255, 0.1);
  padding: 6px 12px;
  border-radius: 5px;
}

.chart-container {
  width: 100%;
  height: 220px;
}

/* MODALS */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.2s ease forwards;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  width: 95%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h4 {
  font-size: 18px;
  font-weight: 700;
}

.close-modal {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  padding: 25px;
  max-height: 80vh;
  overflow-y: auto;
}

/* INVOICE BUILDER ROW */
.invoice-items-builder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.inv-item-row {
  display: flex;
  gap: 10px;
}

.mt-25 { margin-top: 25px; }
.w-100 { width: 100%; }
.mt-15 { margin-top: 15px; }
.mb-15 { margin-bottom: 15px; }

/* TOASTS NOTIFICATIONS BANNER */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 14px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from { transform: translateX(120%); }
  to { transform: translateX(0); }
}

.toast-success {
  background: #2ed573;
}

.toast-error {
  background: #ff4757;
}

/* MODAL SIDEBAR FOR NOTIFICATIONS */
.modal-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.modal-sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.modal-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-sidebar-header h4 {
  font-size: 16px;
  font-weight: 700;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
}

.modal-sidebar-body {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.notification-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent-purple);
  border-radius: 4px;
}

.notification-item.read {
  border-left-color: var(--text-muted);
  opacity: 0.6;
}

.notification-title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
}

.notification-msg {
  font-size: 12px;
  color: var(--text-secondary);
}

.text-center { text-align: center; }
.mt-25 { margin-top: 25px; }

.input-readonly {
  background: var(--bg-tertiary);
  border-color: transparent;
  color: var(--text-secondary);
}

/* Responsive Grid & Layout Additions */
.brand-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.btn-sidebar-close {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0 5px;
}

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

.btn-sidebar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.meeting-grid {
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.meeting-video-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 450px;
  border: 1px solid var(--border-color-glow);
}

.meeting-notes-card {
  display: flex;
  flex-direction: column;
  height: 570px;
  box-sizing: border-box;
}

/* Mobile & Tablet Styles */
@media (max-width: 900px) {
  .meeting-grid {
    grid-template-columns: 1fr;
  }
  .meeting-video-card {
    height: 320px;
  }
  .meeting-notes-card {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .btn-sidebar-toggle {
    display: block;
  }
  
  .btn-sidebar-close {
    display: block;
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
  }
  
  .sidebar.sidebar-open {
    transform: translateX(0);
  }
  
  .main-content {
    width: 100%;
  }
  
  .main-header {
    padding: 15px 20px;
  }
  
  .main-header h2 {
    font-size: 18px;
  }
  
  .dashboard-views-container {
    padding: 15px;
  }
}

@media (max-width: 600px) {
  .auth-card {
    padding: 20px;
    border-radius: 15px;
  }
  
  .auth-brand {
    font-size: 26px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-row .form-group {
    width: 100%;
  }
  
  .modal-body {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  
  .stat-card {
    padding: 12px;
    gap: 10px;
  }
  
  .stat-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .stat-value {
    font-size: 18px;
  }
  
  .stat-label {
    font-size: 10px;
  }
}

/* ==================== RESPONSIVE CHAT LAYOUT ==================== */
@media (max-width: 900px) {
  .chat-layout-grid {
    grid-template-columns: 260px 1fr !important;
  }
}

@media (max-width: 768px) {
  .chat-layout-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr !important;
    height: calc(100vh - 140px) !important;
    min-height: 400px !important;
  }
  
  .chat-contacts-panel {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color) !important;
    max-height: 250px;
  }
  
  .chat-message-panel {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .chat-layout-grid {
    border-radius: 12px !important;
  }
  
  .chat-contacts-panel {
    max-height: 200px;
  }
}

/* ==================== PREMIUM DARK LUXURY LANDING PAGE STYLING ==================== */
#landing-page-container {
  font-family: 'Inter', 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: #f1f2f6;
  background-color: #0B0F19;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Elements */
.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(112, 77, 244, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-2 {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

/* Header & Navbar */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.landing-header.scrolled {
  padding: 14px 8%;
  background: rgba(11, 15, 25, 0.9);
  border-bottom-color: rgba(112, 77, 244, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-icon-sm {
  width: 24px;
  height: 24px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.logo-text-glow {
  background: linear-gradient(135deg, #704df4, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-nav {
  display: flex;
  gap: 32px;
}

.landing-nav a {
  color: #a4a9c6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.landing-nav a:hover {
  color: #ffffff;
}

.landing-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #704df4, #00d2ff);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(-50%);
}

.landing-nav a:hover::after {
  width: 100%;
}

.btn-portal {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  padding: 10px 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-portal:hover {
  background: linear-gradient(135deg, rgba(112, 77, 244, 0.2), rgba(0, 210, 255, 0.2));
  border-color: rgba(112, 77, 244, 0.4);
  box-shadow: 0 0 20px rgba(112, 77, 244, 0.15);
  transform: translateY(-1px);
}

/* Grid overlay background */
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  mask-image: radial-gradient(ellipse at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 8% 100px 8%;
  box-sizing: border-box;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(112, 77, 244, 0.1);
  border: 1px solid rgba(112, 77, 244, 0.25);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #00d2ff;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background: #00d2ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00d2ff;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px #00d2ff; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-title {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2px;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 60%, #a4a9c6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #a4a9c6;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gradient-cta {
  background: linear-gradient(135deg, #704df4, #5c3ce0);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 28px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(112, 77, 244, 0.3);
}

.btn-gradient-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(112, 77, 244, 0.5), 0 0 20px rgba(0, 210, 255, 0.2);
}

.btn-glass-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 24px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-glass-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

/* 3D Dashboard Mockup */
.hero-mockup-wrapper {
  position: relative;
  perspective: 1500px;
  width: 100%;
}

.hero-mockup-container {
  position: relative;
  transform: rotateY(-12deg) rotateX(8deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(112, 77, 244, 0.15);
  border-radius: 20px;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
}

.mockup-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-window-controls {
  display: flex;
  gap: 6px;
}

.control-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27c93f; }

.mockup-window-title {
  font-size: 11px;
  color: #676b88;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mockup-window-status {
  font-size: 10px;
  font-weight: 700;
  color: #27c93f;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-pulse {
  width: 5px;
  height: 5px;
  background: #27c93f;
  border-radius: 50%;
  animation: pulse-glow 1.5s infinite;
}

.mockup-main-layout {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.mockup-sidebar {
  width: 50px;
  background: rgba(255, 255, 255, 0.01);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  gap: 20px;
}

.mockup-sidebar-logo {
  font-weight: 900;
  font-size: 18px;
  color: #704df4;
  margin-bottom: 10px;
}

.mockup-sidebar-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.sidebar-item {
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
}

.sidebar-item.active, .sidebar-item:hover {
  opacity: 1;
}

.mockup-dashboard-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mockup-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-title {
  font-size: 11px;
  color: #676b88;
  font-weight: 500;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.stat-change {
  font-size: 10px;
  font-weight: 600;
}

.stat-change.positive { color: #27c93f; }
.stat-change.neutral { color: #a4a9c6; }

.mockup-chart-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating mockup cards */
.floating-mockup-card {
  position: absolute;
  background: rgba(18, 22, 35, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 10;
  transition: transform 0.3s ease;
}

.floating-mockup-card.card-1 {
  bottom: 12%;
  left: -12%;
  transform: translateZ(50px);
}

.floating-mockup-card.card-2 {
  top: 15%;
  right: -10%;
  transform: translateZ(40px);
}

.floating-mockup-card:hover {
  transform: scale(1.05) translateZ(60px);
  border-color: rgba(112, 77, 244, 0.4);
}

.card-icon {
  font-size: 18px;
}

.card-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.card-detail {
  display: block;
  font-size: 10px;
  color: #a4a9c6;
}

/* Container spacing & Typography */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #a4a9c6;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(112, 77, 244, 0.25);
  box-shadow: 0 20px 40px rgba(112, 77, 244, 0.08), 0 0 30px rgba(112, 77, 244, 0.02);
}

/* Features Showcase Grid */
.features-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.feature-row.reverse .feature-text {
  grid-column: 2;
}

.feature-row.reverse .feature-visual {
  grid-column: 1;
  grid-row: 1;
}

.feature-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-badge {
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #00d2ff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.feature-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
}

.feature-description {
  font-size: 15px;
  line-height: 1.6;
  color: #a4a9c6;
  margin-bottom: 24px;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #f1f2f6;
}

.bullet-check {
  color: #27c93f;
  font-weight: bold;
}

.feature-visual {
  width: 100%;
}

.feature-mock {
  padding: 0;
  height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Inside features mockups styling */
.mockup-terminal {
  flex: 1;
  padding: 16px;
  background: #06080e;
  font-family: monospace;
  font-size: 12px;
  line-height: 1.6;
  overflow-y: auto;
}

.term-line {
  margin-bottom: 6px;
}

.term-line.info { color: #704df4; }
.term-line.success { color: #27c93f; }
.term-line.warn { color: #ffbd2e; }
.term-line.error { color: #ff5f56; }

.assets-library-preview {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #080a11;
}

.asset-preview-header {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}

.asset-count { color: #676b88; }

.asset-items-list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.asset-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  gap: 12px;
}

.asset-type {
  font-size: 16px;
}

.asset-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.asset-name {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.asset-meta {
  font-size: 10px;
  color: #676b88;
}

.asset-action {
  font-size: 10px;
  font-weight: 700;
  color: #00d2ff;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
}

.scheduler-preview {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #080a11;
  height: 100%;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}

.queue-status.online { color: #27c93f; }

.channels-status {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chan-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.chan-icon {
  font-size: 12px;
  font-weight: 700;
}

.chan-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.chan-status {
  font-size: 10px;
  font-weight: 700;
}

.chan-status.online { color: #27c93f; }

.chan-sched {
  font-size: 10px;
  color: #676b88;
}

.mentorship-preview {
  padding: 20px;
  background: #080a11;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mentorship-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}

.advisors-active { color: #00d2ff; }

.roadblock-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roadblock-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.roadblock-step.checked {
  border-color: rgba(39, 201, 63, 0.2);
}

.roadblock-step.active {
  border-color: rgba(0, 210, 255, 0.3);
}

.step-check {
  color: #27c93f;
  font-weight: bold;
}

.step-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d2ff;
}

.step-indicator.pulse {
  animation: pulse-glow 1.5s infinite;
}

.step-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #676b88;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-title {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.step-desc {
  font-size: 10px;
  color: #676b88;
}

/* Media Production Pipeline Step horizontal line */
.pipeline-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: rgba(11, 15, 25, 0.5);
}

.pipeline-timeline-wrapper {
  position: relative;
  margin-top: 60px;
  padding: 40px 0;
}

.timeline-glow-line {
  position: absolute;
  top: 52px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  z-index: 1;
}

.timeline-progress-bar {
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, #704df4, #00d2ff);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(112, 77, 244, 0.5);
  position: relative;
  overflow: hidden;
}

.timeline-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer-progress 2s infinite;
}

@keyframes shimmer-progress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}

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

.step-node {
  width: 28px;
  height: 28px;
  background: #0B0F19;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #676b88;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-step.active .step-node {
  border-color: #704df4;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(112, 77, 244, 0.4);
}

.timeline-step.active:nth-child(2) .step-node {
  border-color: #00d2ff;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.node-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(112, 77, 244, 0.5);
  animation: ripple-grow 2s infinite;
}

.timeline-step:nth-child(2) .node-ripple {
  border-color: rgba(0, 210, 255, 0.5);
}

@keyframes ripple-grow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 13px;
  color: #a4a9c6;
  max-width: 220px;
  line-height: 1.5;
  margin: 0 auto 12px auto;
}

.step-status-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.2);
  color: #27c93f;
  border-radius: 4px;
}

.step-status-tag.processing {
  background: rgba(0, 210, 255, 0.1);
  border-color: rgba(0, 210, 255, 0.2);
  color: #00d2ff;
}

.step-status-tag.pending {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  color: #676b88;
}

/* Security & Audit Section */
.security-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.security-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 60px;
  align-items: center;
}

.security-badge {
  background: rgba(112, 77, 244, 0.08);
  border-color: rgba(112, 77, 244, 0.2);
  color: #704df4;
}

.performance-stats {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(10px);
}

.stat-main {
  display: flex;
  align-items: baseline;
  height: 42px;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
}

.stat-suffix {
  font-size: 18px;
  color: #00d2ff;
  font-weight: 700;
  margin-left: 2px;
}

.stat-label {
  font-size: 11px;
  color: #a4a9c6;
  font-weight: 500;
}

.stat-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-top: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #704df4, #00d2ff);
  border-radius: 2px;
}

.stat-label-live {
  font-size: 12px;
  font-weight: 700;
  color: #27c93f;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-pulse-dot {
  width: 6px;
  height: 6px;
  background: #27c93f;
  border-radius: 50%;
  box-shadow: 0 0 10px #27c93f;
  animation: pulse-glow 1.5s infinite;
}

.live-wave-container {
  width: 100%;
  margin-top: 6px;
}

.live-wave {
  width: 100%;
  height: 20px;
}

.wave-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  animation: dash-wave 4s linear infinite;
}

@keyframes dash-wave {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

.terminal-card {
  padding: 0;
  border-radius: 16px;
  background: #06080e;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(255, 255, 255, 0.08);
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-title {
  font-size: 11px;
  color: #676b88;
  font-family: monospace;
}

.terminal-badge {
  font-size: 8px;
  font-weight: 700;
  color: #27c93f;
  border: 1px solid rgba(39, 201, 63, 0.2);
  padding: 1px 4px;
  border-radius: 3px;
}

.terminal-body {
  padding: 18px;
  font-family: monospace;
  font-size: 11px;
  line-height: 1.6;
  color: #a4a9c6;
  height: 250px;
  overflow-y: auto;
  text-align: left;
}

.terminal-cursor {
  display: inline-block;
  width: 6px;
  height: 13px;
  background: #00d2ff;
  margin-left: 2px;
  animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Academy Section Roadmap styling */
.academy-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.roadmap-wrapper {
  position: relative;
  margin-top: 60px;
}

.roadmap-svg-lines {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.roadmap-card:hover {
  transform: translateY(-8px);
  border-color: rgba(112, 77, 244, 0.3);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 15px 35px rgba(112, 77, 244, 0.08);
}

.roadmap-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(112, 77, 244, 0.05);
  border: 1px solid rgba(112, 77, 244, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px auto;
  position: relative;
}

.roadmap-step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #704df4, #00d2ff);
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(112, 77, 244, 0.3);
}

.roadmap-illus {
  width: 44px;
  height: 44px;
}

.roadmap-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.roadmap-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #a4a9c6;
}

/* Testimonials Carousel Section */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: rgba(11, 15, 25, 0.4);
}

.carousel-container {
  position: relative;
  max-width: 860px;
  margin: 40px auto 0 auto;
}

.carousel-viewport-3d {
  position: relative;
  height: 400px;
  width: 100%;
  perspective: 1200px;
  margin-top: 40px;
  overflow: visible;
}

.testimonial-card-3d {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 640px;
  max-width: 90%;
  height: 320px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 36px 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.testimonial-card-3d.active {
  transform: translate3d(-50%, -50%, 0) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  border-color: rgba(0, 210, 255, 0.15);
}

.testimonial-card-3d.prev-slide {
  transform: translate3d(-92%, -50%, -150px) scale(0.85) rotateY(25deg);
  opacity: 0.35;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}

.testimonial-card-3d.next-slide {
  transform: translate3d(-8%, -50%, -150px) scale(0.85) rotateY(-25deg);
  opacity: 0.35;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}

.testimonial-card-3d.hidden-slide {
  transform: translate3d(-50%, -50%, -300px) scale(0.7);
  opacity: 0;
  z-index: 1;
}

.rating-stars {
  font-size: 16px;
  color: #ffbd2e;
}

.quote {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  font-style: italic;
  color: #f1f2f6;
  letter-spacing: -0.2px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(112, 77, 244, 0.4);
}

.testimonial-user h5 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-user .company {
  font-size: 12px;
  color: #a4a9c6;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.carousel-arrow.prev { left: -60px; }
.carousel-arrow.next { right: -60px; }

.carousel-arrow:hover {
  background: rgba(112, 77, 244, 0.2);
  border-color: rgba(112, 77, 244, 0.4);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dots .dot.active {
  background: #704df4;
  width: 24px;
  border-radius: 4px;
}

/* Consultation form CTA styling */
.contact-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.form-centered-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #a4a9c6;
}

.consultation-card {
  width: 100%;
  max-width: 760px;
  padding: 48px;
  position: relative;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 77, 244, 0.8), rgba(0, 210, 255, 0.8), transparent);
}

.consultation-header {
  text-align: center;
  margin-bottom: 32px;
}

.consultation-header h3 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.consultation-header p {
  font-size: 14px;
  color: #a4a9c6;
  line-height: 1.6;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-gradient-submit {
  background: linear-gradient(90deg, #704df4, #00d2ff);
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-gradient-submit:hover {
  box-shadow: 0 0 25px rgba(112, 77, 244, 0.4), 0 0 15px rgba(0, 210, 255, 0.2);
  transform: translateY(-1px);
}

/* Footer Section */
.landing-footer {
  background: #080a11;
  padding: 60px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text-sm {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.footer-tagline {
  font-size: 12px;
  color: #a4a9c6;
}

.footer-security-grade {
  font-size: 11px;
  color: #676b88;
  display: flex;
  align-items: center;
  gap: 6px;
}

.grade-badge {
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.2);
  color: #27c93f;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  justify-content: flex-end;
}

.footer-links a {
  color: #a4a9c6;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  grid-column: span 2;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 11px;
  color: #676b88;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: #676b88;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Auth card overlay style fix */
.auth-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* Responsive media queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-mockup-wrapper {
    max-width: 650px;
    margin: 0 auto;
  }
  
  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-row.reverse .feature-text {
    grid-column: 1;
  }
  
  .feature-row.reverse .feature-visual {
    grid-column: 1;
    grid-row: 2;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .roadmap-svg-lines {
    display: none;
  }
  
  .carousel-arrow.prev { left: -20px; }
  .carousel-arrow.next { right: -20px; }
}

@media (max-width: 768px) {
  .landing-header {
    padding: 15px 5%;
  }
  
  .landing-nav {
    display: none;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-desc {
    font-size: 15px;
  }
  
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .timeline-glow-line {
    display: none;
  }
  
  .performance-stats {
    flex-direction: column;
  }
  
  .form-grid-2col {
    grid-template-columns: 1fr;
  }
  
  .consultation-card {
    padding: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-links {
    justify-content: flex-start;
  }
  
  .footer-bottom {
    grid-column: span 1;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
}

/* ==================== PREMIUM CINEMATIC 3D MOTION STYLING ==================== */

/* 1. Background Morphing Mesh & Spotlight */
.morphing-bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 25%, rgba(112, 77, 244, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(0, 210, 255, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(112, 77, 244, 0.04) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  animation: morph-mesh-slow 25s infinite alternate ease-in-out;
}

@keyframes morph-mesh-slow {
  0% { background-position: 0% 0%, 100% 100%, 50% 50%; }
  50% { background-position: 25% 15%, 75% 85%, 45% 55%; filter: blur(75px); }
  100% { background-position: 5% 5%, 95% 95%, 55% 45%; }
}

.glowing-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.glowing-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 210, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.8), 0 0 20px rgba(112, 77, 244, 0.4);
  animation: float-particle-up 18s infinite linear;
}

@keyframes float-particle-up {
  0% { transform: translateY(105vh) translateX(0) scale(0.5); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-5vh) translateX(120px) scale(1.3); opacity: 0; }
}

/* Spotlight cursor interaction */
#landing-page-container {
  position: relative;
  overflow-x: hidden;
}

#landing-page-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(350px circle at var(--cursor-x, -999px) var(--cursor-y, -999px), rgba(112, 77, 244, 0.05), transparent 80%);
  pointer-events: none;
  z-index: 1999;
}

/* 2. Magnetic Button Ripple and Hover Effect */
.btn-magnetic {
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* 3. Floating Icons and Cards Lift */
.float-icon {
  animation: float-animation 6s infinite ease-in-out;
}

@keyframes float-animation {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.feature-mock {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.feature-mock:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(112, 77, 244, 0.15);
}

/* 4. Donut gauge styles */
.donut-chart-wrapper {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 12px auto;
}

.donut-chart {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.donut-bg {
  stroke: rgba(255, 255, 255, 0.05);
}

.donut-fill {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 2s cubic-bezier(0.25, 1, 0.5, 1);
  stroke-linecap: round;
}

.donut-val {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.donut-val .stat-num {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
}

.donut-val .stat-suffix {
  font-size: 9px;
  color: #a4a9c6;
}

/* 5. Asset Download progress bars */
.download-progress-bar {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.download-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #704df4, #00d2ff);
  transition: width 0.1s ease;
}

.asset-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.asset-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 210, 255, 0.3);
}

/* 6. Scheduler Preview layout & animations */
.scheduler-preview-container {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 1.3fr;
  padding: 16px;
  background: #080a11;
  height: 100%;
  gap: 10px;
  align-items: center;
}

.scheduler-posts-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pending-posts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pending-post-card {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
}

.pending-post-card.active {
  border-color: rgba(112, 77, 244, 0.4);
  background: rgba(112, 77, 244, 0.04);
  box-shadow: 0 0 12px rgba(112, 77, 244, 0.1);
}

.pending-post-card .post-title {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}

.pending-post-card .post-time {
  font-size: 9px;
  color: #676b88;
}

.scheduler-arrow-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scheduler-dispatch-node {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #704df4, #00d2ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
  z-index: 2;
  margin-bottom: -15px;
}

.scheduler-flow-svg {
  width: 100%;
  height: 120px;
}

.flow-path {
  stroke-dasharray: 4 4;
  animation: flow-dash 15s infinite linear;
}

@keyframes flow-dash {
  to {
    stroke-dashoffset: -20;
  }
}

.flow-particle {
  opacity: 0;
  offset-path: path("M10,90 C30,50 50,25 70,25");
  offset-rotate: auto;
}

#flow-particle-tiktok.animating {
  animation: travel-particle 1s cubic-bezier(0.25, 1, 0.5, 1);
  offset-path: path("M10,90 C30,50 50,25 70,25");
}

#flow-particle-instagram.animating {
  animation: travel-particle 1s cubic-bezier(0.25, 1, 0.5, 1);
  offset-path: path("M10,90 C30,70 50,65 70,65");
}

#flow-particle-youtube.animating {
  animation: travel-particle 1s cubic-bezier(0.25, 1, 0.5, 1);
  offset-path: path("M10,90 C30,110 50,115 70,115");
}

#flow-particle-facebook.animating {
  animation: travel-particle 1s cubic-bezier(0.25, 1, 0.5, 1);
  offset-path: path("M10,90 C30,130 50,155 70,155");
}

@keyframes travel-particle {
  0% { offset-distance: 0%; opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.scheduler-channels-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chan-card {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  transition: all 0.3s ease;
}

.chan-card.glowing {
  border-color: rgba(0, 210, 255, 0.4);
  background: rgba(0, 210, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
}

.chan-pulse-status {
  width: 6px;
  height: 6px;
  background: #676b88;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.chan-card.glowing .chan-pulse-status {
  background: #27c93f;
  box-shadow: 0 0 6px #27c93f;
}

/* 7. Media Pipeline Interactive file particle */
.pipeline-flow-file {
  position: absolute;
  top: -8px;
  left: 0%;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #704df4, #00d2ff);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.8);
  z-index: 3;
  transform: translateX(-50%);
  transition: left 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 8. Shield Glow & Rings */
.shield-security-badge-wrapper {
  margin: 20px 0;
  display: flex;
}

.shield-security-badge {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-glow-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(112, 77, 244, 0.3);
  border-radius: 50%;
  animation: shield-ring-pulse 3s infinite linear;
}

.shield-glow-ring.ring-2 {
  animation-delay: 1.5s;
}

@keyframes shield-ring-pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* 9. Floating advisor avatars around steps */
.floating-avatars-container {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: -10px;
}

.floating-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0B0F19;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.floating-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-avatar.avatar-2 {
  margin-left: -10px;
}

/* ==================== APP ONBOARDING SYSTEM STYLING ==================== */
#onboarding-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0B0F19;
  z-index: 9999;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

#onboarding-container.hidden {
  display: none !important;
}

.onboarding-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(112, 77, 244, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.onboarding-glow.glow-top { top: -200px; left: -200px; }
.onboarding-glow.glow-bottom { bottom: -200px; right: -200px; }

.onboarding-header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 24px;
  position: relative;
  z-index: 10;
}

.btn-onboarding-skip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #a4a9c6;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.btn-onboarding-skip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.onboarding-carousel-viewport {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 100%;
}

.onboarding-track {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.onboarding-slide {
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  box-sizing: border-box;
  text-align: center;
  transition: opacity 0.6s, transform 0.6s;
}

.onboarding-illus-container {
  width: 240px;
  height: 240px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onboarding-glass-card {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.onboarding-slide h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 50%, #a4a9c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.onboarding-slide p {
  font-size: 14px;
  color: #a4a9c6;
  max-width: 320px;
  line-height: 1.6;
}

.onboarding-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 24px;
  position: relative;
  z-index: 10;
}

.onboarding-pagination {
  display: flex;
  gap: 8px;
}

.onboarding-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

.onboarding-dot.active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #704df4, #00d2ff);
  box-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

.btn-onboarding-action {
  background: linear-gradient(135deg, #704df4, #00d2ff);
  border: none;
  border-radius: 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  width: 260px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(112, 77, 244, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-onboarding-action:active {
  transform: scale(0.98);
}

/* ==================== TEAM CHAT SYSTEM STYLING ==================== */
.chat-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.chat-contact-item:hover {
  background: rgba(112, 77, 244, 0.08);
  border-color: rgba(112, 77, 244, 0.2);
}

.chat-contact-item.active {
  background: rgba(112, 77, 244, 0.15);
  border-color: rgba(112, 77, 244, 0.4);
}

.chat-contact-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #704df4, #00d2ff);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(112, 77, 244, 0.2);
}

.chat-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chat-contact-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.chat-contact-role {
  font-size: 10px;
  color: #a4a9c6;
  margin-top: 2px;
}

.chat-bubble {
  max-width: 70%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: chat-bubble-in 0.3s ease;
}

@keyframes chat-bubble-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-bubble.sent {
  align-self: flex-end;
  background: linear-gradient(135deg, #704df4, #4a28d4);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.chat-bubble.received {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f1f2f6;
  border-bottom-left-radius: 4px;
}

.chat-bubble-time {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  align-self: flex-end;
}

.chat-bubble.received .chat-bubble-time {
  color: #a4a9c6;
}

/* Loader spin keyframes for WebRTC interface */
@keyframes spin-loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Full screen meeting styles */
body.in-meeting .sidebar,
body.in-meeting .main-header {
  display: none !important;
}

body.in-meeting .main-content {
  margin-left: 0 !important;
  padding: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  overflow: hidden !important;
}

body.in-meeting .dashboard-views-container {
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

body.in-meeting #view-meeting-room {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  background: #0f111a !important; /* Premium dark background */
  overflow: hidden;
}

/* Meeting workspace grid */
.meeting-workspace-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  flex: 1;
  padding: 20px;
  height: calc(100% - 80px); /* Adjust for header height */
  overflow: hidden;
}

.meeting-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  height: 80px;
  box-sizing: border-box;
}

.meeting-header-bar h3 {
  margin: 0;
  font-size: 20px;
  color: var(--text-primary);
}

.meeting-header-bar .subtitle {
  margin: 5px 0 0 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.btn-exit-meeting {
  padding: 8px 16px;
  border: 1px solid #ff4757;
  background: transparent;
  color: #ff4757;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-exit-meeting:hover {
  background: #ff4757;
  color: #fff;
}

.meeting-video-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  overflow: hidden;
}

.meeting-copilot-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: linear-gradient(135deg, rgba(112, 77, 244, 0.15), rgba(0, 210, 255, 0.05));
  border: 1px solid var(--border-color-glow);
  border-radius: 10px;
}

.copilot-status-info h5 {
  margin: 0;
  font-size: 13px;
}

.copilot-status-info p {
  margin: 4px 0 0 0;
  font-size: 11px;
  color: var(--text-secondary);
}

.btn-end-meeting-ai {
  padding: 8px 14px;
  font-size: 12px;
  background: #2ed573;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.meeting-video-frame {
  flex: 1;
  background: #101424;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.meeting-live-transcript-card {
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  max-height: 140px;
}

.meeting-live-transcript-card h5 {
  margin: 0 0 8px 0;
  font-size: 13px;
}

.live-transcript-box {
  flex: 1;
  overflow-y: auto;
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
  max-height: 80px;
}

.meeting-notes-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.meeting-notes-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.meeting-notes-card h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.meeting-notes-card .subtitle {
  font-size: 11px;
  margin: 0 0 15px 0;
  color: var(--text-secondary);
}

.flex-textarea {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.flex-textarea label {
  font-size: 12px;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-secondary);
}

.flex-textarea textarea {
  flex: 1;
  font-size: 13px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  resize: none;
  font-family: inherit;
}

.btn-save-minutes {
  padding: 12px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.btn-save-minutes:hover {
  opacity: 0.9;
}

/* Meeting Mobile Tabs styles */
.meeting-mobile-tabs {
  display: none;
}

@media (max-width: 768px) {
  body.in-meeting #view-meeting-room {
    height: 100vh !important;
  }
  .meeting-mobile-tabs {
    display: flex;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
    height: 40px;
  }
  .meet-tab-btn {
    flex: 1;
    padding: 8px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  .meet-tab-btn.active {
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary-color);
    background: rgba(112, 77, 244, 0.1);
  }
  .meet-tab-hidden-mobile {
    display: none !important;
  }
  .meeting-header-bar {
    height: 60px;
    padding: 10px 15px;
  }
  .meeting-header-bar h3 {
    font-size: 16px;
  }
  .meeting-header-bar .subtitle {
    display: none;
  }
  .meeting-workspace-grid {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 0;
    height: calc(100% - 100px); /* header 60px + tabs 40px */
  }
  .meeting-video-section, .meeting-notes-section {
    height: 100%;
  }
  .meeting-copilot-panel {
    padding: 8px 12px;
    margin-bottom: 10px;
  }
  .copilot-status-info p {
    display: none;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

/* ==================== BRIGHT MODERN LANDING PAGE & LOGIN THEME ==================== */

#landing-page-container {
  background-color: #f3f5fa !important;
  background-image: 
    radial-gradient(at 0% 0%, rgba(112, 77, 244, 0.08) 0, transparent 50%), 
    radial-gradient(at 50% 0%, rgba(0, 210, 255, 0.08) 0, transparent 50%), 
    radial-gradient(at 100% 0%, rgba(255, 0, 128, 0.06) 0, transparent 50%),
    radial-gradient(at 0% 100%, rgba(112, 77, 244, 0.06) 0, transparent 50%),
    radial-gradient(at 50% 100%, rgba(0, 210, 255, 0.07) 0, transparent 50%),
    radial-gradient(at 100% 100%, rgba(255, 0, 128, 0.06) 0, transparent 50%) !important;
  color: #1e293b !important;
}

#landing-page-container .morphing-bg-mesh {
  background: 
    radial-gradient(circle at 15% 25%, rgba(112, 77, 244, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(0, 210, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.08) 0%, transparent 60%) !important;
}

/* Sections Backgrounds */
#landing-page-container section {
  background: transparent !important;
}

/* Header */
.landing-header {
  background: rgba(243, 245, 250, 0.8) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.landing-header.scrolled {
  background: rgba(243, 245, 250, 0.95) !important;
  border-bottom-color: rgba(112, 77, 244, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.logo-text {
  color: #0f172a !important;
}

.landing-nav a {
  color: #334155 !important; /* Darker Slate for high contrast */
}

.landing-nav a:hover {
  color: #0f172a !important;
}

.btn-portal {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #0f172a !important;
}

.btn-portal:hover {
  background: linear-gradient(135deg, rgba(112, 77, 244, 0.1), rgba(0, 210, 255, 0.1)) !important;
  border-color: rgba(112, 77, 244, 0.3) !important;
  box-shadow: 0 5px 15px rgba(112, 77, 244, 0.08) !important;
}

/* Typography & Titles - High Contrast Overrides */
#landing-page-container h1,
#landing-page-container h2,
#landing-page-container h3,
#landing-page-container h4,
#landing-page-container h5,
#landing-page-container h6,
#landing-page-container .section-title,
#landing-page-container .feature-heading,
#landing-page-container .consultation-header h3 {
  color: #0f172a !important; /* Force high contrast dark slate */
}

#landing-page-container p,
#landing-page-container .section-subtitle,
#landing-page-container .hero-desc,
#landing-page-container .feature-desc,
#landing-page-container .pipeline-section p,
#landing-page-container .security-section p,
#landing-page-container .academy-section p,
#landing-page-container .testimonials-section p,
#landing-page-container .consultation-header p,
#landing-page-container .card-detail,
#landing-page-container .footer-tagline,
#landing-page-container .footer-security-grade {
  color: #334155 !important; /* Force high contrast readable Slate 700 */
}

#landing-page-container a {
  color: #334155 !important;
}
#landing-page-container a:hover {
  color: #0f172a !important;
}

.hero-title {
  background: linear-gradient(135deg, #0f172a 30%, #312e81 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Buttons */
.btn-glass-cta {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #0f172a !important;
}

.btn-glass-cta:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 0, 0, 0.18) !important;
  color: #0f172a !important;
}

/* Mockup Layout */
.hero-mockup-container {
  transform: none !important;
  transform-style: flat !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #0f172a !important;
}

.mockup-header-bar {
  background: rgba(0, 0, 0, 0.04) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  color: #0f172a !important;
}

.mockup-sidebar {
  background: rgba(0, 0, 0, 0.02) !important;
  border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.sidebar-item {
  color: #475569 !important;
}

.sidebar-item.active {
  color: #704df4 !important;
  background: rgba(112, 77, 244, 0.1) !important;
}

.mockup-stat-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #0f172a !important;
}

.stat-title {
  color: #475569 !important;
}

.floating-mockup-card {
  transform: none !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #0f172a !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

.card-title {
  color: #0f172a !important;
}

.card-detail {
  color: #475569 !important;
}

/* Glass Cards & Elements on Landing */
#landing-page-container .glass-card {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  color: #0f172a !important;
}

#landing-page-container .glass-card:hover {
  border-color: rgba(112, 77, 244, 0.35) !important;
  box-shadow: 0 20px 40px rgba(112, 77, 244, 0.08) !important;
}

/* Specific Section Tweaks */
.pipeline-section {
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.timeline-glow-line {
  background: rgba(0, 0, 0, 0.08) !important;
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.roadmap-card:hover {
  border-color: rgba(112, 77, 244, 0.35) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 15px 35px rgba(112, 77, 244, 0.08) !important;
}

.roadmap-card h4 {
  color: #0f172a !important;
}

.roadmap-card p {
  color: #334155 !important;
}

.roadmap-icon-wrapper {
  background: rgba(112, 77, 244, 0.08) !important;
  border: 1px solid rgba(112, 77, 244, 0.15) !important;
}

.testimonial-card-3d {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
  color: #0f172a !important;
}

.quote {
  color: #0f172a !important;
  font-weight: 500 !important;
}

.testimonial-user h5 {
  color: #0f172a !important;
}

.testimonial-user p {
  color: #334155 !important;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #334155 !important;
}

/* Landing Form Controls */
#landing-page-container label {
  color: #0f172a !important;
  font-weight: 600 !important;
}

#landing-page-container input[type="text"],
#landing-page-container input[type="email"],
#landing-page-container input[type="password"],
#landing-page-container input[type="number"],
#landing-page-container select,
#landing-page-container textarea {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #0f172a !important;
}

#landing-page-container input:focus,
#landing-page-container select:focus,
#landing-page-container textarea:focus {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: #704df4 !important;
  box-shadow: 0 0 10px rgba(112, 77, 244, 0.15) !important;
}

/* Footer Section */
.landing-footer {
  background: #f1f3f9 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.logo-text-sm {
  color: #0f172a !important;
}

.footer-tagline {
  color: #334155 !important;
}

.footer-links a {
  color: #334155 !important;
}

.footer-links a:hover {
  color: #0f172a !important;
}

/* ==================== BRIGHT AUTHENTICATION CARD OVERRIDE ==================== */

#auth-panel {
  background: rgba(243, 245, 250, 0.4) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
}

#auth-panel .auth-card {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08) !important;
  color: #0f172a !important;
}

#auth-panel .auth-brand {
  color: #0f172a !important;
}

#auth-panel .auth-subtitle {
  color: #334155 !important;
}

#auth-panel .auth-tab {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #334155 !important;
}

#auth-panel .auth-tab.active {
  background: linear-gradient(135deg, #704df4, #5c3ce0) !important;
  color: #ffffff !important;
  border-color: #704df4 !important;
  box-shadow: 0 4px 10px rgba(112, 77, 244, 0.2) !important;
}

#auth-panel label {
  color: #0f172a !important;
  font-weight: 600 !important;
}

#auth-panel input[type="text"],
#auth-panel input[type="email"],
#auth-panel input[type="password"],
#auth-panel input[type="number"],
#auth-panel select,
#auth-panel textarea {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #0f172a !important;
}

#auth-panel input:focus,
#auth-panel select:focus,
#auth-panel textarea:focus {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: #704df4 !important;
  box-shadow: 0 0 10px rgba(112, 77, 244, 0.15) !important;
}

#auth-panel .close-modal {
  color: #475569 !important;
}

#auth-panel .close-modal:hover {
  color: #0f172a !important;
}

#auth-panel .checkbox-group label {
  text-transform: none !important;
  font-size: 13px !important;
  display: inline !important;
  color: #334155 !important;
}

/* ==================== RESPONSIVE AUTH PANEL ==================== */
@media (max-width: 768px) {
  .auth-panel {
    padding: 10px;
    align-items: flex-start;
    padding-top: 40px;
  }
  
  .auth-card {
    padding: 24px;
    border-radius: 16px;
    max-height: none;
  }
  
  .auth-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 4px;
  }
  
  .auth-tab {
    font-size: 12px !important;
    padding: 10px 12px !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .auth-brand {
    font-size: 22px !important;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-row .form-group {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .auth-card {
    padding: 20px;
  }
  
  .auth-brand {
    font-size: 18px !important;
  }
  
  .auth-subtitle {
    font-size: 12px !important;
  }
  
  .auth-tab {
    font-size: 11px !important;
    padding: 8px 10px !important;
  }
  
  .btn-primary {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ==================== RESPONSIVE LANDING PAGE ==================== */
@media (max-width: 1024px) {
  .hero-section {
    padding: 120px 6% 80px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-mockup-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-row.reverse .feature-text {
    grid-column: 1;
  }
  
  .feature-row.reverse .feature-visual {
    grid-column: 1;
    grid-row: auto;
  }
  
  .landing-nav {
    display: none;
  }
  
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 5% 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 32px;
    letter-spacing: -1px;
  }
  
  .hero-desc {
    font-size: 15px;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-gradient-cta,
  .btn-glass-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .hero-mockup-wrapper {
    display: none;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .features-list {
    gap: 40px;
  }
  
  .feature-heading {
    font-size: 24px;
  }
  
  .pipeline-timeline-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
  }
  
  .timeline-steps {
    flex-direction: column;
    gap: 20px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
  }
  
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .roadmap-svg-lines {
    display: none;
  }
  
  .carousel-container {
    padding: 0 40px;
  }
  
  .testimonial-card-3d {
    min-height: auto;
    padding: 24px;
  }
  
  .consultation-card {
    padding: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .landing-header {
    padding: 15px 5%;
  }
  
  .landing-logo .logo-text {
    font-size: 18px;
  }
  
  .btn-portal {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .feature-heading {
    font-size: 20px;
  }
  
  .glass-card {
    padding: 20px;
    border-radius: 16px;
  }
  
  .feature-mock {
    height: 220px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .trust-badges {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .trust-badge {
    font-size: 10px;
    padding: 4px 8px;
  }
}



