    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --brand: #2563eb;
      --brand-dark: #1d4ed8;
      --ink: #0f172a;
      --muted: #64748b;
      --line: #e2e8f0;
    }
    body {
      font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 50%, #e0e9ff 100%);
      min-height: 100vh; color: var(--ink); display: flex; flex-direction: column;
    }
    a { text-decoration: none; color: inherit; }

    /* Navbar — identical to landing.html */
    .navbar { background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border-bottom: 1px solid #e2e8f0; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
    .nav-brand { display: flex; align-items: center; gap: 10px; }
    .nav-brand img { height: 34px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a { font-size: .875rem; font-weight: 500; color: #475569; transition: color .2s; }
    .nav-links a:hover { color: #2563eb; }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-actions a.signin { color: #64748b; font-size: .875rem; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: color .2s; }
    .nav-actions a.signin:hover { color: #2563eb; }
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 10px; font-size: .925rem; font-weight: 600; cursor: pointer; border: none; transition: all .22s ease; }
    .btn-primary { background: #2563eb; color: #fff; box-shadow: 0 1px 2px rgba(37,99,235,.3),0 4px 12px rgba(37,99,235,.15); }
    .btn-primary:hover { background: #1d4ed8; }
    .nav-actions .btn { padding: 9px 20px; font-size: .875rem; }

    /* Hero */
    .hero { text-align: center; padding: 54px 20px 26px; max-width: 760px; margin: 0 auto; }
    .hero .badge {
      display: inline-block; background: #dbeafe; color: var(--brand-dark);
      font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
    }
    .hero h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
    .hero p { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }

    /* Search */
    .toolbar { width: 100%; max-width: 1040px; margin: 24px auto 0; padding: 0 20px; }
    .search-wrap { position: relative; }
    .search-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #94a3b8; }
    #search {
      width: 100%; padding: 14px 16px 14px 46px; font-size: 1rem;
      border: 1px solid var(--line); border-radius: 12px; background: #fff;
      box-shadow: 0 4px 16px rgba(15,23,42,.05); outline: none; transition: border-color .2s, box-shadow .2s;
    }
    #search:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
    .count { color: var(--muted); font-size: .85rem; margin-top: 12px; text-align: center; }
    .toolbar-row { display: flex; gap: 12px; align-items: center; }
    .toolbar-row .search-wrap { flex: 1; min-width: 0; }
    .date-filter {
      flex-shrink: 0; padding: 14px 16px; font-size: .95rem; color: var(--ink);
      border: 1px solid var(--line); border-radius: 12px; background: #fff;
      box-shadow: 0 4px 16px rgba(15,23,42,.05); outline: none; cursor: pointer; min-width: 150px;
    }
    .date-filter:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }

    /* Job list — one job per full-width row */
    .job-list { width: 100%; max-width: 1040px; margin: 18px auto 28px; padding: 0 20px; display: flex; flex-direction: column; gap: 14px; }
    .job-row {
      background: #fff; border: 1px solid var(--line); border-radius: 14px;
      padding: 20px 24px; display: flex; align-items: stretch; gap: 24px; min-height: 96px; cursor: pointer;
      box-shadow: 0 4px 16px rgba(15,23,42,.05); transition: transform .15s, box-shadow .15s;
      animation: rise .35s cubic-bezier(.16,1,.3,1) both;
    }
    .job-row:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(15,23,42,.10); }
    @keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
    .job-info { flex: 1; min-width: 0; }
    .job-row-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 9px; }
    .job-title { font-size: 1.22rem; font-weight: 700; line-height: 1.25; overflow-wrap: anywhere; }
    .company { font-size: .82rem; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .03em; overflow-wrap: anywhere; }
    .meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 9px; }
    .pill { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 600; background: #f1f5f9; color: #475569; padding: 5px 11px; border-radius: 8px; }
    .pill.exp { background: #ecfdf5; color: #047857; }
    .pill.loc { background: #fef3f2; color: #b42318; }
    .job-desc { color: var(--muted); font-size: .9rem; line-height: 1.5; margin: 0 0 9px; overflow-wrap: anywhere;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .posted { font-size: .76rem; font-weight: 600; color: #94a3b8; white-space: nowrap; }
    .skills { display: flex; flex-wrap: wrap; gap: 6px; }
    .skill { font-size: .73rem; font-weight: 600; color: var(--brand-dark); background: #eff6ff; border: 1px solid #dbeafe; padding: 4px 9px; border-radius: 999px; }
    .job-action { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 12px; text-align: right; }
    .job-action .posted { width: 100%; text-align: right; }
    .job-action .apply-btn { margin-top: auto; }

    /* Job detail modal */
    .modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(15,23,42,.55); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; padding: 20px; }
    .modal-overlay.open { display: flex; }
    .modal { background: #fff; border-radius: 16px; width: 100%; max-width: 620px; max-height: 88vh; overflow-y: auto; padding: 28px 28px 24px; position: relative; box-shadow: 0 24px 60px rgba(15,23,42,.3); animation: rise .25s ease both; }
    .modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 1.6rem; line-height: 1; color: #94a3b8; cursor: pointer; }
    .modal-close:hover { color: var(--ink); }
    .modal h2 { font-size: 1.45rem; font-weight: 800; line-height: 1.2; margin-bottom: 4px; padding-right: 28px; }
    .modal .m-company { font-size: .85rem; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 14px; }
    .modal .m-desc { color: #334155; font-size: .94rem; line-height: 1.6; margin: 14px 0 18px; }
    .modal .m-desc h1, .modal .m-desc h2, .modal .m-desc h3, .modal .m-desc h4 { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 14px 0 6px; }
    .modal .m-desc p { margin: 0 0 10px; }
    .modal .m-desc ul, .modal .m-desc ol { margin: 0 0 10px; padding-left: 20px; }
    .modal .m-desc li { margin: 3px 0; }
    .modal .m-desc hr { border: none; border-top: 1px solid #e2e8f0; margin: 14px 0; }
    .modal .m-desc strong { color: #0f172a; }
    .modal .m-desc a { color: var(--brand); }
    .modal .m-desc code { background: #f1f5f9; padding: 1px 5px; border-radius: 4px; font-size: .86em; }
    .modal .m-section-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #94a3b8; margin: 16px 0 8px; }
    .modal .apply-btn { width: 100%; margin-top: 6px; }
    .apply-btn {
      display: inline-block; text-align: center; padding: 12px 34px; border-radius: 10px;
      background: var(--brand); color: #fff; font-weight: 700; font-size: .95rem; white-space: nowrap;
      transition: background .2s; box-shadow: 0 4px 12px rgba(37,99,235,.18);
    }
    .apply-btn:hover { background: var(--brand-dark); }

    /* Pagination */
    .pager { max-width: 1040px; margin: 0 auto 56px; padding: 0 20px; display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; }
    .pager button {
      min-width: 38px; height: 38px; padding: 0 12px; border: 1px solid var(--line); background: #fff;
      color: #334155; font-size: .9rem; font-weight: 600; border-radius: 9px; cursor: pointer; transition: all .15s;
    }
    .pager button:hover:not(:disabled) { border-color: var(--brand); color: var(--brand); }
    .pager button.active { background: var(--brand); color: #fff; border-color: var(--brand); }
    .pager button:disabled { opacity: .45; cursor: default; }
    .pager .pager-ellipsis { padding: 0 4px; color: #94a3b8; }

    /* States */
    .state { max-width: 560px; margin: 50px auto; text-align: center; color: var(--muted); flex: 1; }
    .state .icon { font-size: 2.6rem; margin-bottom: 10px; }
    .spinner {
      width: 38px; height: 38px; border: 4px solid #dbeafe; border-top-color: var(--brand);
      border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 14px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Footer — mirrors landing.html .seo-footer */
    .seo-footer { background: #0f172a; color: #94a3b8; padding: 40px 24px 24px; margin-top: auto; }
    .seo-footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 28px; }
    .seo-footer strong { color: #f8fafc; font-size: 1rem; }
    .seo-footer p { font-size: .85rem; margin-top: 6px; }
    .seo-footer-col { display: flex; flex-direction: column; gap: 6px; }
    .seo-footer-col b { color: #e2e8f0; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
    .seo-footer-col a { color: #94a3b8; font-size: .85rem; transition: color .2s; }
    .seo-footer-col a:hover { color: #fff; }
    .seo-footer-bottom { max-width: 1100px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid #1e293b; display: flex; flex-wrap: wrap; gap: 16px; font-size: .8rem; }
    .seo-footer-bottom a { color: #94a3b8; }
    .seo-footer-bottom a:hover { color: #fff; }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-actions .btn.btn-primary { display: none; }
      .nav-actions a.signin { background: #2563eb; color: #fff; border-radius: 8px; padding: 8px 18px; font-weight: 600; }
      .seo-footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .hero h1 { font-size: 1.9rem; }
      .toolbar-row { flex-direction: column; align-items: stretch; }
      .date-filter { min-width: 0; width: 100%; }
      .job-row { flex-direction: column; align-items: stretch; gap: 14px; }
      .job-action { width: 100%; }
      .apply-btn { display: block; width: 100%; }
      .seo-footer-grid { grid-template-columns: 1fr; }
    }
  
