/* Stratuye consumer app — premium mobile-first design system (prototype).
   Visual-refinement pass: larger scale, confident hierarchy, real brand, intelligent desktop. */
:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#f4f5f7;
  --surface-3:#eef0f3;
  --ink:#0b0b0d;
  --ink-2:#585e6b;
  --ink-3:#9198a5;
  --line:#eceef1;
  --line-2:#e0e3e8;
  --pos:#0a8a4a;
  --pos-bg:#e7f5ee;
  --neg:#d23a30;
  --neg-bg:#fceceb;
  --warn:#a9680d;
  --warn-bg:#faf1e1;
  --brand:#2563EB;             /* real Stratuye accent — used sparingly */
  --brand-2:#1e50c9;
  --primary:#0b0b0d;           /* premium black CTAs */
  --primary-ink:#ffffff;
  --focus:#2563EB;
  --r-xl:30px; --r-lg:24px; --r-md:18px; --r-sm:12px; --r-pill:999px;
  --shadow-sm:0 1px 2px rgba(12,14,20,.05);
  --shadow:0 2px 6px rgba(12,14,20,.06), 0 14px 40px rgba(12,14,20,.07);
  --shadow-lg:0 30px 80px rgba(18,22,34,.16);
  --ease:cubic-bezier(.22,.61,.36,1);
  --maxw:480px; --maxw-wide:880px;
  --font:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font); color:var(--ink); background:var(--surface-3);
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  font-size:16px; line-height:1.42; letter-spacing:-.006em;
}
button{font-family:inherit}
a{color:inherit; text-decoration:none}
:focus-visible{outline:2.5px solid var(--focus); outline-offset:2px; border-radius:10px}
@media (prefers-reduced-motion:reduce){*{animation-duration:.001ms!important;transition:none!important}}

/* Unobtrusive prototype label (replaces the intrusive top ribbon) */
#proto-flag{
  position:fixed; z-index:60; left:14px; bottom:14px;
  background:rgba(11,11,13,.55); color:#fff; font-size:10px; letter-spacing:.08em; text-transform:uppercase;
  font-weight:600; padding:5px 9px; border-radius:var(--r-pill); backdrop-filter:blur(6px);
  pointer-events:none; opacity:.5;
}
@media (min-width:900px){ #proto-flag{ left:auto; right:20px; bottom:20px; } }

/* App frame */
.app-frame{
  min-height:100dvh; max-width:var(--maxw); margin:0 auto; background:var(--bg);
  position:relative; display:flex; flex-direction:column;
}
@media (max-width:899px){ .app-frame{ box-shadow:0 0 0 1px var(--line); } }
@media (min-width:900px){
  body{background:
    radial-gradient(1400px 700px at 50% -20%, #e9ecf2, transparent),
    linear-gradient(180deg,#eceef3,#e6e8ee)}
  .app-frame{ margin:34px auto; min-height:calc(100dvh - 68px); border-radius:34px;
    box-shadow:var(--shadow-lg), 0 0 0 1px var(--line); overflow:hidden; }
  .app-frame.wide{ max-width:var(--maxw-wide); border-radius:28px; }
}

/* Screen scaffold */
.screen{display:flex; flex-direction:column; flex:1; min-height:0; animation:fade .3s var(--ease)}
@keyframes fade{from{opacity:0; transform:translateY(8px)}to{opacity:1;transform:none}}
.scroll{flex:1; overflow-y:auto; -webkit-overflow-scrolling:touch}
.pad{padding:24px 22px 32px}
.pad-x{padding-left:22px;padding-right:22px}
.stack>*+*{margin-top:18px}
.gap-sm>*+*{margin-top:10px}
.spacer{flex:1}
/* On wide desktop, center content and give discovery/home room to breathe */
@media (min-width:900px){
  .app-frame.wide .pad{ padding:30px 34px 40px; }
}

/* App bar */
.appbar{position:sticky; top:0; z-index:20; background:rgba(255,255,255,.82);
  backdrop-filter:saturate(1.4) blur(16px); display:flex; align-items:center; gap:10px;
  padding:14px 14px; min-height:60px; border-bottom:1px solid transparent}
.appbar.bordered{border-bottom-color:var(--line)}
.appbar .title{font-weight:680; font-size:19px; letter-spacing:-.02em}
.iconbtn{appearance:none; border:0; background:transparent; width:44px;height:44px; border-radius:var(--r-pill);
  display:grid; place-items:center; cursor:pointer; color:var(--ink); font-size:22px; transition:background .15s}
.iconbtn:hover{background:var(--surface-2)} .iconbtn:active{background:var(--surface-3); transform:scale(.94)}
.appbar .grow{flex:1}

/* Brand */
.brand-mark{width:34px;height:34px;border-radius:9px;object-fit:contain;display:block}
.brand-mark.lg{width:60px;height:60px;border-radius:16px}
.brand-lockup{display:flex;align-items:center;gap:10px}
.brand-word{font-weight:760;font-size:20px;letter-spacing:-.03em}

/* Typography */
.h1{font-size:34px; line-height:1.06; letter-spacing:-.035em; font-weight:760; margin:0}
.h2{font-size:26px; line-height:1.12; letter-spacing:-.025em; font-weight:720; margin:0}
.h3{font-size:18px; font-weight:680; letter-spacing:-.015em; margin:0}
.display{font-size:58px; line-height:.98; letter-spacing:-.045em; font-weight:780; font-variant-numeric:tabular-nums}
.lede{font-size:18px; color:var(--ink-2); line-height:1.5; margin:0}
.muted{color:var(--ink-2)}
.dim{color:var(--ink-3)}
.eyebrow{font-size:12.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); font-weight:680}
.num{font-variant-numeric:tabular-nums}
.pos{color:var(--pos)} .neg{color:var(--neg)} .warn{color:var(--warn)}
.small{font-size:13px}

/* Buttons */
.btn{appearance:none; border:0; cursor:pointer; width:100%; padding:18px 20px; border-radius:var(--r-pill);
  font-size:17px; font-weight:660; letter-spacing:-.01em; transition:transform .12s var(--ease), background .15s, box-shadow .15s;
  display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:56px}
.btn:active{transform:scale(.98)}
.btn-primary{background:var(--primary); color:var(--primary-ink); box-shadow:0 6px 18px rgba(11,11,13,.18)}
.btn-primary:hover{background:#000}
.btn-secondary{background:var(--surface-2); color:var(--ink)}
.btn-secondary:hover{background:var(--surface-3)}
.btn-ghost{background:transparent; color:var(--ink-2); font-weight:620; box-shadow:none; min-height:50px}
.btn-ghost:hover{color:var(--ink)}
.btn-outline{background:transparent; color:var(--ink); box-shadow:inset 0 0 0 1.5px var(--line-2)}
.btn[disabled]{opacity:.32; pointer-events:none; box-shadow:none}
.btn-row{display:flex; gap:12px}
.btn-sm{width:auto; padding:11px 18px; font-size:14px; min-height:auto}

/* Sticky footer CTA */
.cta-dock{position:sticky; bottom:0; background:linear-gradient(180deg, rgba(255,255,255,0), #fff 30%);
  padding:18px 22px calc(20px + env(safe-area-inset-bottom)); z-index:15}
.cta-dock>*+*{margin-top:10px}

/* Cards & rows */
.card{background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:20px}
.card.flat{border:0; background:var(--surface-2)}
.card.tap{cursor:pointer; transition:transform .14s var(--ease), box-shadow .18s}
.card.tap:hover{box-shadow:var(--shadow)} .card.tap:active{transform:scale(.99)}
.row{display:flex; align-items:center; gap:14px}
.row .grow{flex:1; min-width:0}
.between{display:flex; align-items:center; justify-content:space-between; gap:14px}
.listrow{display:flex; align-items:center; gap:14px; padding:16px 2px; border-bottom:1px solid var(--line)}
.listrow:last-child{border-bottom:0}
.truncate{white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

/* Avatars / marks */
.logo-dot{width:44px;height:44px;border-radius:13px; display:grid;place-items:center; font-weight:760; color:#fff; flex:none; font-size:15px}
.avatar{width:48px;height:48px;border-radius:var(--r-pill); background:var(--surface-2); display:grid;place-items:center; font-weight:720; flex:none; font-size:18px}

/* ===== Strategy artwork (SVG lives inside; these style the frame + overlays) ===== */
.strategy-art{aspect-ratio:16/10; border-radius:var(--r-lg); position:relative; overflow:hidden; color:#fff; isolation:isolate}
.strategy-art.tall{aspect-ratio:3/2}
.strategy-art.hero{aspect-ratio:16/9; border-radius:var(--r-xl)}
.strategy-art svg.art{position:absolute; inset:0; width:100%; height:100%; z-index:0}
.strategy-art .art-scrim{position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,.02) 40%, rgba(0,0,0,.28))}
.strategy-art .art-name{position:absolute; left:20px; bottom:18px; z-index:2; font-weight:760; font-size:24px; letter-spacing:-.025em; text-shadow:0 2px 18px rgba(0,0,0,.28)}
.strategy-art.hero .art-name{font-size:30px}
.strategy-art .art-badge{position:absolute; right:14px; top:14px; z-index:2}
.strategy-art .art-sub{position:absolute; left:20px; bottom:52px; z-index:2; font-size:13px; font-weight:560; opacity:.92; text-shadow:0 1px 10px rgba(0,0,0,.3)}

/* Badges / pills */
.pill{display:inline-flex; align-items:center; gap:7px; padding:7px 12px; border-radius:var(--r-pill);
  font-size:13px; font-weight:640; background:var(--surface-2); color:var(--ink-2); line-height:1}
.pill.pos{background:var(--pos-bg); color:var(--pos)}
.pill.neg{background:var(--neg-bg); color:var(--neg)}
.pill.warn{background:var(--warn-bg); color:var(--warn)}
.pill.solid-dark{background:rgba(0,0,0,.28); color:#fff; backdrop-filter:blur(6px); font-weight:620}
.dot{width:7px;height:7px;border-radius:50%;background:currentColor;display:inline-block}
.risk{font-size:13px;font-weight:660}
.risk.low{color:var(--pos)} .risk.medium{color:var(--warn)} .risk.high{color:var(--neg)}

/* Segmented / period selector — recedes behind content */
.seg{display:inline-flex; background:var(--surface-2); border-radius:var(--r-pill); padding:5px; gap:2px; width:100%}
.seg button{flex:1; border:0; background:transparent; padding:10px 6px; border-radius:var(--r-pill);
  font-size:14px; font-weight:600; color:var(--ink-2); cursor:pointer; transition:all .18s var(--ease)}
.seg button:hover{color:var(--ink)}
.seg button[aria-selected="true"]{background:#fff; color:var(--ink); box-shadow:var(--shadow-sm)}
.filters{opacity:.96}

/* Choice cards */
.choice{display:flex; flex-direction:column; gap:5px; text-align:left; width:100%; cursor:pointer;
  border:1.5px solid var(--line-2); background:#fff; border-radius:var(--r-md); padding:18px 20px; transition:all .16s var(--ease)}
.choice:hover{border-color:var(--ink-3)}
.choice:active{transform:scale(.99)}
.choice[aria-checked="true"]{border-color:var(--ink); box-shadow:inset 0 0 0 1.5px var(--ink)}
.choice .t{font-weight:680; font-size:17px}
.choice .d{color:var(--ink-2); font-size:14px; line-height:1.4}

/* Inputs */
.field{width:100%; border:1.5px solid var(--line-2); border-radius:15px; padding:17px 18px; font-size:17px;
  background:#fff; color:var(--ink); transition:border-color .15s}
.field:focus{outline:none; border-color:var(--ink)}
.label{font-size:13.5px; font-weight:640; color:var(--ink-2); margin:0 0 9px 2px}
.code-input{display:flex; gap:12px}
.code-input input{flex:1; text-align:center; font-size:28px; font-weight:720; letter-spacing:.1em; padding:18px 0}

/* Range slider */
input[type=range]{-webkit-appearance:none; width:100%; height:8px; border-radius:8px; background:var(--surface-2)}
input[type=range]::-webkit-slider-thumb{-webkit-appearance:none; width:32px;height:32px; border-radius:50%;
  background:#fff; border:2.5px solid var(--ink); box-shadow:var(--shadow); cursor:pointer}
input[type=range]::-moz-range-thumb{width:30px;height:30px;border-radius:50%;background:#fff;border:2.5px solid var(--ink)}

/* Chart */
.chart-wrap{width:100%; position:relative}
.chart-wrap svg{display:block; width:100%; height:auto}
.chart-grid{stroke:var(--line); stroke-width:1}
.chart-line{fill:none; stroke-width:2.75; vector-effect:non-scaling-stroke; stroke-linejoin:round; stroke-linecap:round}
.chart-area{opacity:.16}
.chart-zero{stroke:var(--line-2); stroke-dasharray:3 5}

/* Stat grid */
.stats{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border-radius:var(--r-lg); overflow:hidden}
@media (min-width:900px){ .app-frame.wide .stats{ grid-template-columns:1fr 1fr 1fr; } }
.stats .cell{background:#fff; padding:18px 18px}
.stats .cell .k{font-size:12.5px; color:var(--ink-2); font-weight:560}
.stats .cell .v{font-size:21px; font-weight:720; margin-top:4px; font-variant-numeric:tabular-nums; letter-spacing:-.02em}

/* Bottom navigation */
.tabbar{position:sticky; bottom:0; display:flex; background:rgba(255,255,255,.92); backdrop-filter:blur(16px);
  border-top:1px solid var(--line); padding:9px 8px calc(9px + env(safe-area-inset-bottom))}
.tabbar a{flex:1; display:flex; flex-direction:column; align-items:center; gap:4px; padding:6px 0; color:var(--ink-3); font-size:11px; font-weight:620; transition:color .15s}
.tabbar a:hover{color:var(--ink-2)}
.tabbar a.active{color:var(--ink)}
.tabbar .ic{font-size:22px; line-height:1}

/* Sheet / modal */
.sheet-backdrop{position:fixed; inset:0; background:rgba(10,12,18,.44); z-index:50; display:flex; align-items:flex-end; justify-content:center; animation:fade .22s}
@media (min-width:900px){.sheet-backdrop{align-items:center}}
.sheet{background:#fff; width:100%; max-width:var(--maxw); border-radius:28px 28px 0 0; padding:10px 22px 26px;
  max-height:88dvh; overflow-y:auto; animation:slideup .34s var(--ease)}
@media (min-width:900px){.sheet{border-radius:26px; margin:0 16px; box-shadow:var(--shadow-lg)}}
@keyframes slideup{from{transform:translateY(40px);opacity:.4}to{transform:none;opacity:1}}
.sheet .grab{width:40px;height:5px;border-radius:5px;background:var(--line-2);margin:8px auto 14px}
.menu-item{display:flex;align-items:center;gap:14px;padding:17px 4px;border-bottom:1px solid var(--line);cursor:pointer;font-weight:560;font-size:16px;transition:padding-left .15s}
.menu-item:hover{padding-left:8px}
.menu-item:last-child{border-bottom:0}
.menu-item.danger{color:var(--neg)}

/* Banners */
.banner{display:flex; gap:14px; align-items:center; padding:16px 18px; border-radius:var(--r-md); font-size:14.5px}
.banner.info{background:var(--surface-2)}
.banner.warn{background:var(--warn-bg); color:var(--warn)}
.banner.pos{background:var(--pos-bg); color:var(--pos)}
.banner .b-ic{font-size:22px}

/* status line */
.status{display:flex; align-items:center; gap:12px; padding:16px 18px; border-radius:var(--r-md); font-weight:580; font-size:15px}
.status.ok{background:var(--pos-bg); color:var(--pos)}
.status.sync{background:var(--surface-2); color:var(--ink-2)}
.status.warn{background:var(--warn-bg); color:var(--warn)}

/* Skeletons */
.sk{background:linear-gradient(90deg,#eceef1 25%,#f5f6f8 37%,#eceef1 63%); background-size:400% 100%;
  animation:shine 1.4s ease infinite; border-radius:12px}
@keyframes shine{0%{background-position:100% 0}100%{background-position:0 0}}

/* Progress dots */
.progress{display:flex; gap:7px; padding:0 22px}
.progress i{height:5px; flex:1; border-radius:5px; background:var(--line); transition:background .2s}
.progress i.on{background:var(--ink)}

/* Discovery grid — expands on wide desktop */
.disc-grid{display:grid; grid-template-columns:1fr; gap:18px}
@media (min-width:720px){.app-frame.wide .disc-grid{grid-template-columns:1fr 1fr; gap:20px}}

/* Ticker / company mark chips (brand-colored, safe fallback) */
.tik{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;font-weight:780;font-size:14px;flex:none;color:#fff;letter-spacing:-.02em}
.tik.mono{background:var(--surface-2);color:var(--ink-2)}

/* misc */
.hr{height:1px;background:var(--line);border:0;margin:22px 0}
.chiprow{display:flex;gap:9px;flex-wrap:wrap}
.tag{font-size:13px;font-weight:600;color:var(--ink-2);background:var(--surface-2);padding:7px 13px;border-radius:var(--r-pill);cursor:pointer;transition:background .15s}
.tag:hover{background:var(--surface-3)}
details.disc{border-top:1px solid var(--line); padding:16px 0}
details.disc summary{cursor:pointer; font-weight:640; font-size:15px; list-style:none; display:flex; justify-content:space-between; align-items:center}
details.disc summary::-webkit-details-marker{display:none}
details.disc[open] summary .chev{transform:rotate(90deg)}
details.disc .chev{transition:transform .2s; color:var(--ink-3); font-size:18px}
details.disc .body{padding-top:12px; color:var(--ink-2); font-size:14.5px; line-height:1.6}

/* social link chip */
.social{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border-radius:var(--r-pill);background:var(--surface-2);font-weight:600;font-size:14px;color:var(--ink);cursor:pointer;transition:background .15s}
.social:hover{background:var(--surface-3)}
.social .g{width:18px;height:18px;display:grid;place-items:center}

/* metric block (author) */
.metric{display:flex;flex-direction:column;gap:3px}
.metric .m-v{font-size:26px;font-weight:760;letter-spacing:-.03em;font-variant-numeric:tabular-nums}
.metric .m-k{font-size:13px;color:var(--ink-2);font-weight:560}
.metric-row{display:flex;gap:26px}

/* ===== uploaded hero images inside strategy artwork ===== */
.strategy-art img.art{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0}

/* wide desktop: cap prose line length so text doesn't stretch across ~880px */
@media (min-width:900px){
  .app-frame.wide p.lede, .app-frame.wide .lede{ max-width:62ch; }
}

/* ===== Welcome carousel ===== */
.carousel{position:relative; flex:1; overflow:hidden; background:#0b0b0d; touch-action:pan-y; user-select:none}
.carousel-track{display:flex; height:100%; transition:transform .55s var(--ease); will-change:transform}
.cslide{min-width:100%; height:100%; position:relative; overflow:hidden}
.cslide .c-img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0}
.cslide .c-art{position:absolute; inset:0; z-index:0}
.cslide .c-art svg{width:100%;height:100%}
.cslide.brand{background:linear-gradient(160deg,#171a21,#0b0b0d)}
.cslide.brand .c-mark{position:absolute; inset:0; z-index:1; display:grid; place-items:center}
.cslide.brand .c-mark img{width:84px;height:84px;filter:invert(1) brightness(2.2)}
.cslide .c-tint{position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(0,0,0,.10) 40%, rgba(0,0,0,.30))}
.c-overlay{position:absolute; left:0; right:0; bottom:0; z-index:4; color:#fff;
  padding:26px 24px calc(20px + env(safe-area-inset-bottom));
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.62) 46%); display:flex; flex-direction:column; gap:12px}
.c-title{font-size:34px; font-weight:770; letter-spacing:-.035em; text-shadow:0 2px 22px rgba(0,0,0,.4); min-height:38px}
.c-sub{font-size:17px; opacity:.94; margin-top:-4px; max-width:26ch; text-shadow:0 1px 14px rgba(0,0,0,.5); min-height:22px}
.carousel-dots{display:flex; gap:8px; margin:4px 0 6px}
.cdot{width:8px;height:8px;border-radius:50%;border:0;background:rgba(255,255,255,.42);cursor:pointer;padding:0;transition:all .25s var(--ease)}
.cdot.on{background:#fff; width:24px; border-radius:5px}
.c-overlay .btn{min-height:54px}
.c-overlay .btn-primary{background:#fff; color:#0b0b0d; box-shadow:0 10px 30px rgba(0,0,0,.4)}
.c-overlay .btn-ghost{color:#fff}
@media (min-width:900px){ .c-title{font-size:40px} }

/* ===== Admin content manager (prototype-only) ===== */
.admin-flag{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:700;color:#7a3d00;background:#fdeccb;border-radius:999px;padding:6px 12px;letter-spacing:.02em}
.admin-card{border:1px solid var(--line); border-radius:var(--r-md); padding:14px; background:#fff}
.admin-card+.admin-card{margin-top:14px}
.admin-thumb{width:100%; aspect-ratio:16/9; border-radius:12px; overflow:hidden; position:relative; background:var(--surface-2)}
.admin-thumb .strategy-art{position:absolute;inset:0;border-radius:0;aspect-ratio:auto;height:100%}
.admin-thumb img.c-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.mini-input{width:100%;border:1.5px solid var(--line-2);border-radius:10px;padding:11px 13px;font-size:15px;background:#fff}
.mini-input:focus{outline:none;border-color:var(--ink)}
.mini-label{font-size:11px;color:var(--ink-3);font-weight:640;text-transform:uppercase;letter-spacing:.08em;margin:0 0 6px 2px}
.focal-row{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.focal-row label{font-size:12px;color:var(--ink-2);display:flex;align-items:center;gap:8px;flex:1;min-width:120px}
.focal-row input[type=range]{height:6px}
.preview-pair{display:flex;gap:12px}
.preview-pair .pv{flex:1}
.pv .lbl{font-size:11px;color:var(--ink-3);font-weight:640;margin-bottom:6px;text-transform:uppercase;letter-spacing:.08em}
.pv-box{border-radius:12px;overflow:hidden;background:var(--surface-2);position:relative}
.pv-box.mobile{aspect-ratio:3/2}
.pv-box.desktop{aspect-ratio:16/9}
.pv-box img{width:100%;height:100%;object-fit:cover}
.mini-btn{appearance:none;border:1.5px solid var(--line-2);background:#fff;border-radius:10px;padding:9px 13px;font-size:13px;font-weight:620;cursor:pointer;transition:background .15s}
.mini-btn:hover{background:var(--surface-2)}
.mini-btn.danger{color:var(--neg);border-color:#f3d3d1}
.mini-btn.on{background:var(--ink);color:#fff;border-color:var(--ink)}
.filebtn{position:relative;overflow:hidden;display:inline-flex}
.filebtn input[type=file]{position:absolute;inset:0;opacity:0;cursor:pointer;font-size:0;width:100%;height:100%}
.admin-toolbar{position:sticky;bottom:0;background:linear-gradient(180deg,rgba(255,255,255,0),#fff 30%);padding:14px 0 calc(10px + env(safe-area-inset-bottom));display:flex;gap:10px}

/* full-bleed strategy artwork inside a carousel slide (reuses the proven .strategy-art render) */
.cslide .strategy-art.c-fill{position:absolute; inset:0; border-radius:0; aspect-ratio:auto; width:100%; height:100%; z-index:0}
.cslide .strategy-art.c-fill .art-scrim{background:linear-gradient(180deg, rgba(0,0,0,.04) 45%, rgba(0,0,0,.18))}

/* ===== Compact admin list ===== */
.admin-list-item{border-bottom:1px solid var(--line)}
.admin-list-item:last-child{border-bottom:0}
.arow{display:flex; align-items:center; gap:10px; padding:12px 2px; cursor:pointer}
.arow .grow{min-width:0}
.arow-editor{padding:2px 2px 16px; display:flex; flex-direction:column; gap:12px}
.reorder{display:flex; flex-direction:column; gap:3px; flex:none}
.rbtn{width:28px; height:20px; border:1px solid var(--line-2); background:#fff; border-radius:6px; font-size:11px; line-height:1; cursor:pointer; color:var(--ink-2); display:grid; place-items:center; padding:0}
.rbtn:hover{background:var(--surface-2)}
.rbtn.dis{opacity:.28; cursor:default}
.admin-thumb.sm{width:66px; height:42px; aspect-ratio:auto; border-radius:9px; flex:none}
.enabled-dot{display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600}
.enabled-dot .d{width:7px;height:7px;border-radius:50%}
.enabled-dot.on .d{background:var(--pos)} .enabled-dot.on{color:var(--pos)}
.enabled-dot.off .d{background:var(--ink-3)} .enabled-dot.off{color:var(--ink-3)}

/* strategy artwork used as a full-bleed fill (carousel slide, admin thumbnails, previews) */
.strategy-art.c-fill{position:absolute; inset:0; border-radius:0; aspect-ratio:auto; width:100%; height:100%; z-index:0}
.admin-thumb, .pv-box{position:relative}
