/* ── TOKENS (identik dengan dashboard.css) ── */
:root {
  --bg:            #e8e3da;
  --bg2:           #ddd8cf;
  --card:          rgba(255,253,250,0.45);
  --card-solid:    rgba(255,253,248,0.62);
  --ink:           #2a2420;
  --ink2:          #4a3f38;
  --muted:         #9c9088;
  --faint:         #c4bdb5;
  --border:        rgba(255,255,255,0.38);
  --border-hard:   rgba(255,255,255,0.58);
  --accent:        #10b981;
  --accent-light:  rgba(16,185,129,0.10);
  --accent-glow:   rgba(16,185,129,0.22);
  --glass-shine:   rgba(255,255,255,0.70);
  --glass-inner:   rgba(255,255,255,0.18);
  --neu-out:       0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --grid-line:     rgba(40,30,20,0.08);
  --success:       #3eb97a;
  --warning:       #d4920a;
  --error:         #c0392b;
  --nav-h:         56px;
  --radius:        16px;
  --radius-sm:     10px;
  --f-display:     'DM Serif Display', Georgia, serif;
  --f-body:        'Syne', system-ui, sans-serif;
  --f-mono:        'DM Mono', 'Fira Mono', monospace;
}

body.dark {
  --bg:            #1a1d24;
  --bg2:           #21252e;
  --card:          rgba(30,34,44,0.52);
  --card-solid:    rgba(36,40,52,0.68);
  --ink:           #f0ece6;
  --ink2:          #cec8bf;
  --muted:         #8c877f;
  --faint:         #4a4540;
  --border:        rgba(255,255,255,0.08);
  --border-hard:   rgba(255,255,255,0.14);
  --accent:        #10b981;
  --accent-light:  rgba(16,185,129,0.13);
  --accent-glow:   rgba(16,185,129,0.28);
  --glass-shine:   rgba(255,255,255,0.06);
  --glass-inner:   rgba(255,255,255,0.04);
  --neu-out:       0 8px 32px rgba(0,0,0,0.30), 0 2px 8px rgba(0,0,0,0.20);
  --grid-line:     rgba(240,236,230,0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background .35s, color .35s;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(16,185,129,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 75%, rgba(62,185,122,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 55% 45%, rgba(58,143,191,0.07) 0%, transparent 60%);
}
body.dark::before {
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(16,185,129,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 75%, rgba(62,185,122,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 55% 45%, rgba(58,143,191,0.10) 0%, transparent 60%);
}

.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── GRID BACKGROUND ── */
.grid-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.grid-line-v, .grid-line-h { position: absolute; background: var(--grid-line); overflow: hidden; }
.grid-line-v { width: 1px; top: 0; bottom: 0; }
.grid-line-h { height: 1px; left: 0; right: 0; }
.grid-comet-v { position: absolute; left: -1px; right: -1px; border-radius: 999px; animation: cometV linear infinite; }
.grid-comet-h { position: absolute; top: -1px; bottom: -1px; border-radius: 999px; animation: cometH linear infinite; }
@keyframes cometV { 0% { top: -20%; } 100% { top: 110%; } }
@keyframes cometH { 0% { left: -20%; } 100% { left: 110%; } }

/* ── TOPNAV ── */
nav.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  background: var(--card);
  backdrop-filter: blur(28px) saturate(2.0) brightness(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(2.0) brightness(1.05);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--glass-shine), 0 4px 24px rgba(0,0,0,0.06);
  transition: background .35s;
}
.topnav-left  { display: flex; align-items: center; gap: 12px; }
.topnav-right { display: flex; align-items: center; gap: 8px; }

.topnav-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.topnav-brand-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: .75rem;
  box-shadow: 0 3px 12px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.topnav-brand span {
  font-family: var(--f-mono); font-weight: 600; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
}
.topnav-title {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--f-display); font-size: 1.1rem; color: var(--ink);
  pointer-events: none; white-space: nowrap;
}

.topnav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 9px;
  background: var(--glass-inner);
  border: 1px solid var(--border-hard);
  color: var(--muted);
  font-family: var(--f-mono); font-size: .68rem; font-weight: 500;
  text-decoration: none; cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 var(--glass-shine);
  transition: all .2s;
}
.topnav-btn:hover { color: var(--accent); border-color: rgba(16,185,129,0.35); background: var(--accent-light); }
.topnav-btn.outline { color: var(--accent); border-color: rgba(16,185,129,0.3); background: var(--accent-light); }

.user-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--glass-inner); border: 1px solid var(--border-hard);
  border-radius: 999px; padding: 4px 12px 4px 4px;
  font-family: var(--f-mono); font-size: .68rem; color: var(--ink2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 var(--glass-shine);
}
.chip-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: .72rem; font-style: italic;
  overflow: hidden; flex-shrink: 0;
}
.chip-avatar img { width: 100%; height: 100%; object-fit: cover; }

.theme-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border-hard);
  background: var(--glass-inner);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .78rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), inset 0 1px 0 var(--glass-shine);
  transition: all .2s;
}
.theme-btn:hover { color: var(--accent); border-color: rgba(16,185,129,0.4); }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 52px) 24px 44px;
  text-align: center;
  max-width: 700px; margin: 0 auto;
}
.hero-eyebrow { margin-bottom: 16px; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 16px; border-radius: 999px;
  background: var(--accent-light);
  border: 1px solid rgba(16,185,129,0.2);
  font-family: var(--f-mono); font-size: .68rem; font-weight: 500;
  color: var(--accent); letter-spacing: .06em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 var(--glass-shine);
}
.hero-title {
  font-family: var(--f-display); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: normal; color: var(--ink);
  line-height: 1.1; margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: .92rem; color: var(--muted); max-width: 480px; margin: 0 auto 28px;
  line-height: 1.75;
}

/* Hero average rating */
.hero-rating {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--card);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid var(--border-hard);
  border-radius: 999px; padding: 10px 22px;
  box-shadow: var(--neu-out), inset 0 1px 0 var(--glass-shine);
  transition: opacity .4s;
}
.avg-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.avg-score {
  font-family: var(--f-display); font-size: 1.35rem;
  color: var(--ink); font-style: italic;
}
.avg-label { font-family: var(--f-mono); font-size: .68rem; color: var(--muted); }

/* ── PAGE LAYOUT ── */
.page-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── FORM CARD ── */
.form-col { display: flex; flex-direction: column; gap: 16px; }

.form-card {
  background: var(--card);
  backdrop-filter: blur(24px) saturate(1.8) brightness(1.04);
  -webkit-backdrop-filter: blur(24px) saturate(1.8) brightness(1.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--neu-out), inset 0 1px 0 var(--glass-shine);
  position: relative; overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-shine), transparent);
  pointer-events: none;
}

.form-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.form-card-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--accent-light);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent); flex-shrink: 0;
  box-shadow: inset 0 1px 0 var(--glass-shine);
}
.form-card-title { font-family: var(--f-display); font-size: 1.05rem; color: var(--ink); }
.form-card-sub   { font-family: var(--f-mono); font-size: .62rem; color: var(--muted); margin-top: 2px; }

/* Field groups */
.field-group { margin-bottom: 16px; }
.field-label {
  display: block; font-family: var(--f-mono); font-size: .64rem;
  font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.field-required { color: var(--error); }
.field-optional { color: var(--faint); font-size: .58rem; }
.field-hint { font-family: var(--f-mono); font-size: .62rem; color: var(--faint); margin-top: 5px; }
.field-count { font-family: var(--f-mono); font-size: .58rem; color: var(--faint); text-align: right; margin-top: 4px; }

.field-input {
  width: 100%; padding: 10px 14px;
  background: var(--glass-inner);
  border: 1px solid var(--border-hard);
  border-radius: var(--radius-sm);
  color: var(--ink); font-family: var(--f-body); font-size: .86rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.06), inset 0 1px 0 var(--glass-shine);
  transition: all .2s; outline: none; resize: none;
}
.field-input::placeholder { color: var(--faint); }
.field-input:focus {
  border-color: rgba(16,185,129,0.45);
  box-shadow: 0 0 0 3px var(--accent-light), inset 0 1px 3px rgba(0,0,0,0.06);
  background: var(--card);
}
.field-textarea { min-height: 110px; }

/* Type tabs */
.type-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.type-tab {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 13px; border-radius: 8px;
  background: var(--glass-inner);
  border: 1px solid var(--border-hard);
  color: var(--muted);
  font-family: var(--f-mono); font-size: .66rem; font-weight: 500;
  cursor: pointer; transition: all .18s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 var(--glass-shine);
}
.type-tab:hover { color: var(--ink); border-color: rgba(16,185,129,0.3); }
.type-tab.active {
  background: var(--accent-light);
  border-color: rgba(16,185,129,0.35);
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 8px var(--accent-glow);
}

/* Star picker */
.star-picker { display: flex; align-items: center; gap: 4px; }
.star-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.35rem; color: var(--faint);
  transition: all .15s; padding: 0 2px;
  line-height: 1;
}
.star-btn.filled   { color: #f59e0b; }
.star-btn.hovered  { color: #f59e0b; transform: scale(1.12); }
.star-hint {
  font-family: var(--f-mono); font-size: .62rem; color: var(--faint);
  margin-left: 8px;
}

/* Submit button */
.btn-submit {
  width: 100%; padding: 12px 20px; border-radius: 11px;
  background: rgba(42,36,32,0.80);
  color: rgba(255,253,248,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--f-mono); font-weight: 500; font-size: .8rem;
  letter-spacing: .06em; cursor: pointer;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--neu-out), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: all .22s cubic-bezier(.34,1.56,.64,1);
  margin-top: 6px;
}
body.dark .btn-submit { background: rgba(255,253,248,0.10); color: var(--ink); }
.btn-submit:hover {
  background: var(--accent); color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-submit:disabled { opacity: .5; pointer-events: none; }

/* Success state */
.submit-success {
  text-align: center; padding: 20px 0 8px;
  animation: fadeUp .4s cubic-bezier(.22,1,.36,1) both;
}
.success-icon { font-size: 2.6rem; color: var(--success); margin-bottom: 10px; }
.success-title { font-family: var(--f-display); font-size: 1.3rem; color: var(--ink); margin-bottom: 6px; }
.success-msg { font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.btn-another {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 9px;
  background: var(--glass-inner); border: 1px solid var(--border-hard);
  color: var(--muted); font-family: var(--f-mono); font-size: .72rem;
  cursor: pointer; transition: all .2s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 var(--glass-shine);
}
.btn-another:hover { color: var(--accent); border-color: rgba(16,185,129,0.35); }

/* Info card */
.info-card {
  background: var(--card);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--neu-out), inset 0 1px 0 var(--glass-shine);
  display: flex; flex-direction: column; gap: 14px;
}
.info-row { display: flex; align-items: center; gap: 12px; }
.info-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--glass-inner); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; flex-shrink: 0;
  box-shadow: inset 0 1px 0 var(--glass-shine);
}
.si-green  { color: var(--success); }
.si-blue   { color: #3a8fbf; }
.si-orange { color: #c07830; }
.info-title { font-family: var(--f-mono); font-size: .72rem; font-weight: 500; color: var(--ink2); }
.info-desc  { font-size: .74rem; color: var(--muted); margin-top: 1px; }

/* ── FEED COLUMN ── */
.feed-col { display: flex; flex-direction: column; gap: 14px; }

/* Filter bar */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.filter-left { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 999px;
  background: var(--glass-inner); border: 1px solid var(--border-hard);
  color: var(--muted);
  font-family: var(--f-mono); font-size: .63rem; font-weight: 500;
  cursor: pointer; transition: all .18s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 var(--glass-shine);
}
.filter-pill:hover { color: var(--ink); border-color: rgba(16,185,129,0.3); }
.filter-pill.active {
  background: var(--accent-light); border-color: rgba(16,185,129,0.35);
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 8px var(--accent-glow);
}
.btn-refresh-feed {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--glass-inner); border: 1px solid var(--border-hard);
  color: var(--muted); font-size: .78rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 var(--glass-shine);
  transition: all .2s;
}
.btn-refresh-feed:hover { color: var(--accent); border-color: rgba(16,185,129,0.35); }
.btn-refresh-feed.spinning i { animation: spin360 .7s linear infinite; }
@keyframes spin360 { to { transform: rotate(360deg); } }

/* Feed grid */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  align-items: start;
}

/* Feedback card */
.fb-card {
  background: var(--card);
  backdrop-filter: blur(20px) saturate(1.6) brightness(1.03);
  -webkit-backdrop-filter: blur(20px) saturate(1.6) brightness(1.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--neu-out), inset 0 1px 0 var(--glass-shine);
  transition: all .28s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
  animation: fadeUp .35s cubic-bezier(.22,1,.36,1) both;
}
.fb-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-shine), transparent);
  pointer-events: none;
}
.fb-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hard);
  box-shadow: 0 14px 36px var(--accent-glow), var(--neu-out), inset 0 1px 0 var(--glass-shine);
}
.fb-card.pinned {
  border-color: rgba(16,185,129,0.28);
  box-shadow: 0 0 0 1px rgba(16,185,129,0.12), var(--neu-out), inset 0 1px 0 var(--glass-shine);
}
.fb-card.pinned::after {
  content: '📌';
  position: absolute; top: 12px; right: 12px; font-size: .75rem;
}

/* Card top row */
.fb-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 10px; gap: 8px;
}
.fb-meta { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.fb-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: .9rem; font-style: italic;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.12);
}
.fb-avatar-img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 3px 10px rgba(0,0,0,0.10); }
.fb-name-block { flex: 1; min-width: 0; }
.fb-name {
  font-family: var(--f-body); font-weight: 700; font-size: .84rem;
  color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fb-name-row { display: flex; align-items: center; gap: 5px; }
.fb-verified { color: #3a8fbf; font-size: .64rem; }
.fb-role {
  font-family: var(--f-mono); font-size: .58rem; color: var(--accent);
  text-transform: capitalize; margin-top: 1px;
}
.fb-type-badge {
  font-family: var(--f-mono); font-size: .58rem; font-weight: 500;
  padding: 3px 8px; border-radius: 6px; white-space: nowrap;
  flex-shrink: 0;
}
.fb-type-bug        { background: rgba(192,57,43,.12); color: var(--error); border: 1px solid rgba(192,57,43,.2); }
.fb-type-suggestion { background: rgba(58,143,191,.10); color: #3a8fbf; border: 1px solid rgba(58,143,191,.2); }
.fb-type-compliment { background: rgba(62,185,122,.10); color: var(--success); border: 1px solid rgba(62,185,122,.2); }
.fb-type-general    { background: var(--glass-inner); color: var(--muted); border: 1px solid var(--border-hard); }

/* Stars in card */
.fb-stars { font-size: .78rem; color: var(--faint); margin-bottom: 8px; letter-spacing: 1px; }
.fb-stars .lit { color: #f59e0b; }

/* Card content */
.fb-title {
  font-family: var(--f-display); font-size: .92rem;
  color: var(--ink); margin-bottom: 5px; line-height: 1.3;
}
.fb-message {
  font-size: .8rem; color: var(--ink2); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.fb-date {
  font-family: var(--f-mono); font-size: .6rem; color: var(--faint);
  margin-top: 10px;
}

/* Skeleton */
.fb-card.skeleton {
  pointer-events: none; animation: skeletonPulse 1.5s ease-in-out infinite;
  min-height: 140px;
}
.fb-card.skeleton::before { display: none; }
.fb-card.skeleton * { display: none; }
@keyframes skeletonPulse {
  0%,100% { opacity: .5; }
  50%      { opacity: .25; }
}

/* Empty state */
.feed-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
  color: var(--muted); animation: fadeUp .35s ease both;
}
.feed-empty i { font-size: 2.2rem; opacity: .2; margin-bottom: 12px; display: block; }
.feed-empty p { font-size: .86rem; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  background: var(--card);
  backdrop-filter: blur(24px) saturate(1.8); -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid var(--border-hard); border-radius: var(--radius);
  padding: 11px 17px; display: flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: .77rem; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.10), inset 0 1px 0 var(--glass-shine);
  transform: translateY(80px); opacity: 0;
  transition: all .3s cubic-bezier(.34,1.56,.64,1); pointer-events: none;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--success); }
.toast.err .toast-icon { color: var(--error); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .page-layout {
    grid-template-columns: 1fr;
    padding: 0 16px 60px;
  }
  .form-col { order: 0; }
  .feed-col { order: 1; }
  .topnav { padding: 0 16px; }
  .topnav-title { display: none; }
}
@media (max-width: 540px) {
  .hero { padding-top: calc(var(--nav-h) + 32px); }
  .hero-title { font-size: 1.9rem; }
  .type-tabs { gap: 5px; }
  .type-tab { font-size: .6rem; padding: 6px 10px; }
  .feed-grid { grid-template-columns: 1fr; }
  .filter-pill { font-size: .6rem; padding: 5px 10px; }
}