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

      :root {
        --bg: #0c0f14;
        --surface: #151921;
        --surface-hover: #1c2230;
        --border: rgba(255, 255, 255, 0.08);
        --text: #e8ecf4;
        --muted: #8b95a8;
        --accent: #5eead4;
        --accent-dim: rgba(94, 234, 212, 0.12);
        --accent-glow: rgba(94, 234, 212, 0.25);
        --serif: "Instrument Serif", Georgia, serif;
        --sans: "DM Sans", system-ui, sans-serif;
        --radius: 14px;
        --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: var(--sans);
        background: var(--bg);
        color: var(--text);
        min-height: 100vh;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
      }

      .bg-grid {
        position: fixed;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
        pointer-events: none;
        z-index: 0;
      }

      .bg-glow {
        position: fixed;
        top: -120px;
        left: 50%;
        transform: translateX(-50%);
        width: 720px;
        height: 480px;
        background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
      }

      .page {
        position: relative;
        z-index: 1;
        max-width: 880px;
        margin: 0 auto;
        padding: 48px 24px 80px;
      }

      header {
        text-align: center;
        margin-bottom: 48px;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: 999px;
        border: 1px solid var(--border);
        background: var(--surface);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 20px;
      }

      .badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 8px var(--accent);
      }

      h1 {
        font-family: var(--serif);
        font-size: clamp(2.4rem, 6vw, 3.6rem);
        font-weight: 400;
        line-height: 1.15;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
      }

      h1 em {
        font-style: italic;
        color: var(--accent);
      }

      .search-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: calc(var(--radius) + 4px);
        padding: 28px;
        box-shadow: var(--shadow);
        margin-bottom: 40px;
      }

      .search-form {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      .input-wrap {
        flex: 1;
        min-width: 200px;
        position: relative;
      }

      .input-wrap svg {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--muted);
        pointer-events: none;
      }

      .search-form input[type="text"] {
        width: 100%;
        padding: 14px 16px 14px 44px;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        background: var(--bg);
        color: var(--text);
        font-family: var(--sans);
        font-size: 1rem;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
      }

      .search-form input[type="text"]::placeholder {
        color: var(--muted);
      }

      .search-form input[type="text"]:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px var(--accent-dim);
      }

      .search-form button {
        padding: 14px 28px;
        border-radius: var(--radius);
        border: none;
        background: var(--accent);
        color: #0c0f14;
        font-family: var(--sans);
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
        white-space: nowrap;
      }

      .search-form button:hover {
        filter: brightness(1.08);
        box-shadow: 0 8px 24px var(--accent-glow);
        transform: translateY(-1px);
      }

      .search-form button:active {
        transform: translateY(0);
      }

      .quick-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 18px;
        align-items: center;
      }

      .quick-tags span {
        font-size: 0.8rem;
        color: var(--muted);
        margin-right: 4px;
      }

      .quick-tags a {
        padding: 6px 14px;
        border-radius: 999px;
        border: 1px solid var(--border);
        background: transparent;
        color: var(--text);
        font-size: 0.82rem;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.15s, border-color 0.15s, color 0.15s;
      }

      .quick-tags a:hover {
        background: var(--accent-dim);
        border-color: rgba(94, 234, 212, 0.3);
        color: var(--accent);
      }

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

      .select-wrap {
        flex: 1;
        min-width: 200px;
      }

      .search-form select {
        width: 100%;
        padding: 14px 16px;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        background: var(--bg);
        color: var(--text);
        font-family: var(--sans);
        font-size: 1rem;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
      }

      .search-form select:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px var(--accent-dim);
      }

      .results-updated {
        font-size: 0.78rem;
        color: var(--muted);
        margin: -8px 0 16px;
      }

      .results-header {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 20px;
        flex-wrap: wrap;
      }

      .results-header h2 {
        font-size: 1.1rem;
        font-weight: 600;
      }

      .results-count {
        font-size: 0.85rem;
        color: var(--muted);
      }

      .results-count strong {
        color: var(--accent);
        font-weight: 600;
      }

      .job-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .job-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 22px 24px;
        transition: background 0.2s, border-color 0.2s;
      }

      .job-card:hover {
        background: var(--surface-hover);
        border-color: rgba(94, 234, 212, 0.25);
      }

      .job-card-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 10px;
      }

      .job-title {
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.35;
      }

      .job-arrow {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--accent-dim);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        text-decoration: none;
        transition: background 0.2s;
      }

      .job-arrow:hover {
        background: rgba(94, 234, 212, 0.22);
      }

      .job-company {
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--accent);
        margin-bottom: 8px;
      }

      .job-desc {
        font-size: 0.88rem;
        color: var(--muted);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .empty-state {
        text-align: center;
        padding: 64px 24px;
        border: 1px dashed var(--border);
        border-radius: calc(var(--radius) + 4px);
        background: rgba(21, 25, 33, 0.5);
      }

      .empty-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 20px;
        border-radius: 16px;
        background: var(--accent-dim);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
      }

      .empty-state h3 {
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 8px;
      }

      .empty-state p {
        font-size: 0.9rem;
        color: var(--muted);
        max-width: 340px;
        margin: 0 auto;
      }

      .sources {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 48px;
        flex-wrap: wrap;
      }

      .sources span {
        font-size: 0.75rem;
        color: var(--muted);
        letter-spacing: 0.03em;
      }

      footer {
        text-align: center;
        margin-top: 56px;
        font-size: 0.78rem;
        color: rgba(139, 149, 168, 0.6);
      }

      @media (max-width: 540px) {
        .page {
          padding: 32px 16px 64px;
        }

        .search-card {
          padding: 20px;
        }

        .search-form {
          flex-direction: column;
        }

        .select-wrap,
        .search-form button {
          width: 100%;
        }

.loading-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.error-state {
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed rgba(220, 38, 38, 0.35);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(220, 38, 38, 0.08);
  color: #fca5a5;
}

.error-state h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.error-state p {
  font-size: 0.9rem;
  max-width: 360px;
  margin: 0 auto;
}
