/* ============================================================
   Pose Photo Dashboard — Dark theme design system
   ============================================================ */
:root {
  --bg:           #0a0d14;
  --bg-grad-1:    #131a2b;
  --bg-grad-2:    #0a0d14;
  --surface:      #141925;
  --surface-2:    #1a2030;
  --surface-3:    #222a3d;
  --border:       rgba(255, 255, 255, 0.07);
  --border-strong:rgba(255, 255, 255, 0.13);

  --text:         #e8ebf2;
  --text-muted:   #97a1b5;
  --text-dim:     #687085;

  --primary:      #7c6cff;
  --primary-2:    #a78bfa;
  --primary-soft: rgba(124, 108, 255, 0.14);
  --accent:       #22d3ee;

  --success:      #34d399;
  --success-soft: rgba(52, 211, 153, 0.14);
  --danger:       #f87171;
  --danger-soft:  rgba(248, 113, 113, 0.14);
  --warning:      #fbbf24;
  --warning-soft: rgba(251, 191, 36, 0.14);

  --radius:       14px;
  --radius-sm:    10px;
  --radius-lg:    20px;
  --shadow:       0 12px 40px -12px rgba(0, 0, 0, 0.6);
  --shadow-soft:  0 6px 20px -8px rgba(0, 0, 0, 0.5);
  --ring:         0 0 0 3px var(--primary-soft);
  --sidebar-w:    248px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(124, 108, 255, 0.16), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(34, 211, 238, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-grad-1), var(--bg-grad-2) 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.5;
}
::selection { background: var(--primary-soft); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 99px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: #2e3852; background-clip: content-box; }

/* ===================== LAYOUT ===================== */
.app { display: grid; grid-template-columns: var(--sidebar-w) 1fr; min-height: 100vh; }

.sidebar {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column;
  padding: 20px 14px;
  background: linear-gradient(180deg, rgba(20, 25, 37, 0.85), rgba(12, 15, 23, 0.92));
  border-right: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 12px; padding: 6px 8px 18px; }
.brand-logo {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  display: grid; place-items: center; font-weight: 800; letter-spacing: .5px;
  color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 6px 18px -6px var(--primary);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 15px; }
.brand-text span { font-size: 11.5px; color: var(--text-dim); }

.nav { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  background: transparent; border: 0; cursor: pointer;
  color: var(--text-muted); font-size: 14px; font-weight: 500; font-family: inherit;
  text-align: left; transition: all .16s ease;
}
.nav-item svg { width: 19px; height: 19px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.nav-item span { flex: 1; }
.nav-item:hover { background: var(--surface-2); color: var(--text); }
.nav-item.active { background: var(--primary-soft); color: var(--primary-2); }
.nav-item.active svg { stroke: var(--primary-2); }
.nav-count {
  font-size: 11px; font-style: normal; font-weight: 600;
  background: var(--surface-3); color: var(--text-muted);
  padding: 1px 8px; border-radius: 99px; min-width: 22px; text-align: center;
}
.nav-item.active .nav-count { background: rgba(124, 108, 255, 0.25); color: var(--primary-2); }
.nav-sep { height: 1px; background: var(--border); margin: 10px 6px; }

.sidebar-foot { padding-top: 14px; }
.conn { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-dim);
  padding: 8px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.conn .dot { width: 8px; height: 8px; border-radius: 99px; background: var(--text-dim); flex: none; }
.conn.ok .dot { background: var(--success); box-shadow: 0 0 0 3px var(--success-soft); }
.conn.bad .dot { background: var(--danger); box-shadow: 0 0 0 3px var(--danger-soft); }

/* ===================== MAIN / TOPBAR ===================== */
.main { display: flex; flex-direction: column; min-width: 0; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 28px;
  background: rgba(10, 13, 20, 0.7); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar-left { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; }
.topbar h1 { margin: 0; font-size: 20px; font-weight: 700; letter-spacing: -0.2px; }
.page-sub { margin: 2px 0 0; font-size: 12.5px; color: var(--text-dim); }
.topbar-actions { display: flex; align-items: center; gap: 10px; }

.field-inline { display: flex; align-items: center; gap: 7px; padding: 0 10px 0 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); height: 38px; }
.field-inline .ic { width: 16px; height: 16px; color: var(--text-dim); }
.field-inline select { background: transparent; border: 0; color: var(--text); font-family: inherit; font-size: 13px; outline: none; cursor: pointer; padding-right: 4px; }
.field-inline select option { background: var(--surface-2); color: var(--text); }

.content { padding: 26px 28px 60px; max-width: 1280px; width: 100%; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 38px; padding: 0 16px; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer;
  border: 1px solid transparent; transition: all .16s ease; white-space: nowrap;
}
.btn .ic { width: 16px; height: 16px; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 8px 20px -10px var(--primary); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-strong); }
.btn-danger { background: var(--danger-soft); color: var(--danger); border-color: rgba(248,113,113,.3); }
.btn-danger:hover { background: rgba(248, 113, 113, 0.22); }
.btn-danger-solid { background: var(--danger); color: #fff; }
.btn-danger-solid:hover { filter: brightness(1.08); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; filter: none; }
.btn-block { width: 100%; }

.icon-btn {
  width: 34px; height: 34px; display: grid; place-items: center; cursor: pointer;
  border-radius: 9px; border: 1px solid var(--border); background: var(--surface); color: var(--text-muted);
  transition: all .15s ease;
}
.icon-btn:hover { background: var(--surface-2); color: var(--text); border-color: var(--border-strong); }
.icon-btn.danger:hover { color: var(--danger); border-color: rgba(248,113,113,.4); background: var(--danger-soft); }
.icon-btn:disabled, .icon-btn[disabled] { opacity: .35; cursor: not-allowed; pointer-events: none; }
.icon-btn .ic { width: 16px; height: 16px; }
.ic { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===================== CARDS / SECTIONS ===================== */
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.section-head .left { display: flex; flex-direction: column; gap: 2px; }
.section-head h2 { margin: 0; font-size: 16px; font-weight: 700; }
.section-head .hint { font-size: 12.5px; color: var(--text-dim); }
.section-tools { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-soft); }

/* Stat cards */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat {
  position: relative; overflow: hidden;
  padding: 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-soft);
}
.stat::after { content: ""; position: absolute; inset: 0 0 auto auto; width: 120px; height: 120px;
  background: radial-gradient(closest-side, var(--glow, var(--primary-soft)), transparent); opacity: .8; transform: translate(30%, -30%); }
.stat .stat-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; }
.stat .stat-ic svg { width: 21px; height: 21px; }
.stat .stat-val { font-size: 30px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.stat .stat-label { color: var(--text-muted); font-size: 13px; margin-top: 6px; }
.ic-purple { background: var(--primary-soft); color: var(--primary-2); }
.ic-cyan   { background: rgba(34,211,238,.14); color: var(--accent); }
.ic-green  { background: var(--success-soft); color: var(--success); }
.ic-amber  { background: var(--warning-soft); color: var(--warning); }

/* ===================== TABLE ===================== */
.table-wrap { overflow: auto; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-soft); }
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
thead th {
  position: sticky; top: 0; z-index: 1;
  text-align: left; font-weight: 600; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-dim); padding: 13px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); white-space: nowrap;
}
tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tbody tr { transition: background .12s ease; }
tbody tr:hover { background: var(--surface-2); }
tbody tr:last-child td { border-bottom: 0; }
td.actions { text-align: right; white-space: nowrap; }
td.actions .icon-btn { display: inline-grid; margin-left: 6px; }

.cell-title { font-weight: 600; color: var(--text); }
.cell-sub { color: var(--text-dim); font-size: 12px; margin-top: 2px; }
.mono { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; color: var(--text-dim); }

.thumb { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: var(--surface-3); border: 1px solid var(--border); display: block; }
.thumb-ph { display: grid; place-items: center; color: var(--text-dim); }
.thumb-ph svg { width: 20px; height: 20px; }

/* Chips / badges */
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 500;
  padding: 3px 9px; border-radius: 99px; background: var(--surface-3); color: var(--text-muted); border: 1px solid var(--border); }
.chip.primary { background: var(--primary-soft); color: var(--primary-2); border-color: rgba(124,108,255,.25); }
.chip.accent  { background: rgba(34,211,238,.12); color: var(--accent); border-color: rgba(34,211,238,.25); }
.badge { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 7px; }
.badge.green { background: var(--success-soft); color: var(--success); }
.badge.dim { background: var(--surface-3); color: var(--text-dim); }

/* Search input */
.search { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 12px; min-width: 240px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.search:focus-within { border-color: var(--border-strong); box-shadow: var(--ring); }
.search .ic { width: 16px; height: 16px; color: var(--text-dim); flex: none; }
.search input { flex: 1; background: transparent; border: 0; outline: none; color: var(--text); font-family: inherit; font-size: 13.5px; }
.search input::placeholder { color: var(--text-dim); }

select.filter { height: 38px; padding: 0 12px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: 13px; cursor: pointer; outline: none; }
select.filter option { background: var(--surface-2); }

/* ===================== EMPTY / LOADING ===================== */
.empty { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 60px 20px; text-align: center; color: var(--text-dim); }
.empty svg { width: 46px; height: 46px; opacity: .5; }
.empty h4 { margin: 4px 0 0; color: var(--text-muted); font-size: 15px; font-weight: 600; }
.empty p { margin: 0; font-size: 13px; max-width: 360px; }

.skeleton-row td > div { height: 14px; border-radius: 6px;
  background: linear-gradient(90deg, var(--surface-2), var(--surface-3), var(--surface-2));
  background-size: 200% 100%; animation: shimmer 1.3s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.25); border-top-color: #fff; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== FORMS ===================== */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; gap: 7px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 14px; }
label.lbl { font-size: 12.5px; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
label.lbl .req { color: var(--danger); }
.help { font-size: 11.5px; color: var(--text-dim); }
input[type="text"], input[type="number"], input[type="url"], input[type="password"], textarea, .input {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-family: inherit; font-size: 13.5px; padding: 10px 12px; outline: none; transition: border .15s, box-shadow .15s;
}
textarea { resize: vertical; min-height: 76px; }
input:focus, textarea:focus, .input:focus { border-color: var(--primary); box-shadow: var(--ring); }
input::placeholder, textarea::placeholder { color: var(--text-dim); }

/* Localized name editor */
.loc-editor { display: flex; flex-direction: column; gap: 8px; }
.loc-row { display: grid; grid-template-columns: 96px 1fr auto; gap: 8px; align-items: start; }
.loc-row .icon-btn { height: 38px; width: 38px; }
.loc-add { align-self: flex-start; }

/* File / dropzone */
.dropzone { border: 1.5px dashed var(--border-strong); border-radius: var(--radius); padding: 18px; text-align: center;
  cursor: pointer; transition: all .15s ease; background: var(--surface-2); }
.dropzone:hover, .dropzone.drag { border-color: var(--primary); background: var(--primary-soft); }
.dropzone svg { width: 26px; height: 26px; color: var(--text-dim); }
.dropzone p { margin: 8px 0 0; font-size: 13px; color: var(--text-muted); }
.dropzone .small { font-size: 11.5px; color: var(--text-dim); margin-top: 2px; }
.preview-wrap { display: flex; gap: 14px; align-items: center; }
.preview-wrap img { width: 92px; height: 92px; border-radius: 12px; object-fit: cover; border: 1px solid var(--border); }
.preview-meta { font-size: 12.5px; color: var(--text-muted); }

/* Multi-select pills */
.pill-select { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); max-height: 160px; overflow: auto; }
.pill { cursor: pointer; user-select: none; font-size: 12.5px; padding: 5px 11px; border-radius: 99px;
  background: var(--surface-3); border: 1px solid var(--border); color: var(--text-muted); transition: all .14s; }
.pill:hover { border-color: var(--border-strong); color: var(--text); }
.pill.on { background: var(--primary-soft); color: var(--primary-2); border-color: rgba(124,108,255,.4); }
.pill.locked { opacity: .65; cursor: default; }

.note { display: flex; gap: 10px; padding: 11px 13px; border-radius: var(--radius-sm); font-size: 12.5px; line-height: 1.5; }
.note svg { width: 16px; height: 16px; flex: none; margin-top: 1px; }
.note.info { background: rgba(34,211,238,.08); color: #a9e9f5; border: 1px solid rgba(34,211,238,.2); }
.note.warn { background: var(--warning-soft); color: #f8d98a; border: 1px solid rgba(251,191,36,.25); }
.note.danger { background: var(--danger-soft); color: #f8b4b4; border: 1px solid rgba(248,113,113,.25); }

/* ===================== MODAL ===================== */
.modal-backdrop { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px;
  background: rgba(5, 7, 12, 0.62); backdrop-filter: blur(6px); animation: fade .18s ease; }
.modal-backdrop[hidden] { display: none; }
.modal { width: 100%; max-width: 560px; max-height: 90vh; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  animation: pop .2s cubic-bezier(.16,1,.3,1); }
.modal.wide { max-width: 680px; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.modal-head h3 { margin: 0; font-size: 16px; font-weight: 700; }
.modal-body { padding: 20px; overflow: auto; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 20px; border-top: 1px solid var(--border); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.98); } }

/* ===================== TOASTS ===================== */
.toast-wrap { position: fixed; top: 18px; right: 18px; z-index: 200; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { display: flex; align-items: flex-start; gap: 11px; padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border-strong); box-shadow: var(--shadow);
  animation: toastIn .25s cubic-bezier(.16,1,.3,1); }
.toast.out { animation: toastOut .25s ease forwards; }
.toast .t-ic { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.toast .t-body { flex: 1; min-width: 0; }
.toast .t-title { font-weight: 600; font-size: 13.5px; }
.toast .t-msg { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; word-break: break-word; }
.toast.success { border-left: 3px solid var(--success); } .toast.success .t-ic { color: var(--success); }
.toast.error   { border-left: 3px solid var(--danger); }  .toast.error .t-ic { color: var(--danger); }
.toast.info    { border-left: 3px solid var(--accent); }   .toast.info .t-ic { color: var(--accent); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(20px); } }

/* Settings */
.settings-grid { display: grid; gap: 18px; max-width: 620px; }
.danger-zone { border: 1px solid rgba(248,113,113,.3); border-radius: var(--radius); padding: 20px; background: var(--danger-soft); }
.danger-zone h3 { margin: 0 0 4px; font-size: 15px; color: var(--danger); }
.kv { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.kv:last-child { border-bottom: 0; }
.kv .k { color: var(--text-muted); }
.kv .v { font-family: ui-monospace, monospace; color: var(--text); }

.card-pad { padding: 20px; }
.card-pad h3 { margin: 0 0 14px; font-size: 14.5px; }

/* Photo grid (overview recent) */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.photo-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); }
.photo-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--surface-3); }
.photo-card .pc-body { padding: 9px 11px; }
.photo-card .pc-title { font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.photo-card .pc-sub { font-size: 11px; color: var(--text-dim); }

/* ============ LOGIN SCREEN ============ */
body.locked { overflow: hidden; }
.login-screen {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 24px;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(124, 108, 255, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-grad-1), var(--bg-grad-2) 45%);
}
.login-card {
  width: 100%; max-width: 380px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  padding: 28px 26px 26px; animation: login-in .35s ease both;
}
.login-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.login-brand .brand-logo {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  font-weight: 800; font-size: 15px; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 6px 18px -6px var(--primary);
}
.login-brand .brand-text strong { display: block; font-size: 15px; }
.login-brand .brand-text span { font-size: 11.5px; color: var(--text-dim); }
.login-title { margin: 0 0 4px; font-size: 20px; }
.login-sub { margin: 0 0 20px; font-size: 13px; color: var(--text-dim); }
.login-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.login-remember {
  display: flex; align-items: center; gap: 8px; margin: 2px 0 16px;
  font-size: 12.5px; color: var(--text-muted); cursor: pointer; user-select: none;
}
.login-remember input { width: 15px; height: 15px; accent-color: var(--primary); cursor: pointer; }
.login-err {
  margin-bottom: 14px; padding: 9px 12px; border-radius: var(--radius-sm);
  background: var(--danger-soft); color: var(--danger);
  border: 1px solid rgba(248, 113, 113, 0.3); font-size: 12.5px;
}
@keyframes login-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.login-card.shake { animation: shake .4s; }
@keyframes shake {
  10%, 90% { transform: translateX(-1px); } 20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-5px); } 40%, 60% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 880px) {
  .app { grid-template-columns: 1fr; }
  .sidebar { position: fixed; left: 0; top: 0; z-index: 90; transform: translateX(-100%); transition: transform .25s; width: 240px; }
  .sidebar.open { transform: none; box-shadow: var(--shadow); }
  .hamburger { display: grid; }
  .content { padding: 18px 16px 50px; }
  .topbar { padding: 14px 16px; }
  .form-row.two { grid-template-columns: 1fr; }
}
