/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --primary: #6f5dff;
  --primary-light: #8b7dff;
  --secondary: #42d7ff;
  --success: #64e2ab;
  --warning: #ffa500;
  --danger: #ff6b6b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* ===== LANDING PAGE ===== */
.landing-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #000000;
  color: white;
}

.landing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.landing-nav {
  display: flex;
  gap: 1rem;
}

.landing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  text-align: center;
}

.hero {
  margin-bottom: 4rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.features {
  margin: 3rem 0;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 12px;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

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

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
}

.landing-footer {
  padding: 2rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

/* ===== BUTTONS ===== */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}

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

.button-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.button-secondary {
  background-color: #7066e0;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
  background-color: #3a3a3a;
}

.button-logout-confirm {
  background-color: #dc2626 !important;
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}

.button-logout-confirm:hover {
  background-color: #b91c1c !important;
  transform: translateY(-2px) !important;
}

.button-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.button-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.button-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.button-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ===== TOP BAR & NAVIGATION ===== */
.topbar {
  background-color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.logout-button {
  background-color: var(--danger);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.9rem;
}

.logout-button:hover {
  background-color: red;
}

.rms-badge {
  color: #ffffff;
  font-weight: 600;
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

/* ===== PAGE SHELL ===== */
.shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page {
  background-color: #fff;
}

.module-shell {
  flex: 1;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.module-header {
  /* display: flex; */
  justify-content: space-between;
  /* align-items: center; */
  /* margin-bottom: 2rem; */
  /* padding-bottom: 1.5rem; */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.module-header > div:first-child h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.module-header > div:first-child p {
  color: #b0b0b0;
}

.eyebrow {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* ===== PANEL CARDS ===== */
.panel-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.panel-card.wide {
  grid-column: 1 / -1;
}

.panel-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-card-header h2 {
  font-size: 1.35rem;
  margin: 0;
  color: #ffffff;
}

.panel-card-header span {
  color: #808080;
  font-size: 0.9rem;
}

.job-filters {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: end;
}

.filter-row label {
  display: grid;
  gap: 0.35rem;
  color: #d1d5db;
  font-size: 0.95rem;
}

.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111827;
  color: #ffffff;
}

.filter-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.job-card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.job-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.job-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: #ffffff;
}

.job-card h3 a {
  color: inherit;
  text-decoration: none;
}

.job-subtitle {
  color: #9ca3af;
  font-size: 0.95rem;
  margin: 0;
}

.job-summary {
  color: #d1d5db;
  line-height: 1.7;
  min-height: 3.5rem;
}

.job-card-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

.job-card-meta span {
  display: block;
}

.job-card-meta .salary {
  color: #ffffff;
  font-weight: 700;
}

.job-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.job-card .badge {
  margin-left: auto;
}

/* ===== DASHBOARD GRID ===== */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dashboard-grid .panel-card.wide {
  grid-column: 1 / -1;
}

/* ===== METRICS GRID ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.metric-card {
  padding: 1.5rem;
  background-color: #2a2a2a;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric-card span {
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 500;
}

.metric-card strong {
  font-size: 1.8rem;
  color: #ffffff;
}

.progress-bar {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background-color: var(--primary);
  transition: width 0.3s;
}

/* ===== ACTIVITY FEED ===== */
.activity-list {
  list-style: none;
}

.activity-list li {
  padding: 1rem 0;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.activity-list li:last-child {
  border-bottom: none;
}

/* ===== TABLES ===== */
.table-scroll {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
}

.data-table tr:hover {
  background-color: #2a2a2a;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-published {
  background-color: rgba(3, 105, 161, 0.2);
  color: #64e2ab;
}

.badge-pending {
  background-color: rgba(217, 119, 6, 0.2);
  color: #ffa500;
}

.badge-draft {
  background-color: rgba(107, 114, 128, 0.2);
  color: #b0b0b0;
}

.badge-screened {
  background-color: rgba(30, 64, 175, 0.2);
  color: #42d7ff;
}

.badge-interview {
  background-color: rgba(131, 24, 67, 0.2);
  color: #d3b3ff;
}

.badge-applied {
  background-color: rgba(22, 101, 52, 0.2);
  color: #64e2ab;
}

/* ===== WORKFLOW GRID ===== */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.offer-card {
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.offer-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.offer-card p {
  font-size: 0.9rem;
  color: #b0b0b0;
}

/* ===== CANDIDATE & INTERVIEW CARDS ===== */
.candidate-card,
.interview-card {
  background-color: #2a2a2a;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.candidate-card:hover,
.interview-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(111, 93, 255, 0.2);
}

.candidate-card h3,
.interview-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.candidate-card span,
.interview-card span {
  display: block;
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.candidate-card p,
.interview-card p {
  color: #808080;
  font-size: 0.85rem;
}

/* ===== PIPELINE BOARD ===== */
.pipeline-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pipeline-column {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 1.5rem;
}

.pipeline-column h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.pipeline-column .candidate-card {
  margin-bottom: 1rem;
  cursor: move;
}

/* ===== AUTH PAGES ===== */
.auth-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #000000;
}

.auth-card {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-left {
  background-color: #1a1a1a;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-right {
  background: #000000;
  color: white;
}

.auth-brand {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.auth-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
}

.auth-brand h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.auth-brand p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #b0b0b0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.auth-form label {
  display: flex;
  /* flex-direction: row-reverse; */
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-weight: 500;
}

.auth-form input,
.auth-form select,
.auth-form textarea {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background-color: lightgray;
  color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(111, 93, 255, 0.1);
}

.auth-form button {
  margin-top: 1rem;
}

.auth-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 400;
  cursor: pointer;
  color: #b0b0b0;
  position: relative;
}

.checkbox-label span:first-child {
  padding-right: 0.25rem;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  width: 1rem;
  height: 1rem;
  margin: 0;
  cursor: pointer;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.checkbox-custom {
  width: 1.15rem;
  height: 1.15rem;
  background-color: lightgray;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.checkbox-label input:checked + .checkbox-custom {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 0.35rem;
  height: 0.65rem;
  border: solid #ffffff;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
  display: block;
}

.form-help-text {
  font-size: 0.85rem;
  color: #808080;
  margin: -1rem 0 0.5rem 0;
  line-height: 1.4;
}

.auth-alt {
  text-align: center;
  color: #808080;
  font-size: 0.95rem;
}

.auth-alt a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.auth-alt a:hover {
  text-decoration: underline;
}

.auth-panel {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.auth-panel h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.auth-panel ul {
  list-style: none;
}

.auth-panel li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.auth-panel li:last-child {
  border-bottom: none;
}

/* ===== FOOTER ===== */
.page-footer {
  padding: 2rem;
  text-align: center;
  color: #808080;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== VIEW TOGGLES ===== */
.view-toggles {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.toggle-button {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #2a2a2a;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  color: #b0b0b0;
  transition: all 0.2s;
}

.toggle-button.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== REPORT GRID ===== */
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0;
}

.report-card {
  padding: 2rem;
  background-color: #2a2a2a;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.report-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.report-card p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.report-metric {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.report-card button {
  width: 100%;
}

/* ===== JOB LIST STYLES ===== */
.job-filters {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job-search-row {
  display: flex;
  width: 100%;
}

.job-search-row input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background-color: #f5f5f5;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  color: #333;
}

.job-search-row input::placeholder {
  color: #9ca3af;
}

.job-count {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 1rem;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-item {
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.job-item-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.job-item-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.job-item h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
}

.job-item h3 a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
}

.job-item h3 a:hover {
  color: var(--primary);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  background-color: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #475569;
}

.job-description {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 1rem;
}

.salary {
  font-weight: 700;
  color: #111827;
}

.dates {
  color: #6b7280;
}

/* ===== FILTER ROW ===== */
.filter-row {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.filter-row select {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.95rem;
  background-color: #2a2a2a;
  color: #ffffff;
}

.filter-row button {
  white-space: nowrap;
}

/* ===== FORM STYLES ===== */
.form-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section h2 {
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #ffffff;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background-color: #2a2a2a;
  color: #ffffff;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #808080;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(111, 93, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  } 

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-grid,
  .pipeline-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .landing-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .landing-main {
    padding: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-left,
  .auth-right {
    border: none;
    padding: 2rem;
  }

  .topbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .module-shell {
    padding: 1rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-grid,
  .pipeline-board {
    grid-template-columns: 1fr;
  }

  .job-filter-buttons,
  .job-filter-actions,
  .job-item-top {
    flex-direction: column;
    gap: 1rem;
  }

  .job-filter-actions {
    grid-template-columns: 1fr;
  }

  .job-item {
    padding: 1rem;
  }
}

