:root{
  --bg:#0a1021;
  --bg-soft:#141d39;
  --card:#121933;
  --card-2:#1a2343;
  --line:rgba(255,255,255,.08);
  --text:#f3f6ff;
  --muted:#b8c2e3;
  --pink:#ff4f9e;
  --cyan:#27d7d1;
  --gold:#f5c14f;
  --violet:#6e5cf8;
  --danger:#ff6b7b;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(255,79,158,.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(39,215,209,.14), transparent 24%),
    linear-gradient(180deg,#0a1021 0%, #101834 45%, #0b1122 100%);
  min-height:100vh;
}

.site-shell,.social-shell{padding:30px 26px 44px}
.hero--desktop{
  background:
    radial-gradient(circle at top right, rgba(255,79,158,.16), transparent 25%),
    radial-gradient(circle at bottom left, rgba(39,215,209,.12), transparent 28%),
    linear-gradient(180deg, rgba(16,24,52,.94), rgba(11,17,34,.96));
}
.hero{
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(16,24,52,.92), rgba(11,17,34,.94));
  box-shadow:0 24px 80px rgba(0,0,0,.35);
  padding:28px;
}
.hero__nav,.social-topbar,.hero__content,.content-grid,.social-layout,.composer-box,.post-head,.post-footer,.cta-row,.nav-actions,.social-topbar__actions{
  display:flex;
  gap:16px;
}
.hero__nav,.social-topbar{justify-content:space-between;align-items:center}
.hero__content{margin-top:28px;align-items:stretch}
.hero__copy{flex:1.2}
.hero__copy--wide{max-width:900px}
.hero__panel{flex:.8;display:grid;gap:14px}
.hero__content--landing .hero__copy p{max-width:46rem}
.seo-hero{max-width:1700px;margin:0 auto}
.seo-hero--compact .hero__content{margin-top:20px}
.seo-grid{max-width:1700px;margin-left:auto;margin-right:auto}
.seo-link{color:#dfe7ff;text-decoration:none}
.seo-link:hover{color:#fff;text-decoration:underline}
.eyebrow{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--gold);
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
h1{
  font-size:clamp(32px,5vw,58px);
  line-height:1.04;
  margin:18px 0 14px;
  max-width:12ch;
}
p{color:var(--muted);line-height:1.6}

.brand{display:flex;align-items:center;gap:14px}
.brand__mark{
  width:48px;height:48px;border-radius:16px;
  display:grid;place-items:center;font-weight:800;font-size:24px;
  background:linear-gradient(135deg,var(--violet),var(--pink));
  box-shadow:0 12px 30px rgba(110,92,248,.4);
}
.brand__mark--image{
  overflow:hidden;
  padding:0;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.brand__mark--image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:inherit;
}
.brand__name{font-weight:800;font-size:20px}
.brand__sub{font-size:12px;color:var(--muted)}
.brand--compact .brand__mark{width:42px;height:42px;font-size:20px}
.brand--compact .brand__name{font-size:16px}
.brand--compact .brand__sub{font-size:11px;line-height:1.35}
.hero-logo-card{
  padding:24px;
  display:grid;
  place-items:center;
  border-radius:24px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(39,215,209,.12), transparent 30%),
    rgba(18,25,51,.92);
}
.hero-logo-card img{
  width:132px;
  height:132px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.primary-btn,.ghost-btn,.chip,.sidebar-link{
  border-radius:16px;
  border:1px solid var(--line);
  text-decoration:none;
}
.primary-btn{
  background:linear-gradient(135deg,var(--pink),#ff6d5f);
  color:white;
  padding:12px 18px;
  font-weight:700;
  border:none;
  cursor:pointer;
}
.ghost-btn{
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 16px;
  display:inline-flex;
  align-items:center;
  cursor:pointer;
}
.ghost-btn.is-active{
  background:linear-gradient(135deg,rgba(110,92,248,.88),rgba(255,79,158,.92));
  border-color:transparent;
  color:#fff;
}
.ghost-btn--danger{
  color:#ffd7df;
  border-color:rgba(255,107,123,.22);
  background:rgba(255,107,123,.08);
}
.ghost-btn--danger:hover{
  background:rgba(255,107,123,.14);
  color:#fff0f3;
}
.metric-card,.panel,.post-card{
  background:rgba(18,25,51,.9);
  border:1px solid var(--line);
  border-radius:22px;
}
.metric-card{padding:18px}
.metric-card__label{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.08em}
.metric-card__value{font-size:24px;font-weight:800;margin:8px 0 4px}
.metric-card__meta{font-size:14px;color:var(--muted)}

.content-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
}
.panel{padding:30px}
.panel__title{font-size:20px;font-weight:800;margin-bottom:14px}
.panel__sub{margin-top:-4px;margin-bottom:16px;color:var(--muted);font-size:14px}
.step-list,.sidebar-nav{display:grid;gap:14px}
.step-item{display:flex;gap:14px}
.step-index{
  width:36px;height:36px;border-radius:12px;display:grid;place-items:center;
  background:rgba(110,92,248,.18);color:#d8d2ff;font-weight:800;flex:0 0 auto;
}
.flat-list{margin:0;padding-left:18px;color:var(--muted);display:grid;gap:10px}

.social-topbar{
  margin-bottom:18px;
  padding:24px 30px;
  border:1px solid var(--line);
  border-radius:30px;
  background:rgba(12,18,37,.92);
  max-width:1700px;
  margin-left:auto;
  margin-right:auto;
}
.social-topbar--app{
  display:grid;
  grid-template-columns:minmax(200px,250px) minmax(0,1fr) auto;
  align-items:start;
  padding:10px 16px;
  gap:14px;
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(18px);
  box-shadow:0 18px 42px rgba(0,0,0,.24);
}
.app-topbar__left,
.app-topbar__center,
.app-topbar__right{
  display:flex;
  gap:12px;
  min-width:0;
}
.app-topbar__left{
  display:grid;
  align-content:start;
  justify-items:start;
  gap:8px;
}
.app-topbar__center{
  justify-content:flex-start;
  flex:1 1 auto;
  display:grid;
  align-content:start;
  gap:8px;
}
.app-primary-row{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.app-mode-switch{
  display:inline-grid;
  grid-auto-flow:column;
  gap:3px;
  padding:3px;
  width:fit-content;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.03);
}
.app-mode-switch__btn{
  min-height:34px;
  min-width:84px;
  padding:6px 14px;
  border:none;
  border-radius:999px;
  background:transparent;
  color:var(--muted);
  font:inherit;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
}
.app-mode-switch__btn.is-active{
  background:linear-gradient(135deg,rgba(110,92,248,.98),rgba(255,79,158,.94));
  color:#fff;
  box-shadow:0 8px 20px rgba(110,92,248,.22);
}
.app-mode-switch__btn--disabled,
.app-mode-switch__btn:disabled{
  opacity:.58;
  cursor:not-allowed;
  color:#97a3c9;
  background:rgba(255,255,255,.015);
  box-shadow:none;
}
.app-topbar__right{
  justify-content:flex-end;
  flex:0 1 auto;
  display:grid;
  justify-items:end;
  align-content:start;
  gap:8px;
}
.topbar-icon-actions--compact{
  gap:8px;
}
.topbar-secondary-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.app-top-nav-shell{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  gap:2px;
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  width:fit-content;
  max-width:100%;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-tools--compact{
  width:100%;
  max-width:920px;
}
.search-shell--topbar{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:40px;
  padding:0 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.022);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}
.search-shell__icon{
  display:inline-flex;
  width:16px;
  height:16px;
  color:#9aa5c6;
  flex:0 0 auto;
}
.search-shell__icon svg{
  width:100%;
  height:100%;
  display:block;
}
.search--topbar{
  min-height:38px;
  border:none;
  border-radius:0;
  padding:0;
  font-size:14px;
  background:transparent;
  box-shadow:none;
}
.search--topbar:focus{
  outline:none;
}
.search--with-icon{
  flex:1 1 auto;
}
.app-top-nav-btn{
  min-height:36px;
  min-width:0;
  padding:0 16px 2px;
  border-radius:12px 12px 0 0;
  border:none;
  border-bottom:2px solid transparent;
  background:transparent;
  color:var(--muted);
  font:inherit;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  transition:color .18s ease,border-color .18s ease,background .18s ease;
}
.app-top-nav-btn.is-active,
.app-top-nav-btn:hover{
  background:rgba(255,255,255,.035);
  color:#fff;
}
.app-top-nav-btn.is-active{
  border-bottom-color:rgba(255,79,158,.9);
  box-shadow:inset 0 -1px 0 rgba(110,92,248,.35);
}
.app-top-nav-btn:hover{
  border-bottom-color:rgba(255,255,255,.18);
}
.language-switch--compact .language-switch__btn{
  min-width:46px;
  min-height:44px;
  padding:0 10px;
  font-size:14px;
}
.topbar-state,.topbar-tools{
  display:flex;
  align-items:center;
  gap:12px;
}
.language-switch,.mode-switch{
  display:flex;
  gap:8px;
}
.language-switch__btn,.mode-switch__btn{
  border:none;
  border-radius:14px;
  padding:10px 14px;
  background:rgba(255,255,255,.05);
  color:var(--text);
  font:inherit;
  font-weight:700;
  cursor:pointer;
  border:1px solid var(--line);
}
.language-switch__btn.is-active,.mode-switch__btn.is-active{
  background:linear-gradient(135deg,var(--violet),var(--pink));
  border-color:transparent;
}
.topbar-state{
  color:var(--muted);
}
.search,.composer-input{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#0e1530;
  color:var(--text);
}
.social-layout{
  align-items:start;
  display:grid;
  grid-template-columns:260px minmax(0,1fr) 300px;
}
.desktop-app-grid{
  align-items:start;
  display:grid;
  grid-template-columns:minmax(400px,460px) minmax(0,1fr) 340px;
  gap:30px;
  max-width:1700px;
  margin:0 auto;
}
.desktop-app-grid.is-locked{
  grid-template-columns:minmax(430px,500px) minmax(0,1fr);
}
.desktop-app-grid.is-locked .locked-panel{
  grid-column:2 / 3;
  min-height:0;
}
.desktop-app-grid.is-unlocked .locked-panel{
  grid-column:2 / 4;
}
.locked-panel{
  min-height:320px;
  display:grid;
  align-content:start;
  gap:28px;
  padding:36px;
  background:
    radial-gradient(circle at top right, rgba(110,92,248,.15), transparent 35%),
    linear-gradient(180deg, rgba(22,29,58,.98), rgba(19,24,48,.98));
}
.locked-info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.info-card{
  padding:22px 24px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.035);
}
.info-card__title{
  font-size:18px;
  font-weight:800;
  margin-bottom:10px;
}
.info-card p{
  margin:0;
  font-size:17px;
  line-height:1.6;
}
.locked-copy{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
  max-width:64ch;
}
.app-shell{
  display:grid;
  grid-template-columns:290px minmax(0,1fr) 340px;
  gap:24px;
  max-width:1760px;
  margin:0 auto;
  align-items:start;
}
.app-left-rail,.app-right-rail{
  display:grid;
  gap:16px;
  position:sticky;
  top:94px;
}
.social-shell--app.is-dating-web .app-left-rail,
.social-shell--app.is-dating-web .app-right-rail{
  display:none;
  position:static;
  top:auto;
}
.social-shell--app.is-dating-web .app-shell--wide{
  grid-template-columns:minmax(0,1fr);
  align-items:start;
  max-width:1680px;
}
.social-shell--app.is-dating-web #appWelcomePanel,
.social-shell--app.is-dating-web #appOverviewGrid,
.social-shell--app.is-dating-web #appActionsGrid{
  display:none !important;
}
.social-shell--app.is-dating-web .app-main-column{
  gap:14px;
  width:100%;
  max-width:1360px;
  margin:0 auto;
}
.social-shell--app.is-dating-web .social-topbar--app{
  max-width:1680px;
  margin-left:auto;
  margin-right:auto;
}
.social-shell--app.is-dating-web .app-topbar__center{
  max-width:1360px;
}
.social-shell--app.is-dating-web .topbar-tools--compact{
  max-width:1360px;
}
.workspace-card{
  background:
    radial-gradient(circle at top left, rgba(110,92,248,.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(39,215,209,.10), transparent 32%),
    linear-gradient(180deg, rgba(20,28,56,.98), rgba(17,22,42,.98));
}
.workspace-card h2{
  margin:14px 0 10px;
  font-size:clamp(26px,2vw,34px);
  line-height:1.05;
  letter-spacing:-.03em;
}
.workspace-card p{
  margin:0 0 10px;
  font-size:15px;
  line-height:1.65;
}
.workspace-card__tagline{
  margin:12px 0 14px;
  color:#dbe4ff;
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
}
.workspace-card__pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.workspace-card__stats{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.app-shell--wide{
  grid-template-columns:290px minmax(0,1fr) 340px;
}
.app-main-column{
  display:grid;
  gap:18px;
  min-width:0;
}
.topbar-icon-actions{
  display:flex;
  gap:12px;
  align-items:center;
}
.topbar-icon-actions--compact{
  gap:8px;
}
.topbar-quick-access{
  position:relative;
}
.icon-action-btn{
  min-height:60px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font:inherit;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.icon-action-btn--circle{
  width:38px;
  min-width:38px;
  height:38px;
  min-height:38px;
  padding:0;
  justify-content:center;
  border-radius:13px;
  position:relative;
}
.icon-action-btn--circle .icon-badge{
  position:absolute;
  top:-5px;
  right:-5px;
}
.icon-action-btn__icon{
  font-size:20px;
  line-height:1;
}
.icon-action-btn__icon--svg{
  display:inline-flex;
  width:18px;
  height:18px;
  color:#eef2ff;
}
.icon-action-btn__icon--svg svg{
  width:100%;
  height:100%;
  display:block;
}
.top-quick-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  width:220px;
  padding:12px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(12,18,37,.98);
  box-shadow:0 24px 60px rgba(0,0,0,.38);
  display:grid;
  gap:8px;
  z-index:20;
}
.top-quick-menu__title{
  padding:4px 8px 8px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}
.top-quick-menu__item{
  min-height:46px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font:inherit;
  font-size:15px;
  font-weight:700;
  text-align:left;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.top-quick-menu__item.is-active{
  background:linear-gradient(135deg,rgba(110,92,248,.88),rgba(255,79,158,.92));
  border-color:transparent;
  color:#fff;
}
.top-quick-menu__item:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
}
.icon-badge{
  min-width:24px;
  height:24px;
  padding:0 7px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,var(--violet),var(--pink));
  color:#fff;
  font-size:12px;
  font-weight:800;
}
.icon-badge--inline{
  margin-top:8px;
}
.app-nav-panel{
  padding:16px;
  opacity:.92;
}
.app-side-nav{
  display:grid;
  gap:8px;
}
.app-side-nav__item{
  min-height:50px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font:inherit;
  font-size:15px;
  font-weight:700;
  text-align:left;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.app-side-nav__item.is-active,
.bottom-nav-btn.is-active,
.inbox-tabs__btn.is-active{
  background:linear-gradient(135deg,rgba(110,92,248,.88),rgba(255,79,158,.92));
  border-color:transparent;
  color:#fff;
  box-shadow:0 14px 34px rgba(110,92,248,.22);
}
.app-welcome-panel{
  padding:28px 30px;
}
.app-welcome-panel--hero{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
  background:
    radial-gradient(circle at top right, rgba(255,79,158,.12), transparent 34%),
    linear-gradient(180deg, rgba(15,22,44,.98), rgba(13,18,34,.98));
}
.app-welcome-panel__copy{
  max-width:760px;
}
.app-welcome-panel__stats{
  display:flex;
  gap:12px;
}
.app-actions-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.app-actions-grid--feature{
  margin-top:-4px;
}
.app-overview-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.overview-card{
  min-height:136px;
  display:grid;
  align-content:start;
  padding:24px 26px;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.app-action-card{
  padding:22px;
  text-align:left;
  color:var(--text);
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.app-action-card__title{
  font-size:22px;
  font-weight:800;
  margin-bottom:8px;
}
.app-action-card__meta{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}
.app-section{
  display:grid;
  gap:18px;
  padding:28px;
}
.social-metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.metric-tile{
  padding:18px 18px 16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  display:grid;
  gap:4px;
}
.metric-tile strong{
  font-size:24px;
  font-weight:800;
}
.metric-tile span{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.feature-rail{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.feature-card{
  padding:18px 18px 16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  display:grid;
  gap:8px;
}
.feature-card__eyebrow{
  color:var(--gold);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.feature-card__title{
  font-size:18px;
  font-weight:800;
}
.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.feature-card__chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.app-section__head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  margin-bottom:4px;
}
.story-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(152px,1fr));
  gap:16px;
  overflow-x:auto;
  padding-bottom:4px;
}
.story-chip{
  min-width:152px;
  padding:14px 14px 12px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    rgba(255,255,255,.02);
  color:var(--text);
  display:grid;
  gap:12px;
  justify-items:start;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
  text-align:left;
}
.story-chip__avatar{
  width:88px;
  height:88px;
  border-radius:26px;
  border:2px solid rgba(255,79,158,.8);
  background:rgba(255,255,255,.04);
  overflow:hidden;
  display:grid;
  place-items:center;
  box-shadow:0 14px 32px rgba(0,0,0,.24);
}
.story-chip__avatar--boosted{
  border-color:rgba(255,196,79,.96);
  box-shadow:0 0 0 4px rgba(255,196,79,.14),0 18px 40px rgba(0,0,0,.28);
}
.story-chip__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.story-chip__head{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}
.story-chip__counter{
  min-width:28px;
  height:28px;
  padding:0 8px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:var(--text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
}
.story-chip__name{
  font-size:15px;
  font-weight:800;
}
.story-chip__meta{
  color:var(--muted);
  font-size:12px;
}
.story-chip__text{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
  overflow:hidden;
}
.story-chip__footer{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.story-chip__stats{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}
.story-chip__boost{
  color:var(--gold);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.story-chip:hover,
.quick-link-card:hover,
.overview-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
}
.app-composer-card{
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(110,92,248,.11), transparent 30%),
    rgba(255,255,255,.025);
}
.app-composer-card__header{
  display:flex;
  align-items:center;
  gap:14px;
}
.app-composer-card__label{
  display:grid;
  gap:4px;
}
.auth-benefits--tight{
  margin-top:0;
}
.discover-grid,
.settings-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.dating-web-shell{
  display:grid;
  gap:22px;
  width:100%;
  max-width:1420px;
  margin:0 auto;
  padding:14px 8px 8px;
}
.dating-vibes-hero,
.dating-vibes-intro,
.dating-vibe-composer,
.dating-vibe-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:
    radial-gradient(circle at top left, rgba(110,92,248,.14), transparent 38%),
    rgba(255,255,255,.03);
}
.dating-vibes-hero,
.dating-vibes-intro{
  display:none;
}
.dating-vibes-toolbar{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:30px;
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.10), transparent 34%),
    linear-gradient(180deg, rgba(32,38,72,.90), rgba(20,26,52,.88));
  box-shadow:0 18px 42px rgba(0,0,0,.16);
}
.dating-vibes-toolbar__side{
  display:grid;
  gap:12px;
  justify-items:stretch;
  min-width:174px;
}
.primary-btn--wide{
  min-width:164px;
  justify-content:center;
}
#datingFilterBtn{
  min-height:68px;
  padding:0 22px;
  border-radius:22px;
  font-size:17px;
  letter-spacing:-.02em;
  box-shadow:0 14px 28px rgba(255,98,124,.18);
}
.dating-story-rail{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:196px;
  gap:14px;
  overflow-x:auto;
  padding-bottom:6px;
  scrollbar-width:none;
}
.dating-story-rail::-webkit-scrollbar{
  display:none;
}
.dating-story-pill{
  position:relative;
  overflow:hidden;
  min-height:218px;
  padding:14px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top right, rgba(255,79,158,.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(110,92,248,.16), transparent 38%),
    linear-gradient(180deg, rgba(35,40,77,.98), rgba(23,28,55,.96));
  display:grid;
  grid-template-rows:auto auto 1fr auto;
  gap:12px;
  align-content:start;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
  box-shadow:0 22px 40px rgba(0,0,0,.18);
}
.dating-story-pill::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:64px;
  background:linear-gradient(90deg, rgba(255,79,158,.24), rgba(110,92,248,0));
  pointer-events:none;
}
.dating-story-pill__topline{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.dating-story-pill__status,
.dating-story-pill__boost{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  font-size:10px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.dating-story-pill__status{
  background:rgba(13,198,132,.12);
  color:#8ef0c4;
}
.dating-story-pill__boost{
  background:rgba(255,255,255,.08);
  color:#ffd88e;
}
.dating-story-pill:hover,
.dating-home-switch__btn:hover,
.dating-vibe-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.18);
  background:
    radial-gradient(circle at top right, rgba(255,79,158,.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(110,92,248,.16), transparent 38%),
    linear-gradient(180deg, rgba(38,44,82,.97), rgba(26,31,61,.96));
}
.dating-story-pill__avatar{
  position:relative;
  z-index:1;
  width:76px;
  height:76px;
  border-radius:24px;
  border:2px solid rgba(255,79,158,.84);
  background:rgba(255,255,255,.04);
  display:grid;
  place-items:center;
  overflow:hidden;
  font-size:22px;
  font-weight:900;
  box-shadow:0 14px 28px rgba(0,0,0,.22);
}
.dating-story-pill__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.dating-story-pill__copy{
  display:grid;
  gap:6px;
}
.dating-story-pill__name{
  color:var(--text);
  display:block;
  font-size:16px;
  font-weight:800;
  line-height:1.22;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.dating-story-pill__meta{
  color:var(--muted);
  font-size:12px;
  line-height:1.4;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:1;
  overflow:hidden;
}
.dating-story-pill__excerpt{
  color:#e5ebff;
  font-size:12px;
  line-height:1.45;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}
.dating-story-pill__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
}
.dating-story-pill__time{
  color:#aab5d6;
  font-size:11px;
  font-weight:700;
}
.dating-story-pill__cta{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:11px;
  font-weight:800;
}
.dating-home-switch{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  width:100%;
  max-width:1420px;
  margin:0 auto;
  padding:8px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at left top, rgba(255,79,158,.10), transparent 30%),
    linear-gradient(180deg, rgba(29,34,65,.94), rgba(18,23,46,.90));
  box-shadow:0 18px 42px rgba(0,0,0,.16);
}
.dating-home-switch__btn{
  min-height:58px;
  padding:0 18px;
  text-align:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.025);
  color:#d7ddf7;
  font:inherit;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease,color .18s ease;
}
.dating-home-switch__btn.is-active{
  color:#fff;
  background:
    linear-gradient(135deg, rgba(255,79,158,.98), rgba(111,68,255,.96));
  border-color:transparent;
  box-shadow:0 18px 36px rgba(111,68,255,.24);
}
.dating-home-switch__btn-badge{
  display:inline-flex;
  margin-left:8px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#ffe28f;
  font-size:10px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  vertical-align:middle;
}
.dating-vibe-composer{
  width:100%;
  max-width:1420px;
  margin:0 auto;
  padding:0;
  display:grid;
  gap:0;
  overflow:hidden;
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.12), transparent 32%),
    linear-gradient(180deg, rgba(40,46,84,.94), rgba(28,33,64,.92));
  box-shadow:0 22px 48px rgba(0,0,0,.18);
}
.dating-vibe-composer__head{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:14px;
  align-items:flex-start;
  padding:18px 20px 14px;
  background:
    linear-gradient(135deg, rgba(255,79,158,.08), rgba(110,92,248,.12));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.dating-vibe-composer__title-copy{
  display:grid;
  gap:6px;
}
.dating-vibe-composer__eyebrow{
  display:inline-flex;
  width:fit-content;
  align-items:center;
  gap:8px;
  padding:6px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#ffd88e;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.dating-vibe-composer__title-row{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.dating-vibe-composer__title{
  font-size:26px;
  font-weight:900;
  letter-spacing:-.03em;
}
.dating-vibe-composer__meta{
  color:var(--muted);
  line-height:1.5;
  font-size:13px;
  max-width:620px;
}
.dating-vibe-composer__body{
  display:grid;
  grid-template-columns:minmax(0,1fr) 260px;
  gap:14px;
  padding:16px 20px 18px;
}
.dating-vibe-composer__compose{
  display:grid;
  gap:12px;
}
.dating-vibe-composer__body textarea{
  min-height:118px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(12,18,39,.78), rgba(15,20,43,.72));
  color:var(--text);
  font:inherit;
  font-size:16px;
  line-height:1.5;
  padding:16px 18px;
  resize:vertical;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.dating-vibe-composer__body textarea::placeholder{
  color:#97a2c8;
}
.dating-vibe-composer__assist{
  display:grid;
  gap:10px;
  align-content:start;
}
.dating-vibe-composer__assist-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  padding:13px 14px 14px;
  box-shadow:0 14px 28px rgba(0,0,0,.12);
}
.dating-vibe-composer__assist-card.is-accent{
  background:
    linear-gradient(135deg, rgba(255,79,158,.14), rgba(110,92,248,.16));
}
.dating-vibe-composer__assist-label{
  color:#ffd88e;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.dating-vibe-composer__assist-text{
  margin-top:8px;
  color:#eef3ff;
  font-size:12px;
  line-height:1.45;
}
.dating-vibe-composer__actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  padding-top:2px;
}
.dating-vibe-composer__shop{
  align-self:center;
  padding-inline:16px;
  min-height:42px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
}
.dating-vibe-composer__shortcut{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:#d9e2ff;
  font-size:11px;
  font-weight:700;
}
.dating-vibe-composer__footer-note{
  padding:0 20px 18px;
  color:#aab5d6;
  font-size:12px;
  line-height:1.5;
}
.dating-vibe-feed{
  display:grid;
  gap:12px;
  width:100%;
  max-width:1420px;
  margin:0 auto;
}
.dating-vibe-card{
  padding:18px 20px 16px;
  border-radius:24px;
  box-shadow:0 16px 36px rgba(0,0,0,.14);
}
.dating-vibe-card__top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}
.dating-vibe-card__identity{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.dating-vibe-card__avatar{
  width:56px;
  height:56px;
  border-radius:20px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(110,92,248,.96), rgba(255,79,158,.92));
  color:#fff;
  font-size:22px;
  font-weight:900;
}
.dating-vibe-card__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.dating-vibe-card__name{
  font-size:17px;
  font-weight:900;
}
.dating-vibe-card__meta{
  color:var(--muted);
  font-size:12px;
  margin-top:4px;
}
.dating-vibe-card__badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}
.dating-vibe-card__menu{
  display:flex;
  gap:10px;
  align-items:center;
}
.dating-vibe-card__body{
  margin-top:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  padding:16px 18px;
  font-size:17px;
  line-height:1.45;
}
.dating-vibe-card__image{
  margin-top:12px;
  width:100%;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(8,13,30,.48);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}
.dating-vibe-card__image img{
  width:100%;
  height:auto;
  max-height:360px;
  display:block;
  object-fit:contain;
  object-position:center;
  border-radius:12px;
}
.dating-vibe-card__footer{
  margin-top:12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.dating-vibe-action{
  min-height:42px;
  padding:0 13px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font:inherit;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}
.dating-vibe-action.is-primary{
  background:linear-gradient(135deg, rgba(255,79,158,.98), rgba(111,68,255,.96));
  border-color:transparent;
}
.dating-vibe-action.is-active{
  border-color:rgba(255,79,158,.42);
  background:rgba(255,79,158,.12);
}
.dating-vibe-action.is-hidden{
  display:none;
}
.dating-replies-modal{
  position:fixed;
  inset:0;
  z-index:80;
}
.dating-replies-modal.is-hidden{
  display:none;
}
.dating-replies-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,8,18,.72);
  backdrop-filter:blur(6px);
}
.dating-replies-modal__dialog{
  position:relative;
  width:min(760px,calc(100vw - 28px));
  max-height:calc(100vh - 28px);
  margin:14px auto;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(14,20,42,.98), rgba(14,19,40,.995));
  display:grid;
  grid-template-rows:auto auto minmax(0,1fr) auto;
  gap:12px;
  padding:20px;
  overflow:hidden;
  box-shadow:0 32px 72px rgba(0,0,0,.44);
}
.dating-replies-modal__close{
  position:absolute;
  top:10px;
  right:10px;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font:inherit;
  font-size:22px;
  cursor:pointer;
}
.dating-replies-modal__head{
  padding-right:42px;
}
.dating-replies-modal__lead{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  padding:14px 16px;
  font-size:15px;
  line-height:1.5;
}
.dating-replies-modal__list{
  min-height:0;
  overflow:auto;
  display:grid;
  align-content:start;
  gap:10px;
  padding-right:4px;
}
.dating-reply-item{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.03);
  padding:12px 14px;
  display:grid;
  gap:8px;
}
.dating-reply-item__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.dating-reply-item__name{
  font-size:13px;
  font-weight:800;
}
.dating-reply-item__meta{
  color:var(--muted);
  font-size:12px;
}
.dating-reply-item__body{
  font-size:14px;
  line-height:1.5;
  color:var(--text);
}
.dating-replies-modal__composer{
  display:grid;
  gap:10px;
}
.dating-replies-modal__composer textarea{
  width:100%;
  min-height:96px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:#121935;
  color:var(--text);
  font:inherit;
  font-size:15px;
  line-height:1.5;
  padding:14px;
  resize:vertical;
}
.dating-replies-modal__actions{
  display:flex;
  justify-content:flex-end;
}
.dating-boost-modal{
  position:fixed;
  inset:0;
  z-index:95;
}
.dating-gift-modal{
  position:fixed;
  inset:0;
  z-index:96;
}
.dating-gift-modal.is-hidden{
  display:none;
}
.dating-gift-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,8,18,.78);
  backdrop-filter:blur(10px);
}
.dating-gift-modal__dialog{
  position:relative;
  width:min(760px,calc(100vw - 28px));
  margin:42px auto;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top right, rgba(255,79,158,.18), transparent 32%),
    radial-gradient(circle at top left, rgba(110,92,248,.18), transparent 38%),
    linear-gradient(180deg, rgba(14,20,42,.985), rgba(14,19,40,.995));
  box-shadow:0 36px 90px rgba(0,0,0,.46);
  padding:24px;
  display:grid;
  gap:14px;
}
.dating-gift-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font:inherit;
  font-size:24px;
  cursor:pointer;
}
.dating-gift-modal__eyebrow{
  color:#ffca58;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.dating-gift-modal__title{
  font-size:34px;
  line-height:1.04;
  font-weight:900;
}
.dating-gift-modal__sub{
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
  max-width:580px;
}
.dating-gift-modal__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:6px;
}
.dating-gift-offer{
  min-height:154px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.12), transparent 36%),
    rgba(255,255,255,.04);
  color:var(--text);
  text-align:left;
  padding:18px;
  display:grid;
  align-content:start;
  gap:8px;
  cursor:pointer;
  transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease,background .16s ease;
}
.dating-gift-offer:hover{
  transform:translateY(-2px);
  border-color:rgba(255,79,158,.42);
  box-shadow:0 20px 44px rgba(255,79,158,.16);
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.18), transparent 42%),
    rgba(255,255,255,.06);
}
.dating-gift-offer__emoji{
  font-size:30px;
  line-height:1;
}
.dating-gift-offer__title{
  font-size:22px;
  line-height:1.08;
  font-weight:900;
}
.dating-gift-offer__price{
  color:#ffd88e;
  font-size:15px;
  font-weight:800;
}
.dating-gift-offer__meta{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.dating-gift-modal__foot{
  display:flex;
  justify-content:flex-end;
  margin-top:4px;
}
.dating-boost-modal.is-hidden{
  display:none;
}
.dating-boost-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,8,18,.78);
  backdrop-filter:blur(10px);
}
.dating-boost-modal__dialog{
  position:relative;
  width:min(720px,calc(100vw - 28px));
  margin:36px auto;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top right, rgba(110,92,248,.18), transparent 34%),
    radial-gradient(circle at top left, rgba(255,79,158,.16), transparent 40%),
    linear-gradient(180deg, rgba(14,20,42,.985), rgba(14,19,40,.995));
  box-shadow:0 36px 90px rgba(0,0,0,.46);
  padding:24px;
  display:grid;
  gap:14px;
}
.dating-boost-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font:inherit;
  font-size:24px;
  cursor:pointer;
}
.dating-boost-modal__eyebrow{
  color:#ffca58;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.dating-boost-modal__title{
  font-size:36px;
  line-height:1.04;
  font-weight:900;
}
.dating-boost-modal__sub{
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
  max-width:560px;
}
.dating-boost-modal__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:6px;
}
.dating-boost-offer{
  min-height:180px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.12), transparent 36%),
    rgba(255,255,255,.04);
  color:var(--text);
  text-align:left;
  padding:18px;
  display:grid;
  align-content:start;
  gap:10px;
  cursor:pointer;
  transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.dating-boost-offer:hover{
  transform:translateY(-2px);
  border-color:rgba(255,79,158,.42);
  box-shadow:0 20px 44px rgba(255,79,158,.16);
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.18), transparent 42%),
    rgba(255,255,255,.06);
}
.dating-boost-offer__time{
  font-size:28px;
  line-height:1;
  font-weight:900;
}
.dating-boost-offer__price{
  font-size:20px;
  line-height:1.1;
  font-weight:800;
}
.dating-boost-offer__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}
@media (max-width: 860px){
  .dating-boost-modal__grid{
    grid-template-columns:1fr;
  }
  .dating-boost-modal__title{
    font-size:30px;
  }
  .dating-boost-offer{
    min-height:unset;
  }
}
.quick-panel__grid{
  display:grid;
  gap:10px;
}
.quick-link-card{
  min-height:82px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.03);
  color:var(--text);
  text-align:left;
  font:inherit;
  cursor:pointer;
  display:grid;
  gap:4px;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.quick-link-card strong{
  font-size:15px;
}
.quick-link-card span{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.discover-card{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.discover-card__actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.discover-card--app,
.icon-action-btn,
.app-side-nav__item,
.app-action-card,
.inbox-card{
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.discover-card--app:hover,
.icon-action-btn:hover,
.app-side-nav__item:hover,
.app-action-card:hover,
.inbox-card:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
}
.discover-card__title{
  font-size:20px;
  font-weight:800;
  margin-bottom:8px;
  line-height:1.15;
}
.discover-card__meta{
  color:var(--muted);
  font-size:14px;
  margin-bottom:6px;
}
.discover-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.inbox-tabs{
  display:flex;
  gap:12px;
}
.inbox-tabs__btn{
  min-height:52px;
  padding:0 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font:inherit;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
}
.messenger-layout{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:18px;
  min-height:620px;
}
.messenger-sidebar{
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(255,255,255,.025);
  padding:16px;
  display:grid;
  align-content:start;
  gap:14px;
}
.messenger-sidebar__head{
  display:grid;
  gap:10px;
}
.messenger-thread-list{
  display:grid;
  gap:12px;
}
.messenger-thread-card{
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--text);
  text-align:left;
  font:inherit;
  cursor:pointer;
  display:grid;
  gap:8px;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.messenger-thread-card__identity{
  display:flex;
  gap:12px;
  align-items:flex-start;
  min-width:0;
}
.messenger-thread-card__avatar{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  overflow:hidden;
  font-size:16px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, rgba(110,92,248,.94), rgba(255,79,158,.92));
  box-shadow:0 10px 24px rgba(110,92,248,.2);
}
.messenger-thread-card__avatar--dating{
  background:linear-gradient(135deg, rgba(255,95,145,.94), rgba(255,122,98,.9));
  box-shadow:0 10px 24px rgba(255,95,145,.22);
}
.messenger-thread-card__avatar--request{
  background:linear-gradient(135deg, rgba(255,196,79,.92), rgba(255,138,92,.9));
  box-shadow:0 10px 24px rgba(255,196,79,.22);
}
.messenger-thread-card__side{
  display:grid;
  justify-items:end;
  gap:8px;
  flex:0 0 auto;
}
.messenger-thread-card:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
}
.messenger-thread-card.is-active{
  border-color:rgba(110,92,248,.45);
  background:
    radial-gradient(circle at top left, rgba(110,92,248,.18), transparent 55%),
    rgba(255,255,255,.06);
  box-shadow:0 18px 38px rgba(0,0,0,.16);
}
.messenger-thread-card--request.is-active{
  border-color:rgba(255,196,79,.28);
  background:
    radial-gradient(circle at top left, rgba(255,196,79,.14), transparent 52%),
    rgba(255,255,255,.06);
}
.messenger-thread-card__top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}
.messenger-thread-card__title{
  font-size:18px;
  font-weight:800;
}
.messenger-thread-card__time{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}
.messenger-thread-card__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.messenger-thread-card__snippet{
  color:#a9b1d6;
  font-size:12px;
  line-height:1.45;
  margin-left:58px;
}
.messenger-stage{
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(110,92,248,.1), transparent 34%),
    rgba(255,255,255,.025);
  padding:20px;
  display:grid;
  grid-template-rows:auto minmax(320px,1fr) auto;
  gap:16px;
}
.messenger-stage__head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.messenger-stage__title{
  font-size:24px;
  font-weight:900;
}
.messenger-stage__identity{
  display:flex;
  gap:14px;
  align-items:center;
  min-width:0;
}
.messenger-stage__avatar{
  width:56px;
  height:56px;
  border-radius:20px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  overflow:hidden;
  font-size:19px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, rgba(110,92,248,.95), rgba(255,79,158,.92));
  box-shadow:0 16px 34px rgba(110,92,248,.2);
}
.messenger-stage__avatar--dating{
  background:linear-gradient(135deg, rgba(255,95,145,.95), rgba(255,122,98,.9));
  box-shadow:0 16px 34px rgba(255,95,145,.22);
}
.messenger-stage__avatar--request{
  background:linear-gradient(135deg, rgba(255,196,79,.94), rgba(255,138,92,.9));
  box-shadow:0 16px 34px rgba(255,196,79,.2);
}
.messenger-stage__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}
.messenger-stage__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.messenger-stage__body{
  display:grid;
  gap:12px;
  align-content:start;
}
.message-bubble-row{
  display:flex;
  justify-content:flex-start;
}
.message-bubble-row.is-own{
  justify-content:flex-end;
}
.message-bubble{
  max-width:min(520px,78%);
  padding:14px 16px 12px;
  border-radius:20px 20px 20px 8px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  display:grid;
  gap:8px;
}
.message-bubble--own{
  border-radius:20px 20px 8px 20px;
  background:linear-gradient(135deg, rgba(110,92,248,.86), rgba(255,79,158,.88));
  border-color:transparent;
  color:#fff;
  box-shadow:0 16px 36px rgba(110,92,248,.22);
}
.message-bubble__text{
  font-size:15px;
  line-height:1.6;
}
.message-bubble__meta{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.message-bubble--own .message-bubble__meta{
  color:rgba(255,255,255,.82);
  justify-content:flex-end;
}
.message-bubble__status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:rgba(255,255,255,.78);
}
.message-bubble__status.is-read{
  color:#d8ebff;
}
.message-bubble__checks{
  font-size:12px;
  font-weight:900;
  letter-spacing:-.08em;
}
.messenger-stage__composer{
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
}
.messenger-composer{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
}
.messenger-composer__icon{
  width:46px;
  height:46px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  color:#fff;
  font:inherit;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
  border:1px solid rgba(255,255,255,.08);
}
.messenger-composer__icon:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.18);
}
.messenger-stage__placeholder{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.messenger-request-panel{
  padding:22px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.messenger-request-panel p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
}
.inbox-list{
  display:grid;
  gap:14px;
}
.inbox-card{
  padding:18px 18px 16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.inbox-card__title{
  font-size:18px;
  font-weight:800;
  margin-bottom:6px;
}
.inbox-card__meta{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}
.profile-lead-card{
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.profile-showcase-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.profile-showcase-card{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  display:grid;
  gap:10px;
}
.profile-showcase-card__title{
  font-size:20px;
  font-weight:800;
  line-height:1.15;
}
.profile-showcase-card__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.profile-showcase-card__chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.profile-preview-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.profile-preview-card{
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(110,92,248,.11), transparent 34%),
    rgba(255,255,255,.03);
  display:grid;
  gap:12px;
}
.profile-preview-card__eyebrow{
  color:var(--gold);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.profile-preview-card__title{
  font-size:20px;
  font-weight:800;
  line-height:1.12;
}
.profile-preview-card__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.profile-preview-card__chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.dating-monetize-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.dating-monetize-card{
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.14), transparent 34%),
    rgba(255,255,255,.03);
  display:grid;
  gap:12px;
}
.dating-monetize-card__eyebrow{
  color:var(--gold);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.dating-monetize-card__title{
  font-size:21px;
  font-weight:800;
  line-height:1.14;
}
.dating-monetize-card__price{
  font-size:28px;
  font-weight:900;
}
.dating-monetize-card__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.dating-monetize-card__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mini-post-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.mini-post-card{
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  display:grid;
  gap:8px;
}
.mini-post-card__title{
  font-size:15px;
  font-weight:800;
}
.mini-post-card__meta{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.mini-post-card__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.lead-card{
  display:grid;
  gap:12px;
}
.lead-card__title{
  font-size:24px;
  font-weight:800;
  line-height:1.1;
}
.lead-card__meta{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}
.lead-card__stats{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.shop-package-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.package-card{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(110,92,248,.12), transparent 34%),
    rgba(255,255,255,.03);
  display:grid;
  gap:10px;
}
.package-card--featured{
  border-color:rgba(245,193,79,.35);
  box-shadow:0 16px 40px rgba(245,193,79,.08);
}
.package-card__eyebrow{
  color:var(--gold);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.package-card__title{
  font-size:22px;
  font-weight:800;
}
.package-card__price{
  font-size:30px;
  font-weight:900;
  line-height:1;
}
.package-card__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.package-card__list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  display:grid;
  gap:8px;
  font-size:14px;
}
.package-card__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:4px;
}
.context-card{
  padding:22px 24px;
}
.context-card__copy{
  margin:0;
}
.context-list{
  display:grid;
  gap:12px;
}
.context-list__item{
  display:grid;
  gap:4px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
}
.context-list__item strong{
  font-size:14px;
}
.context-list__item span{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.detail-column .panel{
  padding:24px;
}
.feed-list--wide .post-card{
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(19,25,50,.98), rgba(14,20,40,.98));
  padding:24px;
  box-shadow:0 18px 38px rgba(0,0,0,.14);
}
.post-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.post-action-btn{
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font:inherit;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease,color .18s ease;
}
.post-action-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
}
.post-action-btn.is-active{
  background:rgba(255,79,158,.16);
  border-color:rgba(255,79,158,.42);
  color:#ffd8ea;
}
.session-panel--app{
  padding:14px 16px;
}
.ghost-btn--compact{
  min-height:36px;
  padding:0 11px;
  font-size:12px;
  border-radius:12px;
}
.brand--compact{
  gap:8px;
}
.brand--compact .brand__mark{
  width:36px;
  height:36px;
  border-radius:12px;
}
.brand--compact .brand__name{
  font-size:15px;
  line-height:1.05;
}
.brand--compact .brand__sub{
  font-size:10px;
  margin-top:2px;
  max-width:138px;
  line-height:1.25;
}
.bottom-app-nav{
  display:none;
}
.app-feed-column{
  display:grid;
  gap:18px;
}
.app-welcome-panel{
  background:
    radial-gradient(circle at top right, rgba(110,92,248,.12), transparent 34%),
    rgba(18,25,51,.92);
}
.app-welcome-text{
  margin:0;
  font-size:16px;
}
.notifications-panel{
  background:
    radial-gradient(circle at top right, rgba(255,79,158,.1), transparent 32%),
    rgba(18,25,51,.92);
}
.notification-list{
  display:grid;
  gap:12px;
}
.notification-card{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.notification-card__title{
  font-size:15px;
  font-weight:800;
  margin-bottom:4px;
}
.notification-card__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}
.auth-column,.detail-column{display:grid;gap:18px}
.feed-column--app{display:grid;gap:18px}
.auth-hero-card{
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(39,215,209,.10), transparent 32%),
    linear-gradient(180deg, rgba(20,28,56,.98), rgba(18,24,48,.98));
}
.auth-hero-card--compact{
  gap:10px;
  padding:32px;
}
.auth-hero-logo{
  width:84px;
  height:84px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 38px rgba(0,0,0,.32);
  margin-bottom:2px;
}
.auth-hero-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.auth-hero-card h2{
  margin:8px 0 8px;
  font-size:clamp(46px,3vw,58px);
  line-height:.98;
  letter-spacing:-.03em;
}
.auth-hero-card p{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.7;
}
.auth-benefits{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}
.auth-switch{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:10px;
}
.auth-switch__btn{
  border:none;
  border-radius:16px;
  padding:16px 18px;
  background:rgba(255,255,255,.05);
  color:var(--text);
  font:inherit;
  font-weight:800;
  font-size:20px;
  cursor:pointer;
  border:1px solid var(--line);
}
.auth-switch__btn.is-active{
  background:linear-gradient(135deg,var(--pink),#ff6d5f);
  border-color:transparent;
}
.auth-inline-card{
  margin-top:8px;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(9,14,31,.36);
}
.auth-inline-card__title{
  font-size:20px;
  font-weight:800;
  margin-bottom:8px;
}
.form-note{
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
  margin-bottom:16px;
}
.auth-inline-actions{
  margin-top:14px;
  display:flex;
  justify-content:flex-start;
}
.auth-secondary-btn{
  min-height:52px;
  padding:12px 18px;
  font-size:16px;
}
.sidebar-nav .sidebar-link{
  padding:12px 14px;
  color:var(--text);
  background:rgba(255,255,255,.03);
}
.sidebar-link.is-active{
  background:linear-gradient(135deg,rgba(110,92,248,.22),rgba(255,79,158,.18));
}
.panel--inner{margin-top:16px;background:rgba(255,255,255,.03)}
.composer-fields{flex:1}
.composer-box--vertical{display:grid;gap:14px}
.avatar{
  width:46px;height:46px;border-radius:16px;display:grid;place-items:center;
  font-weight:800;background:linear-gradient(135deg,#313f79,#5268ca)
}
.avatar--pink{background:linear-gradient(135deg,#ff4f9e,#ff7a7a)}
.avatar--cyan{background:linear-gradient(135deg,#27d7d1,#4aa8ff)}
.avatar-button,.post-body-button,.post-link,.mini-post{
  border:none;
  background:none;
  color:inherit;
  text-align:left;
  padding:0;
  cursor:pointer;
}
.avatar-button{overflow:hidden}
.avatar-image{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;
}
.post-head__copy{display:grid;gap:4px}
.post-body-button{width:100%}
.composer-actions{margin-top:12px;align-items:center}
.composer-actions--spread{justify-content:space-between}
.chip{
  padding:8px 12px;
  color:var(--muted);
  background:rgba(255,255,255,.04);
  font-size:14px;
}
.chip--action{cursor:pointer}
.post-card{padding:20px}
.feed-column{display:grid;gap:16px}
.feed-list,.reply-list,.mini-post-list{display:grid;gap:14px}
.post-name{font-weight:800}
.post-meta,.muted-text,.post-footer{color:var(--muted);font-size:14px}
.post-text{font-size:18px;color:var(--text);margin:16px 0}
.post-footer{justify-content:space-between}
.post-link{font:inherit}
.post-link:hover{color:#fff}

.stack-form{display:grid;gap:14px}
.stack-form--compact{gap:12px}
.field{display:grid;gap:8px}
.field span{font-size:14px;color:var(--muted)}
.field input,.field textarea{
  width:100%;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#0e1530;
  color:var(--text);
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  font-size:18px;
}
.field input:focus,.field textarea:focus,.search:focus,.composer-input:focus{
  outline:none;
  border-color:rgba(255,79,158,.45);
  box-shadow:0 0 0 4px rgba(255,79,158,.08);
  transform:translateY(-1px);
}
.field-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:14px;
}
.checkbox-row{
  display:flex;
  gap:10px;
  align-items:center;
  color:var(--muted);
  font-size:14px;
}
.auth-panel .primary-btn{width:100%;justify-content:center}
.auth-submit-btn{width:100%;justify-content:center}
.primary-btn,.ghost-btn{
  min-height:60px;
}
.primary-btn{
  padding:15px 24px;
  font-size:19px;
}
.ghost-btn{
  padding:14px 18px;
  font-size:17px;
}
.session-card{display:grid;gap:14px}
.session-card__user{display:flex;gap:12px;align-items:center}
.refund-notice-card{
  margin-top:14px;
  padding:14px 15px;
  border-radius:18px;
  border:1px solid rgba(255,107,123,.32);
  background:linear-gradient(180deg, rgba(255,86,122,.11), rgba(255,255,255,.03));
  display:grid;
  gap:8px;
}
.refund-notice-card__title{
  font-size:15px;
  font-weight:800;
  color:#ffe2ea;
}
.refund-notice-card__meta{
  color:#f1d3dc;
  font-size:13px;
  line-height:1.55;
}
.refund-notice-card__chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.refund-notice-card__chip{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:#fff;
  font-size:12px;
  font-weight:700;
}
.is-hidden{display:none !important}
.empty-state{
  padding:18px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.07);
  color:var(--muted);
}
.profile-panel{display:grid;gap:16px}
.profile-panel__head{display:flex;gap:12px;align-items:center}
.profile-facts,.profile-counts,.detail-actions{display:flex;gap:10px;flex-wrap:wrap}
.locked-panel__meta{display:flex;gap:10px;flex-wrap:wrap}
.fact-pill,.count-card{
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.fact-pill{padding:10px 14px;color:var(--muted);font-size:15px}
.auth-benefits .fact-pill{
  padding:12px 18px;
  font-size:16px;
}
.count-card{
  min-width:84px;
  padding:10px 12px;
  display:grid;
  gap:4px;
}
.count-card strong{font-size:18px}
.count-card span{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.mini-post{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.reply-card{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.reply-card__head{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.reply-composer{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%) translateY(18px);
  padding:12px 16px;
  border-radius:14px;
  background:rgba(8,12,24,.94);
  border:1px solid var(--line);
  color:var(--text);
  opacity:0;
  pointer-events:none;
  transition:.22s ease;
}
.toast.is-visible{opacity:1;transform:translateX(-50%) translateY(0)}
.toast.is-error{border-color:rgba(255,107,123,.5);box-shadow:0 12px 30px rgba(255,107,123,.12)}

.story-viewer{
  position:fixed;
  inset:0;
  z-index:60;
  display:grid;
  place-items:center;
  padding:28px;
}
.story-viewer.is-hidden{
  display:none;
}
.story-viewer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,8,22,.8);
  backdrop-filter:blur(16px);
}
.story-viewer__dialog{
  position:relative;
  width:min(100%,720px);
  z-index:1;
}
.story-viewer__close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:var(--text);
  font-size:24px;
  cursor:pointer;
  z-index:2;
}
.story-surface{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at top left, rgba(255,79,158,.26), transparent 32%),
    radial-gradient(circle at bottom right, rgba(110,92,248,.25), transparent 34%),
    linear-gradient(180deg, rgba(10,16,40,.98), rgba(13,18,45,.95));
  box-shadow:0 32px 90px rgba(0,0,0,.5);
}
.story-surface__glow{
  position:absolute;
  inset:auto -18% 10% auto;
  width:240px;
  height:240px;
  border-radius:999px;
  background:rgba(255,196,79,.18);
  filter:blur(34px);
}
.story-surface__content{
  position:relative;
  z-index:1;
  display:grid;
  gap:24px;
  min-height:420px;
  padding:28px;
}
.story-surface__progress{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
}
.story-surface__progress-bar{
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  overflow:hidden;
}
.story-surface__progress-fill{
  width:100%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.98));
  transform-origin:left center;
}
.story-surface__progress-bar.is-dim .story-surface__progress-fill{
  opacity:.25;
}
.story-surface__head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
}
.story-surface__profile{
  display:flex;
  gap:14px;
  align-items:center;
}
.story-surface__avatar{
  width:74px;
  height:74px;
  border-radius:24px;
  border:2px solid rgba(255,79,158,.86);
  background:rgba(255,255,255,.05);
  display:grid;
  place-items:center;
  font-size:28px;
  font-weight:800;
}
.story-surface__name{
  font-size:24px;
  font-weight:800;
}
.story-surface__meta{
  color:var(--muted);
  font-size:14px;
  margin-top:4px;
}
.story-surface__badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.story-surface__body{
  display:grid;
  align-content:center;
  min-height:180px;
  padding:28px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)),
    rgba(255,255,255,.04);
  font-size:28px;
  font-weight:700;
  line-height:1.3;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.story-surface__footer{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-end;
  flex-wrap:wrap;
}
.story-surface__stats{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.story-surface__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.story-surface__audience{
  display:grid;
  gap:10px;
}
.story-audience-card{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}
.story-audience-card__title{
  font-size:13px;
  font-weight:800;
  margin-bottom:6px;
}
.story-audience-card__body{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.settings-modal{
  position:fixed;
  inset:0;
  z-index:70;
  display:grid;
  justify-items:center;
  align-items:start;
  padding:22px;
  overflow-y:auto;
  overscroll-behavior:contain;
}
.settings-modal.is-hidden{
  display:none;
}
.settings-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,8,22,.78);
  backdrop-filter:blur(16px);
}
.settings-modal__dialog{
  position:relative;
  z-index:1;
  width:min(1120px,100%);
  margin:auto 0;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at top left, rgba(110,92,248,.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255,79,158,.12), transparent 28%),
    linear-gradient(180deg, rgba(12,18,38,.985), rgba(13,18,44,.985));
  box-shadow:0 34px 90px rgba(0,0,0,.5);
}
.settings-modal__close{
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:var(--text);
  font-size:24px;
  cursor:pointer;
  z-index:2;
}
.settings-modal__shell{
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  min-height:min(680px, calc(100vh - 44px));
  overflow:hidden;
}
.settings-modal__nav{
  padding:30px 22px;
  border-right:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.025);
  display:grid;
  align-content:start;
  gap:18px;
  align-self:start;
}
.settings-modal__eyebrow{
  color:var(--gold);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.settings-modal__title{
  font-size:28px;
  font-weight:900;
  line-height:1.05;
}
.settings-modal__list{
  display:grid;
  gap:10px;
}
.settings-nav-btn{
  min-height:52px;
  padding:0 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  text-align:left;
  font:inherit;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
}
.settings-nav-btn.is-active{
  background:linear-gradient(135deg,rgba(110,92,248,.94),rgba(255,79,158,.9));
  border-color:transparent;
  color:#fff;
}
.settings-modal__content{
  padding:30px;
  display:grid;
  grid-template-rows:auto auto auto auto;
  gap:18px;
  overflow:visible;
  background:linear-gradient(180deg, rgba(12,18,38,.2), rgba(12,18,38,0) 16%, rgba(13,18,44,.12));
}
.settings-pane{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  align-content:start;
  overflow:visible;
  padding-bottom:8px;
}
.settings-card{
  padding:20px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  display:grid;
  gap:12px;
}
.settings-card--wide{
  grid-column:1 / -1;
}
.settings-card__title{
  font-size:18px;
  font-weight:800;
}
.settings-card__meta{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.settings-photo{
  display:grid;
  grid-template-columns:88px minmax(0,1fr);
  gap:16px;
  align-items:center;
}
.settings-photo__preview{
  width:88px;
  height:88px;
  border-radius:26px;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.settings-photo__status{
  font-size:15px;
  font-weight:700;
  line-height:1.45;
  margin-bottom:6px;
}
.settings-photo__actions{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.settings-input--file::file-selector-button{
  margin-right:12px;
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:var(--text);
  padding:10px 12px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.settings-switch{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.settings-switch__copy{
  display:grid;
  gap:4px;
}
.settings-switch__label{
  font-size:15px;
  font-weight:700;
}
.settings-switch__meta{
  color:var(--muted);
  font-size:13px;
}
.settings-toggle{
  appearance:none;
  width:54px;
  height:32px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  position:relative;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease;
}
.settings-toggle::after{
  content:"";
  position:absolute;
  top:3px;
  left:3px;
  width:24px;
  height:24px;
  border-radius:999px;
  background:#fff;
  transition:transform .18s ease;
}
.settings-toggle:checked{
  background:linear-gradient(135deg,var(--violet),var(--pink));
  border-color:transparent;
}
.settings-toggle:checked::after{
  transform:translateX(22px);
}
.settings-select,
.settings-input{
  width:100%;
  min-height:48px;
  padding:0 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  background:#0e1530;
  color:var(--text);
  font:inherit;
  font-size:15px;
}
.settings-form{
  display:grid;
  gap:12px;
}
.settings-note{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.settings-danger{
  border-color:rgba(255,99,132,.28);
  background:linear-gradient(180deg,rgba(255,86,122,.08),rgba(255,255,255,.03));
}
.settings-textarea{
  width:100%;
  min-height:124px;
  padding:14px;
  resize:vertical;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  background:#0e1530;
  color:var(--text);
  font:inherit;
  font-size:14px;
  line-height:1.55;
}
.settings-inline-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.settings-chip{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.05);
  color:#d8ddf2;
  font-size:12px;
  font-weight:700;
}
.settings-modal__actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top:8px;
  position:sticky;
  bottom:0;
  padding:18px 0 4px;
  background:linear-gradient(180deg, rgba(13,18,44,0), rgba(13,18,44,.9) 30%, rgba(13,18,44,.98));
}
.messages-modal__dialog{
  width:min(980px,100%);
  border-color:rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(11,16,32,.985), rgba(12,17,34,.99));
  box-shadow:0 28px 72px rgba(0,0,0,.42);
}
.messages-modal__shell{
  grid-template-columns:248px minmax(0,1fr);
  min-height:min(700px, calc(100vh - 44px));
}
.messages-modal__nav{
  gap:12px;
  background:transparent;
  border-right-color:rgba(255,255,255,.045);
  padding:20px 14px;
}
.messages-modal__nav .settings-modal__eyebrow{
  color:#9da7cf;
  font-size:10px;
  letter-spacing:.06em;
}
.messages-modal__nav .settings-modal__title{
  font-size:20px;
  line-height:1.1;
}
.messages-modal__nav .panel__sub{
  font-size:13px;
  line-height:1.4;
  color:#a7afcf;
}
.messages-modal__mode-switch{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:6px;
}
.messages-mode-btn{
  min-height:34px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
  background:transparent;
  color:var(--muted);
  font:inherit;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}
.messages-mode-btn.is-active{
  background:rgba(255,255,255,.065);
  border-color:rgba(255,255,255,.1);
  color:#fff;
}
.messages-modal__content{
  grid-template-rows:auto auto minmax(0,1fr);
  background:linear-gradient(180deg, rgba(12,18,38,.08), rgba(12,18,38,0) 18%, rgba(13,18,44,.06));
  padding:24px 24px 22px;
  gap:12px;
}
.messages-modal__content .panel__title{
  font-size:22px;
  line-height:1.1;
}
.messages-modal__content .panel__sub{
  font-size:13px;
  line-height:1.4;
  color:#a7afcf;
}
.messages-modal__body{
  min-height:0;
  height:100%;
}
.messages-modal__layout{
  display:grid;
  grid-template-columns:248px minmax(420px,560px);
  gap:12px;
  min-height:560px;
  height:100%;
  justify-content:start;
}
.messages-modal__threads,
.messages-modal__stage{
  min-height:0;
}
.messages-modal__threads{
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  gap:10px;
}
.messages-modal__tabs{
  display:flex;
  gap:6px;
  padding-bottom:2px;
}
.messages-modal__tabs .inbox-tab{
  min-height:30px;
  padding:0 10px;
  border-radius:10px;
  font-size:12px;
  border-color:rgba(255,255,255,.06);
  background:transparent;
}
.messages-modal__threads .messenger-thread-list{
  display:flex;
  flex-direction:column;
  min-height:0;
  max-height:100%;
  overflow:auto;
  padding-right:2px;
  gap:6px;
  align-items:stretch;
}
.messages-modal__threads .messenger-thread-card{
  display:block;
  padding:9px 10px;
  border-radius:12px;
  background:transparent;
  border-color:transparent;
  box-shadow:none;
}
.messages-modal__threads .messenger-thread-card__top{
  align-items:center;
  gap:8px;
}
.messages-modal__threads .messenger-thread-card__identity{
  gap:8px;
  align-items:center;
}
.messages-modal__threads .messenger-thread-card__avatar{
  width:34px;
  height:34px;
  border-radius:11px;
  font-size:13px;
}
.messages-modal__threads .messenger-thread-card__title{
  font-size:14px;
  line-height:1.15;
}
.messages-modal__threads .messenger-thread-card__meta{
  font-size:11px;
  line-height:1.3;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.messages-modal__threads .messenger-thread-card__time{
  font-size:10px;
}
.messages-modal__threads .messenger-thread-card__snippet{
  display:none;
}
.messages-modal__threads .icon-badge--inline{
  min-width:20px;
  min-height:20px;
  font-size:10px;
}
.messages-modal__threads .messenger-thread-card.is-active{
  border-color:rgba(255,255,255,.08);
  background:rgba(255,255,255,.055);
  box-shadow:none;
}
.messages-modal__threads .messenger-thread-card--request.is-active{
  border-color:rgba(255,255,255,.08);
  background:rgba(255,255,255,.05);
}
.messages-modal__threads .messenger-thread-card:hover{
  transform:none;
  border-color:rgba(255,255,255,.06);
  background:rgba(255,255,255,.038);
}
.messages-modal__threads .messenger-thread-card.is-active:hover{
  border-color:rgba(255,255,255,.09);
  background:rgba(255,255,255,.062);
}
.notifications-modal__dialog{
  width:min(760px,100%);
  border-color:rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(11,16,32,.985), rgba(12,17,34,.99));
  box-shadow:0 28px 72px rgba(0,0,0,.42);
}
.notifications-modal__shell{
  grid-template-columns:220px minmax(0,1fr);
  min-height:min(560px, calc(100vh - 44px));
}
.notifications-modal__nav{
  background:transparent;
  border-right-color:rgba(255,255,255,.045);
  padding:20px 14px;
  gap:12px;
}
.notifications-modal__nav .settings-modal__eyebrow{
  color:#9da7cf;
  font-size:10px;
  letter-spacing:.06em;
}
.notifications-modal__nav .settings-modal__title{
  font-size:20px;
  line-height:1.1;
}
.notifications-modal__nav .panel__sub{
  font-size:13px;
  line-height:1.4;
  color:#a7afcf;
}
.notifications-modal__content{
  grid-template-rows:auto auto minmax(0,1fr);
  background:linear-gradient(180deg, rgba(12,18,38,.08), rgba(12,18,38,0) 18%, rgba(13,18,44,.06));
  padding:24px 24px 22px;
  gap:12px;
}
.notifications-modal__content .panel__title{
  font-size:22px;
  line-height:1.1;
}
.notifications-modal__content .panel__sub{
  font-size:13px;
  line-height:1.4;
  color:#a7afcf;
}
.notifications-modal__body{
  min-height:0;
  display:grid;
  align-content:start;
  gap:10px;
}
.profile-modal__dialog{
  width:min(1060px,100%);
  border-color:rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(11,16,32,.988), rgba(12,17,34,.992));
  box-shadow:0 28px 72px rgba(0,0,0,.42);
}
.profile-modal__shell{
  grid-template-columns:264px minmax(0,1fr);
  min-height:min(700px, calc(100vh - 44px));
}
.profile-modal__nav{
  background:transparent;
  border-right-color:rgba(255,255,255,.045);
  padding:22px 16px;
  gap:14px;
}
.profile-modal__nav .settings-modal__title{
  font-size:22px;
  line-height:1.08;
}
.profile-modal__nav .panel__sub{
  font-size:13px;
  line-height:1.45;
  color:#a7afcf;
}
.profile-modal__identity-card{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.025);
  display:grid;
  gap:12px;
}
.profile-modal__identity-head{
  display:flex;
  align-items:center;
  gap:12px;
}
.profile-modal__avatar{
  width:54px;
  height:54px;
  border-radius:18px;
  overflow:hidden;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.04);
}
.profile-modal__avatar .avatar-image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.profile-modal__identity-copy{
  display:grid;
  gap:4px;
  min-width:0;
}
.profile-modal__name{
  font-size:18px;
  font-weight:800;
  line-height:1.1;
}
.profile-modal__handle,
.profile-modal__status{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.profile-modal__summary{
  display:grid;
  gap:8px;
}
.profile-modal__summary-card{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.022);
  display:grid;
  gap:4px;
}
.profile-modal__summary-label{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.profile-modal__summary-value{
  font-size:14px;
  font-weight:800;
  line-height:1.35;
}
.profile-modal__content{
  grid-template-rows:auto auto minmax(0,1fr);
  background:linear-gradient(180deg, rgba(12,18,38,.08), rgba(12,18,38,0) 18%, rgba(13,18,44,.06));
  padding:24px 24px 22px;
  gap:12px;
}
.profile-modal__content .panel__title{
  font-size:22px;
  line-height:1.1;
}
.profile-modal__content .panel__sub{
  font-size:13px;
  line-height:1.4;
  color:#a7afcf;
}
.profile-modal__body{
  min-height:0;
  overflow:auto;
  display:grid;
  align-content:start;
  gap:14px;
  padding-right:4px;
}
.profile-mobile-hero{
  padding:20px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(110,92,248,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  display:grid;
  gap:14px;
}
.profile-mobile-hero__top{
  display:flex;
  gap:16px;
  align-items:center;
}
.profile-mobile-hero__avatar-wrap{
  position:relative;
  flex:0 0 auto;
}
.profile-mobile-hero__avatar{
  width:88px;
  height:88px;
  border-radius:28px;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 16px 34px rgba(0,0,0,.2);
}
.profile-mobile-hero__avatar .avatar-image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.profile-mobile-hero__status-dot{
  position:absolute;
  right:6px;
  bottom:6px;
  width:14px;
  height:14px;
  border-radius:999px;
  background:#5a6177;
  border:2px solid rgba(11,16,32,.96);
}
.profile-mobile-hero__status-dot.is-online{
  background:#33d17a;
}
.profile-mobile-hero__copy{
  display:grid;
  gap:6px;
  min-width:0;
}
.profile-mobile-hero__name{
  font-size:30px;
  font-weight:900;
  line-height:1;
}
.profile-mobile-hero__meta{
  color:var(--muted);
  font-size:14px;
}
.profile-mobile-hero__facts{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.profile-mobile-hero__bio{
  color:#dbe3ff;
  font-size:16px;
  line-height:1.6;
}
.profile-mobile-hero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.profile-mobile-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.profile-mobile-stats__item{
  min-height:96px;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  display:grid;
  place-items:center;
  text-align:center;
  gap:6px;
}
.profile-mobile-stats__item strong{
  font-size:28px;
  font-weight:900;
  line-height:1;
}
.profile-mobile-stats__item span{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
.profile-modal__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.profile-mobile-panel{
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.028);
  display:grid;
  gap:12px;
}
.profile-mobile-panel--wide{
  grid-column:1 / -1;
}
.profile-mobile-panel__title{
  font-size:18px;
  font-weight:800;
  line-height:1.2;
}
.profile-mobile-panel__text{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.profile-mobile-panel__chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.profile-modal__mini-posts{
  display:grid;
  gap:10px;
}
.profile-modal__empty{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.notification-sheet-card{
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.028);
  display:grid;
  gap:8px;
}
.notification-sheet-card.is-latest{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.1);
}
.notification-sheet-card__top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}
.notification-sheet-card__lead{
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-width:0;
}
.notification-sheet-card__avatar{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  font-size:13px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, rgba(110,92,248,.9), rgba(255,79,158,.86));
}
.notification-sheet-card__copy{
  min-width:0;
  display:grid;
  gap:4px;
}
.notification-sheet-card__title-row{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.notification-sheet-card__title{
  font-size:15px;
  font-weight:800;
  line-height:1.2;
}
.notification-sheet-card__category{
  display:inline-flex;
  min-height:22px;
  align-items:center;
  gap:6px;
  padding:0 8px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#dfe5ff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.02em;
}
.notification-sheet-card__category-icon{
  width:12px;
  height:12px;
  display:inline-flex;
  flex:0 0 auto;
}
.notification-sheet-card__category-icon svg{
  width:12px;
  height:12px;
  display:block;
}
.notification-sheet-card__actor{
  color:#98a5d2;
  font-size:12px;
  font-weight:700;
}
.notification-sheet-card__time{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  white-space:nowrap;
}
.notification-sheet-card__meta{
  color:#aeb6d4;
  font-size:13px;
  line-height:1.45;
}
.notification-sheet-card__actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.notification-sheet-card__actions .ghost-btn{
  min-height:34px;
  padding:0 12px;
  border-radius:12px;
  font-size:12px;
}
.notification-sheet-card__badge{
  display:inline-flex;
  width:max-content;
  min-height:24px;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  color:#fff;
  font-size:11px;
  font-weight:800;
}
.notification-sheet-card.tone-like{
  border-color:rgba(255,111,163,.18);
  background:linear-gradient(180deg, rgba(255,111,163,.08), rgba(255,255,255,.025));
}
.notification-sheet-card.tone-like .notification-sheet-card__avatar,
.notification-sheet-card.tone-like .notification-sheet-card__category{
  background:linear-gradient(135deg, rgba(255,110,160,.92), rgba(255,136,116,.9));
  color:#fff;
}
.notification-sheet-card.tone-reply{
  border-color:rgba(97,157,255,.18);
  background:linear-gradient(180deg, rgba(97,157,255,.08), rgba(255,255,255,.025));
}
.notification-sheet-card.tone-reply .notification-sheet-card__avatar,
.notification-sheet-card.tone-reply .notification-sheet-card__category{
  background:linear-gradient(135deg, rgba(92,138,255,.92), rgba(101,201,255,.9));
  color:#fff;
}
.notification-sheet-card.tone-request{
  border-color:rgba(255,191,92,.2);
  background:linear-gradient(180deg, rgba(255,191,92,.08), rgba(255,255,255,.025));
}
.notification-sheet-card.tone-request .notification-sheet-card__avatar,
.notification-sheet-card.tone-request .notification-sheet-card__category{
  background:linear-gradient(135deg, rgba(255,188,88,.94), rgba(255,140,94,.9));
  color:#fff;
}
.notification-sheet-card.tone-match{
  border-color:rgba(188,110,255,.2);
  background:linear-gradient(180deg, rgba(188,110,255,.09), rgba(255,255,255,.025));
}
.notification-sheet-card.tone-match .notification-sheet-card__avatar,
.notification-sheet-card.tone-match .notification-sheet-card__category{
  background:linear-gradient(135deg, rgba(174,108,255,.94), rgba(255,95,165,.9));
  color:#fff;
}
.notification-sheet-card.tone-info{
  border-color:rgba(255,255,255,.1);
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.022));
}
.notification-sheet-card.tone-info .notification-sheet-card__avatar,
.notification-sheet-card.tone-info .notification-sheet-card__category{
  background:rgba(255,255,255,.09);
  color:#fff;
}
.notification-sheet-card.tone-default .notification-sheet-card__avatar,
.notification-sheet-card.tone-default .notification-sheet-card__category{
  background:linear-gradient(135deg, rgba(110,92,248,.9), rgba(255,79,158,.86));
  color:#fff;
}
.messages-modal__stage .messenger-stage{
  min-height:560px;
  height:100%;
  padding:16px;
  gap:12px;
  border-radius:20px;
  background:rgba(255,255,255,.022);
  border-color:rgba(255,255,255,.07);
  box-shadow:none;
}
.messages-modal__stage .messenger-stage__body{
  min-height:0;
  gap:10px;
}
.messages-modal__stage .messenger-stage__head{
  gap:12px;
  padding-bottom:10px;
}
.messages-modal__stage .messenger-stage__identity{
  gap:10px;
}
.messages-modal__stage .messenger-stage__avatar{
  width:44px;
  height:44px;
  border-radius:16px;
  font-size:16px;
}
.messages-modal__stage .messenger-stage__title{
  font-size:18px;
}
.messages-modal__stage .messenger-stage__meta{
  font-size:13px;
}
.messages-modal__stage .messenger-stage__actions{
  gap:8px;
}
.messages-modal__stage .messenger-stage__actions .ghost-btn{
  min-height:40px;
  padding:0 14px;
  border-radius:14px;
  font-size:14px;
}
.messages-modal__stage .message-bubble{
  max-width:min(340px,68%);
  padding:11px 13px 10px;
  border-radius:18px 18px 18px 8px;
  gap:6px;
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
}
.messages-modal__stage .message-bubble--own{
  border-radius:18px 18px 8px 18px;
  background:linear-gradient(135deg, rgba(116,94,238,.78), rgba(226,79,147,.78));
  box-shadow:none;
}
.messages-modal__stage .message-bubble__text{
  font-size:14px;
  line-height:1.45;
}
.messages-modal__stage .message-bubble__meta{
  font-size:11px;
  gap:8px;
}
.messages-modal__stage .message-bubble__checks{
  font-size:11px;
}
.messages-modal__stage .messenger-stage__composer{
  padding-top:10px;
}
.messages-modal__stage .messenger-composer{
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:10px;
}
.messages-modal__stage .messenger-composer__icon{
  width:40px;
  height:40px;
  border-radius:14px;
  font-size:22px;
  background:rgba(255,255,255,.05);
}
.messages-modal__stage .messenger-composer .settings-input{
  min-height:42px;
  border-radius:14px;
  font-size:14px;
  background:#10172f;
  border-color:rgba(255,255,255,.08);
}
.messages-modal__stage .messenger-composer .primary-btn{
  min-height:42px;
  padding:0 18px;
  border-radius:14px;
  font-size:14px;
  box-shadow:none;
}
.has-modal-open{
  overflow:hidden;
}

@media (max-width: 1080px){
  .hero__content,.content-grid,.social-layout,.desktop-app-grid,.app-shell,.app-actions-grid,.discover-grid,.settings-grid,.app-overview-grid,.social-metrics-grid,.feature-rail,.shop-package-grid,.profile-showcase-grid,.profile-preview-grid,.dating-monetize-grid,.mini-post-grid{display:grid;grid-template-columns:1fr}
  .dating-vibes-toolbar{
    grid-template-columns:1fr;
  }
  .dating-vibes-toolbar__side{
    min-width:0;
  }
  #datingFilterBtn{
    min-height:58px;
    font-size:16px;
  }
  .dating-home-switch{
    gap:8px;
    padding:7px;
  }
  .dating-home-switch__btn{
    min-height:54px;
    font-size:15px;
    padding:0 14px;
  }
  .dating-vibe-composer__head{
    display:grid;
    grid-template-columns:1fr;
  }
  .dating-vibe-composer__body{
    grid-template-columns:1fr;
  }
  .dating-vibe-composer__title{
    font-size:26px;
  }
  .dating-vibe-composer__meta{
    max-width:none;
  }
  .dating-vibes-hero__stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
    min-width:0;
  }
  .dating-gift-modal__grid,
  .dating-boost-modal__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .app-shell--wide{
    grid-template-columns:1fr;
  }
  .app-topbar__left,
  .app-topbar__center,
  .app-topbar__right,
  .app-welcome-panel--hero{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .social-topbar--app{
    grid-template-columns:1fr;
    align-items:stretch;
  }
  .app-left-rail,.app-right-rail{
    position:static;
  }
  .topbar-icon-actions{
    flex-wrap:wrap;
  }
  .workspace-card__stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .story-row{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .messenger-layout{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .story-surface__head,
  .story-surface__footer{
    display:grid;
    grid-template-columns:1fr;
  }
  .settings-modal__shell{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .messages-modal__shell,
  .messages-modal__layout{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .profile-modal__shell,
  .notifications-modal__shell{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .settings-pane,
  .profile-modal__grid,
  .profile-modal__counts{
    grid-template-columns:1fr;
  }
  .profile-mobile-stats{
    grid-template-columns:1fr;
  }
  .profile-mobile-hero__top{
    align-items:flex-start;
  }
}

@media (max-width: 720px){
  .site-shell,.social-shell{padding:14px}
  .hero,.panel,.social-topbar{padding:18px}
  .hero__nav,.social-topbar,.cta-row,.nav-actions,.social-topbar__actions,.composer-box,.post-head,.post-footer,.composer-actions--spread,.reply-card__head,.topbar-icon-actions,.inbox-tabs{flex-direction:column;align-items:stretch}
  .dating-home-switch{
    gap:8px;
    padding:7px;
    border-radius:22px;
  }
  .dating-home-switch__btn{
    min-height:50px;
    font-size:14px;
    padding:0 14px;
  }
  .dating-home-switch__btn-badge{
    margin-left:8px;
    padding:3px 7px;
    font-size:9px;
  }
  .dating-vibes-toolbar{
    padding:14px;
    border-radius:24px;
  }
  .dating-story-rail{
    grid-auto-columns:168px;
    gap:12px;
  }
  .dating-story-pill{
    min-height:196px;
    padding:12px;
    border-radius:24px;
  }
  .dating-story-pill__avatar{
    width:68px;
    height:68px;
    border-radius:24px;
  }
  .dating-story-pill__name{
    font-size:15px;
  }
  .dating-story-pill__excerpt{
    font-size:12px;
  }
  .dating-vibe-composer__head{
    display:grid;
    padding:16px 16px 14px;
  }
  .dating-vibe-composer__title{
    font-size:20px;
  }
  .dating-vibe-composer__meta{
    font-size:12px;
  }
  .dating-vibe-composer__body{
    padding:14px 16px 16px;
    gap:12px;
  }
  .dating-vibe-composer__body textarea{
    min-height:102px;
    padding:14px;
    font-size:15px;
  }
  .dating-vibe-composer__assist-card{
    padding:12px;
    border-radius:16px;
  }
  .dating-vibe-composer__actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .dating-vibe-composer__shop{
    width:100%;
    justify-content:center;
  }
  .dating-vibe-composer__footer-note{
    padding:0 16px 16px;
  }
  .dating-gift-modal__dialog,
  .dating-boost-modal__dialog{
    width:min(100vw - 18px, 760px);
    margin:14px auto;
    padding:18px;
    border-radius:24px;
  }
  .dating-gift-modal__title,
  .dating-boost-modal__title{
    font-size:24px;
  }
  .dating-gift-modal__sub,
  .dating-boost-modal__sub{
    font-size:13px;
  }
  .dating-gift-modal__grid,
  .dating-boost-modal__grid{
    grid-template-columns:1fr;
    gap:12px;
  }
  .dating-gift-offer,
  .dating-boost-offer{
    min-height:132px;
    padding:16px;
    border-radius:20px;
  }
  .dating-gift-offer__title,
  .dating-boost-offer__time{
    font-size:20px;
  }
  .topbar-state,.topbar-tools,.field-grid,.field-grid--single-mobile,.language-switch,.mode-switch{display:grid;grid-template-columns:1fr}
  .locked-info-grid{grid-template-columns:1fr}
  .auth-hero-card h2{font-size:24px}
  .auth-switch{grid-template-columns:1fr}
  .messenger-composer{
    grid-template-columns:1fr;
  }
  .desktop-app-grid{gap:18px}
  .workspace-card h2{font-size:24px}
  .app-topbar__center{
    display:grid;
    grid-template-columns:1fr;
  }
  .app-topbar__left{
    width:100%;
  }
  .app-mode-switch{
    width:100%;
    grid-template-columns:1fr 1fr;
  }
  .app-top-nav-shell{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    gap:6px;
    border-bottom:none;
  }
  .app-top-nav-btn{
    min-width:0;
    min-height:34px;
    padding:0 12px;
    border-radius:12px;
    border-bottom:none;
    background:rgba(255,255,255,.03);
  }
  .app-welcome-panel__stats{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .social-metrics-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .story-row{
    grid-template-columns:1fr;
  }
  .top-quick-menu{
    left:0;
    right:auto;
    width:min(220px, calc(100vw - 40px));
  }
  .bottom-app-nav{
    display:block;
    position:sticky;
    bottom:0;
    margin:18px 0 0;
    padding:12px;
    background:rgba(10,16,33,.94);
    border-top:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
  }
  .bottom-nav-row{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:10px;
  }
  .bottom-nav-btn{
    min-height:54px;
    padding:8px 10px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
    color:var(--text);
    font:inherit;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
  }
  .story-viewer{
    padding:14px;
  }
  .story-surface__content{
    min-height:auto;
    padding:18px;
  }
  .story-surface__body{
    min-height:140px;
    padding:20px;
    font-size:22px;
  }
  .settings-modal{
    padding:10px;
  }
  .settings-modal__content,
  .settings-modal__nav{
    padding:20px 16px;
  }
}
