/* ============================================
   SkillStack — Get Paid Page Styles
   ============================================ */

.get-paid-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 120px;
}

/* ---- Module Header ---- */
.module-header {
  margin-bottom: 32px;
}

.module-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--border);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.module-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}

.module-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
}

/* ---- Value Prop ---- */
.value-prop {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--lime-dim);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 24px;
  margin-bottom: 48px;
}

.value-icon {
  width: 36px;
  height: 36px;
  background: var(--lime);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bg);
  margin-top: 2px;
}

.value-prop p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.value-prop strong {
  color: var(--lime);
  font-weight: 600;
}

/* ---- Job Board ---- */
.job-board {
  margin-bottom: 64px;
}

.board-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.board-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.board-count {
  font-size: 13px;
  color: var(--muted);
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ---- Job Card ---- */
.job-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  border-radius: 3px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.15s;
}

.job-card:hover {
  border-color: var(--border);
}

.card-top {
  flex: 1;
}

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

.platform-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.platform-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.platform-badge.easy {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.platform-badge.medium {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.platform-badge.hard {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.pay-range {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}

.platform-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ---- Card Hiring ---- */
.card-hiring {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hiring-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hiring-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  padding: 3px 10px;
  border-radius: 2px;
}

/* ---- Card Actions ---- */
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-apply {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  background: var(--lime);
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-apply:hover {
  opacity: 0.85;
}

.btn-prep {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--border-dim);
  border-radius: 3px;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s;
  display: block;
}

.btn-prep:hover {
  background: rgba(201, 244, 57, 0.2);
  border-color: var(--border);
}

/* ---- Comparison Table ---- */
.comparison-table {
  margin-bottom: 80px;
}

.table-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

thead th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-dim);
  text-align: left;
  white-space: nowrap;
}

tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-dim);
  color: var(--text-secondary);
  vertical-align: middle;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: var(--surface);
}

tbody td:first-child {
  color: var(--cream);
  font-weight: 500;
}

td.pay {
  color: var(--lime);
  font-weight: 600;
  white-space: nowrap;
}

.badge-easy,
.badge-medium,
.badge-hard {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.badge-easy {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-medium {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-hard {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ---- Waitlist CTA ---- */
.waitlist-cta {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  padding: 64px 48px;
  text-align: center;
  background: var(--surface);
}

.waitlist-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 244, 57, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.waitlist-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}

.waitlist-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ---- Waitlist Form ---- */
.waitlist-form {
  max-width: 460px;
  margin: 0 auto;
}

.email-row {
  display: flex;
  gap: 8px;
}

.email-input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border-dim);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.15s;
}

.email-input::placeholder {
  color: var(--muted);
}

.email-input:focus {
  border-color: var(--lime);
}

.btn-waitlist {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--lime);
  border: none;
  border-radius: 3px;
  padding: 12px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.btn-waitlist:hover {
  opacity: 0.85;
}

.btn-waitlist:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.waitlist-feedback {
  margin-top: 10px;
  font-size: 13px;
  color: #ef4444;
}

.waitlist-success {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--lime);
  font-weight: 500;
}

.waitlist-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .waitlist-cta {
    padding: 48px 24px;
  }
}

@media (max-width: 600px) {
  .get-paid-container {
    padding: 32px 16px 80px;
  }
  .job-grid {
    grid-template-columns: 1fr;
  }
  .email-row {
    flex-direction: column;
  }
  .btn-waitlist {
    width: 100%;
  }
  .board-header {
    flex-direction: column;
    gap: 4px;
  }
}