:root {
  --lime: #C8E530;
  --lime-bright: #d9f33b;
  --lime-dim: #8da620;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --ink-3: #1c1c1c;
  --ink-4: #262626;
  --line: #2a2a2a;
  --line-2: #383838;
  --text: #f5f5f3;
  --text-dim: #a8a8a3;
  --text-muted: #6b6b66;
  --surface: #ffffff;
  --surface-2: #f6f6f3;
  --warn: #f4b740;
  --red: #ff5a4f;
  --green: #4dd28b;
  --blue: #5aa9ff;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow: 0 1px 0 rgba(255,255,255,0.04), 0 12px 28px -16px rgba(0,0,0,0.6);
  font-family: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; background: var(--ink); color: var(--text); }
body { font-family: 'DM Sans', system-ui, sans-serif; font-feature-settings: "ss01"; -webkit-font-smoothing: antialiased; overflow: hidden; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }
input, textarea, select { font-family: inherit; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #383838; }

.mono { font-family: 'Space Mono', 'JetBrains Mono', monospace; letter-spacing: -0.01em; }

/* ─────────────────── APP SHELL ─────────────────── */
.app {
  display: grid;
  grid-template-columns: 248px 1fr;
  height: 100vh;
  background: var(--ink);
}

/* SIDEBAR */
.sidebar {
  background: var(--ink);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 18px 14px;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}
.brand:hover { background: var(--ink-2); }
.brand-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--lime);
}
.brand-wordmark sup { font-size: 9px; color: var(--lime-dim); top: -10px; }
.brand-chev { color: var(--text-muted); margin-left: auto; }

.app-switcher {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px;
  z-index: 30;
  box-shadow: var(--shadow);
}
.app-switcher button {
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
}
.app-switcher button:hover { background: var(--ink-3); color: var(--text); }
.app-switcher .active { color: var(--lime); }
.app-switcher .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.app-switcher .dot.purple { background: #b262f5; }
.app-switcher .dot.dim { background: var(--text-muted); }

.nav { display: flex; flex-direction: column; gap: 2px; }
.nav-group-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 12px 10px 6px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 14px;
  cursor: pointer;
  position: relative;
}
.nav-item:hover { background: var(--ink-2); color: var(--text); }
.nav-item.active {
  background: var(--ink-2);
  color: var(--text);
}
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--lime);
  border-radius: 2px;
}
.nav-item .badge {
  margin-left: auto;
  font-size: 10px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
}
.nav-item .live-dot {
  margin-left: auto;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(77,210,139,0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(77,210,139,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(77,210,139,0.05); }
}

.sidebar .spacer { flex: 1; }

.brand-context {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-context .logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6b9d, #ffd66b);
  display: grid;
  place-items: center;
  color: #4a1414;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
}
.brand-context .meta { font-size: 12px; line-height: 1.2; }
.brand-context .meta .name { color: var(--text); font-weight: 600; }
.brand-context .meta .role { color: var(--text-muted); }
.brand-context .swap { margin-left: auto; color: var(--text-muted); }

/* ─────────────────── MAIN ─────────────────── */
.main { display: flex; flex-direction: column; overflow: hidden; }

.topbar {
  height: 56px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  background: var(--ink);
  flex-shrink: 0;
}
.crumb {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.crumb .here { color: var(--text); }
.crumb .sep { opacity: 0.4; }
.topbar .right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--text-dim);
}
.icon-btn:hover { background: var(--ink-2); color: var(--text); }
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8E530, #4dd28b);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}

.page {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px 80px;
}
.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.page-sub { color: var(--text-dim); font-size: 14px; margin: 0 0 24px; }

/* ─────────────────── CARDS ─────────────────── */
.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.card-title { font-size: 13px; color: var(--text-dim); margin: 0 0 10px; font-weight: 500; }
.card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.card-header h3 { margin: 0; font-size: 15px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.01em; }
.card-header .pill { margin-left: auto; }

.row { display: flex; gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* KPI */
.kpi { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; min-height: 116px; position: relative; overflow: hidden; }
.kpi .lbl { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.kpi .val { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 600; letter-spacing: -0.03em; }
.kpi .delta { font-size: 12px; display: flex; align-items: center; gap: 4px; }
.kpi .delta.up { color: var(--green); }
.kpi .delta.down { color: var(--red); }
.kpi .spark { position: absolute; right: 16px; bottom: 16px; opacity: 0.7; }

/* PILLS */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--ink-3);
  color: var(--text-dim);
  font-weight: 500;
  border: 1px solid var(--line);
}
.pill.lime { background: rgba(200,229,48,0.14); color: var(--lime); border-color: rgba(200,229,48,0.3); }
.pill.green { background: rgba(77,210,139,0.12); color: var(--green); border-color: rgba(77,210,139,0.3); }
.pill.warn { background: rgba(244,183,64,0.12); color: var(--warn); border-color: rgba(244,183,64,0.3); }
.pill.red { background: rgba(255,90,79,0.12); color: var(--red); border-color: rgba(255,90,79,0.3); }
.pill.live::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(77,210,139,0.25); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  background: var(--ink-3);
  color: var(--text);
  border: 1px solid var(--line);
  transition: 0.12s;
}
.btn:hover { background: var(--ink-4); border-color: var(--line-2); }
.btn.primary { background: var(--lime); color: var(--ink); border-color: var(--lime); font-weight: 600; }
.btn.primary:hover { background: var(--lime-bright); border-color: var(--lime-bright); }
.btn.ghost { background: transparent; border-color: transparent; color: var(--text-dim); }
.btn.ghost:hover { color: var(--text); background: var(--ink-2); }
.btn.sm { padding: 6px 11px; font-size: 12px; }

/* ─────────────────── ATLEDI ─────────────────── */
.atledi {
  background: linear-gradient(135deg, #14140e 0%, #1c1c12 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.atledi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 90% 10%, rgba(200,229,48,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.atledi-orb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--lime), #6b8019 70%, #1a2007 100%);
  box-shadow: 0 0 32px rgba(200,229,48,0.35), inset 0 0 12px rgba(0,0,0,0.4);
  position: relative;
  flex-shrink: 0;
}
.atledi-orb::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
}
.atledi-body { z-index: 1; }
.atledi-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.atledi-msg {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  text-wrap: balance;
  max-width: 720px;
}
.atledi-msg strong { color: var(--lime); font-weight: 600; }
.atledi-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.atledi-action {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text);
}
.atledi-action:hover { background: rgba(200,229,48,0.1); border-color: rgba(200,229,48,0.3); color: var(--lime); }
.atledi-action.primary { background: var(--lime); color: var(--ink); border-color: var(--lime); font-weight: 600; }
.atledi-action.primary:hover { background: var(--lime-bright); }

/* ─────────────────── EVENTS ─────────────────── */
.event-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  transition: 0.12s;
}
.event-card:hover { border-color: var(--line-2); background: var(--ink-3); }
.event-cover {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: var(--ink-4);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 11px;
  position: relative;
  overflow: hidden;
}
.event-name { font-weight: 600; font-size: 15px; font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.01em; }
.event-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 8px; margin-top: 3px; }
.event-meta .dot { color: var(--line-2); }
.event-side { text-align: right; }
.event-side .when { font-size: 12px; color: var(--text-dim); }
.event-side .stations { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ─────────────────── PROGRESS ─────────────────── */
.bar { height: 6px; background: var(--ink-4); border-radius: 999px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: var(--lime); border-radius: 999px; }
.bar.warn > span { background: var(--warn); }
.bar.red > span { background: var(--red); }
.bar.green > span { background: var(--green); }

/* Mini sparkline polygon */
.spark-svg { display: block; }

/* ─────────────────── BRAND STUDIO ─────────────────── */
.studio { display: grid; grid-template-columns: 1fr 420px; gap: 24px; align-items: start; }
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  overflow-x: auto;
}
.tab {
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text-dim);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--lime); border-bottom-color: var(--lime); }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.field .input,
.field input[type=text],
.field input[type=email],
.field textarea {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.field input:focus { border-color: var(--lime); }
.swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.sw {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: 0.1s;
}
.sw:hover { transform: scale(1.06); }
.sw.active { border-color: var(--text); box-shadow: 0 0 0 2px var(--ink-2), 0 0 0 4px var(--text); }

.upload-box {
  border: 1.5px dashed var(--line-2);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
}
.upload-box:hover { border-color: var(--lime); color: var(--text-dim); }

/* feature toggles */
.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 8px;
}
.feature-row .grip { color: var(--text-muted); cursor: grab; }
.feature-row .label { font-size: 14px; font-weight: 500; }
.feature-row .desc { font-size: 12px; color: var(--text-muted); }
.feature-row .right { margin-left: auto; }
.toggle {
  width: 38px;
  height: 22px;
  background: var(--ink-4);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: 0.16s;
  border: 1px solid var(--line);
}
.toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--text-dim);
  border-radius: 50%;
  transition: 0.16s;
}
.toggle.on { background: var(--lime); border-color: var(--lime); }
.toggle.on::after { left: calc(100% - 18px); background: var(--ink); }

/* PHONE PREVIEW */
.phone-wrap { position: sticky; top: 20px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.phone {
  width: 320px;
  height: 640px;
  background: #000;
  border: 8px solid #1a1a1a;
  border-radius: 44px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  position: relative;
}
.phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--screen-bg, #ffffff);
  color: var(--screen-fg, #0a0a0a);
  display: flex;
  flex-direction: column;
  font-family: var(--screen-font, 'DM Sans', sans-serif);
  overflow: hidden;
  position: relative;
}
.phone-controls { display: flex; gap: 6px; }
.phone-controls button {
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 11px;
}
.phone-controls button.active { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* SURVEY SCREEN */
.s-header {
  padding: 50px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.s-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--screen-accent, #C8E530);
  display: grid;
  place-items: center;
  color: var(--screen-fg);
  font-weight: 700;
  font-size: 22px;
  font-family: 'Space Grotesk', sans-serif;
}
.s-title { font-size: 17px; font-weight: 600; margin: 4px 0 0; }
.s-sub { font-size: 12px; opacity: 0.6; text-align: center; padding: 0 16px; }

.s-question { padding: 16px 20px; }
.s-question h4 { margin: 0 0 12px; font-size: 14px; font-weight: 600; }
.s-options { display: flex; flex-direction: column; gap: 8px; }
.s-opt {
  padding: 11px 14px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-size: 13px;
}
.s-opt.sel { border-color: var(--screen-accent); background: rgba(0,0,0,0.02); }
.s-cta {
  margin: auto 20px 22px;
  padding: 13px;
  background: var(--screen-accent);
  color: var(--screen-fg);
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.s-progress {
  height: 3px;
  background: rgba(0,0,0,0.06);
  margin: 0 20px 14px;
  border-radius: 999px;
  overflow: hidden;
}
.s-progress > span { display: block; height: 100%; background: var(--screen-accent); width: 40%; }

/* WHEEL */
.wheel-wrap { display: flex; flex-direction: column; align-items: center; padding: 22px 20px 0; flex: 1; }
.wheel-headline { font-size: 16px; font-weight: 700; text-align: center; margin: 0 0 4px; }
.wheel-sub { font-size: 11px; opacity: 0.55; margin-bottom: 14px; }
.wheel {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.2);
}
.wheel-pin {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid var(--screen-fg);
  z-index: 3;
}
.wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--screen-fg);
  color: var(--screen-bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  z-index: 2;
  border: 4px solid var(--screen-bg);
}

/* ─────────────────── TABLE / MERCH ─────────────────── */
.merch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.merch-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: 0.12s;
}
.merch-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.merch-photo {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--ink-3);
  position: relative;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 10px;
}
.merch-rarity {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  padding: 3px 7px;
  border-radius: 6px;
  font-size: 10px;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 2px;
}
.merch-body { padding: 14px; }
.merch-name { font-size: 14px; font-weight: 600; }
.merch-count { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.merch-bar { margin-top: 10px; }

/* ─────────────────── CHARTS ─────────────────── */
.donut-wrap { display: flex; align-items: center; gap: 18px; }
.donut-legend { font-size: 12px; display: flex; flex-direction: column; gap: 8px; }
.donut-legend .row { display: flex; align-items: center; gap: 8px; }
.donut-legend .sw {
  width: 10px; height: 10px; border-radius: 3px; border: 0;
}

.bar-row { display: grid; grid-template-columns: 60px 1fr 50px; gap: 12px; align-items: center; font-size: 12px; margin: 8px 0; }
.bar-row .lbl { color: var(--text-dim); }
.bar-row .num { font-family: 'Space Mono', monospace; color: var(--text); text-align: right; }

/* PROJECT TREE */
.tree-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  cursor: pointer;
}
.tree-row:hover { background: var(--ink-3); }
.tree-row:last-child { border-bottom: 0; }
.tree-row.l2 { padding-left: 38px; background: var(--ink); }
.tree-row.l3 { padding-left: 58px; background: var(--ink); font-size: 13px; }
.tree-name { display: flex; align-items: center; gap: 10px; }
.tree-name .icn { color: var(--text-muted); }

/* CONTACTS TABLE */
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th { text-align: left; padding: 12px 14px; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--line); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.tbl td { padding: 14px; border-bottom: 1px solid var(--line); color: var(--text); }
.tbl tbody tr:hover { background: var(--ink-3); }

/* PRICING SCREEN HOOK */
.tier-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
}
.tier-card.featured { border-color: var(--lime); background: linear-gradient(180deg, rgba(200,229,48,0.04), var(--ink-2)); }
.tier-card .star {
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--lime);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

/* MISC */
.divider { height: 1px; background: var(--line); margin: 16px 0; }
.section-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 500; margin: 30px 0 12px; }
.empty { color: var(--text-muted); font-size: 13px; padding: 30px; text-align: center; }
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-dim);
  flex: 1;
  max-width: 340px;
}
.search input { background: transparent; border: 0; color: var(--text); outline: none; flex: 1; }

.filter-row { display: flex; gap: 8px; margin-bottom: 18px; align-items: center; }
.chip {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
  cursor: pointer;
}
.chip.active { background: var(--lime); color: var(--ink); border-color: var(--lime); font-weight: 600; }
.chip:hover:not(.active) { color: var(--text); border-color: var(--line-2); }
