@font-face{font-family:'Geist';src:url('fonts/Geist-Variable.woff2') format('woff2');font-weight:100 900;font-style:normal;font-display:swap;}
:root{
  --w-ink:#080830; --w-body:#1b1b46; --w-blue:#4aa8e8; --w-line:#e6e4e4; --w-bg:#f5f4f4;
  --panel:#eef3fb; --side-w:250px; --top-h:60px; --tab-h:74px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body.app{
  font-family:'Geist',system-ui,sans-serif; color:var(--w-ink);
  background:var(--w-bg); -webkit-font-smoothing:antialiased; min-height:100vh;
}
button{font-family:inherit;cursor:pointer;}
img{display:block;}

/* ===================== SHELL ===================== */
.shell{display:flex; min-height:100vh;}

/* Sidebar (desktop) */
.side{
  position:fixed; top:0; left:0; bottom:0; width:var(--side-w);
  background:#fff; border-right:1px solid var(--w-line);
  padding:24px 18px; display:flex; flex-direction:column; gap:8px; z-index:40;
}
.side-logo{display:inline-flex; padding:6px 8px 20px;}
.side-logo img{height:26px; width:auto;}
.side-nav{display:flex; flex-direction:column; gap:4px;}
.navitem{
  display:flex; align-items:center; gap:13px; width:100%; text-align:left;
  border:none; background:transparent; color:var(--w-body);
  font-size:15.5px; font-weight:500; letter-spacing:-0.01em;
  padding:12px 14px; border-radius:12px; transition:background .15s ease, color .15s ease;
}
.navitem svg{width:22px; height:22px; flex:none; opacity:.9;}
.navitem:hover{background:#f2f5f9; color:var(--w-ink);}
.navitem.active{background:var(--w-ink); color:#fff;}
.side-add{
  margin-top:14px; display:flex; align-items:center; justify-content:center; gap:9px;
  border:none; background:var(--w-blue); color:#fff; font-size:15px; font-weight:600;
  padding:13px 18px; border-radius:999px; transition:background .18s ease;
}
.side-add svg{width:20px;height:20px;}
.side-add:hover{background:#3597d8;}

/* Body */
.body{flex:1; min-width:0; margin-left:var(--side-w); display:flex; flex-direction:column;}
.topbar{
  position:sticky; top:0; z-index:30; height:var(--top-h);
  display:flex; align-items:center; justify-content:flex-end; gap:16px;
  padding:0 clamp(16px,4vw,40px);
  background:rgba(245,244,244,.85); backdrop-filter:saturate(140%) blur(10px);
}
.top-logo{display:none;} .top-logo img{height:24px;width:auto;}
.main{
  flex:1; width:100%; max-width:780px; margin:0 auto;
  padding:8px clamp(16px,4vw,40px) 60px;
}

/* ===================== LANGUAGE SWITCHER ===================== */
.lang{position:relative;}
.lang .current{display:flex; align-items:center; gap:7px; background:#fff; border:1px solid var(--w-line);
  border-radius:999px; padding:7px 13px; font-family:'Geist',sans-serif; font-size:13px; font-weight:600;
  letter-spacing:.02em; color:var(--w-ink); transition:background .18s ease;}
.lang .current .globe{width:15px;height:15px;stroke:#6a6a86;flex:none;}
.lang .current:hover{background:#f2f5f9;}
.lang .menu{position:absolute; top:calc(100% + 8px); right:0; min-width:150px; background:#fff;
  border:1px solid var(--w-line); border-radius:14px; padding:6px; box-shadow:0 12px 34px rgba(8,8,48,.14);
  opacity:0; transform:translateY(-4px); pointer-events:none; transition:opacity .18s ease, transform .18s ease;}
.lang .current::after{content:'';position:absolute;top:100%;right:0;width:160px;height:16px;}
.lang:hover .menu, .lang.open .menu, .lang:focus-within .menu{opacity:1;transform:translateY(0);pointer-events:auto;}
.lang.dismiss .menu{opacity:0 !important;transform:translateY(-4px) !important;pointer-events:none !important;}
.lang .menu button{display:block;width:100%;text-align:left;border:none;background:transparent;
  font-family:'Geist',sans-serif;font-size:13px;font-weight:500;color:var(--w-ink);padding:9px 12px;border-radius:9px;}
.lang .menu button:hover{background:#eef2f7;}
.lang .menu button.active{background:var(--w-ink);color:#fff;}

/* ===================== HOME ===================== */
.screen{animation:fade .4s ease both;}
@keyframes fade{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:none;}}

.hello{display:flex; align-items:center; gap:14px; padding:14px 0 8px;}
.hello-av{width:52px;height:52px;border-radius:50%;object-fit:cover;border:2px solid #fff;box-shadow:0 2px 8px rgba(8,8,48,.14);}
.hello-txt{flex:1;min-width:0;}
.hello-h{font-size:clamp(20px,2.4vw,26px);font-weight:600;letter-spacing:-0.02em;line-height:1.1;}
.hello-sub{font-size:14px;color:#7a7a92;margin-top:2px;}
.iconbtn{width:44px;height:44px;border-radius:50%;border:1px solid var(--w-line);background:#fff;display:grid;place-items:center;flex:none;transition:background .15s ease;}
.iconbtn:hover{background:#f2f5f9;}
.iconbtn svg{width:20px;height:20px;stroke:var(--w-ink);}

/* milestone card */
.msc{background:var(--panel); border-radius:20px; padding:20px 22px; margin-top:16px;}
.msc-eye{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--w-body);}
.msc-eye::before{content:'';width:8px;height:8px;border-radius:50%;background:#e5484d;flex:none;}
.msc-txt{font-size:clamp(16px,1.5vw,19px);line-height:1.35;letter-spacing:-0.01em;margin:12px 0 18px;}
.msc-btns{display:flex;gap:10px;flex-wrap:wrap;}
.btn{border:none;font-size:15px;font-weight:600;padding:13px 26px;border-radius:999px;transition:all .18s ease;}
.btn-primary{background:var(--w-ink);color:#fff;} .btn-primary:hover{background:#1c1c5e;}
.btn-ghost{background:#fff;color:var(--w-ink);border:1.5px solid var(--w-line);} .btn-ghost:hover{border-color:var(--w-ink);}

/* section head */
.sec{margin-top:32px;}
.sec-head{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:14px;}
.sec-title{font-size:clamp(18px,2vw,22px);font-weight:600;letter-spacing:-0.02em;}
.see-all{display:inline-flex;align-items:center;gap:4px;border:none;background:transparent;color:#7a7a92;font-size:14px;font-weight:500;}
.see-all:hover{color:var(--w-ink);} .see-all svg{width:15px;height:15px;}

/* capture tiles */
.cap-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.captile{display:flex;flex-direction:column;align-items:center;gap:9px;background:#fff;border:1px solid var(--w-line);
  border-radius:16px;padding:18px 8px;transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;}
.captile:hover{transform:translateY(-2px);box-shadow:0 12px 26px -16px rgba(8,8,48,.35);border-color:#d8e4f2;}
.captile svg{width:24px;height:24px;stroke:var(--w-blue);}
.captile span{font-size:14px;font-weight:500;color:var(--w-ink);}

/* stories carousel */
.stories{display:flex;gap:14px;overflow-x:auto;padding:4px 2px 8px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;}
.stories::-webkit-scrollbar{height:0;}
.story{flex:0 0 auto;width:260px;background:#fff;border:1px solid var(--w-line);border-radius:18px;overflow:hidden;
  scroll-snap-align:start;text-align:left;transition:transform .15s ease, box-shadow .15s ease;}
.story:hover{transform:translateY(-2px);box-shadow:0 16px 36px -22px rgba(8,8,48,.4);}
.story-img{width:100%;height:150px;object-fit:cover;background:#dde7f0;}
.story-b{padding:13px 15px 16px;}
.story-t{font-size:16px;font-weight:600;letter-spacing:-0.01em;}
.story-m{font-size:13px;color:#7a7a92;margin-top:3px;}

/* upcoming milestones */
.mslist{display:flex;flex-direction:column;gap:10px;}
.msrow{display:flex;align-items:center;gap:14px;width:100%;text-align:left;background:#fff;border:1px solid var(--w-line);
  border-radius:14px;padding:14px 16px;transition:border-color .15s ease, background .15s ease;}
.msrow:hover{border-color:#d8e4f2;background:#fbfcfe;}
.msrow-ic{width:38px;height:38px;border-radius:11px;background:rgba(74,168,232,.12);display:grid;place-items:center;flex:none;}
.msrow-ic svg{width:19px;height:19px;stroke:var(--w-blue);}
.msrow-tx{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px;}
.msrow-t{font-size:15.5px;font-weight:600;letter-spacing:-0.01em;}
.msrow-w{font-size:13px;color:#7a7a92;margin-top:2px;}
.msrow-ch{width:16px;height:16px;stroke:#b6b6c6;flex:none;}

/* ===================== TAB BAR (mobile) ===================== */
.tabbar{display:none;}

/* ===================== ACTION MODAL ===================== */
.overlay{position:fixed;inset:0;background:rgba(8,8,48,.42);backdrop-filter:blur(3px);display:flex;
  align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .22s ease;z-index:200;padding:20px;}
.overlay.show{opacity:1;pointer-events:auto;}
.sheet{background:#fff;border-radius:22px;padding:30px 30px 26px;max-width:420px;width:100%;text-align:center;
  box-shadow:0 24px 70px rgba(8,8,48,.3);transform:translateY(12px) scale(.97);transition:transform .26s cubic-bezier(.2,.8,.2,1);}
.overlay.show .sheet{transform:none;}
.sheet-eyebrow{display:inline-block;font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--w-blue);
  background:rgba(74,168,232,.12);border-radius:999px;padding:5px 13px;}
.sheet-h{font-size:20px;font-weight:600;letter-spacing:-0.02em;margin:16px 0 10px;color:var(--w-ink);}
.sheet-action{font-size:16px;line-height:1.5;color:var(--w-body);}
.sheet-note{font-size:13px;line-height:1.5;color:#9a9aad;margin-top:12px;}
.sheet-btn{margin-top:22px;border:none;background:var(--w-ink);color:#fff;font-size:14px;font-weight:600;padding:12px 32px;border-radius:999px;}
.sheet-btn:hover{background:#1c1c5e;}

/* ===================== RESPONSIVE ===================== */
@media (max-width:900px){
  .side{display:none;}
  .body{margin-left:0;}
  .top-logo{display:inline-flex;} .topbar{justify-content:space-between;}
  .main{padding-bottom:calc(var(--tab-h) + 24px);}
  .tabbar{
    display:flex; position:fixed; left:0; right:0; bottom:0; z-index:60; height:var(--tab-h);
    align-items:center; justify-content:space-around; padding:0 14px 12px;
    background:rgba(255,255,255,.94); backdrop-filter:blur(10px); border-top:1px solid var(--w-line);
  }
  .tab{border:none;background:transparent;width:52px;height:48px;display:grid;place-items:center;border-radius:14px;}
  .tab svg{width:24px;height:24px;stroke:#9a9aad;}
  .tab.active svg{stroke:var(--w-ink);}
  .tab-add{background:var(--w-blue);width:52px;height:52px;border-radius:50%;box-shadow:0 8px 20px -6px rgba(74,168,232,.7);}
  .tab-add svg{stroke:#fff;}
}
@media (max-width:440px){
  .cap-grid{gap:9px;} .captile{padding:15px 4px;} .captile span{font-size:13px;}
  .story{width:230px;}
}
@media (prefers-reduced-motion:reduce){*{transition:none !important;animation:none !important;}}

/* ===================== SHARED SCREEN HEAD ===================== */
.scr-head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 0 6px;}
.scr-title{font-size:clamp(26px,3vw,34px);font-weight:600;letter-spacing:-0.03em;line-height:1.05;}
.scr-meta{color:#7a7a92;font-size:14px;margin-top:2px;}
.viewtog{display:flex;gap:4px;background:#fff;border:1px solid var(--w-line);border-radius:999px;padding:4px;flex:none;}
.vt{border:none;background:transparent;width:40px;height:34px;border-radius:999px;display:grid;place-items:center;color:#9a9aad;}
.vt svg{width:20px;height:20px;} .vt.on{background:var(--w-ink);color:#fff;}
.backbtn{display:inline-flex;align-items:center;gap:5px;border:none;background:transparent;color:var(--w-body);font-size:15px;font-weight:500;padding:12px 0 6px;}
.backbtn svg{width:18px;height:18px;}

/* ===================== MOMENTS — GALLERY ===================== */
.galstack{display:flex;flex-direction:column;gap:16px;margin-top:14px;}
.galgroup{display:block;width:100%;text-align:left;background:#fff;border:1px solid var(--w-line);border-radius:20px;padding:16px;transition:box-shadow .15s ease;}
.galgroup:hover{box-shadow:0 16px 40px -26px rgba(8,8,48,.4);}
.galg-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;gap:10px;}
.galg-t{font-size:17px;font-weight:600;letter-spacing:-0.01em;} .galg-m{font-size:13px;color:#7a7a92;margin-top:2px;}
.avstack{display:flex;flex:none;} .avstack img{width:30px;height:30px;border-radius:50%;border:2px solid #fff;object-fit:cover;margin-left:-8px;}
.gmedia-row{display:flex;gap:8px;overflow-x:auto;} .gmedia-row::-webkit-scrollbar{height:0;}
.gmedia{position:relative;flex:0 0 auto;width:110px;height:110px;border-radius:14px;overflow:hidden;background:#e6eef6;}
.gmedia:first-child{width:150px;} .gmedia img{width:100%;height:100%;object-fit:cover;}
.playdot{position:absolute;inset:0;margin:auto;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.85);display:grid;place-items:center;color:var(--w-ink);}
.playdot svg{width:18px;height:18px;margin-left:2px;} .playdot.big{width:62px;height:62px;} .playdot.big svg{width:26px;height:26px;}

/* ===================== MOMENTS — TIMELINE ===================== */
.timeline{position:relative;margin-top:22px;padding:6px 0 10px;}
.timeline::before{content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;background:var(--w-line);transform:translateX(-50%);}
.tl-row{position:relative;display:flex;margin-bottom:22px;}
.tl-row.right{justify-content:flex-end;}
.tl-card{width:44%;background:#fff;border:1px solid var(--w-line);border-radius:16px;overflow:hidden;text-align:left;transition:box-shadow .15s ease;}
.tl-card:hover{box-shadow:0 14px 34px -22px rgba(8,8,48,.4);}
.tl-card img{width:100%;height:120px;object-fit:cover;}
.tl-b{padding:10px 13px 13px;} .tl-t{font-size:15px;font-weight:600;} .tl-m{font-size:12.5px;color:#7a7a92;margin-top:2px;}
.tl-dot{position:absolute;left:50%;top:14px;width:14px;height:14px;border-radius:50%;background:#fff;border:3px solid var(--w-blue);transform:translateX(-50%);}

/* ===================== MILESTONES ===================== */
.msc-eye.alt{font-size:16px;font-weight:600;color:var(--w-ink);} .msc-eye.alt::before{display:none;}
.msc-txt.sm{font-size:14.5px;color:var(--w-body);}
.stchips{display:flex;gap:10px;overflow-x:auto;padding-bottom:4px;} .stchips::-webkit-scrollbar{height:0;}
.stchip{flex:0 0 auto;display:inline-flex;align-items:center;gap:8px;border:1px solid var(--w-line);background:#fff;border-radius:999px;padding:11px 18px;font-size:14.5px;font-weight:500;color:var(--w-body);}
.stchip .stmark{width:16px;height:16px;border-radius:50%;border:1.5px solid #c8c8d4;display:grid;place-items:center;}
.stchip .stmark svg{width:11px;height:11px;stroke:#fff;}
.stchip.done{background:#e8f6ee;border-color:#bfe6cf;color:#1f7a45;} .stchip.done .stmark{background:#2fa35f;border-color:#2fa35f;}
.mcards{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.mcard{background:#fff;border:1px solid var(--w-line);border-radius:18px;padding:14px;text-align:left;}
.mcard-h{display:flex;justify-content:space-between;gap:10px;margin-bottom:10px;}
.mcard-t{font-size:15px;font-weight:600;} .mcard-s{font-size:12.5px;color:#7a7a92;margin-top:2px;}
.mcard-ck{width:24px;height:24px;border-radius:50%;background:#2fa35f;color:#fff;display:grid;place-items:center;flex:none;} .mcard-ck svg{width:14px;height:14px;}
.mcard-o{width:22px;height:22px;border-radius:50%;border:2px solid #d2d2de;flex:none;}
.mcard-img{width:100%;height:150px;object-fit:cover;border-radius:12px;}
.mcard-add{width:100%;height:150px;border:2px dashed var(--w-line);border-radius:12px;background:#fafbfc;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;color:var(--w-ink);font-weight:600;}
.mcard-add svg{width:22px;height:22px;stroke:var(--w-blue);}

/* ===================== SEARCH ===================== */
.searchbar{display:flex;align-items:center;gap:10px;background:#fff;border:1px solid var(--w-line);border-radius:999px;padding:13px 18px;margin-top:8px;}
.searchbar svg{width:20px;height:20px;stroke:#9a9aad;flex:none;}
.searchbar input{flex:1;border:none;outline:none;background:transparent;font-family:inherit;font-size:15.5px;color:var(--w-ink);}
.sec-title.sm{font-size:15px;}
.chips{display:flex;flex-wrap:wrap;gap:9px;}
.chip{border:1px solid var(--w-line);background:#fff;border-radius:999px;padding:9px 16px;font-size:14px;color:var(--w-body);}
.chip:hover{border-color:var(--w-ink);}
.filgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.filtile{display:flex;flex-direction:column;align-items:center;gap:8px;background:#fff;border:1px solid var(--w-line);border-radius:14px;padding:16px 8px;font-size:13.5px;font-weight:500;color:var(--w-ink);}
.filic{color:var(--w-blue);} .filic svg{width:22px;height:22px;}
.rgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;}
.rthumb{border:none;padding:0;border-radius:12px;overflow:hidden;aspect-ratio:1;background:#e6eef6;}
.rthumb img{width:100%;height:100%;object-fit:cover;}

/* ===================== MOMENT DETAIL ===================== */
.mo-top{display:grid;grid-template-columns:1.15fr 1fr;gap:12px;margin-top:14px;}
.mo-hero{position:relative;border:none;padding:0;border-radius:18px;overflow:hidden;aspect-ratio:3/4;background:#e6eef6;}
.mo-hero img{width:100%;height:100%;object-fit:cover;}
.mo-side{display:flex;flex-direction:column;gap:12px;}
.mo-map{position:relative;flex:1;border-radius:18px;overflow:hidden;background:#e6eef6;min-height:150px;}
.mo-map>img:first-child{width:100%;height:100%;object-fit:cover;filter:saturate(.55) brightness(1.06);}
.mo-maplabel{position:absolute;top:10px;left:10px;background:rgba(255,255,255,.9);border-radius:999px;padding:4px 10px;font-size:12px;font-weight:600;}
.mo-map .pin{position:absolute;width:34px;height:34px;border-radius:50%;border:2px solid #fff;object-fit:cover;box-shadow:0 2px 8px rgba(8,8,48,.3);}
.pin.p1{top:26%;left:20%;} .pin.p2{top:32%;right:18%;} .pin.p3{bottom:18%;left:40%;}
.mo-add{flex:0 0 auto;border:2px dashed var(--w-line);border-radius:18px;background:#fafbfc;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;padding:22px;color:var(--w-ink);font-weight:600;}
.mo-add svg{width:22px;height:22px;stroke:var(--w-blue);}
.mo-sec{margin-top:24px;font-size:15px;font-weight:600;color:var(--w-body);}
.bento{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;margin-top:12px;}
.bt{border-radius:14px;overflow:hidden;background:#e6eef6;aspect-ratio:1;}
.bt img{width:100%;height:100%;object-fit:cover;}
.bt.quote{background:#fff;border:1px solid var(--w-line);display:grid;place-items:center;text-align:center;font-weight:600;color:var(--w-ink);padding:12px;font-size:14px;}
.bt.quote span{color:var(--w-blue);font-size:24px;line-height:.5;}
.bt.wide{grid-column:span 2;aspect-ratio:auto;}

/* ===================== KUBES ===================== */
.screen.kubes{max-width:560px;margin:0 auto;text-align:center;}
.kubes-h{font-size:clamp(23px,3vw,32px);font-weight:600;letter-spacing:-0.03em;line-height:1.12;max-width:16ch;margin:10px auto 28px;text-wrap:balance;}
.kubegrid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.kube{border:none;background:transparent;padding:0;text-align:center;}
.kube>img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:20px;}
.kube span{display:block;margin-top:10px;font-size:17px;font-weight:600;}
.kube.new{border:1px solid var(--w-line);background:#fff;border-radius:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;aspect-ratio:1;color:var(--w-ink);font-weight:600;}
.kube.new .knew{color:var(--w-blue);} .kube.new .knew svg{width:26px;height:26px;} .kube.new span{margin:0;}

/* ===================== PROFILE ===================== */
.screen.profile{max-width:640px;margin:0 auto;}
.pcover{position:relative;margin-top:6px;}
.pcover-img{width:100%;height:150px;object-fit:cover;border-radius:20px;}
.backbtn.onc{position:absolute;top:12px;left:12px;background:rgba(255,255,255,.92);width:40px;height:40px;border-radius:50%;display:grid;place-items:center;padding:0;}
.pavatar{position:absolute;left:50%;bottom:-36px;transform:translateX(-50%);width:88px;height:88px;border-radius:50%;border:4px solid #fff;object-fit:cover;box-shadow:0 6px 18px rgba(8,8,48,.2);}
.pname{text-align:center;margin-top:48px;font-size:26px;font-weight:600;letter-spacing:-0.02em;}
.pmeta{text-align:center;color:#7a7a92;font-size:14.5px;margin-top:4px;}
.pstats{display:flex;align-items:center;justify-content:center;gap:22px;margin:22px 0 8px;}
.pstat{display:flex;flex-direction:column;align-items:center;} .pstat-n{font-size:24px;font-weight:600;} .pstat-l{font-size:13px;color:#7a7a92;margin-top:2px;}
.pstat-div{width:1px;height:34px;background:var(--w-line);}
.members{display:flex;flex-direction:column;gap:10px;}
.member{display:flex;align-items:center;gap:13px;background:#f5f7fa;border-radius:16px;padding:12px 14px;}
.member img{width:44px;height:44px;border-radius:50%;object-fit:cover;flex:none;}
.member-tx{flex:1;min-width:0;} .member-n{font-size:15.5px;font-weight:600;} .member-s{font-size:13px;color:#7a7a92;margin-top:2px;}
.badge{font-size:12px;font-weight:600;padding:5px 12px;border-radius:999px;flex:none;}
.b-admin{background:#cdeafd;color:#0f6aa8;} .b-active{background:#d8f3e2;color:#1f7a45;} .b-pending{background:#f3e6c9;color:#8a6a1f;}
.inviterow{display:flex;align-items:center;gap:13px;width:100%;text-align:left;background:#fff;border:1px solid var(--w-line);border-radius:16px;padding:14px 16px;margin-top:10px;}
.inviterow .msrow-ic{background:#eef2f7;} .inviterow .msrow-ic svg{stroke:var(--w-ink);}
.privacy{display:flex;gap:10px;align-items:flex-start;margin-top:16px;color:#8a8aa2;font-size:13.5px;line-height:1.5;background:#f5f7fa;border-radius:14px;padding:14px 16px;}
.privacy svg{width:20px;height:20px;stroke:#8a8aa2;flex:none;}

/* ===================== SHEETS (add / invite) ===================== */
.sheet-h.left{text-align:left;} .sheet-note.top{margin-top:8px;} .sheet-note.left{text-align:left;}
.addopts{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:20px 0 8px;}
.addopt{display:flex;flex-direction:column;align-items:center;gap:9px;background:#fff;border:1px solid var(--w-line);border-radius:16px;padding:20px 8px;font-size:14px;font-weight:500;color:var(--w-ink);}
.addopt svg{width:24px;height:24px;stroke:var(--w-blue);}
.sheet-btn.ghost{background:#fff;color:var(--w-ink);border:1.5px solid var(--w-line);}
.fld{width:100%;border:1px solid var(--w-line);border-radius:12px;padding:13px 16px;font-family:inherit;font-size:15px;color:var(--w-ink);margin-top:10px;outline:none;}
.fld::placeholder{color:#9a9aad;}
.fldlabel{font-size:14px;font-weight:600;margin:16px 0 8px;text-align:left;}
.rolechips{display:flex;flex-wrap:wrap;gap:8px;}
.rolechip{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--w-line);background:#fff;border-radius:999px;padding:10px 16px;font-size:14px;font-weight:500;color:var(--w-ink);}
.rolechip .rmark{width:16px;height:16px;border-radius:50%;border:1.5px solid #c8c8d4;display:grid;place-items:center;}
.rolechip .rmark svg{width:11px;height:11px;stroke:#fff;}
.rolechip.on{border-color:var(--w-ink);} .rolechip.on .rmark{background:var(--w-ink);border-color:var(--w-ink);}
.acccard{background:#f5f7fa;border-radius:14px;padding:12px 16px;margin-top:16px;text-align:left;}
.accrow{display:flex;align-items:center;gap:10px;font-size:14px;color:#9a9aad;padding:6px 0;}
.accrow .accck{width:20px;height:20px;border-radius:50%;background:#d2d2de;color:#fff;display:grid;place-items:center;flex:none;} .accrow .accck svg{width:12px;height:12px;}
.accrow.on{color:var(--w-ink);} .accrow.on .accck{background:#2fa35f;}
.sheet-actions{display:flex;gap:10px;margin-top:20px;} .sheet-actions .btn{flex:1;}

/* ===================== RESPONSIVE (screens) ===================== */
@media (max-width:560px){
  .mo-top{grid-template-columns:1fr;}
  .mo-hero{aspect-ratio:4/3;}
  .bento{grid-template-columns:1fr 1fr;}
  .filgrid{gap:8px;} .filtile{padding:14px 6px;}
  .mcards{gap:10px;} .mcard-img,.mcard-add{height:120px;}
  .tl-card{width:46%;}
}
