:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --ink: #111113;
  --ink-2: #4a4a52;
  --ink-3: #8a8a93;
  --line: #ececea;
  --line-2: #e2e2df;
  --accent: #5b4cff;
  --accent-soft: #efedff;
  --green: #12a150;
  --green-soft: #e8f7ee;
  --amber: #b76e00;
  --amber-soft: #fff4e0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(16, 16, 20, .04), 0 8px 24px rgba(16, 16, 20, .06);
  --shadow-lg: 0 20px 60px rgba(16, 16, 20, .14);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 15px/1.55 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--ink-3); }
.sub { color: var(--ink-2); }
.row { display: flex; align-items: center; gap: 10px; }
.between { justify-content: space-between; }
.wrap-row { flex-wrap: wrap; }
.stack > * + * { margin-top: 12px; }
.hide-sm {}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 248, .82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { height: 64px; display: flex; align-items: center; gap: 28px; }
.logo { font-weight: 800; font-size: 20px; letter-spacing: -0.04em; display: flex; align-items: center; gap: 8px; }
.logo-mark { width: 26px; height: 26px; border-radius: 8px; background: var(--ink); position: relative; }
.logo-mark::after { content: ''; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); right: 5px; bottom: 5px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 8px 12px; border-radius: 999px; color: var(--ink-2); font-weight: 500; font-size: 14px; }
.nav-links a:hover, .nav-links a.on { color: var(--ink); background: #f0f0ed; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav .menu-btn { display: none; }
.avatar-btn { border: 0; background: none; padding: 0; cursor: pointer; border-radius: 50%; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; right: 0; top: 48px; width: 260px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; display: none;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a, .dropdown-menu button {
  display: block; width: 100%; text-align: left; padding: 9px 12px; border-radius: 8px;
  border: 0; background: none; cursor: pointer; font-size: 14px;
}
.dropdown-menu a:hover, .dropdown-menu button:hover { background: #f4f4f1; }
.dropdown-head { padding: 10px 12px 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 18px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 14px; cursor: pointer; white-space: nowrap;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2a2e; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #4a3bf0; }
.btn-ghost { background: transparent; border-color: var(--line-2); }
.btn-ghost:hover { background: #f2f2ef; }
.btn-plain { background: none; border: 0; padding: 0 8px; color: var(--ink-2); }
.btn-plain:hover { color: var(--ink); }
.btn-sm { height: 34px; padding: 0 14px; font-size: 13px; }
.btn-lg { height: 52px; padding: 0 26px; font-size: 15px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 12px;
  border-radius: 999px; background: #f1f1ee; color: var(--ink-2); font-size: 12.5px; font-weight: 500;
}
.chip-accent { background: var(--accent-soft); color: var(--accent); }
.chip-green { background: var(--green-soft); color: var(--green); }
.chip-amber { background: var(--amber-soft); color: var(--amber); }
.chip-outline { background: transparent; border: 1px solid var(--line-2); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.verified { color: var(--accent); display: inline-flex; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; }
.stars { color: #f5a623; letter-spacing: 1px; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 6px 12px; border-radius: 999px; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 800; letter-spacing: -0.045em; margin: 20px 0 18px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lead { font-size: 18px; color: var(--ink-2); max-width: 520px; }
.search {
  margin-top: 30px; display: flex; gap: 6px; background: var(--surface); padding: 6px;
  border-radius: 999px; border: 1px solid var(--line); box-shadow: var(--shadow); max-width: 560px;
}
.search input { flex: 1; border: 0; outline: 0; background: none; padding: 0 16px; min-width: 0; }
.search select { border: 0; background: #f4f4f1; border-radius: 999px; padding: 0 12px; outline: 0; }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; }
.hero-stats b { display: block; font-size: 22px; letter-spacing: -0.03em; }
.hero-stats span { font-size: 13px; color: var(--ink-3); }
.hero-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-collage .tile { border-radius: 20px; overflow: hidden; position: relative; background: #eee; }
.hero-collage .tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .tile:nth-child(1) { grid-row: span 2; aspect-ratio: 3/4.4; }
.hero-collage .tile:nth-child(2), .hero-collage .tile:nth-child(3) { aspect-ratio: 1; }
.float-card {
  position: absolute; left: 12px; bottom: 12px; right: 12px; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-radius: 14px; padding: 10px 12px; display: flex; gap: 10px; align-items: center; font-size: 13px;
}

/* ---------- Sections ---------- */
section.block { padding: 56px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.section-head h2 { font-size: 30px; font-weight: 700; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat-card {
  border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3.2; background: #ddd;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.cat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(0,0,0,.7)); z-index: -1; }
.cat-card:hover img { transform: scale(1.04); }
.cat-card .in { padding: 22px; }
.cat-card h3 { font-size: 22px; }
.cat-card p { opacity: .85; font-size: 14px; margin-top: 4px; }

.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.step-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.step-col h3 { font-size: 20px; margin-bottom: 18px; }
.step { display: flex; gap: 14px; padding: 12px 0; }
.step-n { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.step b { display: block; }
.step span { color: var(--ink-2); font-size: 14px; }

.fee-band { background: var(--ink); color: #fff; border-radius: 24px; padding: 44px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.fee-band h2 { font-size: 34px; letter-spacing: -0.03em; }
.fee-band p { color: #b9b9c2; margin-top: 12px; }
.receipt { background: #1c1c20; border-radius: 16px; padding: 22px; font-size: 14px; }
.receipt .line { display: flex; justify-content: space-between; padding: 8px 0; color: #cfcfd6; }
.receipt .line.total { border-top: 1px solid #333; margin-top: 6px; padding-top: 14px; color: #fff; font-weight: 700; font-size: 16px; }
.receipt .line.pay { color: #8df0b3; font-weight: 600; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.card-pad { padding: 22px; }
.talent-card { overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s ease, transform .2s ease; }
.talent-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.talent-cover { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; aspect-ratio: 16/10; background: #eee; }
.talent-cover > div { overflow: hidden; position: relative; background: #e9e9e6; }
.talent-cover > div:first-child { grid-row: span 2; }
.talent-cover img { width: 100%; height: 100%; object-fit: cover; }
.talent-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.talent-top { display: flex; gap: 12px; align-items: center; }
.avatar { border-radius: 50%; object-fit: cover; background: #ddd; flex: none; }
.name { font-weight: 700; display: flex; align-items: center; gap: 5px; }
.talent-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); font-size: 13.5px; }
.price b { font-size: 16px; }
.play { position: absolute; inset: 0; display: grid; place-items: center; }
.play span { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.play-sm span { width: 30px; height: 30px; }

.job-card { padding: 22px; display: block; transition: box-shadow .2s ease, border-color .2s ease; }
.job-card:hover { box-shadow: var(--shadow); border-color: var(--line-2); }
.job-card h3 { font-size: 18px; margin: 8px 0 6px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13.5px; color: var(--ink-2); margin-top: 12px; }
.job-meta b { color: var(--ink); }
.clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Browse layout ---------- */
.page-head { padding: 40px 0 20px; }
.page-head h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.035em; }
.browse { display: grid; grid-template-columns: 250px 1fr; gap: 28px; padding-bottom: 72px; }
.filters { position: sticky; top: 84px; align-self: start; }
.filters h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin: 22px 0 10px; }
.filters h4:first-child { margin-top: 0; }
.opt { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 8px; cursor: pointer; font-size: 14px; color: var(--ink-2); }
.opt:hover { background: #f1f1ee; }
.opt.on { background: var(--ink); color: #fff; }
.opt .count { margin-left: auto; font-size: 12px; opacity: .6; }
.toolbar { display: flex; gap: 10px; margin-bottom: 18px; align-items: center; }
.toolbar .search { margin: 0; max-width: none; flex: 1; box-shadow: none; }
.select { height: 42px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--surface); padding: 0 14px; }
.empty { text-align: center; padding: 60px 20px; color: var(--ink-3); }

/* ---------- Profile ---------- */
.profile-hero { padding: 36px 0 12px; display: grid; grid-template-columns: 1fr 340px; gap: 32px; }
.profile-id { display: flex; gap: 20px; align-items: center; }
.profile-id h1 { font-size: 32px; font-weight: 800; letter-spacing: -0.035em; }
.profile-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; padding-bottom: 80px; }
.side-card { position: sticky; top: 84px; }
.rate-big { font-size: 34px; font-weight: 800; letter-spacing: -0.04em; }
.kv { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.kv:last-child { border-bottom: 0; }
.kv span:first-child { color: var(--ink-3); }
.portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.portfolio .item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1; background: #eee; cursor: zoom-in; }
.portfolio .item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.portfolio .item:hover img { transform: scale(1.04); }
.portfolio .item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 12px 10px; color: #fff; font-size: 12.5px; font-weight: 500; background: linear-gradient(transparent, rgba(0,0,0,.6)); opacity: 0; transition: opacity .2s; }
.portfolio .item:hover .cap { opacity: 1; }
.h-sec { font-size: 18px; margin: 34px 0 14px; }
.pkg { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.pkg + .pkg { margin-top: 10px; }
.review { padding: 18px 0; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: 0; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 22px; overflow-x: auto; }
.tabs a { padding: 12px 14px; font-weight: 600; font-size: 14px; color: var(--ink-3); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.tabs a.on { color: var(--ink); border-color: var(--ink); }

/* ---------- Forms ---------- */
.form-shell { max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; }
.form-shell.narrow { max-width: 480px; }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field small { display: block; color: var(--ink-3); font-size: 12.5px; margin-top: 6px; }
.input, .textarea, select.input {
  width: 100%; height: 46px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--surface);
  padding: 0 14px; outline: 0; transition: border-color .15s, box-shadow .15s;
}
.textarea { height: auto; min-height: 120px; padding: 12px 14px; resize: vertical; }
.input:focus, .textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(17,17,19,.06); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.seg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 6px; background: #f0f0ed; padding: 5px; border-radius: 14px; }
.seg label { text-align: center; padding: 10px 8px; border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--ink-2); }
.seg input { display: none; }
.seg label:has(input:checked) { background: var(--surface); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.seg small { display: block; font-weight: 400; font-size: 12px; color: var(--ink-3); }
.role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.role-card { border: 1.5px solid var(--line-2); border-radius: 18px; padding: 22px; cursor: pointer; background: var(--surface); transition: border-color .15s; }
.role-card:hover { border-color: var(--ink-3); }
.role-card:has(input:checked) { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(17,17,19,.06); }
.role-card input { display: none; }
.role-card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 14px; }
.progress { display: flex; gap: 6px; margin-bottom: 28px; }
.progress i { flex: 1; height: 4px; border-radius: 4px; background: var(--line-2); }
.progress i.on { background: var(--ink); }
.dropzone { border: 1.5px dashed var(--line-2); border-radius: 16px; padding: 28px; text-align: center; cursor: pointer; background: var(--surface); transition: border-color .15s, background .15s; }
.dropzone:hover, .dropzone.drag { border-color: var(--accent); background: var(--accent-soft); }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.thumbs .t { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: #eee; }
.thumbs .t img { width: 100%; height: 100%; object-fit: cover; }
.thumbs .t button { position: absolute; top: 6px; right: 6px; width: 24px; height: 24px; border-radius: 50%; border: 0; background: rgba(0,0,0,.6); color: #fff; cursor: pointer; line-height: 1; }
.pkg-edit { display: grid; grid-template-columns: 1.2fr .6fr .6fr 1.6fr 34px; gap: 8px; margin-bottom: 8px; }
.pkg-edit .input { height: 40px; font-size: 14px; }
.icon-btn { width: 34px; height: 40px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--surface); cursor: pointer; display: grid; place-items: center; }

/* ---------- Checkout ---------- */
.fee-box { border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; background: var(--surface); }
.fee-box .line { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14.5px; }
.fee-box .line.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-weight: 800; font-size: 17px; }
.note { display: flex; gap: 10px; padding: 12px 14px; background: var(--green-soft); color: #0d6b37; border-radius: 12px; font-size: 13.5px; }

/* ---------- Dashboard ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 26px; }
.stat { padding: 18px 20px; }
.stat b { font-size: 26px; letter-spacing: -0.03em; display: block; }
.stat span { font-size: 13px; color: var(--ink-3); }
.list-item { display: flex; gap: 14px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.list-item:last-child { border-bottom: 0; }
.list-item .grow { flex: 1; min-width: 0; }
.status { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.s-open, .s-pending { background: var(--accent-soft); color: var(--accent); }
.s-in_progress { background: var(--amber-soft); color: var(--amber); }
.s-delivered { background: #e7f1ff; color: #1b6fd8; }
.s-completed, .s-accepted { background: var(--green-soft); color: var(--green); }
.s-declined, .s-closed { background: #f1f1ee; color: var(--ink-3); }
.timeline { display: flex; gap: 0; margin: 18px 0 8px; }
.timeline div { flex: 1; text-align: center; font-size: 12px; color: var(--ink-3); position: relative; padding-top: 20px; }
.timeline div::before { content: ''; position: absolute; top: 5px; left: 0; right: 0; height: 2px; background: var(--line-2); }
.timeline div::after { content: ''; position: absolute; top: 0; left: 50%; margin-left: -6px; width: 12px; height: 12px; border-radius: 50%; background: var(--line-2); }
.timeline div.on { color: var(--ink); font-weight: 600; }
.timeline div.on::before, .timeline div.on::after { background: var(--ink); }

/* ---------- Modal / lightbox / toast ---------- */
.modal-bg { position: fixed; inset: 0; background: rgba(12,12,14,.55); z-index: 100; display: grid; place-items: center; padding: 20px; animation: fade .15s ease; }
.modal { background: var(--surface); border-radius: 22px; width: 100%; max-width: 520px; max-height: 90vh; overflow: auto; padding: 28px; box-shadow: var(--shadow-lg); animation: pop .18s ease; }
.lightbox { position: fixed; inset: 0; background: rgba(8,8,10,.94); z-index: 120; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; color: #fff; }
.lightbox img { max-height: 80vh; max-width: 100%; border-radius: 10px; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 22px; cursor: pointer; }
.lightbox .lb-close { position: absolute; top: 20px; right: 20px; }
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; z-index: 200; box-shadow: var(--shadow-lg); animation: up .2s ease; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.97) translateY(6px); } }
@keyframes up { from { opacity: 0; transform: translate(-50%, 10px); } }

.demo-banner { background: var(--accent); color: #fff; font-size: 13px; text-align: center; padding: 8px 16px; }
.demo-banner a { text-decoration: underline; font-weight: 600; }
footer { border-top: 1px solid var(--line); padding: 36px 0 48px; color: var(--ink-3); font-size: 13.5px; margin-top: 40px; }
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .fee-band, .profile-hero, .profile-grid { grid-template-columns: 1fr; }
  .browse { grid-template-columns: 1fr; }
  .filters { position: static; display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
  .filters h4 { display: none; }
  .filters .opt { white-space: nowrap; border: 1px solid var(--line-2); border-radius: 999px; }
  .filters .opt .count { display: none; }
  .side-card { position: static; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--surface); flex-direction: column; padding: 10px 16px 16px; border-bottom: 1px solid var(--line); }
  .nav.open .nav-links { display: flex; }
  .nav .menu-btn { display: inline-flex; }
  .hide-sm { display: none !important; }
  .grid-3, .grid-4, .cat-grid, .steps, .role-cards, .two, .three { grid-template-columns: 1fr; }
  .portfolio { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 40px 0 24px; }
  .hero-stats { gap: 20px; }
  .fee-band { padding: 28px 22px; }
  .pkg-edit { grid-template-columns: 1fr 1fr; }
  .pkg-edit .input:nth-child(4) { grid-column: span 2; }
  .toolbar { flex-wrap: wrap; }
  .search select { display: none; }
  .profile-id h1 { font-size: 26px; }
  .form-shell { padding: 28px 16px 60px; }
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-2c { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1100px) { .grid-2c { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .grid-2, .grid-2c { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .grid[style*="minmax(0,280px)"], .grid[style*="1fr 1.4fr"] { grid-template-columns: 1fr !important; } }
.s-awaiting_confirmation { background: #e7f1ff; color: #1b6fd8; }
.s-disputed, .s-rejected { background: #fdecec; color: #b42318; }
.s-resolved, .s-approved { background: var(--green-soft); color: var(--green); }
.s-cancelled { background: #f1f1ee; color: var(--ink-3); }
.cur-select { height: 34px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--surface); padding: 0 8px; font-size: 13px; font-weight: 600; }
footer .select { height: 34px; font-size: 13px; }
