:root {
  --accent: #dc2626;
  --muted: #6b7280;
  --panel: #ffffff;
}

body {
  background: #ffffff;
}

.jobs-hero-card,
.jobs-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.14),
    0 6px 14px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px;
}

.job-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.07);
  background: #f8fafc;
  color: #0f172a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.pill-muted {
  background: #f3f4f6;
  color: #111827;
}

.stat-card {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15,23,42,0.1);
}

.cta-button {
  display: inline-block;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(220,38,38,0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(220,38,38,0.25);
}

.secondary-button {
  display: inline-block;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-weight: 700;
  color: #111827;
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.secondary-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--accent);
}

.job-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15,23,42,0.1);
  border-color: rgba(220,38,38,0.35);
}

.job-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-action {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-soft {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(220,38,38,0.1);
  color: #991b1b;
  font-weight: 700;
  font-size: 12px;
}

.detail-block {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.detail-block h4 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.detail-list {
  display: grid;
  gap: 8px;
  color: #111827;
  padding-left: 18px;
  list-style: disc;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.detail-meta .meta-chip {
  padding: 6px 10px;
  border-radius: 10px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 13px;
  border: 1px solid #e0e7ff;
}

.application-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}

.field {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  color: #0f172a;
  width: 100%;
}

.field:focus {
  outline: 2px solid rgba(220,38,38,0.25);
}

.phone-group {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
}

.phone-prefix {
  max-width: 130px;
}

.phone-number {
  width: 100%;
}

.upload-block {
  background: #f8fafc;
  border: 1px dashed #e5e7eb;
  border-radius: 14px;
  padding: 12px;
}

.upload-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skill-row {
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.skill-label {
  font-weight: 700;
  color: #0f172a;
}

.skill-helper {
  color: var(--muted);
  font-size: 12px;
}

.skill-level {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(220,38,38,0.12);
  color: #991b1b;
  font-weight: 700;
  font-size: 12px;
}

.skill-slider {
  width: 100%;
  accent-color: var(--accent);
}

.skill-scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

.nav-link-active {
  color: #dc2626;
}

@media (max-width: 1024px) {
  .application-card {
    position: relative;
    top: auto;
  }
}
