        :root {
            --bg: #f5f7fb;
            --card: #ffffff;
            --text: #0f172a;
            --muted: #475569;
            --line: #dbe3ee;
            --accent: #0f766e;
            --accent-soft: #ccfbf1;
        }
        * { box-sizing: border-box; }
        body {
            margin: 0;
            font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text);
            background: radial-gradient(circle at top right, #e0f2fe 0%, var(--bg) 42%);
            line-height: 1.55;
        }
        .container { max-width: 980px; margin: 0 auto; padding: 28px 18px 56px; }
        .hero {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 8px 30px rgba(15,23,42,0.06);
        }
        .kicker {
            display: inline-block;
            background: var(--accent-soft);
            color: #0f766e;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 700;
            padding: 6px 10px;
            margin-bottom: 12px;
        }
        h1 { margin: 0 0 12px; font-size: clamp(1.6rem,4vw,2.35rem); line-height: 1.2; }
        h2 { margin: 0 0 12px; font-size: 1.35rem; }
        .lead { margin: 0; color: var(--muted); font-size: 1.02rem; }
        .card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 18px;
            margin-top: 16px;
        }
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin-top: 12px;
        }
        .category-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px;
            border: 1px solid var(--line);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text);
            background: #f8fafc;
            transition: border-color 0.15s, box-shadow 0.15s;
        }
        .category-card:hover {
            border-color: var(--accent);
            box-shadow: 0 2px 8px rgba(15,118,110,0.1);
        }
        .category-icon { font-size: 1.5rem; flex-shrink: 0; }
        .category-name { font-weight: 600; font-size: 0.95rem; }
        .category-count { font-size: 0.82rem; color: var(--muted); }
        .quick-filters {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .quick-filter {
            display: inline-flex;
            align-items: center;
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 6px 10px;
            text-decoration: none;
            font-size: 0.84rem;
            color: #155e75;
            background: #ecfeff;
        }
        .quick-filter:hover { border-color: var(--accent); color: var(--accent); }
        .vacancy-list { list-style: none; padding: 0; margin: 12px 0 0; }
        .vacancy-item {
            padding: 12px 0;
            border-bottom: 1px solid var(--line);
        }
        .vacancy-item:last-child { border-bottom: 0; }
        .vacancy-title { font-weight: 600; margin: 0 0 4px; font-size: 0.95rem; }
        .vacancy-title a {
            color: inherit;
            text-decoration: none;
            border-bottom: 1px solid transparent;
        }
        .vacancy-title a:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .vacancy-meta { font-size: 0.82rem; color: var(--muted); }
        .vacancy-cta {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #0f766e;
            text-decoration: none;
            border-bottom: 1px dashed #0f766e;
        }
        .vacancy-cta:hover { border-bottom-style: solid; }
        .cta {
            margin-top: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            padding: 10px 16px;
            border: 1px solid #0f766e;
            background: #0f766e;
            color: #ffffff;
        }
        .cta:hover { background: #115e59; border-color: #115e59; }
        a { color: var(--accent); }
        .breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 12px; }
        .breadcrumb a { color: var(--accent); text-decoration: none; }
        .empty-state { text-align: center; padding: 32px; color: var(--muted); }
