:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --line: #e2e8f0;
  --ink: #0f172a;
  --muted: #64748b;
  --brand: #1d4ed8;
  --brand2: #3b82f6;
  --radius: 14px;
  --shadow: 0 1px 3px rgba(15, 23, 42, .08), 0 8px 24px rgba(15, 23, 42, .06);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; background: var(--bg); color: var(--ink); }
a { color: var(--brand); text-decoration: none; }
h1 { font-size: 30px; line-height: 1.15; margin: 0 0 8px; }
h2 { font-size: 21px; margin: 0 0 10px; }
h3 { font-size: 17px; margin: 0 0 6px; }
p { margin: 0 0 12px; line-height: 1.55; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.content { padding: 22px 0 40px; }

/* top nav */
.topnav { background: #0b1b3d; color: #fff; position: sticky; top: 0; z-index: 50; }
.topnav-in { display: flex; align-items: center; gap: 24px; height: 62px; flex-wrap: wrap; }
.brand { color: #fff; font-weight: 700; font-size: 18px; display: flex; flex-direction: column; line-height: 1.1; }
.brand span { font-size: 11px; font-weight: 500; color: #9db3d8; }
.main-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.main-nav a { color: #dbe4f5; padding: 8px 12px; border-radius: 8px; font-size: 14px; }
.main-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.main-nav a.active { background: var(--brand2); color: #fff; }
.userbox { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.who { text-align: right; line-height: 1.15; color: #fff; }
.who strong { font-size: 13px; display: block; }
.who span { font-size: 11px; color: #9db3d8; }

/* buttons */
.btn { display: inline-block; background: var(--brand); color: #fff; border: 1px solid transparent; padding: 9px 16px; border-radius: 9px; cursor: pointer; font-size: 14px; font-weight: 600; text-align: center; }
.btn:hover { background: var(--brand2); color: #fff; }
.btn-lg { padding: 12px 22px; font-size: 15px; }
.btn-sm { padding: 5px 11px; font-size: 13px; }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.6); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.28); color: #fff; }
.btn-danger { background: #dc2626; }
.btn-danger:hover { background: #b91c1c; }
.btn-share { background: #0f172a; }
.inline { display: inline-block; }

/* panels, cards */
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); margin-bottom: 20px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-bottom: 20px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.card .num { font-size: 28px; font-weight: 800; color: var(--brand); }
.card .lbl { color: var(--muted); font-size: 13px; margin-top: 4px; }
.flash { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; padding: 12px 16px; border-radius: 10px; margin-bottom: 18px; font-weight: 600; }

/* badges */
.badge { display: inline-block; padding: 3px 9px; border-radius: 20px; color: #fff; font-size: 12px; font-weight: 600; white-space: nowrap; margin-right: 4px; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.tags span { background: #eef2ff; color: #3730a3; border-radius: 20px; padding: 3px 10px; font-size: 12px; }

/* hero */
.hero { background: linear-gradient(135deg, #0b1b3d 0%, #1d4ed8 60%, #38bdf8 100%); color: #fff; border-radius: 18px; padding: 50px 40px; margin-bottom: 24px; }
.hero-tag { display: inline-block; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: 5px 12px; border-radius: 20px; font-size: 12px; margin-bottom: 16px; }
.hero h1 { font-size: 42px; }
.hero p { max-width: 640px; color: #e3ecff; }
.hero-search { display: flex; gap: 10px; margin: 22px 0 18px; max-width: 640px; }
.hero-search input { flex: 1; padding: 14px 16px; border-radius: 10px; border: none; font-size: 15px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 28px; }
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px; text-align: center; box-shadow: var(--shadow); }
.stat b { display: block; font-size: 22px; color: var(--brand); }
.stat span { color: var(--muted); font-size: 13px; }

/* sections */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 26px 0 14px; flex-wrap: wrap; }
.section-head p { margin: 0; }

/* vacuum cards */
.vac-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.vac-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.vac-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,23,42,.14); }
.vac-card h3 { font-size: 17px; color: var(--ink); margin-top: 10px; }
.vac-card-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.vac-salary { font-weight: 800; color: var(--brand); white-space: nowrap; }
.vac-facts, .ent-facts { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.vac-facts span, .ent-facts span { background: #eef2ff; padding: 5px 10px; border-radius: 8px; font-size: 13px; }

/* vac row layout */
.vac-layout { display: grid; grid-template-columns: 280px 1fr; gap: 20px; align-items: start; }
.filters { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); position: sticky; top: 80px; }
.filters label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
.filters input, .filters select { width: 100%; margin-top: 4px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; font-weight: 400; }
.filters label.chk { font-weight: 400; display: flex; align-items: center; gap: 6px; }
.filters .chk input { width: auto; margin: 0; }
.filters .btn { width: 100%; margin-top: 4px; }
.vac-list-col { min-width: 0; }
.vac-count { margin-bottom: 12px; font-size: 14px; }
.vac-row { display: block; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); margin-bottom: 12px; display: flex; justify-content: space-between; gap: 16px; }
.vac-row:hover { border-color: var(--brand2); }
.vac-row h3 { color: var(--ink); margin-top: 8px; }
.vac-row-meta { text-align: right; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; min-width: 120px; }
.search-bar { display: flex; gap: 10px; margin-bottom: 18px; }
.search-bar input { flex: 1; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; }

/* stories */
.stories-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.story-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); display: flex; gap: 14px; }
.story-ava { width: 52px; height: 52px; font-size: 30px; background: #eef2ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; }
.story-ava.big { width: 64px; height: 64px; font-size: 38px; }
.story-tag { display: inline-block; background: #dbeafe; color: #1d4ed8; border-radius: 20px; padding: 2px 10px; font-size: 11px; font-weight: 700; margin-bottom: 6px; }
.story-card blockquote { margin: 10px 0; font-style: italic; color: #334155; }
.story-path { font-size: 12px; color: var(--brand); font-weight: 600; }
.story-inline { background: linear-gradient(135deg, #eef2ff, #f8fafc); border: 1px solid #dbeafe; border-radius: var(--radius); padding: 20px; margin: 6px 0 16px; display: flex; gap: 16px; }
.story-inline blockquote { margin: 10px 0; font-style: italic; color: #334155; }
.career-stories { margin: 30px 0; }

/* timeline */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.t-step { background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; padding: 16px; text-align: center; }
.t-step i { display: inline-flex; width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; font-style: normal; font-weight: 700; align-items: center; justify-content: center; margin-bottom: 8px; }
.t-step b { display: block; }
.t-step span { color: var(--muted); font-size: 13px; }
.reminder-block { background: linear-gradient(135deg, #1e293b, #334155); color: #fff; border-radius: 16px; padding: 34px; margin: 30px 0 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.reminder-block h2 { margin: 0 0 6px; }
.reminder-block p { margin: 0; color: #cbd5e1; }
.role-panel { border-color: #dbeafe; background: #eff6ff; }

/* vacancy detail */
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.vac-head { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; justify-content: space-between; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.vac-head h1 { font-size: 28px; }
.vac-head-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.vac-detail { display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start; }
.vac-anchor { position: sticky; top: 80px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 10px; display: flex; flex-wrap: wrap; gap: 4px; box-shadow: var(--shadow); }
.vac-anchor a { padding: 7px 12px; border-radius: 8px; font-size: 13px; color: var(--ink); }
.vac-anchor a:hover, .vac-anchor a.active { background: #eef2ff; color: var(--brand); }
.vac-sec { margin-bottom: 28px; scroll-margin-top: 90px; }
.vac-sec ul { margin: 8px 0; padding-left: 20px; line-height: 1.7; }
.adv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.adv-chip { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; padding: 10px 12px; border-radius: 10px; font-size: 14px; }
.loc-card { display: flex; gap: 14px; background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.loc-ico { font-size: 30px; }
.vac-side .panel { }
.mini-vac { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); }
.mini-vac:last-child { border-bottom: none; }
.mini-vac b { color: var(--ink); }
.mini-vac span { display: block; font-size: 12px; }

/* forms */
.form-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.form-grid label, .panel label:not(.chk) { display: flex; flex-direction: column; font-size: 13px; color: var(--muted); font-weight: 600; gap: 4px; margin-bottom: 10px; }
.form-grid .full, .panel .full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea, .panel input, .panel select, .panel textarea { padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; font-weight: 400; }
.form-grid input:focus, .panel input:focus, .panel select:focus, .panel textarea:focus { border-color: var(--brand2); outline: none; }
.panel label.chk, .form-grid label.chk { flex-direction: row; align-items: center; font-weight: 400; color: var(--ink); }
.panel .chk input { margin: 0; }
.nowrap { white-space: nowrap; }

/* tables */
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
tr:hover td { background: #f8fafc; }
.empty { color: var(--muted); text-align: center; padding: 24px; }

/* map */
.map-wrap { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; margin-bottom: 20px; }
.map-wrap.small { max-width: 640px; }
.grk-map { width: 100%; height: 340px; display: block; border-radius: 10px; border: 1px solid var(--line); }
.map-wrap.small .grk-map { height: 240px; }
.map-marker { cursor: pointer; }
.map-marker.active circle { stroke: #0f172a; stroke-width: .6; }
.map-marker:hover { filter: brightness(1.1); }
.map-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; justify-content: center; }
.map-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink); padding: 7px 12px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.map-chip i { width: 9px; height: 9px; border-radius: 50%; background: var(--dot); }
.map-chip.active { border-color: var(--brand2); background: #eef2ff; font-weight: 700; }
.map-tip { display: none; text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.map-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-top: 14px; }
.map-stat { display: flex; flex-direction: column; gap: 2px; background: #f8fafc; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 13px; }
.map-stat .dot { width: 10px; height: 10px; border-radius: 50%; }

/* enterprises */
.ent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.ent-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); display: block; transition: transform .15s; }
.ent-card:hover { transform: translateY(-3px); }
.ent-head { display: flex; gap: 12px; align-items: center; border-left: 4px solid; padding-left: 10px; margin-bottom: 10px; }
.ent-logo { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand2)); flex: none; }
.ent-desc { font-size: 14px; color: #334155; }
.ent-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; color: var(--muted); font-size: 13px; margin-top: 10px; }
.ent-hero { background: var(--panel); border: 1px solid var(--line); border-top: 6px solid var(--accent); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; gap: 20px; margin-bottom: 18px; }
.ent-hero-logo { width: 74px; height: 74px; border-radius: 14px; background: var(--accent); color: #fff; font-size: 36px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: none; }
.ent-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.ent-tabs a { padding: 8px 13px; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; font-size: 13px; color: var(--ink); }
.ent-tabs a:hover { background: #eef2ff; color: var(--brand); }
.ent-sec { margin-bottom: 30px; scroll-margin-top: 80px; }
.history { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.h-item { display: flex; gap: 12px; background: #f8fafc; border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.h-item i { width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; font-style: normal; font-weight: 700; display: flex; align-items: center; justify-content: center; flex: none; }
.geo-card, .contact-card { display: flex; gap: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px; align-items: flex-start; }
.ben-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.ben-item { background: #f8fafc; border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; margin-bottom: 8px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin-top: 8px; }

/* games */
.game-card { display: flex; gap: 18px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); align-items: flex-start; }
.game-card.big { min-height: 150px; }
.game-ico { font-size: 44px; }
.games-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px; }
@media (max-width: 760px) { .games-grid { grid-template-columns: 1fr; } }
.route-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.route-card { background: var(--panel); border: 1px solid var(--line); border-top: 4px solid var(--rc); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.route-card:hover { transform: translateY(-3px); }
.route-ico { font-size: 40px; margin-bottom: 6px; }
.route-ico.big { font-size: 52px; }
.route-go { display: inline-block; margin-top: 10px; color: var(--rc); font-weight: 700; font-size: 14px; }
.route-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.route-tabs a { padding: 10px 16px; border-radius: 26px; background: var(--panel); border: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.route-tabs a.active { background: var(--rc); color: #fff; border-color: var(--rc); }
.route-view { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.route-head { display: flex; gap: 16px; margin-bottom: 20px; align-items: center; }
.route-road { display: flex; flex-direction: column; }
.r-step { display: flex; gap: 16px; position: relative; padding-bottom: 20px; }
.r-node { width: 34px; height: 34px; border-radius: 50%; background: var(--rc); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; flex: none; z-index: 2; }
.r-step:not(:last-child) .r-node { box-shadow: 0 0 0 4px #fff; }
.r-body { padding-top: 2px; flex: 1; }
.r-term { display: inline-block; background: #eef2ff; color: var(--brand); border-radius: 20px; padding: 2px 10px; font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.r-conn { position: absolute; left: 16px; top: 34px; bottom: 0; width: 2px; background: var(--line); }
.route-vac { margin-top: 20px; }

/* test */
.test-form { max-width: 720px; }
.test-progress-wrap { background: var(--line); border-radius: 20px; height: 8px; margin-bottom: 20px; }
.test-progress { height: 8px; background: var(--brand2); border-radius: 20px; width: 0; transition: width .3s; }
.test-q { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.q-num { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.test-q h3 { font-size: 20px; margin-bottom: 18px; }
.q-answers { display: flex; flex-direction: column; gap: 10px; }
.q-ans { display: flex; gap: 12px; align-items: center; background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px; cursor: pointer; }
.q-ans:hover { border-color: var(--brand2); background: #eef2ff; }
.q-ans input { accent-color: var(--brand); }
.test-actions { margin-top: 16px; text-align: center; }

/* result */
.result-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); margin-bottom: 20px; }
.result-index { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.ring { width: 130px; height: 130px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; }
.ring-in { width: 100px; height: 100px; background: #fff; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring-in b { font-size: 28px; color: var(--ink); }
.ring-in span { font-size: 12px; color: var(--muted); }
.result-desc { font-size: 16px; max-width: 720px; }
.scores, .score-widget { display: flex; flex-direction: column; gap: 10px; }
.score { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.score span { width: 150px; }
.score .bar { flex: 1; height: 12px; background: var(--line); border-radius: 20px; overflow: hidden; }
.score .bar i { display: block; height: 100%; background: var(--brand2); border-radius: 20px; }
.score b { width: 30px; text-align: right; }

/* top10 */
.top10 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px; }
.top10 a { display: flex; align-items: center; gap: 10px; background: #f8fafc; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; color: var(--ink); font-size: 14px; }
.top10 a b { margin-left: auto; color: var(--brand); }
.top10-n { width: 24px; height: 24px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center; flex: none; }
#anchor-nav.active { }

/* foot */
.foot { background: #0b1b3d; color: #9db3d8; padding: 30px 20px; margin-top: 10px; line-height: 1.7; }
.foot .wrap { max-width: 1180px; }
.page-hero { margin-bottom: 20px; }

/* login */
.login-body { background: linear-gradient(135deg, #0b1b3d, #1d4ed8); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 30px 16px; }
.login-card { background: #fff; border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,.3); padding: 34px; width: 100%; max-width: 520px; }
.login-card h1 { margin-top: 10px; }
.login-logo { font-size: 48px; text-align: center; }
.login-card .muted { text-align: center; }
.login-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
@media (max-width: 480px) { .login-grid { grid-template-columns: 1fr; } }
.login-grid form { margin: 0; padding: 0; }
.demo-btn { width: 100%; text-align: left; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #f8fafc; cursor: pointer; }
.demo-btn:hover { border-color: var(--brand2); background: #eef2ff; }
.demo-btn strong { display: block; color: var(--ink); }
.demo-btn span { display: block; color: var(--muted); font-size: 12px; }
.divider { text-align: center; color: var(--muted); font-size: 13px; margin: 16px 0; }
.login-form label { display: block; font-size: 13px; color: var(--muted); margin: 8px 0 4px; }
.login-form input { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 9px; font-size: 15px; }
.login-form .btn { width: 100%; margin-top: 14px; }
.login-card .small { line-height: 1.5; }

@media (max-width: 860px) {
  .vac-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .vac-detail { grid-template-columns: 1fr; }
  .vac-anchor { position: static; }
  .topnav-in { height: auto; padding: 12px 20px; gap: 12px; }
  .main-nav { order: 3; width: 100%; }
  .userbox { margin-left: auto; }
  .hero h1 { font-size: 32px; }
  .vac-row { flex-direction: column; }
  .vac-row-meta { text-align: left; align-items: flex-start; }
}
