/* ============================================================
   Axel Networks Abuse Portal - Modern White / Neutral Theme
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #f5f5f5;
  --surface:      #ffffff;
  --surface2:     #fafafa;
  --surface3:     #f0f0f0;
  --border:       #e5e5e5;
  --border2:      #d4d4d4;
  --accent:       #18181b;
  --accent2:      #3f3f46;
  --blue:         #2563eb;
  --blue-bg:      #eff6ff;
  --blue-bd:      #bfdbfe;
  --text:         #18181b;
  --text2:        #52525b;
  --text3:        #a1a1aa;
  --text4:        #d4d4d8;
  --success:      #16a34a;
  --success-bg:   #f0fdf4;
  --success-bd:   #bbf7d0;
  --warn:         #ca8a04;
  --warn-bg:      #fefce8;
  --error:        #dc2626;
  --error-bg:     #fef2f2;
  --error-bd:     #fecaca;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:         'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  --r-sm:         6px;
  --r:            10px;
  --r-lg:         14px;
  --sh-sm:        0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --sh:           0 4px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --sh-lg:        0 16px 48px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --t:            .14s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Nav ─────────────────────────────────────────────────── */
.topnav {
  position: sticky; top: 0; z-index: 100;
  flex-shrink: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  height: 56px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { display: block; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--text2);
  text-decoration: none; padding: 6px 12px;
  border-radius: var(--r-sm); transition: all var(--t);
}
.nav-link:hover { background: var(--surface3); color: var(--text); }
.nav-link--ext  { color: var(--text3); font-size: 12px; }

/* ── Shell ───────────────────────────────────────────────── */
.page-shell {
  max-width: 1100px; margin: 0 auto;
  padding: 44px 24px 80px;
  flex: 1;
}

/* ── Header ──────────────────────────────────────────────── */
.page-header { margin-bottom: 28px; }
.header-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text3); margin-bottom: 8px;
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue);
}
.header-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700;
  color: var(--text); letter-spacing: -.025em; line-height: 1.15;
  margin-bottom: 8px;
}
.header-sub { font-size: 14px; color: var(--text2); max-width: 600px; line-height: 1.7; }

/* ── Tab bar ─────────────────────────────────────────────── */
.tab-bar {
  display: flex; flex-wrap: wrap; gap: 3px;
  margin-bottom: 24px; padding: 4px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-sm);
}
.tab-item {
  padding: 7px 14px; font-size: 13px; font-weight: 500;
  color: var(--text2); text-decoration: none;
  border-radius: var(--r-sm); transition: all var(--t); white-space: nowrap;
}
.tab-item:hover { background: var(--surface3); color: var(--text); }
.tab-item--active { background: var(--accent); color: #fff; font-weight: 600; }
.tab-item--active:hover { background: var(--accent2); color: #fff; }

/* ── Form card ───────────────────────────────────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  overflow: hidden;
}
.form-card__notice {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 14px 24px;
  background: var(--blue-bg);
  border-bottom: 1px solid var(--blue-bd);
}
.form-card__notice.warn-notice {
  background: var(--warn-bg);
  border-color: #fde68a;
}
.notice-icon { flex-shrink: 0; width: 15px; height: 15px; margin-top: 2px; color: var(--blue); }
.warn-notice .notice-icon { color: var(--warn); }
.notice-text { font-size: 13px; color: #1e40af; line-height: 1.6; }
.notice-text strong { font-weight: 600; }
.warn-notice .notice-text { color: #713f12; }
.form-card__body { padding: 28px 28px 24px; }

/* ── Sections ────────────────────────────────────────────── */
.form-section { margin-bottom: 30px; }
.form-section:last-child { margin-bottom: 0; }
.form-section__title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text3);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.form-section__title::after { content:''; flex:1; height:1px; background: var(--border); }

.form-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(256px, 1fr)); gap: 14px; }
.form-grid--full { grid-template-columns: 1fr; }

/* ── Field ───────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 5px; }
.field--full { grid-column: 1/-1; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.field label .optional { font-weight: 400; font-size: 12px; color: var(--text3); margin-left: 3px; }
.req { color: var(--error); }

.field input,
.field select,
.field textarea {
  background: #fff; border: 1px solid var(--border2);
  border-radius: var(--r-sm); color: var(--text);
  font-family: var(--font); font-size: 14px;
  padding: 9px 12px; outline: none; width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a1a1aa' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center;
  padding-right: 32px; cursor: pointer;
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--text3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(24,24,27,.07);
}
.field input.error, .field select.error, .field textarea.error {
  border-color: var(--error); box-shadow: 0 0 0 3px rgba(220,38,38,.07);
}
.field-error { font-size: 12px; color: var(--error); font-weight: 500; }
.field-hint  { font-size: 12px; color: var(--text3); line-height: 1.5; }

/* ── Checkboxes / Radios ─────────────────────────────────── */
.checkgroup { display: flex; flex-direction: column; gap: 8px; }
.check-item, .radio-item {
  display: flex; align-items: flex-start; gap: 9px; cursor: pointer;
}
.check-item input[type="checkbox"],
.radio-item input[type="radio"] {
  width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--accent); cursor: pointer;
}
.check-item__label { font-size: 13px; color: var(--text2); line-height: 1.55; }
.check-item__label strong { color: var(--text); font-weight: 600; }

/* ── Notify card ─────────────────────────────────────────── */
.notify-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 18px;
}
.notify-card__title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.notify-card__sub   { font-size: 12px; color: var(--text3); margin-bottom: 12px; line-height: 1.55; }
.notify-group { display: flex; flex-direction: column; gap: 7px; }
.notify-sub   { padding-left: 24px; }

/* ── Attestation ─────────────────────────────────────────── */
.attest-block {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 13px 15px;
  font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 12px;
}

/* ── Turnstile ───────────────────────────────────────────── */
.turnstile-wrap { display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
.turnstile-status { font-size: 12px; color: var(--text3); }
.turnstile-status.verified { color: var(--success); font-weight: 500; }

/* ── Submit ──────────────────────────────────────────────── */
.btn-submit {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: #fff;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  padding: 10px 22px; border: none; border-radius: var(--r-sm);
  cursor: pointer; transition: all var(--t); letter-spacing: -.01em;
  box-shadow: 0 1px 3px rgba(0,0,0,.16);
}
.btn-submit:hover:not(:disabled) {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.btn-submit:disabled { background: var(--surface3); color: var(--text3); cursor: not-allowed; box-shadow: none; }
.btn-submit svg { width: 15px; height: 15px; }

.form-footer {
  display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid var(--border); margin-top: 26px;
}
.form-footer-note {
  font-size: 12px; color: var(--text3); line-height: 1.6; max-width: 340px;
}
.form-footer-note a { color: var(--text2); text-decoration: underline; text-underline-offset: 2px; }

/* ── Alerts ──────────────────────────────────────────────── */
.alert {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 13px 15px; border-radius: var(--r);
  margin-bottom: 18px; font-size: 13px; line-height: 1.6; font-weight: 500;
}
.alert svg { flex-shrink: 0; width: 15px; height: 15px; margin-top: 1px; }
.alert--success { background: var(--success-bg); border: 1px solid var(--success-bd); color: var(--success); }
.alert--error   { background: var(--error-bg);   border: 1px solid var(--error-bd);   color: var(--error); }
.alert--info    { background: var(--blue-bg);    border: 1px solid var(--blue-bd);    color: var(--blue); }

/* ── Success ─────────────────────────────────────────────── */
.success-card { text-align: center; padding: 52px 40px; }
.success-icon {
  width: 52px; height: 52px; background: var(--success-bg);
  border: 1.5px solid var(--success-bd); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--success);
}
.success-icon svg { width: 24px; height: 24px; }
.success-title { font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -.02em; margin-bottom: 6px; }
.success-sub   { font-size: 14px; color: var(--text2); margin-bottom: 18px; }
.case-number-display {
  display: inline-block; font-family: var(--mono);
  font-size: 17px; font-weight: 700; color: var(--text);
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 8px 18px;
  letter-spacing: .06em; margin-bottom: 18px;
}
.success-detail { font-size: 13px; color: var(--text2); max-width: 400px; margin: 0 auto; line-height: 1.7; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px; background: var(--surface);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-logo { opacity: .35; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color var(--t); }
.footer-links a:hover { color: var(--text2); }
.footer-copy { font-size: 12px; color: var(--text4); }

/* ── Prose ───────────────────────────────────────────────── */
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin: 30px 0 10px; letter-spacing: -.01em;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 14px; color: var(--text2); line-height: 1.75; margin-bottom: 10px; }
.prose ul { padding-left: 18px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: var(--r-sm);
  font-family: var(--font); font-size: 13px; font-weight: 500;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer; transition: all var(--t); white-space: nowrap;
}
.btn-primary  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover  { background: var(--accent2); border-color: var(--accent2); }
.btn-ghost    { background: var(--surface); color: var(--text2); border-color: var(--border); }
.btn-ghost:hover    { background: var(--surface2); color: var(--text); }
.btn-danger   { background: var(--error-bg); color: var(--error); border-color: var(--error-bd); }
.btn-danger:hover   { background: #fee2e2; }
.btn-success  { background: var(--success-bg); color: var(--success); border-color: var(--success-bd); }
.btn-success:hover  { background: #dcfce7; }

/* ── Admin ───────────────────────────────────────────────── */
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; margin-bottom: 22px;
}
.admin-title {
  font-size: 20px; font-weight: 700; color: var(--text);
  letter-spacing: -.025em; display: flex; align-items: center; gap: 10px;
}
.admin-title span { font-size: 12px; color: var(--text3); font-weight: 400; letter-spacing: 0; }

.stats-row {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px; margin-bottom: 22px;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 16px; box-shadow: var(--sh-sm);
}
.stat-card__num { font-size: 26px; font-weight: 700; color: var(--text); letter-spacing: -.04em; line-height: 1; margin-bottom: 3px; }
.stat-card__label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text3); }

.filter-bar { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; align-items: center; }
.filter-bar select, .filter-bar input {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-sm); color: var(--text);
  font-family: var(--font); font-size: 13px; padding: 7px 11px;
  outline: none; -webkit-appearance: none; appearance: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.filter-bar select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a1a1aa' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  padding-right: 28px; cursor: pointer;
}
.filter-bar select:focus, .filter-bar input:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(24,24,27,.07);
}

.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  background: var(--surface2); color: var(--text3);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em;
  padding: 9px 14px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap;
}
.data-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  color: var(--text2); vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--surface2); }
.data-table td:first-child { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--text); }

.badge {
  display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: .03em; white-space: nowrap;
}
.badge-open     { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.badge-review   { background: var(--warn-bg); color: var(--warn); border: 1px solid #fde68a; }
.badge-resolved { background: var(--success-bg); color: var(--success); border: 1px solid var(--success-bd); }
.badge-rejected { background: var(--error-bg); color: var(--error); border: 1px solid var(--error-bd); }
.badge-noabuse  { background: var(--surface2); color: var(--text2); border: 1px solid var(--border2); }

.detail-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-sm);
}
.detail-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin-bottom: 18px;
}
.detail-item__label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text3); margin-bottom: 3px;
}
.detail-item__value { font-size: 14px; color: var(--text); word-break: break-all; }
.detail-item__value.mono { font-family: var(--mono); font-size: 12px; }
.data-dump {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 13px;
  font-family: var(--mono); font-size: 12px; color: var(--text2);
  white-space: pre-wrap; word-break: break-all;
  max-height: 340px; overflow-y: auto; line-height: 1.7;
}
.action-bar {
  display: flex; gap: 7px; flex-wrap: wrap; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border); margin-top: 16px;
}
.action-bar form { display: inline; }

/* ── Login ───────────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--bg); padding: 24px;
}
.login-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px; width: 100%; max-width: 390px;
  box-shadow: var(--sh-lg);
}
.login-logo { text-align: center; margin-bottom: 26px; }
.login-logo img { opacity: .75; }
.login-title { font-size: 18px; font-weight: 700; color: var(--text); text-align: center; margin-bottom: 3px; letter-spacing: -.02em; }
.login-sub   { font-size: 13px; color: var(--text3); text-align: center; margin-bottom: 26px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .page-shell { padding: 22px 16px 56px; }
  .form-card__body { padding: 18px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .tab-item { font-size: 12px; padding: 6px 11px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .admin-header { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-link--ext { display: none; }
}

/* ── Nav logo - full height ──────────────────────────────── */
.topnav { padding: 0; }
.nav-inner { height: 64px; }
.nav-logo {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 4px;
  border-right: 1px solid var(--border);
  padding-right: 24px;
  margin-right: 8px;
}
.nav-logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 160px;
}

/* ── Type selector dropdown ──────────────────────────────── */
.type-selector-wrap {
  margin-bottom: 24px;
  position: relative;
  z-index: 50;
}

.type-dropdown {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: border-color var(--t), box-shadow var(--t);
  box-shadow: var(--sh-sm);
}
.type-dropdown:hover,
.type-dropdown:focus { border-color: var(--accent); outline: none; }
.type-dropdown.is-open {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(24,24,27,.07);
  border-radius: var(--r) var(--r) 0 0;
  border-bottom-color: var(--border);
}

.type-dropdown__selected {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  padding-right: 44px;
  min-height: 52px;
}
.type-dropdown__icon  { width: 20px; height: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--text2); }
.type-dropdown__label { font-size: 15px; font-weight: 600; color: var(--text); }
.type-dropdown__placeholder { font-size: 15px; color: var(--text3); }

.type-dropdown__chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  pointer-events: none;
  transition: transform var(--t);
}
.type-dropdown.is-open .type-dropdown__chevron { transform: translateY(-50%) rotate(180deg); }

.type-dropdown__list {
  display: none;
  position: absolute;
  top: 100%;
  left: -1.5px;
  right: -1.5px;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  list-style: none;
  max-height: 380px;
  overflow-y: auto;
  z-index: 100;
}
.type-dropdown.is-open .type-dropdown__list { display: block; }

.type-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background var(--t);
  border-bottom: 1px solid var(--border);
}
.type-dropdown__item:last-child { border-bottom: none; }
.type-dropdown__item:hover { background: var(--surface2); }
.type-dropdown__item--active { background: var(--surface2); }

.type-item__icon  { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--text2); }
.type-item__text  { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.type-item__label { font-size: 14px; font-weight: 600; color: var(--text); }
.type-item__desc  { font-size: 12px; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.type-item__check { flex-shrink: 0; color: var(--accent); margin-left: auto; }

/* ── Empty state ─────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 64px 40px;
  background: var(--surface);
  border: 1.5px dashed var(--border2);
  border-radius: var(--r-lg);
  text-align: center;
}
.empty-state__icon {
  width: 56px; height: 56px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
}
.empty-state__text {
  font-size: 14px;
  color: var(--text3);
  max-width: 320px;
  line-height: 1.6;
}
