/* ========================================
   HARDCORE JOBS — Premium Dark/Amber Design System
   Dark background, warm amber accents, editorial premium feel.
   Every design token is a CSS variable. No orphaned styles.
   ======================================== */

:root {
  --bg: #0c0b09;
  --bg-card: #161410;
  --bg-elevated: #1e1b16;
  --bg-hover: #241f18;
  --text-primary: #f5f0e8;
  --text-secondary: #a89f8c;
  --text-muted: #6b6256;
  --border: #2a2520;
  --border-light: #3a332a;
  --accent: #d4920a;
  --accent-dark: #a07000;
  --accent-glow: rgba(212, 146, 10, 0.15);
  --accent-glow-strong: rgba(212, 146, 10, 0.25);
  --danger: #c0392b;
  --success: #27ae60;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font: var(--font-sans);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1120px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 60px;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text-primary); }

.nav-btn {
  display: inline-block;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  text-decoration: none;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
  background: transparent;
}
.nav-btn:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 20px var(--accent-glow-strong);
}

/* Inline form buttons styled as nav links */
.nav-logout-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  padding: 0;
  transition: color var(--transition);
}
.nav-logout-btn:hover { color: var(--text-primary); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--bg-elevated); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
/* Hamburger → X when open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- PLEDGE TRUST STRIP ---- */
.pledge-trust-strip {
  background: rgba(212, 146, 10, 0.07);
  border-bottom: 1px solid rgba(212, 146, 10, 0.15);
  padding: 8px 32px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #a89060;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pledge-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4920a;
  flex-shrink: 0;
  animation: trust-pulse 2s ease-in-out infinite;
}
@keyframes trust-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.pledge-trust-sep { color: #6b6256; }
.pledge-trust-cta {
  color: #d4920a;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.15s;
}
.pledge-trust-cta:hover { color: #e5a20c; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.1s, box-shadow var(--transition);
  letter-spacing: 0.01em;
  font-family: var(--font);
  text-align: center;
}
.btn-primary:hover {
  background: #e09d0b;
  box-shadow: 0 4px 24px var(--accent-glow-strong);
}
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  text-decoration: none;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-align: center;
  cursor: pointer;
  font-family: var(--font);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.btn-outline-sm {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  text-decoration: none;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-align: center;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.01em;
}
.btn-outline-sm:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.btn-secondary {
  display: inline-block;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}
.btn-secondary:hover {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}
.btn-ghost:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.btn-danger {
  color: var(--danger);
  border-color: rgba(192,57,43,0.4);
}
.btn-danger:hover {
  background: rgba(192,57,43,0.1);
  color: #e74c3c;
}

.btn-sm {
  font-size: 12px;
  padding: 6px 14px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ---- LANDING ---- */
.landing-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.landing-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}

.landing-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.landing-headline {
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.landing-headline-accent { color: var(--accent); }

.landing-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 16px;
  font-weight: 400;
  max-width: 580px;
}

.landing-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Landing employer CTA section */
.landing-employer-cta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.landing-employer-label {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.landing-employer-prices {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.landing-price-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.landing-price-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.landing-price-suffix {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

.landing-price-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.landing-price-dot {
  color: var(--border-light);
  font-size: 20px;
}

/* Landing "How it works" section */
.how-it-works-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-step-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-serif);
  letter-spacing: -0.3px;
}

.how-step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.how-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Landing jobs preview */
.landing-jobs-preview {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.landing-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.landing-preview-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition);
}
.landing-preview-link:hover { opacity: 0.8; }

/* ---- MANIFESTO ---- */
.manifesto-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.manifesto-title {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-serif);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.manifesto-col { margin-bottom: 24px; }
.manifesto-col p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 400;
}
.manifesto-col strong { color: var(--text-primary); font-weight: 600; }

.section-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 20px 0;
}
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---- PLEDGE SECTION ---- */
.pledge-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.pledge-headline {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-serif);
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.pledge-doc {
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent);
  background: var(--bg-card);
  padding: 32px 32px 28px;
  margin-bottom: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.pledge-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pledge-text {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-serif);
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

.pledge-terms {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.pledge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.pledge-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 20px;
  font-style: italic;
}

/* ---- STATS ---- */
.stats-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.stat-number {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1.5px;
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  font-weight: 400;
}

/* ---- CLOSING ---- */
.closing-section {
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--border);
}

.closing-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
  max-width: 560px;
  margin-bottom: 16px;
}

.closing-body-accent { color: var(--accent); font-weight: 600; }

.closing-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  font-family: var(--font-serif);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--text-secondary); }

/* ---- PAGE HEADER ---- */
.page-header {
  padding: 48px 32px 40px;
  border-bottom: 1px solid var(--border);
}

.page-header-inner { max-width: 720px; }

.page-header-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.page-headline {
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 800;
  font-family: var(--font-serif);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.page-headline-sm {
  font-size: clamp(32px, 5vw, 52px);
}

.page-sub {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.55;
}

.page-sub-centered {
  max-width: 480px;
  margin: 12px auto 0;
}

/* ---- JOBS LIST ---- */
.jobs-list-section {
  padding: 40px 32px;
  min-height: 400px;
}

.jobs-results-count {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.job-card {
  border: 1px solid var(--border);
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.job-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px var(--accent-glow);
}

.job-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.job-industry {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.featured-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(212,146,10,0.3);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 0.04em;
}

.job-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.3px;
  font-family: var(--font-serif);
}

.job-company {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

.job-location {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.job-salary {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 14px;
  letter-spacing: -0.3px;
}

.job-card-arrow {
  font-size: 12px;
  color: var(--accent);
  margin-top: auto;
  padding-top: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.job-card:hover .job-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.jobs-cta-strip {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  background: var(--bg-card);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: 4px;
}

.jobs-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.jobs-cta-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  font-family: var(--font-serif);
}

/* ---- FEATURED JOB CARD ---- */
.job-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.3);
  background: linear-gradient(180deg, rgba(212,146,10,0.04) 0%, var(--bg-card) 100%);
}

/* ---- JOB DETAIL ---- */
.job-detail-header {
  padding: 40px 32px 32px;
  border-bottom: 1px solid var(--border);
}

.job-detail-header-inner { max-width: 760px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--accent); }

.job-detail-meta { margin-bottom: 14px; }

.job-detail-industry {
  display: block;
  margin-bottom: 10px;
}

.job-detail-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  font-family: var(--font-serif);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.job-detail-company {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 20px;
}

.job-detail-attrs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.job-detail-attr {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--text-muted);
}

.job-detail-dot {
  color: var(--border-light);
}

.job-detail-salary { color: var(--accent); font-weight: 700; }

.job-detail-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  align-items: start;
}

.job-detail-content {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}

.job-section { margin-bottom: 44px; }

.job-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.job-section-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 400;
}

.job-detail-sidebar {
  padding: 28px 24px;
  position: sticky;
  top: 60px;
}

.sidebar-card {
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  padding: 28px;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.sidebar-salary {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.8px;
  font-family: var(--font-serif);
  margin-bottom: 4px;
}

.sidebar-salary-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 400;
}

.sidebar-divider {
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.sidebar-pledge-note {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 400;
}

.sidebar-small {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  font-weight: 400;
  font-style: italic;
}
.sidebar-small a { color: var(--text-muted); text-decoration: underline; }
.sidebar-small a:hover { color: var(--text-secondary); }

.sidebar-pledge-box {
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent);
  background: var(--bg-elevated);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.sidebar-pledge-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.sidebar-pledge-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  font-weight: 400;
}

/* ---- SIGNUP ---- */
.signup-section {
  padding: 64px 32px;
}

.signup-inner { max-width: 560px; }

.signup-headline {
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 800;
  font-family: var(--font-serif);
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}

.signup-sub {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ---- FORM ---- */
.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 9px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Select dropdown styling */
select.form-input {
  background-color: var(--bg-card);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6256' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-check-group { margin-bottom: 28px; }

.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.form-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-check-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  font-weight: 400;
}

.form-error {
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  color: #e74c3c;
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 22px;
  border-radius: var(--radius);
}

.form-fine-print {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 18px;
  text-align: center;
  font-weight: 400;
}
.form-fine-print a { color: var(--text-muted); text-decoration: underline; }
.form-fine-print a:hover { color: var(--text-secondary); }

.form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  border-radius: var(--radius);
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1.55;
}
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-hint { font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: normal; }

.form-success {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  color: var(--success);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 22px;
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}

/* ---- CANDIDATE PROFILE ---- */
.profile-section {
  padding: 64px 32px;
}

.profile-inner { max-width: 640px; }

.profile-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.profile-avatar {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--accent);
  color: var(--bg);
  font-size: 30px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.profile-name {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-serif);
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pledge-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--accent);
  background: var(--accent-glow);
  padding: 6px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
}

.pledge-badge-icon { color: var(--accent); font-size: 13px; }
.pledge-badge-text { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; }

.profile-pledge-signed { font-size: 13px; color: var(--text-muted); }
.profile-location { font-size: 13px; color: var(--text-muted); margin-top: 5px; }

.profile-bio-block {
  padding: 24px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.profile-bio { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

.profile-work-history {
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.profile-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.work-item { margin-bottom: 20px; }
.work-item:last-child { margin-bottom: 0; }

.work-item-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.work-role { font-size: 16px; font-weight: 700; color: var(--text-primary); font-family: var(--font-serif); }
.work-period { font-size: 13px; color: var(--text-muted); }
.work-company { font-size: 14px; color: var(--text-secondary); margin-top: 2px; }
.work-notes { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin-top: 5px; }

.profile-pledge-block {
  padding: 28px 28px 24px;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent);
  background: var(--bg-card);
  margin-bottom: 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.profile-pledge-quote {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.profile-share-note { font-size: 13px; color: var(--text-muted); }

/* ---- ERROR ---- */
.error-section { padding: 80px 32px; }
.error-inner { max-width: 480px; }
.error-headline {
  font-size: 44px;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.error-message {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---- EMPTY STATE ---- */
.empty-state {
  padding: 64px 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}
.empty-state a { color: var(--text-muted); text-decoration: underline; }

/* ---- AUTH PAGES ---- */
.auth-page {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 24px 80px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
}

.auth-card-wide {
  max-width: 640px;
}

.auth-header { margin-bottom: 32px; }

.auth-title {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-serif);
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.auth-title-sm {
  font-size: 18px;
  margin-bottom: 6px;
}

.auth-sub {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
}

.auth-switch {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.auth-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.auth-link:hover { text-decoration: underline; }

.auth-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.auth-small {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ---- DASHBOARD ---- */
.dashboard-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dashboard-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  font-family: var(--font-serif);
  letter-spacing: -0.8px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.dashboard-sub {
  font-size: 15px;
  color: var(--text-secondary);
}

.dashboard-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-jobs-list { display: flex; flex-direction: column; gap: 14px; }

.dashboard-job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  gap: 20px;
  flex-wrap: wrap;
  transition: border-color var(--transition), background var(--transition);
}
.dashboard-job-row:hover {
  border-color: rgba(212,146,10,0.4);
  background: var(--bg-elevated);
}

.dashboard-job-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.dashboard-job-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot-active {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
}

.status-dot-inactive {
  background: #6b7280;
}

.dashboard-job-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-serif);
}

.dashboard-job-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-job-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.empty-dashboard {
  text-align: center;
  padding: 80px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
}

.empty-title {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.empty-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 400px;
  line-height: 1.6;
}

.badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 6px;
}

/* ---- APPLICATIONS ---- */
.applications-list { display: flex; flex-direction: column; gap: 14px; }

.application-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  gap: 20px;
  flex-wrap: wrap;
  transition: border-color var(--transition);
}
.application-row:hover {
  border-color: rgba(212,146,10,0.3);
}

.application-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
  font-family: var(--font-serif);
  transition: color var(--transition);
}
.application-name:hover { color: var(--accent); }

.application-meta { font-size: 13px; color: var(--text-muted); margin-top: 5px; }

.application-note {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 10px;
  line-height: 1.55;
}

.application-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.application-status-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.status-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: capitalize;
  letter-spacing: 0.04em;
}
.status-applied { background: var(--accent-glow); color: var(--accent); border: 1px solid rgba(212,146,10,0.3); }
.status-reviewed { background: rgba(160,112,0,0.15); color: #c9a227; border: 1px solid rgba(201,162,39,0.3); }
.status-shortlisted { background: rgba(39,174,96,0.1); color: var(--success); border: 1px solid rgba(39,174,96,0.3); }
.status-rejected { background: rgba(192,57,43,0.1); color: var(--danger); border: 1px solid rgba(192,57,43,0.3); }

.status-select {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 13px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  cursor: pointer;
}

/* ---- CANDIDATES GRID ---- */
.candidates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.candidate-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition);
}
.candidate-card:hover { border-color: rgba(212,146,10,0.4); transform: translateY(-2px); }

.candidate-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.candidate-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.2px;
  font-family: var(--font-serif);
  transition: color var(--transition);
}
.candidate-card-name:hover { color: var(--accent); }

.pledge-badge-small {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(212,146,10,0.4);
  background: var(--accent-glow);
  padding: 4px 12px;
  border-radius: 999px;
}

.candidate-card-location { font-size: 13px; color: var(--text-muted); }

.candidate-card-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.candidate-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* ---- FILTER BAR ---- */
.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-search { max-width: 260px; }

.filter-select { max-width: 180px; }

/* ---- MESSAGING ---- */
.inbox-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}

.inbox-thread {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.inbox-thread:last-child { border-bottom: none; }
.inbox-thread:hover { background: var(--bg-elevated); }
.inbox-thread-unread { background: var(--accent-glow); }

.inbox-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--accent-glow);
}

.inbox-content { flex: 1; min-width: 0; }

.inbox-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inbox-preview {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 3px;
}

.inbox-time {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.thread-messages {
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.thread-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  padding: 40px 0;
  font-style: italic;
}

.thread-message { max-width: 70%; display: flex; flex-direction: column; gap: 5px; }
.thread-message-mine { align-self: flex-end; align-items: flex-end; }
.thread-message-theirs { align-self: flex-start; align-items: flex-start; }

.thread-message-body {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
}
.thread-message-mine .thread-message-body {
  background: var(--accent);
  color: var(--bg);
  border-bottom-right-radius: 4px;
}
.thread-message-theirs .thread-message-body {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  border-bottom-left-radius: 4px;
}

.thread-message-time { font-size: 11px; color: var(--text-muted); padding: 0 4px; }

.thread-form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.thread-input {
  flex: 1;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  border-radius: var(--radius-lg);
  resize: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.thread-input::placeholder { color: var(--text-muted); }
.thread-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.already-applied-badge {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--success);
  padding: 14px;
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: rgba(39,174,96,0.07);
}

/* ---- PRICING PAGE ---- */
.pricing-grid-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow-strong), 0 8px 32px rgba(0,0,0,0.4);
  background: linear-gradient(180deg, rgba(212,146,10,0.06) 0%, var(--bg-card) 100%);
  transform: scale(1.02);
}
.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-2px);
}

.pricing-tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.pricing-tier-label-accent { color: var(--accent); }

.pricing-price {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

.pricing-price-suffix {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-cadence {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.4;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 0;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.pricing-disabled {
  color: var(--text-muted) !important;
}

.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
}

/* Why section on pricing */
.pricing-why-section {
  max-width: 640px;
  margin: 60px auto 0;
  padding: 60px 24px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.pricing-why-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-family: var(--font-serif);
}

.pricing-why-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pricing-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.pricing-why-item-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.pricing-why-item-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.pricing-footer p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.pricing-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.pricing-footer a:hover { color: var(--accent); }

/* ---- PAYMENT SUCCESS ---- */
.payment-success {
  max-width: 520px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.payment-success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--accent);
}

.payment-success-title {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-serif);
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.payment-success-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.payment-success-email {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 32px;
}

.payment-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ---- FADE-IN ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

/* ---- FEATURED CANDIDATE ---- */
.candidate-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.3);
  background: linear-gradient(180deg, rgba(212,146,10,0.04) 0%, var(--bg-card) 100%);
}

.candidate-star-indicator {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  margin-right: 4px;
  vertical-align: middle;
}

/* ---- CANDIDATE FEATURED BADGE ---- */
.candidate-featured-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(212,146,10,0.3);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  display: inline-block;
}

/* ---- CANDIDATE DASHBOARD FEATURED BANNER ---- */
.featured-candidate-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, rgba(212,146,10,0.08) 0%, rgba(212,146,10,0.03) 100%);
  border: 1px solid rgba(212,146,10,0.35);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.featured-candidate-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-expiry-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.featured-days-left {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(212,146,10,0.15);
  border: 1px solid rgba(212,146,10,0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---- CANDIDATE FEATURE CTA STRIP ---- */
.feature-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.feature-cta-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-cta-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-cta-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.btn-feature-candidate {
  font-size: 13px;
  font-weight: 700;
  color: var(--bg-deep);
  background: var(--accent);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 0 1px var(--accent-glow);
}

.btn-feature-candidate:hover {
  background: #e09010;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,146,10,0.4);
}

/* ---- ALERT BANNERS ---- */
.alert-banner {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid;
}

.alert-success {
  background: rgba(34,197,94,0.1);
  color: #22c55e;
  border-color: rgba(34,197,94,0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 700px) {
  .pledge-trust-strip { padding: 8px 16px; font-size: 11px; }
  .nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 98px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 16px;
    gap: 16px;
    z-index: 99;
    animation: fadeInUp 0.2s ease;
  }
  .nav-toggle { display: block; }

  .landing-hero { padding: 48px 16px 44px; }
  .landing-container { padding: 0 16px; }
  .manifesto-section, .pledge-section, .stats-section, .closing-section { padding: 48px 16px; }
  .how-it-works-section { padding: 48px 16px; }
  .how-it-works-grid { grid-template-columns: 1fr; gap: 28px; }
  .landing-jobs-preview { padding: 48px 16px; }

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

  .page-header { padding: 40px 16px 32px; }
  .jobs-list-section { padding: 28px 16px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .jobs-cta-strip { padding: 28px 16px; }
  .jobs-cta-inner { flex-direction: column; align-items: flex-start; }

  .job-detail-body { grid-template-columns: 1fr; }
  .job-detail-content { padding: 28px 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .job-detail-sidebar { padding: 28px 16px; position: static; }
  .job-detail-header { padding: 28px 16px 24px; }

  .signup-section { padding: 48px 16px; }
  .profile-section { padding: 48px 16px; }
  .profile-card { flex-direction: column; gap: 18px; padding: 20px; }
  .profile-inner, .signup-inner, .auth-card { padding: 0 4px; }

  .dashboard-page { padding: 28px 16px 64px; }
  .dashboard-header { flex-direction: column; gap: 18px; }
  .dashboard-header-actions { flex-wrap: wrap; }

  .form-row { grid-template-columns: 1fr; }
  .filter-bar { gap: 8px; }
  .filter-search { max-width: 100%; }
  .filter-select { max-width: 100%; }

  .candidates-grid { grid-template-columns: 1fr; }
  .thread-message { max-width: 85%; }
  .auth-page { padding: 40px 16px 64px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-2px); }
  .pricing-why-grid { grid-template-columns: 1fr; }
  .pricing-grid-wrap { padding: 28px 16px 48px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-why-section { margin-top: 40px; padding: 40px 16px 0; }
  .pricing-footer { padding: 28px 16px; }

  .footer { padding: 24px 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-left { flex-direction: column; gap: 6px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }

  .closing-actions { flex-direction: column; }
  .landing-employer-prices { flex-direction: column; gap: 16px; }
  .landing-price-dot { display: none; }
  .filter-bar .btn-secondary { width: 100%; }
  .job-key-facts { flex-direction: column; gap: 16px; }
}

/* ---- NAV ACTIVE LINK ---- */
.nav-link.nav-current {
  color: var(--accent);
  font-weight: 600;
}

/* ---- ERROR PAGE ACTIONS ---- */
.error-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---- EMPTY STATE (no results) ---- */
.empty-state {
  text-align: center;
  padding: 64px 32px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

.empty-state-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-muted);
  font-size: 20px;
}

.empty-state-title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.empty-state-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FORM VALIDATION STATES ---- */
.form-input:focus:invalid,
.form-textarea:focus:invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}

.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(192,57,43,0.5);
}

/* ---- JOB KEY FACTS BLOCK ---- */
.job-key-facts-wrap {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}

.job-key-facts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 0;
  max-width: 760px;
}

.job-key-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.job-key-fact-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.job-key-fact-value {
  font-weight: 600;
  color: var(--text-primary);
}

.job-key-fact-label {
  color: var(--text-muted);
  font-size: 12px;
}

.job-key-fact-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- RESULTS COUNT (more intentional) ---- */
.jobs-results-count {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jobs-results-count::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- PRICING CARD TRUST COPY ---- */
.pricing-trust {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: -12px;
  margin-bottom: 20px;
}

/* ---- LANDING HERO TIGHTER ABOVE-FOLD ---- */
.landing-hero {
  padding: 64px 0 56px;
}

.landing-headline {
  font-size: clamp(40px, 8vw, 68px);
}

.landing-sub {
  font-size: 16px;
  max-width: 480px;
}

.landing-actions {
  gap: 12px;
}

/* ---- FILTER BAR IMPROVEMENTS ---- */
.filter-bar {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  gap: 10px;
}

/* ---- MOBILE FILTER FULL-WIDTH ---- */
@media (max-width: 700px) {
  .filter-bar {
    padding: 16px;
    gap: 8px;
  }
  .empty-state { padding: 48px 20px; }
  .empty-state-actions { flex-direction: column; }
  .job-key-facts { padding: 14px 16px; }
  .job-key-fact-divider { display: none; }
}
