/* VYTHO Leads — design system v2 «Καθαρό»
   Apple-like: light paper, white cards, black pill actions, iOS status colors.
   Commissioner for text, JetBrains Mono for numbers. Radius 20 / pills 999.
   Motion: one spring curve, screen fade+rise, staggered cards. */

:root {
  --paper: #F5F5F7;
  --card: #FFFFFF;
  --card-2: #FAFAFC;
  --ink: #1D1D1F;
  --muted: #6E6E73;
  --line: rgba(0, 0, 0, .08);
  --accent: #101010;
  --accent-ink: #F4F4F4;
  --ok: #34C759;
  --warn: #FF9500;
  --bad: #FF3B30;
  --ok-soft: rgba(52, 199, 89, .14);
  --warn-soft: rgba(255, 149, 0, .14);
  --bad-soft: rgba(255, 59, 48, .12);
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lift: 0 2px 8px rgba(0,0,0,.06), 0 16px 40px rgba(0,0,0,.12);
  --spring: cubic-bezier(.32, .72, .28, 1);
  --r: 20px;
  --r-s: 14px;
}
[data-theme="dark"] {
  --paper: #0B0B0C;
  --card: #161618;
  --card-2: #1D1D20;
  --ink: #F4F4F4;
  --muted: #98989E;
  --line: rgba(255, 255, 255, .10);
  --accent: #F4F4F4;
  --accent-ink: #101010;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.35);
  --shadow-lift: 0 2px 8px rgba(0,0,0,.5), 0 16px 40px rgba(0,0,0,.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Commissioner', -apple-system, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 500; }

/* ---------- shell ---------- */
.shell { max-width: 1080px; margin: 0 auto; padding: 20px 20px 110px; }
@media (min-width: 800px) { .shell { padding-top: 28px; } }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.brand { font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.brand small { color: var(--muted); font-weight: 500; margin-left: 8px; font-size: 14px; }
.top-actions { display: flex; gap: 10px; align-items: center; }

/* ---------- tab bar ---------- */
.tabbar {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: max(14px, env(safe-area-inset-bottom));
  display: flex; gap: 4px;
  background: color-mix(in srgb, var(--card) 82%, transparent);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-lift);
  z-index: 50;
}
.tab {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  min-width: 76px; padding: 8px 14px;
  border: 0; background: transparent; color: var(--muted);
  border-radius: 999px; cursor: pointer;
  font: inherit; font-size: 12px; font-weight: 600;
  transition: background .25s var(--spring), color .25s var(--spring);
}
.tab svg { width: 24px; height: 24px; }
.tab.active { background: var(--accent); color: var(--accent-ink); }
.tab:not(.active):hover { background: var(--line); color: var(--ink); }
@media (min-width: 800px) {
  .tab { flex-direction: row; gap: 8px; font-size: 14px; padding: 10px 18px; }
  .tab svg { width: 20px; height: 20px; }
}
@media (max-width: 560px) {
  .tab { min-width: 54px; padding: 8px 10px; font-size: 11px; }
}

/* ---------- screens & motion ---------- */
.screen { animation: rise .32s var(--spring) both; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.stagger > * { animation: rise .32s var(--spring) both; }
.stagger > *:nth-child(2) { animation-delay: .04s; }
.stagger > *:nth-child(3) { animation-delay: .08s; }
.stagger > *:nth-child(4) { animation-delay: .12s; }
.stagger > *:nth-child(5) { animation-delay: .16s; }
.stagger > *:nth-child(6) { animation-delay: .20s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.h1 { font-size: 30px; font-weight: 700; letter-spacing: -.03em; line-height: 1.15; }
.h2 { font-size: 21px; font-weight: 650; letter-spacing: -.02em; }
.sub { color: var(--muted); font-size: 15px; }
.section-title { font-size: 14px; font-weight: 600; color: var(--muted); margin: 26px 4px 10px; }

/* ---------- cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow);
}
.card + .card { margin-top: 12px; }
.card.tap { cursor: pointer; transition: transform .25s var(--spring), box-shadow .25s var(--spring); }
.card.tap:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.card.tap:active { transform: scale(.985); }

/* Σήμερα sentence-cards (home signature) */
.say { display: flex; align-items: center; gap: 16px; }
.say .icon-bubble {
  flex: 0 0 48px; width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center;
}
.say .icon-bubble svg { width: 24px; height: 24px; }
.say .txt { flex: 1; font-size: 17px; font-weight: 550; line-height: 1.35; }
.say .txt small { display: block; color: var(--muted); font-weight: 450; font-size: 14px; margin-top: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font: inherit; font-weight: 600;
  border-radius: 999px; padding: 0 22px; height: 52px; font-size: 17px;
  background: var(--accent); color: var(--accent-ink);
  transition: transform .2s var(--spring), opacity .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { opacity: .92; box-shadow: var(--shadow); }
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .45; cursor: default; }
.btn.secondary { background: var(--card); color: var(--ink); border: 1px solid var(--line); }
.btn.soft { background: var(--line); color: var(--ink); }
.btn.danger { background: var(--bad-soft); color: var(--bad); }
.btn.small { height: 40px; font-size: 15px; padding: 0 16px; }
.btn.big { width: 100%; height: 56px; font-size: 18px; }
.btn.icon { width: 44px; height: 44px; padding: 0; border-radius: 999px; }
.btn svg { width: 20px; height: 20px; }

.fab {
  position: fixed; right: 20px; bottom: calc(88px + env(safe-area-inset-bottom));
  z-index: 40; box-shadow: var(--shadow-lift);
}
@media (min-width: 800px) { .fab { right: calc(50% - 520px); } }

/* ---------- chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 999px; padding: 4px 12px; font-size: 13px; font-weight: 600;
  background: var(--line); color: var(--ink); border: 0; cursor: pointer; font-family: inherit;
}
.chip.on { background: var(--accent); color: var(--accent-ink); }
.badge { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 3px 10px; font-size: 12.5px; font-weight: 650; }
.badge.ok { background: var(--ok-soft); color: var(--ok); }
.badge.warn { background: var(--warn-soft); color: var(--warn); }
.badge.bad { background: var(--bad-soft); color: var(--bad); }
.badge.mute { background: var(--line); color: var(--muted); }
.dot { width: 8px; height: 8px; border-radius: 99px; background: currentColor; }
.pulse { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; box-shadow: var(--shadow); }
.stat .n { font-family: 'JetBrains Mono', monospace; font-size: 26px; font-weight: 600; letter-spacing: -.02em; }
.stat .l { color: var(--muted); font-size: 13.5px; font-weight: 550; margin-top: 2px; }

/* ---------- pipeline ---------- */
.seg {
  display: flex; gap: 4px; background: var(--line); border-radius: 999px; padding: 4px;
  overflow-x: auto; scrollbar-width: none;
}
.seg::-webkit-scrollbar { display: none; }
.seg .chip { background: transparent; white-space: nowrap; padding: 8px 14px; font-size: 14px; color: var(--muted); }
.seg .chip.on { background: var(--card); color: var(--ink); box-shadow: var(--shadow); }

.lead-row { display: flex; align-items: center; gap: 14px; }
.avatar {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 999px;
  display: grid; place-items: center; font-weight: 700; font-size: 17px;
  background: var(--line); color: var(--ink);
}
.lead-row .who { flex: 1; min-width: 0; }
.lead-row .who b { display: block; font-weight: 650; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lead-row .who small { color: var(--muted); font-size: 13.5px; }
.kanban { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; align-items: start; }
.kan-col { background: var(--card-2); border: 1px solid var(--line); border-radius: var(--r); padding: 12px; min-height: 120px; }
.kan-col h4 { font-size: 14px; font-weight: 650; color: var(--muted); margin: 2px 6px 10px; display: flex; justify-content: space-between; }
.kan-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-s); padding: 12px 14px; margin-bottom: 8px; cursor: grab; box-shadow: var(--shadow); }
.kan-card.dragging { opacity: .5; }
.kan-col.dragover { outline: 2px dashed var(--muted); outline-offset: -4px; }

/* ---------- sheet (modal) ---------- */
.sheet-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 90;
  animation: fadein .25s ease both;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.sheet {
  position: fixed; z-index: 91; background: var(--card);
  left: 0; right: 0; bottom: 0; max-height: 92vh; overflow-y: auto;
  border-radius: 24px 24px 0 0; padding: 10px 20px 40px;
  animation: sheetup .38s var(--spring) both;
  box-shadow: var(--shadow-lift);
}
@keyframes sheetup { from { transform: translateY(60px); opacity: 0; } to { transform: none; opacity: 1; } }
.sheet .grab { width: 40px; height: 5px; border-radius: 99px; background: var(--line); margin: 6px auto 14px; }
@media (min-width: 800px) {
  .sheet { left: 50%; right: auto; top: 50%; bottom: auto; transform: translate(-50%, -50%); width: 620px; border-radius: 24px; max-height: 86vh; }
  .sheet { animation: sheetup-desk .38s var(--spring) both; }
}
@keyframes sheetup-desk { from { transform: translate(-50%, -46%); opacity: 0; } to { transform: translate(-50%, -50%); opacity: 1; } }
.sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }

/* ---------- forms ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 6px; }
.field .hint { color: var(--muted); font-size: 13px; margin-top: 5px; }
input[type="text"], input[type="tel"], input[type="email"], input[type="number"],
input[type="date"], input[type="time"], input[type="password"], select, textarea {
  width: 100%; height: 52px; border-radius: var(--r-s);
  border: 1.5px solid var(--line); background: var(--card-2); color: var(--ink);
  font: inherit; font-size: 17px; padding: 0 16px;
  transition: border-color .2s, box-shadow .2s;
}
textarea { height: auto; min-height: 100px; padding: 14px 16px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--line); }
.check { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; cursor: pointer; }
.check input { width: 24px; height: 24px; accent-color: var(--accent); flex: 0 0 auto; margin-top: 2px; }

/* iOS-style toggle */
.switch { position: relative; width: 52px; height: 32px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .knob {
  position: absolute; inset: 0; border-radius: 999px; background: var(--line);
  transition: background .25s var(--spring); cursor: pointer;
}
.switch .knob::after {
  content: ''; position: absolute; top: 3px; left: 3px; width: 26px; height: 26px;
  border-radius: 999px; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.25);
  transition: transform .25s var(--spring);
}
.switch input:checked + .knob { background: var(--ok); }
.switch input:checked + .knob::after { transform: translateX(20px); }

/* stepper */
.stepper { display: flex; align-items: center; gap: 14px; }
.stepper button {
  width: 48px; height: 48px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--card); color: var(--ink); font-size: 24px; font-weight: 600; cursor: pointer;
  transition: transform .15s var(--spring), background .2s;
}
.stepper button:active { transform: scale(.92); }
.stepper .val { font-family: 'JetBrains Mono', monospace; font-size: 24px; font-weight: 600; min-width: 110px; text-align: center; }

/* iOS grouped list (settings) */
.group { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.group + .group { margin-top: 14px; }
.row {
  display: flex; align-items: center; gap: 14px; padding: 15px 18px;
  border: 0; border-bottom: 1px solid var(--line); cursor: pointer; background: transparent;
  width: 100%; font: inherit; color: var(--ink); text-align: left;
  transition: background .15s;
}
.group .row:last-child { border-bottom: 0; }
.row:hover { background: var(--card-2); }
.row .r-icon { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--line); }
.row .r-icon svg { width: 18px; height: 18px; }
.row .r-txt { flex: 1; min-width: 0; }
.row .r-txt b { font-weight: 600; font-size: 16px; display: block; }
.row .r-txt small { color: var(--muted); font-size: 13px; }
.row .chev { color: var(--muted); flex: 0 0 auto; }

/* ---------- ads ---------- */
.ad-card .spark { height: 44px; margin-top: 12px; }
.spark svg { width: 100%; height: 100%; display: block; }
.platform-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.platform-pick .pcard {
  border: 2px solid var(--line); border-radius: var(--r); padding: 18px 10px; text-align: center;
  cursor: pointer; background: var(--card); font: inherit; color: var(--ink);
  transition: border-color .2s, transform .2s var(--spring);
}
.platform-pick .pcard.on { border-color: var(--ink); }
.platform-pick .pcard:active { transform: scale(.97); }
.platform-pick .pcard .pname { font-weight: 650; font-size: 15px; margin-top: 8px; }
.platform-pick .pcard small { color: var(--muted); font-size: 12.5px; }

.variant { border: 2px solid var(--line); border-radius: var(--r); padding: 16px; cursor: pointer; transition: border-color .2s; background: var(--card); }
.variant.on { border-color: var(--ink); }
.variant + .variant { margin-top: 10px; }
.variant .angle { font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }

/* wizard progress */
.wiz-steps { display: flex; gap: 6px; margin: 4px 0 20px; }
.wiz-steps i { flex: 1; height: 4px; border-radius: 99px; background: var(--line); transition: background .3s; }
.wiz-steps i.done { background: var(--accent); }

/* iPhone preview frame */
.phone {
  width: 270px; margin: 0 auto; border-radius: 38px; border: 6px solid var(--ink);
  background: #fff; color: #1D1D1F; overflow: hidden; box-shadow: var(--shadow-lift);
}
[data-theme="dark"] .phone { border-color: #3A3A3C; }
.phone .ph-notch { width: 90px; height: 20px; background: var(--ink); border-radius: 0 0 14px 14px; margin: 0 auto; }
[data-theme="dark"] .phone .ph-notch { background: #3A3A3C; }
.phone .ph-app { padding: 12px; font-size: 12.5px; line-height: 1.4; }
.phone .ph-head { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.phone .ph-avatar { width: 30px; height: 30px; border-radius: 99px; background: #E5E5EA; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.phone .ph-img {
  height: 150px; border-radius: 12px; margin: 8px 0;
  background: linear-gradient(135deg, #E8E8ED, #D1D1D6);
  display: grid; place-items: center; color: #6E6E73; font-size: 12px; text-align: center; padding: 10px;
}
.phone .ph-cta {
  background: #101010; color: #fff; border-radius: 10px; text-align: center;
  padding: 9px; font-weight: 650; font-size: 13px; margin-top: 8px;
}

/* rule sentence builder */
.rule-sentence { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 16px; }
.rule-sentence select { width: auto; height: 44px; font-size: 15px; padding: 0 12px; }
.rule-sentence input { width: 90px; height: 44px; font-size: 15px; }

/* banner */
.banner {
  display: flex; gap: 12px; align-items: center;
  border-radius: var(--r); padding: 14px 18px; font-size: 14.5px; font-weight: 550;
  background: var(--warn-soft); color: var(--warn);
}
.banner.info { background: var(--line); color: var(--muted); }

/* timeline */
.tl { list-style: none; }
.tl li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.tl li:last-child { border-bottom: 0; }
.tl .t-ico { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 10px; background: var(--line); display: grid; place-items: center; }
.tl .t-ico svg { width: 15px; height: 15px; }
.tl small { color: var(--muted); display: block; font-size: 12.5px; }

/* toast */
.toast {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(96px + env(safe-area-inset-bottom)); z-index: 120;
  background: var(--ink); color: var(--paper);
  border-radius: 999px; padding: 13px 24px; font-size: 15px; font-weight: 600;
  box-shadow: var(--shadow-lift);
  animation: toastin .35s var(--spring) both;
  max-width: min(90vw, 480px); text-align: center;
}
@keyframes toastin { from { transform: translate(-50%, 16px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
.toast.out { animation: toastout .3s ease both; }
@keyframes toastout { to { transform: translate(-50%, 10px); opacity: 0; } }

/* empty state */
.empty { text-align: center; padding: 44px 20px; }
.empty .e-ico { width: 72px; height: 72px; border-radius: 24px; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; margin: 0 auto 16px; box-shadow: var(--shadow); }
.empty .e-ico svg { width: 34px; height: 34px; color: var(--muted); }
.empty h3 { font-size: 19px; font-weight: 650; margin-bottom: 6px; }
.empty p { color: var(--muted); font-size: 15px; margin-bottom: 18px; max-width: 340px; margin-left: auto; margin-right: auto; }

/* login */
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.login-card { width: 100%; max-width: 400px; }
.login-card .logo { text-align: center; margin-bottom: 26px; }
.login-card .logo b { font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.login-card .logo small { display: block; color: var(--muted); margin-top: 4px; }

/* utility */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.flex { display: flex; gap: 10px; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.wrap { flex-wrap: wrap; }
.grow { flex: 1; }
.mt { margin-top: 16px; }
.mt-s { margin-top: 10px; }
.mb { margin-bottom: 16px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.hide { display: none !important; }
a.tel { color: var(--ink); text-decoration: none; font-weight: 650; }

:focus-visible { outline: 3px solid color-mix(in srgb, var(--ink) 40%, transparent); outline-offset: 2px; border-radius: 6px; }

[data-countup] { font-variant-numeric: tabular-nums; }

/* One-Click Post dropzone */
.dropzone {
  min-height: 300px;
  border: 2px dashed var(--line);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: border-color .25s var(--spring), background .25s var(--spring), transform .25s var(--spring);
  cursor: pointer;
  text-align: center;
  padding: 28px 20px;
  background: var(--card);
}
.dropzone.drag {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--card));
  transform: scale(1.01);
}
.dropzone svg { width: 40px; height: 40px; color: var(--muted); }
.dropzone-progress {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.dropzone-progress .bar-track {
  width: min(100%, 280px);
  height: 6px;
  border-radius: 99px;
  background: var(--line);
  overflow: hidden;
}
.dropzone-progress .bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 99px;
  transition: width .2s ease;
}
.post-plat {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
  cursor: pointer; background: transparent; width: 100%; text-align: left; font: inherit; color: inherit;
}
.post-plat:last-child { border-bottom: 0; }
.post-plat.on { background: color-mix(in srgb, var(--accent) 6%, var(--card)); }
.post-plat.mute { opacity: .55; cursor: default; }
.post-plat .sw {
  width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--line);
  display: grid; place-items: center; flex: 0 0 auto;
}
.post-plat.on .sw { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.post-preview {
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: var(--card); box-shadow: var(--shadow);
}
.post-preview img, .post-preview video {
  display: block; width: 100%; max-height: 360px; object-fit: contain; background: var(--card-2);
}
/* Mock frames «πώς φαίνεται» ανά social */
.post-frames {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.post-frame {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 10px;
  box-shadow: var(--shadow);
}
button.post-frame {
  display: block;
  width: 100%;
  text-align: left;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
}
button.post-frame:hover {
  border-color: var(--accent, #2a6);
}
.post-frame .ff-label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 650; font-size: 13px; margin-bottom: 8px;
}
.post-frame .ff-label svg { width: 18px; height: 18px; }
.post-frame .ff-stage {
  width: 100%;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  position: relative;
}
.post-frame .ff-stage img,
.post-frame .ff-stage video {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.post-frame .ff-cap {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.35;
  max-height: 4.2em;
  overflow: hidden;
}
.post-frame .ff-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.post-detail-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.post-detail-row:last-child { border-bottom: 0; }
.post-detail-row .ff-stage {
  flex: 0 0 88px; width: 88px; height: 110px;
  background: #0a0a0a; border-radius: 10px; overflow: hidden;
}
.post-detail-row .ff-stage.wide { height: 56px; }
.post-detail-row .ff-stage img { width: 100%; height: 100%; object-fit: cover; }
/* Split συνδέσεις: διαφημίσεις αριστερά · δημοσίευση δεξιά */
.conn-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 8px;
}
.conn-split .group { margin: 0; }
.conn-split .section-title { margin-top: 0; }
@media (max-width: 720px) {
  .conn-split { grid-template-columns: 1fr; }
}
.platform-pick.post-platforms {
  grid-template-columns: repeat(4, 1fr);
}
.platform-pick.post-platforms .pcard.mute {
  opacity: .5;
  cursor: pointer;
}
.platform-pick.post-platforms .pcard.disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 560px) {
  .platform-pick.post-platforms { grid-template-columns: repeat(2, 1fr); }
}
