*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent;-webkit-font-smoothing:antialiased;}
:root{
  --ink:#100C0A;
  --ink2:#1C1511;
  --ink3:#261E18;
  --ink4:#322820;
  --cream:#F5F0E8;
  --cream2:rgba(245,240,232,.72);
  --cream3:rgba(245,240,232,.38);
  --rose:#C4726A;
  --rose2:#985047;
  --rose3:rgba(196,114,106,.15);
  --rose4:rgba(196,114,106,.08);
  --gold:#D4A84B;
  --border:rgba(245,240,232,.07);
  --border2:rgba(245,240,232,.13);
  --border3:rgba(245,240,232,.22);
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'DM Sans',system-ui,sans-serif;
  --safe-top:env(safe-area-inset-top,0px);
  --safe-bot:env(safe-area-inset-bottom,0px);
}
html,body{height:100dvh;overflow:hidden;background:var(--ink);color:var(--cream);font-family:var(--sans);}
#app{position:relative;width:100%;height:100dvh;overflow:hidden;}
.lucide{width:1em;height:1em;stroke:currentColor;stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round;display:block;}
.inline-icon{display:inline-flex;align-items:center;justify-content:center;}

/* ── SCREENS ── */
.screen{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  background:var(--ink);
  opacity:0;pointer-events:none;
  transform:translateX(32px);
  transition:opacity .32s ease,transform .32s cubic-bezier(.4,0,.2,1);
  overflow:hidden;
}
.screen.active{opacity:1;pointer-events:all;transform:none;}
.screen.slide-back{transform:translateX(-32px);}

/* ── SPLASH ── */
#s-splash{align-items:center;justify-content:center;background:var(--ink);}
.splash-logo{text-align:center;animation:fadeUp .9s ease .2s both;}
.splash-wordmark{font-family:var(--serif);font-size:4.5rem;font-weight:300;letter-spacing:-.03em;color:var(--cream);line-height:1;}
.splash-wordmark em{font-style:italic;color:var(--rose);}
.splash-sub{font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;color:var(--cream3);margin-top:.6rem;animation:fadeUp .9s ease .45s both;}
.splash-line{width:1px;height:60px;background:linear-gradient(to bottom,transparent,var(--rose),transparent);margin:2rem auto 0;animation:fadeUp .9s ease .7s both;}

/* ── ONBOARDING ── */
#s-onboarding{background:var(--ink);}
.ob-slides{flex:1;position:relative;overflow:hidden;}
.ob-slide{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:2rem;text-align:center;
  opacity:0;transform:translateX(50px);
  transition:opacity .4s ease,transform .4s cubic-bezier(.4,0,.2,1);
}
.ob-slide.active{opacity:1;transform:none;}
.ob-slide.past{opacity:0;transform:translateX(-50px);}
.ob-visual{
  width:180px;height:180px;border-radius:50%;
  margin-bottom:2rem;
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.ob-visual::after{
  content:'';position:absolute;inset:0;border-radius:50%;
  border:1px solid rgba(196,114,106,.3);
}
.ob-visual.v1{background:radial-gradient(circle at 35% 30%,#8B3A5C,#3D1A28,#100A0D);}
.ob-visual.v2{background:radial-gradient(circle at 55% 25%,#3A5C8B,#1A2B3D,#080E14);}
.ob-visual.v3{background:radial-gradient(circle at 45% 30%,#7A3A8B,#2D1A3D,#0E0814);}
.ob-icon{font-size:4rem;line-height:1;color:var(--rose);filter:drop-shadow(0 0 20px rgba(196,114,106,.4));}
.ob-icon .lucide{width:4rem;height:4rem;}
.ob-slide h2{font-family:var(--serif);font-size:2.1rem;font-weight:300;line-height:1.15;margin-bottom:.9rem;}
.ob-slide p{font-size:.88rem;color:var(--cream2);line-height:1.75;max-width:280px;}
.ob-dots{display:flex;gap:6px;justify-content:center;padding:.75rem;}
.ob-dot{width:5px;height:5px;border-radius:3px;background:var(--border3);transition:all .3s;}
.ob-dot.active{width:22px;background:var(--rose);}
.ob-footer{padding:1rem 1.75rem calc(1.5rem + var(--safe-bot));display:flex;flex-direction:column;gap:.75rem;}

/* ── BUTTONS ── */
.btn{width:100%;padding:.95rem;border-radius:14px;border:none;font-family:var(--sans);font-size:.95rem;font-weight:500;cursor:pointer;letter-spacing:.01em;transition:opacity .15s,transform .1s;}
.btn:active{opacity:.82;transform:scale(.985);}
.btn:disabled{opacity:.5;cursor:not-allowed;transform:none;}
.btn-primary{background:var(--rose2);color:var(--cream);}
.btn-ghost{background:transparent;border:.5px solid var(--border2);color:var(--cream2);}
.btn-outline{background:transparent;border:.5px solid var(--rose);color:var(--rose);}
.btn-sm{padding:.7rem 1.5rem;width:auto;border-radius:12px;font-size:.85rem;}

/* ── AUTH ── */
#s-auth{justify-content:flex-end;position:absolute;inset:0;height:100%;min-height:100%;padding:0 1.75rem calc(1.35rem + var(--safe-bot));}
.auth-bg{
  position:absolute;inset:0;
  background:radial-gradient(ellipse at 65% 15%,rgba(196,114,106,.18) 0%,transparent 55%),
             radial-gradient(ellipse at 20% 60%,rgba(107,45,45,.12) 0%,transparent 50%),
             linear-gradient(to bottom,transparent 25%,var(--ink) 75%),
             var(--ink);
}
.auth-deco{
  position:absolute;top:0;left:0;right:0;
  height:50%;
  display:flex;align-items:center;justify-content:center;
}
.auth-big-text{
  font-family:var(--serif);font-size:8rem;font-weight:300;
  color:rgba(196,114,106,.06);letter-spacing:-.04em;
  user-select:none;line-height:1;
}
.auth-content{position:relative;z-index:1;padding:2rem 0 1.1rem;width:100%;}
.auth-title{font-family:var(--serif);font-size:3.25rem;font-weight:300;line-height:1;margin-bottom:.35rem;}
.auth-title em{font-style:italic;color:var(--rose);}
.auth-tagline{font-family:var(--serif);font-size:.95rem;font-style:italic;color:var(--cream3);margin-bottom:2rem;line-height:1.5;}
.auth-btns{display:flex;flex-direction:column;gap:.7rem;margin-bottom:1.5rem;}
.auth-terms{position:relative;z-index:1;font-size:.7rem;color:var(--cream3);text-align:center;line-height:1.6;width:100%;padding:0 .25rem;}
.auth-terms a{color:var(--rose);text-decoration:none;}

/* ── FORMS ── */
.form-screen{overflow-y:auto;}
.form-screen>form{min-height:100%;display:flex;flex-direction:column;}
.form-header{padding:calc(3rem + var(--safe-top)) 1.75rem 1rem;display:flex;flex-direction:column;}
.back-btn{background:none;border:none;color:var(--rose);font-size:1.4rem;cursor:pointer;padding:0;margin-bottom:1.5rem;width:fit-content;line-height:1;}
.form-header h2{font-family:var(--serif);font-size:2.1rem;font-weight:300;}
.form-header p{font-size:.83rem;color:var(--cream3);margin-top:.2rem;font-style:italic;font-family:var(--serif);}
.form-body{padding:1.5rem 1.75rem;display:flex;flex-direction:column;gap:1rem;}
.field-group{position:relative;display:flex;flex-direction:column;gap:.4rem;}
.field-group label{font-size:.67rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:var(--cream3);}
.field-group input,.field-group select,.field-group textarea{
  width:100%;padding:.9rem 1rem;border-radius:12px;
  border:.5px solid var(--border2);background:var(--ink2);
  color:var(--cream);font-family:var(--sans);font-size:.95rem;outline:none;
  transition:border-color .2s,background .2s;
  -webkit-appearance:none;color-scheme:dark;
}
.field-group textarea{resize:vertical;min-height:112px;line-height:1.55;}
.field-group input:focus,.field-group select:focus,.field-group textarea:focus{border-color:var(--rose);background:var(--ink3);}
.field-group input::placeholder,.field-group textarea::placeholder{color:var(--cream3);}
.form-footer{padding:1rem 1.75rem calc(2.5rem + var(--safe-bot));}
.field-row{display:flex;gap:.75rem;}
.field-row .field-group{flex:1;}
.form-message{min-height:1.25rem;font-size:.78rem;color:var(--cream3);line-height:1.45;}
.form-message.error{color:#E58A82;}
.form-message.success{color:#84D084;}
.field-hint{font-size:.68rem;color:var(--cream3);line-height:1.45;}
.text-action{display:block;width:100%;margin-top:1rem;background:none;border:none;color:var(--rose);font-family:var(--serif);font-size:.9rem;font-style:italic;cursor:pointer;}
.hidden-field{display:none!important;}
.role-segment{display:grid;grid-template-columns:1fr 1fr;gap:.55rem;}
.role-option input{position:absolute;opacity:0;pointer-events:none;}
.role-option span{
  display:flex;align-items:center;justify-content:center;
  min-height:3.1rem;padding:.75rem .8rem;border-radius:12px;
  border:.5px solid var(--border2);background:var(--ink2);
  color:var(--cream2);font-size:.9rem;font-weight:500;
}
.role-option input:checked+span{background:var(--rose3);border-color:rgba(196,114,106,.55);color:var(--rose);}

/* ── ROLE SELECT ── */
#s-role{padding:0;overflow-y:auto;}
.role-header{padding:calc(3.5rem + var(--safe-top)) 1.75rem 1.5rem;text-align:center;}
.role-header h1{font-family:var(--serif);font-size:2.6rem;font-weight:300;margin-bottom:.4rem;}
.role-header p{font-size:.83rem;color:var(--cream3);font-style:italic;font-family:var(--serif);}
.role-cards{padding:0 1.75rem calc(2.5rem + var(--safe-bot));display:flex;flex-direction:column;gap:1rem;}
.role-card{
  border:.5px solid var(--border2);border-radius:20px;
  padding:1.75rem;cursor:pointer;position:relative;overflow:hidden;
  transition:border-color .25s,transform .15s;background:var(--ink2);
}
.role-card:active{transform:scale(.98);}
.role-card.selected{border-color:var(--rose);}
.role-card-glow{
  position:absolute;top:-40px;right:-40px;width:180px;height:180px;border-radius:50%;
  opacity:.12;
}
.role-card.host .role-card-glow{background:var(--rose);}
.role-card.traveler .role-card-glow{background:#6B80C4;}
.role-emoji{font-size:2.25rem;margin-bottom:.9rem;display:inline-flex;color:var(--rose);}
.role-emoji .lucide{width:2.25rem;height:2.25rem;}
.role-card h3{font-family:var(--serif);font-size:1.6rem;font-weight:400;margin-bottom:.35rem;}
.role-card p{font-size:.82rem;color:var(--cream2);line-height:1.65;}
.role-arrow{position:absolute;right:1.5rem;top:50%;transform:translateY(-50%);color:var(--rose);font-size:1.1rem;opacity:.7;}

/* ── DISCOVER ── */
#s-discover{background:var(--ink);}
.discover-hdr{
  display:flex;align-items:center;justify-content:space-between;
  padding:calc(1.25rem + var(--safe-top)) 1.35rem .45rem;
}
.discover-hdr .logo{font-family:var(--serif);font-size:1.8rem;font-weight:300;}
.discover-hdr .logo em{font-style:italic;color:var(--rose);}
.hdr-actions{display:flex;gap:.5rem;}
.icon-btn{
  width:38px;height:38px;border-radius:50%;
  border:.5px solid var(--border2);background:var(--ink2);
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;color:var(--cream2);cursor:pointer;transition:background .15s,color .15s;
}
.icon-btn .lucide{width:18px;height:18px;}
.icon-btn:active{background:var(--ink3);}
.cards-stack{
  flex:1;position:relative;padding:.15rem 1.15rem .25rem;min-height:0;
  display:flex;align-items:center;justify-content:center;
}
.profile-card{
  position:absolute;
  width:calc(100% - 2.5rem);
  height:min(60vh,500px);
  max-height:calc(100dvh - 214px - var(--safe-top) - var(--safe-bot));
  min-height:320px;
  border-radius:22px;overflow:hidden;
  display:flex;flex-direction:column;
  background:var(--ink2);
  cursor:grab;user-select:none;touch-action:none;
  box-shadow:0 24px 64px rgba(0,0,0,.55);
  will-change:transform;
  transition:transform .05s;
}
.profile-card:active{cursor:grabbing;}
.profile-card.card-0{z-index:3;}
.profile-card.card-1{z-index:2;transform:scale(.95) translateY(14px);}
.profile-card.card-2{z-index:1;transform:scale(.9) translateY(28px);}
.card-media{position:relative;flex:1;min-height:0;overflow:hidden;cursor:pointer;}
.card-photo{position:absolute;inset:0;}
.card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(12,8,6,.95) 0%,rgba(12,8,6,.4) 48%,rgba(12,8,6,.05) 100%);}
.swipe-badge{
  position:absolute;top:1.25rem;padding:.2rem .8rem;
  border-radius:8px;border:2.5px solid;font-weight:700;font-size:1.1rem;
  opacity:0;transition:opacity .08s;z-index:5;letter-spacing:.04em;
}
.badge-yes{left:1.25rem;color:#72C472;border-color:#72C472;transform:rotate(-14deg);}
.badge-no{right:1.25rem;color:var(--rose);border-color:var(--rose);transform:rotate(14deg);}
.card-content{position:absolute;bottom:0;left:0;right:0;padding:1.25rem 1.4rem 1.4rem;}
.card-name{font-family:var(--serif);font-size:2rem;font-weight:400;line-height:1;margin-bottom:.2rem;}
.card-city{font-size:.78rem;color:var(--cream2);margin-bottom:.6rem;display:flex;align-items:center;gap:.4rem;}
.card-city .lucide{width:14px;height:14px;color:var(--rose);}
.card-rating{color:var(--gold);font-size:.8rem;}
.card-tags{display:flex;flex-wrap:wrap;gap:.35rem;}
.card-tag{
  background:rgba(196,114,106,.18);border:.5px solid rgba(196,114,106,.32);
  color:rgba(245,240,232,.85);font-size:.68rem;padding:.25rem .65rem;
  border-radius:20px;letter-spacing:.03em;
}
.card-info-btn{
  position:absolute;right:1.2rem;top:1.2rem;
  width:34px;height:34px;border-radius:50%;
  background:rgba(16,12,10,.5);border:.5px solid rgba(245,240,232,.15);
  display:flex;align-items:center;justify-content:center;
  font-size:.85rem;cursor:pointer;z-index:5;backdrop-filter:blur(8px);
}
.card-info-btn .lucide{width:16px;height:16px;color:var(--cream);}
.action-row{
  position:relative;z-index:12;
  display:flex;align-items:center;justify-content:center;gap:1.2rem;
  padding:.55rem 1.5rem calc(.9rem + var(--safe-bot) + 64px);
  flex-shrink:0;background:linear-gradient(to top,var(--ink) 72%,rgba(16,12,10,.68));
}
.act-btn{
  border-radius:50%;border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:transform .15s,opacity .15s;
}
.act-btn .lucide{width:1em;height:1em;}
.act-btn:active{transform:scale(.88);opacity:.8;}
.btn-pass{width:60px;height:60px;background:var(--ink2);border:.5px solid var(--border2);font-size:1.35rem;color:var(--rose);}
.btn-heart{width:68px;height:68px;background:var(--rose);font-size:1.6rem;color:white;box-shadow:0 8px 24px rgba(196,114,106,.35);}
.btn-star{width:54px;height:54px;background:var(--ink2);border:.5px solid var(--border2);font-size:1.2rem;color:var(--gold);}

/* empty state */
.empty-discover{
  flex:1;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  padding:2rem;text-align:center;gap:.85rem;
}
.empty-discover .empty-icon{font-size:3rem;color:var(--rose);}
.empty-discover .empty-icon .lucide{width:3rem;height:3rem;}
.empty-discover h3{font-family:var(--serif);font-size:1.6rem;font-weight:300;}
.empty-discover p{font-size:.83rem;color:var(--cream3);font-style:italic;font-family:var(--serif);line-height:1.6;}

/* ── HOME / SHOP / ADMIN ── */
#s-home,#s-subscriptions,#s-admin{overflow-y:auto;padding-bottom:calc(6rem + var(--safe-bot));}
.home-panel,.shop-card{
  margin:0 1.25rem 1rem;padding:1.15rem;border:.5px solid var(--border2);
  background:var(--ink2);border-radius:14px;
}
.home-host-section{display:none;padding:0 0 1.25rem;}
.home-host-section.active{display:block;}
.home-section-title{
  display:flex;align-items:center;justify-content:space-between;
  padding:0 1.25rem .65rem;font-size:.65rem;font-weight:500;
  letter-spacing:.12em;text-transform:uppercase;color:var(--cream3);
}
.home-section-title .text-action{width:auto;padding:0;font-size:.72rem;text-transform:none;letter-spacing:0;}
.host-carousel{display:flex;gap:.75rem;overflow-x:auto;padding:0 1.25rem 1rem;scroll-snap-type:x mandatory;scrollbar-width:none;}
.host-carousel::-webkit-scrollbar{display:none;}
.host-listing-card{
  flex:0 0 min(82vw,320px);min-height:240px;border:.5px solid var(--border2);
  border-radius:18px;background:var(--ink2);overflow:hidden;scroll-snap-align:start;
  display:flex;flex-direction:column;cursor:pointer;box-shadow:0 16px 38px rgba(0,0,0,.28);
  color:var(--cream);font-family:var(--sans);text-align:left;padding:0;
}
.host-listing-media{height:150px;background:var(--ink3) center/cover no-repeat;position:relative;}
.host-listing-media video{width:100%;height:100%;object-fit:cover;}
.host-listing-status{position:absolute;top:.75rem;left:.75rem;padding:.24rem .6rem;border-radius:999px;background:rgba(16,12,10,.66);border:.5px solid rgba(245,240,232,.16);font-size:.65rem;color:var(--cream2);backdrop-filter:blur(12px);}
.host-listing-body{padding:.9rem 1rem 1rem;}
.host-listing-body h3{font-family:var(--serif);font-size:1.35rem;font-weight:400;line-height:1.1;margin-bottom:.35rem;}
.host-listing-body p{font-size:.76rem;color:var(--cream2);line-height:1.5;}
.host-empty-card{margin:0 1.25rem;padding:1.1rem;border:.5px dashed var(--border2);border-radius:16px;background:rgba(28,21,17,.55);text-align:center;}
.host-empty-card h3{font-family:var(--serif);font-size:1.45rem;font-weight:400;margin-bottom:.35rem;}
.host-empty-card p{font-size:.8rem;color:var(--cream3);line-height:1.55;margin-bottom:.9rem;}
.home-kicker{font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;color:var(--rose);margin-bottom:.5rem;}
.home-panel h2,.shop-card h3{font-family:var(--serif);font-size:1.45rem;font-weight:400;margin-bottom:.35rem;}
.home-panel p,.shop-card p{font-size:.8rem;color:var(--cream2);line-height:1.6;margin-bottom:1rem;}
.home-actions{display:flex;gap:.6rem;}
.home-actions .btn{flex:1;}
.home-grid,.admin-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:.6rem;
  padding:0 1.25rem 1rem;
}
.admin-grid{grid-template-columns:repeat(2,1fr);}
.admin-toolbar{display:grid;grid-template-columns:1fr;gap:.6rem;padding:0 1.25rem 1rem;}
.admin-toolbar input,.admin-toolbar select{
  width:100%;padding:.8rem .9rem;border-radius:12px;border:.5px solid var(--border2);
  background:var(--ink2);color:var(--cream);font-family:var(--sans);font-size:.82rem;outline:none;
}
.admin-tabs{display:flex;gap:.45rem;overflow-x:auto;scrollbar-width:none;padding:0 1.25rem 1rem;}
.admin-tabs::-webkit-scrollbar{display:none;}
.admin-tab{
  flex-shrink:0;border:.5px solid var(--border2);background:transparent;color:var(--cream2);
  border-radius:999px;padding:.42rem .75rem;font-family:var(--sans);font-size:.72rem;cursor:pointer;
}
.admin-tab.active{background:var(--rose3);border-color:rgba(196,114,106,.42);color:var(--rose);}
.admin-panel{display:none;}
.admin-panel.active{display:flex;}
.admin-grid.admin-panel.active{display:grid;}
.mini-stat{
  min-height:4.4rem;border:.5px solid var(--border);background:var(--ink2);
  border-radius:12px;padding:.75rem;display:flex;flex-direction:column;justify-content:center;
}
.mini-stat span{font-family:var(--serif);font-size:1.55rem;color:var(--rose);line-height:1;}
.mini-stat small{font-size:.62rem;color:var(--cream3);margin-top:.3rem;}
.shop-list{padding-bottom:1rem;}
.admin-list{display:flex;flex-direction:column;gap:.6rem;}
.admin-row{
  border:.5px solid var(--border2);background:var(--ink2);border-radius:12px;
  padding:.85rem;display:flex;gap:.75rem;align-items:center;justify-content:space-between;
}
.admin-row-main{min-width:0;}
.admin-row strong{display:block;font-size:.86rem;font-weight:500;margin-bottom:.2rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.admin-row small{display:block;color:var(--cream3);font-size:.72rem;line-height:1.4;}
.admin-row-actions{display:flex;gap:.4rem;flex-shrink:0;}
.admin-row-actions .btn-sm{padding:.5rem .7rem;font-size:.74rem;}
.admin-row-actions select{
  max-width:8.5rem;padding:.45rem .55rem;border-radius:10px;border:.5px solid var(--border2);
  background:var(--ink3);color:var(--cream2);font-family:var(--sans);font-size:.72rem;
}
.muted-empty{color:var(--cream3);font-size:.8rem;line-height:1.6;}

/* ── BOTTOM NAV ── */
.bottom-nav{
  position:fixed;bottom:0;left:0;right:0;
  height:calc(64px + var(--safe-bot));
  padding-bottom:var(--safe-bot);
  background:rgba(14,10,8,.92);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  border-top:.5px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;
  z-index:40;
}
.nav-item{
  display:flex;flex-direction:column;align-items:center;gap:2px;
  cursor:pointer;padding:.45rem .15rem;border-radius:12px;
  transition:background .15s;position:relative;flex:1;min-width:0;
}
.nav-item:active{background:var(--ink3);}
.nav-icon{font-size:1.3rem;line-height:1;color:var(--cream3);opacity:.72;transition:color .2s,opacity .2s;}
.nav-icon .lucide{width:1.25rem;height:1.25rem;}
.explore-center .nav-icon{
  width:32px;height:32px;border-radius:50%;
  display:grid;place-items:center;background:var(--ink3);
  border:.5px solid var(--border2);font-size:1.2rem;margin-top:-.25rem;
}
.explore-center .nav-icon .lucide{width:1.15rem;height:1.15rem;}
.nav-label{font-size:.55rem;font-weight:500;color:var(--cream3);transition:color .2s;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;}
.nav-item.active .nav-icon{color:var(--rose);opacity:1;}
.nav-item.active .nav-label{color:var(--rose);}
.nav-badge{
  position:absolute;top:6px;right:20%;
  width:16px;height:16px;border-radius:8px;
  background:var(--rose);color:white;
  font-size:.6rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  border:2px solid var(--ink);
}
.nav-badge:empty{display:none;}

/* ── MATCH ── */
#s-match{
  align-items:center;justify-content:center;
  background:rgba(8,5,4,.97);
  z-index:80;text-align:center;padding:2rem;
}
.match-glow{
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:300px;height:300px;border-radius:50%;
  background:radial-gradient(circle,rgba(196,114,106,.15),transparent 70%);
  pointer-events:none;
}
.match-hearts{font-size:2.5rem;animation:heartPop .6s cubic-bezier(.4,2,.6,1) both;margin-bottom:.75rem;position:relative;}
.match-hearts .lucide{width:2.5rem;height:2.5rem;color:var(--rose);}
@keyframes heartPop{from{transform:scale(0);opacity:0;}to{transform:scale(1);opacity:1;}}
.match-label{font-family:var(--serif);font-size:3.5rem;font-weight:300;font-style:italic;color:var(--rose);line-height:1;margin-bottom:.35rem;}
.match-sub{font-family:var(--serif);font-size:1rem;color:var(--cream3);font-style:italic;margin-bottom:2rem;}
.match-avatars{display:flex;gap:1rem;justify-content:center;margin-bottom:2.25rem;position:relative;}
.match-av{width:96px;height:96px;border-radius:50%;border:2.5px solid var(--rose);overflow:hidden;flex-shrink:0;}
.match-av-connector{width:32px;display:flex;align-items:center;justify-content:center;color:var(--rose);font-size:1.25rem;}
.match-av-connector .lucide{width:1.25rem;height:1.25rem;}
.match-actions{display:flex;flex-direction:column;gap:.75rem;width:100%;max-width:300px;}

/* ── MESSAGES ── */
#s-messages{overflow:hidden;}
.msgs-hdr{padding:calc(3rem + var(--safe-top)) 1.75rem 1rem;}
.msgs-hdr h1{font-family:var(--serif);font-size:2.1rem;font-weight:300;}
.msgs-hdr p{font-size:.8rem;color:var(--cream3);margin-top:.2rem;font-style:italic;font-family:var(--serif);}
.msgs-list{flex:1;overflow-y:auto;padding-bottom:calc(64px + var(--safe-bot));}
.msg-item{
  display:flex;align-items:center;gap:.9rem;
  padding:.9rem 1.75rem;border-bottom:.5px solid var(--border);
  cursor:pointer;transition:background .12s;
}
.msg-item:active{background:var(--ink2);}
.msg-av{
  width:52px;height:52px;border-radius:50%;flex-shrink:0;
  position:relative;box-shadow:0 2px 8px rgba(0,0,0,.3);
}
.msg-online{
  position:absolute;bottom:2px;right:2px;width:11px;height:11px;
  border-radius:50%;background:#5DB95D;border:2px solid var(--ink);
}
.msg-info{flex:1;min-width:0;}
.msg-name{font-size:.88rem;font-weight:500;margin-bottom:.18rem;}
.msg-preview{font-size:.78rem;color:var(--cream3);font-style:italic;font-family:var(--serif);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.msg-right{display:flex;flex-direction:column;align-items:flex-end;gap:.3rem;flex-shrink:0;}
.msg-time{font-size:.68rem;color:var(--cream3);}
.msg-unread{width:8px;height:8px;border-radius:50%;background:var(--rose);}
.msgs-empty{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;text-align:center;gap:.75rem;}
.msgs-empty .ei{font-size:3rem;color:var(--rose);}
.msgs-empty .ei .lucide{width:3rem;height:3rem;}
.msgs-empty h3{font-family:var(--serif);font-size:1.5rem;font-weight:300;}
.msgs-empty p{font-size:.82rem;color:var(--cream3);font-style:italic;font-family:var(--serif);}

/* ── CHAT ── */
#s-chat{display:flex;flex-direction:column;}
.chat-hdr{
  display:flex;align-items:center;gap:.85rem;
  padding:calc(2.75rem + var(--safe-top)) 1.25rem .9rem;
  border-bottom:.5px solid var(--border);
  background:var(--ink);position:relative;z-index:2;
}
.chat-av{width:40px;height:40px;border-radius:50%;flex-shrink:0;}
.chat-hdr-info{flex:1;min-width:0;}
.chat-hdr-info h3{font-size:.9rem;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.chat-hdr-info p{font-size:.72rem;color:var(--rose);}
.chat-msgs{flex:1;overflow-y:auto;padding:1rem 1.25rem;display:flex;flex-direction:column;gap:.65rem;}
.bubble{
  max-width:76%;padding:.7rem .95rem;border-radius:18px;
  font-size:.86rem;line-height:1.55;
}
.bubble.them{background:var(--ink3);align-self:flex-start;border-bottom-left-radius:4px;color:var(--cream);}
.bubble.me{background:var(--rose);align-self:flex-end;border-bottom-right-radius:4px;color:white;}
.bubble.system{
  align-self:center;background:transparent;
  color:var(--cream3);font-size:.72rem;font-style:italic;font-family:var(--serif);
  text-align:center;max-width:90%;padding:.25rem .5rem;
}
.chat-bar{
  display:flex;align-items:center;gap:.65rem;
  padding:.65rem 1rem calc(.85rem + var(--safe-bot));
  border-top:.5px solid var(--border);background:var(--ink);
}
.chat-input{
  flex:1;padding:.72rem 1rem;border-radius:22px;
  border:.5px solid var(--border2);background:var(--ink2);
  color:var(--cream);font-family:var(--sans);font-size:.88rem;outline:none;
  transition:border-color .2s;
}
.chat-input:focus{border-color:rgba(196,114,106,.4);}
.chat-input::placeholder{color:var(--cream3);}
.chat-send{
  width:38px;height:38px;border-radius:50%;border:none;
  background:var(--rose);color:white;font-size:1rem;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:opacity .15s;
}
.chat-send .lucide{width:17px;height:17px;}
.chat-send:active{opacity:.8;}
.booking-card{
  background:var(--ink3);border:.5px solid rgba(196,114,106,.25);
  border-radius:14px;padding:1rem 1.1rem;
  align-self:center;width:90%;max-width:300px;
  cursor:pointer;transition:background .15s;
}
.booking-card:active{background:var(--ink4);}
.booking-card .bk-label{font-size:.65rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:var(--rose);margin-bottom:.4rem;}
.booking-card .bk-title{font-family:var(--serif);font-size:1.1rem;font-weight:400;margin-bottom:.25rem;}
.booking-card .bk-meta{font-size:.75rem;color:var(--cream2);display:flex;gap:.75rem;}

/* ── PROFILE ── */
#s-profile{overflow-y:auto;padding-bottom:calc(6.5rem + var(--safe-bot));}
.prof-header{
  position:relative;
  padding-top:calc(3rem + var(--safe-top));
  display:flex;flex-direction:column;align-items:center;
  padding-bottom:1.75rem;
}
.prof-bg{
  position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% -10%,rgba(196,114,106,.2) 0%,transparent 65%),var(--ink2);
}
.prof-av{
  width:88px;height:88px;border-radius:50%;
  border:2.5px solid var(--rose);
  margin-bottom:.9rem;position:relative;z-index:1;
  box-shadow:0 0 0 6px rgba(196,114,106,.1);
}
.prof-name{font-family:var(--serif);font-size:1.9rem;font-weight:300;position:relative;z-index:1;}
.prof-role{
  font-size:.68rem;color:var(--rose);
  letter-spacing:.12em;text-transform:uppercase;
  margin-top:.2rem;position:relative;z-index:1;
}
.prof-verified{display:inline-flex;align-items:center;gap:.3rem;margin-top:.5rem;position:relative;z-index:1;font-size:.72rem;color:var(--cream3);}
.prof-stats{display:flex;border-top:.5px solid var(--border);border-bottom:.5px solid var(--border);}
.pstat{flex:1;padding:.9rem;text-align:center;border-right:.5px solid var(--border);}
.pstat:last-child{border-right:none;}
.pstat-n{font-family:var(--serif);font-size:1.65rem;font-weight:300;color:var(--rose);}
.pstat-l{font-size:.64rem;color:var(--cream3);margin-top:.15rem;letter-spacing:.04em;}
.prof-section{padding:1.25rem 1.75rem;border-bottom:.5px solid var(--border);}
.prof-section h3{font-size:.65rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--cream3);margin-bottom:.9rem;}
.exp-tags{display:flex;flex-wrap:wrap;gap:.45rem;}
.exp-tag{
  background:var(--rose4);border:.5px solid rgba(196,114,106,.25);
  color:rgba(196,114,106,.9);font-size:.78rem;padding:.35rem .85rem;
  border-radius:20px;cursor:pointer;transition:all .15s;
}
.exp-tag:active{background:var(--rose3);}
.menu-item{
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem 1.75rem;border-bottom:.5px solid var(--border);
  cursor:pointer;transition:background .12s;
}
.menu-item:active{background:var(--ink2);}
.menu-left{display:flex;align-items:center;gap:.85rem;}
.menu-ico{
  width:34px;height:34px;border-radius:9px;
  background:var(--ink3);display:flex;align-items:center;
  justify-content:center;font-size:.9rem;color:var(--rose);
}
.menu-ico .lucide{width:17px;height:17px;}
.menu-label{font-size:.88rem;}
.menu-arrow{color:var(--cream3);font-size:.9rem;}
.danger-red .menu-label{color:var(--rose);}
.danger-red .menu-ico{background:var(--rose3);}
.reservation-card{margin:0 1.25rem 1rem;background:var(--ink2);border:.5px solid var(--border2);border-radius:14px;padding:1rem 1.1rem;}
.reservation-card h3{font-family:var(--serif);font-size:1.25rem;font-weight:400;margin-bottom:.2rem;}
.reservation-card p{font-size:.8rem;color:var(--cream2);line-height:1.6;}
.status-pill{display:inline-flex;align-items:center;margin-top:.65rem;padding:.25rem .65rem;border-radius:20px;background:var(--rose4);border:.5px solid rgba(196,114,106,.25);color:var(--rose);font-size:.68rem;letter-spacing:.04em;text-transform:uppercase;}
.reservation-actions{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:.85rem;}
.reservation-actions .btn{flex:1;min-width:7.5rem;}

/* ── PROFILE DETAIL ── */
#s-profile-detail{overflow-y:auto;}
#s-user-profile{overflow-y:auto;padding-bottom:calc(2rem + var(--safe-bot));}
.pdetail-hero{
  position:relative;
  height:min(55vh,420px);
  flex-shrink:0;overflow:hidden;
}
.pdetail-photo{position:absolute;inset:0;}
.media-slider{position:absolute;inset:0;display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;background:var(--ink2);}
.media-slider::-webkit-scrollbar{display:none;}
.media-slide{position:relative;flex:0 0 100%;scroll-snap-align:center;background:var(--ink2) center/cover no-repeat;}
.media-slide video{width:100%;height:100%;object-fit:cover;}
.media-slider-dots{position:absolute;left:0;right:0;bottom:.75rem;display:flex;justify-content:center;gap:.35rem;z-index:3;pointer-events:none;}
.media-slider-dots span{width:5px;height:5px;border-radius:50%;background:rgba(245,240,232,.48);}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.pdetail-overlay{position:absolute;inset:0;background:linear-gradient(to top,var(--ink) 0%,rgba(16,12,10,.3) 60%,transparent 100%);}
.pdetail-back{
  position:absolute;top:calc(1.25rem + var(--safe-top));left:1.25rem;
  width:36px;height:36px;border-radius:50%;
  background:rgba(16,12,10,.5);backdrop-filter:blur(10px);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;border:.5px solid var(--border3);font-size:1.1rem;z-index:5;
}
.pdetail-info{position:absolute;bottom:1.25rem;left:1.5rem;right:1.5rem;z-index:2;}
.pdetail-name{font-family:var(--serif);font-size:2.5rem;font-weight:300;line-height:1;}
.pdetail-city{font-size:.82rem;color:var(--cream2);margin-top:.25rem;display:flex;align-items:center;gap:.5rem;}
.pdetail-city .lucide{width:15px;height:15px;color:var(--rose);}
.pdetail-rating{display:flex;align-items:center;gap:.35rem;margin-top:.3rem;font-size:.8rem;color:var(--gold);}
.pdetail-rating .lucide{width:14px;height:14px;}
.pdetail-body{padding:1.5rem 1.5rem;}
.pdetail-section{margin-bottom:1.5rem;}
.pdetail-section h3{font-size:.65rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--cream3);margin-bottom:.7rem;}
.pdetail-bio{font-family:var(--serif);font-size:1rem;color:var(--cream2);line-height:1.75;font-style:italic;}
.pdetail-footer{padding:1rem 1.5rem calc(2rem + var(--safe-bot));display:flex;gap:.75rem;}
.media-preview{display:flex;gap:.55rem;overflow-x:auto;scrollbar-width:none;min-height:4.8rem;}
.media-preview::-webkit-scrollbar{display:none;}
.media-thumb{
  position:relative;
  width:76px;height:76px;border-radius:12px;flex:0 0 76px;
  background:var(--ink2) center/cover no-repeat;border:.5px solid var(--border2);
  object-fit:cover;display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.media-thumb video{width:100%;height:100%;object-fit:cover;}
.media-remove{
  position:absolute;right:.25rem;top:.25rem;width:24px;height:24px;border-radius:50%;
  border:.5px solid rgba(245,240,232,.18);background:rgba(16,12,10,.72);
  color:var(--cream);display:flex;align-items:center;justify-content:center;cursor:pointer;
}
.media-remove .lucide{width:13px;height:13px;}
.media-thumb-file{flex-direction:column;gap:.35rem;color:var(--rose);font-size:.7rem;text-align:center;padding:.5rem;}
.media-thumb-file .lucide{width:22px;height:22px;}
.detail-grid{display:flex;flex-direction:column;gap:.75rem;}
.detail-item{background:var(--ink2);border:.5px solid var(--border2);border-radius:12px;padding:.85rem;}
.detail-item span{display:block;font-size:.65rem;text-transform:uppercase;letter-spacing:.1em;color:var(--rose);margin-bottom:.4rem;}
.detail-item p{font-size:.82rem;color:var(--cream2);line-height:1.6;}
.full-profile-shell{padding:calc(2.75rem + var(--safe-top)) 1.5rem 2rem;display:flex;flex-direction:column;gap:1.25rem;}
.full-profile-header{display:flex;gap:1rem;align-items:flex-start;}
.full-profile-header .back-btn{margin-bottom:0;flex-shrink:0;}
.full-profile-header p{font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;color:var(--cream3);margin-bottom:.25rem;}
.full-profile-header h1{font-family:var(--serif);font-size:2rem;font-weight:300;line-height:1.1;}
.full-profile-header span{display:block;color:var(--cream3);font-size:.78rem;margin-top:.25rem;}
.full-profile-hero{min-height:240px;border-radius:18px;border:.5px solid var(--border2);background:var(--ink2) center/cover no-repeat;overflow:hidden;}
.full-profile-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem;}
.full-profile-actions .btn{width:100%;}
.profile-gallery{display:flex;gap:.65rem;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;}
.profile-gallery::-webkit-scrollbar{display:none;}
.profile-gallery .gallery-item{flex:0 0 min(78vw,320px);aspect-ratio:4/5;scroll-snap-align:start;border-radius:16px;border:.5px solid var(--border2);background:var(--ink2) center/cover no-repeat;overflow:hidden;display:flex;align-items:center;justify-content:center;color:var(--cream3);font-size:.8rem;}
.profile-gallery .gallery-item video{width:100%;height:100%;object-fit:cover;}
.profile-gallery .gallery-empty{flex:1 0 100%;padding:1rem;border:.5px solid var(--border2);border-radius:12px;color:var(--cream3);font-size:.8rem;line-height:1.6;background:var(--ink2);}

/* ── BOOKING ── */
#s-booking{overflow-y:auto;}
.booking-hdr{padding:calc(3rem + var(--safe-top)) 1.5rem 1rem;border-bottom:.5px solid var(--border);}
.booking-hdr h2{font-family:var(--serif);font-size:2rem;font-weight:300;}
.booking-hdr p{font-size:.8rem;color:var(--cream3);margin-top:.2rem;font-style:italic;font-family:var(--serif);}
.booking-body{padding:1.5rem;display:flex;flex-direction:column;gap:1.25rem;overflow-y:auto;flex:1;}
.booking-profile{display:flex;align-items:center;gap:1rem;background:var(--ink2);border-radius:14px;padding:1rem;}
.booking-profile-av{width:56px;height:56px;border-radius:50%;}
.booking-profile-info h3{font-family:var(--serif);font-size:1.25rem;font-weight:400;}
.booking-profile-info p{font-size:.78rem;color:var(--cream2);}
.booking-profile-info p .lucide{width:14px;height:14px;display:inline-block;vertical-align:-2px;color:var(--rose);margin-right:.25rem;}
.booking-section-title{font-size:.65rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--cream3);margin-bottom:.7rem;}
.date-grid{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;}
.exp-select{display:flex;flex-direction:column;gap:.5rem;}
.exp-option{
  display:flex;align-items:center;gap:.85rem;
  padding:.85rem 1rem;border-radius:12px;
  border:.5px solid var(--border2);background:var(--ink2);
  cursor:pointer;transition:all .15s;
}
.exp-option.selected{border-color:var(--rose);background:var(--rose4);}
.exp-option .exp-icon{font-size:1.35rem;width:36px;text-align:center;color:var(--rose);display:flex;justify-content:center;}
.exp-option .exp-icon .lucide{width:22px;height:22px;}
.exp-option .exp-name{font-size:.87rem;}
.exp-option .exp-desc{font-size:.73rem;color:var(--cream3);margin-top:.1rem;}
.price-summary{background:var(--ink2);border-radius:14px;padding:1.1rem 1.25rem;}
.price-row{display:flex;justify-content:space-between;align-items:center;padding:.35rem 0;font-size:.85rem;}
.price-row.total{border-top:.5px solid var(--border);margin-top:.5rem;padding-top:.85rem;font-weight:500;}
.price-row.total .price-val{color:var(--rose);font-family:var(--serif);font-size:1.1rem;}
.consent-box{
  background:var(--rose4);border:.5px solid rgba(196,114,106,.25);
  border-radius:12px;padding:1rem 1.1rem;
}
.consent-box h4{font-size:.75rem;font-weight:500;color:var(--rose);margin-bottom:.4rem;letter-spacing:.04em;display:flex;align-items:center;gap:.4rem;}
.consent-box h4 .lucide{width:16px;height:16px;}
.consent-box p{font-size:.75rem;color:var(--cream2);line-height:1.6;}
.consent-check{display:flex;align-items:flex-start;gap:.75rem;margin-top:.75rem;cursor:pointer;}
.consent-check input{margin-top:2px;accent-color:var(--rose);}
.consent-check label{font-size:.77rem;color:var(--cream2);cursor:pointer;line-height:1.5;}
.booking-footer{padding:1rem 1.5rem calc(2.5rem + var(--safe-bot));border-top:.5px solid var(--border);}

/* ── NOTIFICATIONS ── */
#s-notif{overflow-y:auto;}
.notif-hdr{padding:calc(3rem + var(--safe-top)) 1.75rem .9rem;}
.notif-hdr h1{font-family:var(--serif);font-size:2rem;font-weight:300;}
.notif-list{padding:0;}
.notif-item{
  display:flex;gap:1rem;align-items:flex-start;
  padding:1rem 1.75rem;border-bottom:.5px solid var(--border);
  cursor:pointer;transition:background .12s;
}
.notif-item:active{background:var(--ink2);}
.notif-item.unread{background:rgba(196,114,106,.04);}
.notif-ico{font-size:1.3rem;width:36px;flex-shrink:0;color:var(--rose);}
.notif-ico .lucide{width:22px;height:22px;}
.notif-content h4{font-size:.86rem;font-weight:500;margin-bottom:.2rem;}
.notif-content p{font-size:.78rem;color:var(--cream3);line-height:1.5;font-style:italic;font-family:var(--serif);}
.notif-time{font-size:.68rem;color:var(--cream3);flex-shrink:0;margin-top:2px;}

/* ── SETTINGS / FILTERS ── */
#s-filters{overflow-y:auto;}
.filters-hdr{padding:calc(3rem + var(--safe-top)) 1.5rem 1rem;display:flex;align-items:center;gap:1rem;}
.filters-hdr h2{font-family:var(--serif);font-size:1.8rem;font-weight:300;flex:1;}
.filters-body{padding:0 1.5rem;display:flex;flex-direction:column;gap:1.25rem;padding-bottom:calc(2rem + var(--safe-bot));}
.filter-section h3{font-size:.65rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--cream3);margin-bottom:.85rem;}
.filter-toggle-row{display:flex;gap:.5rem;flex-wrap:wrap;}
.choice-grid{gap:.45rem;}
.field-label{display:block;font-size:.67rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--cream3);margin-bottom:.55rem;}
.native-file-input{position:absolute;width:1px;height:1px;opacity:0;pointer-events:none;}
.file-add-btn{
  width:max-content;min-width:8rem;display:inline-flex;align-items:center;justify-content:center;gap:.45rem;
  padding:.72rem 1rem;border-radius:999px;border:.5px solid var(--border2);
  background:var(--ink2);color:var(--cream);font-size:.86rem;cursor:pointer;
}
.file-add-btn .lucide{width:17px;height:17px;color:var(--rose);}
.city-search-box{position:relative;}
.city-search-box input{
  width:100%;padding:.9rem 1rem;border-radius:12px;
  border:.5px solid var(--border2);background:var(--ink2);
  color:var(--cream);font-family:var(--sans);font-size:.9rem;outline:none;
}
.city-suggestions{
  display:none;margin-top:.45rem;border:.5px solid var(--border2);
  background:rgba(28,21,17,.98);border-radius:12px;overflow:hidden;
}
.city-suggestions.show{display:block;}
.city-suggestion{
  width:100%;border:none;background:transparent;color:var(--cream);
  padding:.75rem .9rem;text-align:left;font-family:var(--sans);font-size:.84rem;
  display:flex;justify-content:space-between;gap:.75rem;cursor:pointer;
}
.city-suggestion:active{background:var(--ink3);}
.city-suggestion small{color:var(--cream3);}
.ftoggle{
  padding:.4rem .95rem;border-radius:20px;
  border:.5px solid var(--border2);background:transparent;
  color:var(--cream2);font-family:var(--sans);font-size:.8rem;cursor:pointer;
  line-height:1.25;appearance:none;transition:all .15s;
}
.ftoggle.on{background:var(--rose3);border-color:rgba(196,114,106,.4);color:var(--rose);}
.experience-suggestions{margin-top:.65rem;}
.range-label{display:flex;justify-content:space-between;font-size:.82rem;color:var(--cream2);margin-bottom:.5rem;}
.range-input{width:100%;accent-color:var(--rose);height:4px;}

.toast{
  position:fixed;left:50%;bottom:calc(76px + var(--safe-bot));
  transform:translate(-50%,18px);z-index:120;
  max-width:min(88vw,360px);padding:.75rem 1rem;border-radius:14px;
  background:rgba(28,21,17,.96);border:.5px solid var(--border2);
  color:var(--cream);font-size:.82rem;line-height:1.45;text-align:center;
  opacity:0;pointer-events:none;transition:opacity .2s,transform .2s;
  box-shadow:0 16px 40px rgba(0,0,0,.35);backdrop-filter:blur(18px);
}
.toast.show{opacity:1;transform:translate(-50%,0);}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.001ms!important;}
}

@media (min-width:720px){
  body{display:grid;place-items:center;background:linear-gradient(135deg,#080605 0%,#1C1511 55%,#100C0A 100%);}
  #app{width:min(430px,100vw);height:min(920px,100dvh);max-height:100dvh;border-left:.5px solid var(--border);border-right:.5px solid var(--border);box-shadow:0 28px 80px rgba(0,0,0,.42);}
  .bottom-nav{left:50%;right:auto;width:min(430px,100vw);transform:translateX(-50%);}
  .toast{bottom:calc(86px + var(--safe-bot));}
}

@media (max-height:720px){
  .profile-card{height:min(52vh,420px);min-height:290px;}
  .action-row{padding-top:.45rem;gap:.9rem;}
  .btn-pass{width:54px;height:54px;}
  .btn-heart{width:60px;height:60px;}
  .btn-star{width:48px;height:48px;}
}

@keyframes fadeUp{from{opacity:0;transform:translateY(16px);}to{opacity:1;transform:translateY(0);}}
