:root{
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#f3f5f8;
  background:#080a0d;
  color-scheme:dark;
  --bg:#080a0d;
  --panel:#101318;
  --panel-2:#151920;
  --panel-3:#0c0f13;
  --line:#303741;
  --line-strong:#596473;
  --text:#f3f5f8;
  --muted:#98a2b0;
  --accent:#7d93ff;
  --accent-strong:#a9b7ff;
  --success:#66d98f;
  --warning:#f2c35e;
  --danger:#ff7385;
}

*{box-sizing:border-box}
html{background:var(--bg)}
body{
  margin:0;
  min-height:100vh;
  background:
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    var(--bg);
  background-size:32px 32px;
}
button,input,select{font:inherit}
a{color:inherit}
button,input,select,.primary-action,.secondary-action,.action-link,.admin-badge,.profile-badge,#badge{border-radius:0!important}

.auth-page{display:grid;place-items:center;padding:28px}
.auth-shell{
  width:min(1120px,100%);
  display:grid;
  grid-template-columns:1.08fr .92fr;
  border:1px solid var(--line-strong);
  background:var(--panel);
  box-shadow:14px 14px 0 #000;
  overflow:hidden;
}
.brand-panel{
  position:relative;
  min-height:620px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:68px;
  border-right:1px solid var(--line-strong);
  background:
    linear-gradient(135deg,transparent 0 58%,rgba(125,147,255,.12) 58% 60%,transparent 60%),
    #0c1016;
}
.brand-panel::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:96px;
  height:6px;
  background:var(--accent);
}
.brand-mark{
  display:grid;
  place-items:center;
  width:72px;
  height:72px;
  border:1px solid #fff;
  background:#f4f6fa;
  color:#090b0f;
  font-size:2.25rem;
  font-weight:950;
  box-shadow:6px 6px 0 #26304c;
}
.eyebrow{
  margin-bottom:12px;
  color:var(--accent-strong);
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.brand-panel h1,.dashboard h1{
  margin:4px 0 20px;
  font-size:clamp(3rem,8vw,6rem);
  line-height:.92;
  letter-spacing:-.055em;
}
.brand-panel>p:last-child,.dashboard>p,.auth-card>p{color:var(--muted);line-height:1.7}
.auth-card{padding:42px;align-self:center}
.auth-card h2{margin:10px 0;font-size:2rem}
.landing-card{display:flex;min-height:480px;flex-direction:column;justify-content:center}
.auth-actions{display:grid;gap:10px;margin:30px 0}
.primary-action,.secondary-action,.action-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 16px;
  border:1px solid var(--line-strong);
  font-weight:850;
  text-decoration:none;
  transition:background .14s ease,border-color .14s ease,transform .14s ease;
}
.primary-action{background:#f4f6fa;color:#090b0f;border-color:#f4f6fa}
.secondary-action,.action-link{background:#171b22;color:var(--text)}
.primary-action:hover,.secondary-action:hover,.action-link:hover{transform:translate(-2px,-2px);box-shadow:4px 4px 0 #000}
.secondary-action:hover,.action-link:hover{border-color:var(--accent);background:#1a2030}
.fine-print,.auth-switch{font-size:.9rem}
.auth-switch a,.back-link{color:var(--accent-strong)}
.back-link{text-decoration:none;font-weight:800}

form{display:grid;gap:17px;margin-top:30px}
form h2{margin-bottom:0}
form p{margin-top:-8px;color:#929cab;line-height:1.5}
label{display:grid;gap:8px;font-size:.88rem;font-weight:800}
input,select{
  width:100%;
  padding:13px 14px;
  border:1px solid #3b434f;
  background:#090c10;
  color:#fff;
  outline:none;
}
input:focus,select:focus{border-color:var(--accent);box-shadow:inset 4px 0 0 var(--accent)}
.check{grid-template-columns:auto 1fr;align-items:center;color:#a8b0bc;font-weight:500}
.check input{width:17px}
form button,#logout,.access-card button,.decision-actions button,.admin-search-form button,.admin-action-form button,.intention-actions button{
  min-height:44px;
  border:1px solid #f4f6fa;
  padding:12px 16px;
  background:#f4f6fa;
  color:#090b0f;
  font-weight:900;
  cursor:pointer;
}
form button:hover,#logout:hover,.admin-search-form button:hover,.admin-action-form button:hover,.intention-actions button:hover{transform:translate(-2px,-2px);box-shadow:4px 4px 0 #000}
button:disabled{cursor:not-allowed;opacity:.5;transform:none!important;box-shadow:none!important}
#message,#access-message,#admin-message,#intentions-message,#owner-setup-message{min-height:24px;padding:10px 0}
.error{color:#ff9aaa}
.success{color:#82e6a5}
.optional{color:#8d96a4;font-size:.75rem;font-weight:650}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:66px;
  padding:14px clamp(20px,5vw,64px);
  border-bottom:1px solid var(--line-strong);
  background:#090b0f;
}
header>strong{font-size:1.08rem;letter-spacing:.03em;text-transform:uppercase}
header div{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.header-link{
  padding:9px 11px;
  border:1px solid transparent;
  color:#c8d0dd;
  font-size:.87rem;
  font-weight:800;
  text-decoration:none;
}
.header-link:hover{border-color:var(--line-strong);background:#151920;color:#fff}
#badge,.profile-badge,.admin-badge{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 9px;
  border:1px solid #705726;
  background:#251d10;
  color:#ffd985;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
#logout{min-height:38px;padding:8px 12px;border-color:#3c4552;background:#20252e;color:#fff}

.dashboard{width:min(1220px,calc(100% - 40px));margin:auto;padding:64px 0 84px}
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:14px;margin-top:46px}
.grid article{
  position:relative;
  grid-column:span 4;
  min-height:220px;
  padding:24px;
  border:1px solid var(--line);
  background:var(--panel);
}
.grid article::before{
  content:"";
  position:absolute;
  top:-1px;
  left:-1px;
  width:42px;
  height:3px;
  background:var(--accent);
}
.grid article:hover{border-color:var(--line-strong);background:var(--panel-2)}
.grid small,.request-card small{color:var(--accent-strong);font-weight:900;text-transform:uppercase;letter-spacing:.12em}
.grid h2,.request-card h2{margin:18px 0 10px}
.grid p,.request-card p{color:var(--muted);line-height:1.6}
.compact-form{margin-top:18px;gap:10px}
.compact-form button{justify-self:start;padding:10px 13px}
.compact-form+p{min-height:20px;margin:12px 0 0}
.action-link{margin-top:12px;padding:9px 12px;background:#1b2028}

.profile-page{padding-top:48px}
.profile-hero{
  display:flex;
  align-items:center;
  gap:26px;
  padding:28px;
  border:1px solid var(--line-strong);
  background:var(--panel);
  box-shadow:8px 8px 0 #000;
}
.profile-avatar{
  display:grid;
  place-items:center;
  width:96px;
  height:96px;
  flex:0 0 auto;
  border:1px solid #fff;
  background:#f4f6fa;
  color:#090b0f;
  font-size:2.8rem;
  font-weight:950;
}
.profile-hero h1{margin:8px 0;font-size:clamp(2.7rem,7vw,5.5rem)}
.profile-hero p{margin:0;color:#9ba6b6;font-size:1.1rem}
.profile-grid{margin-top:20px}

.intentions-page h1{max-width:960px}
.intentions-form{margin-top:0}
.intention-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:40px 0 8px}
.intention-card{
  position:relative;
  display:block;
  min-height:220px;
  padding:24px;
  border:1px solid var(--line);
  background:var(--panel);
  cursor:pointer;
  transition:border-color .14s ease,background .14s ease,transform .14s ease;
}
.intention-card:hover{transform:translate(-2px,-2px);border-color:var(--line-strong);box-shadow:5px 5px 0 #000}
.intention-card.selected{border-color:var(--accent);background:#121827;box-shadow:inset 5px 0 0 var(--accent)}
.intention-card.already-selected{border-color:#37754d;background:#101b14;box-shadow:inset 5px 0 0 var(--success);cursor:default}
.intention-card.already-selected:hover{transform:none;box-shadow:inset 5px 0 0 var(--success)}
.intention-card>input{position:absolute;opacity:0;pointer-events:none}
.intention-card-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
.intention-marker{color:#9da9ba;font-size:.73rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.intention-card.selected .intention-marker{color:#c4cdff}
.intention-card.already-selected .intention-marker{color:#9ff0c1}
.intention-check{display:grid;place-items:center;width:28px;height:28px;border:1px solid #4b5564;color:#fff;font-weight:900}
.intention-card.selected .intention-check{border-color:var(--accent);background:var(--accent);color:#090b0f}
.intention-card.already-selected .intention-check{border-color:#3d875c;background:#286342}
.intention-card h2{margin:32px 0 10px;font-size:1.65rem}
.intention-card p{margin:0;color:var(--muted);line-height:1.65}
.intention-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:8px}

.admin-page h1{max-width:1000px}
.admin-summary{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;margin:36px 0 16px}
.admin-summary article,.admin-panel{
  padding:22px;
  border:1px solid var(--line);
  background:var(--panel);
}
.admin-summary article{border-top:3px solid var(--accent)}
.admin-summary small{display:block;color:var(--accent-strong);font-weight:900;text-transform:uppercase;letter-spacing:.1em}
.admin-summary strong{display:block;margin-top:10px;font-size:2rem}
.admin-owner-summary{margin:0 0 26px!important}
.admin-search-panel{margin-bottom:16px}
.admin-search-form{display:grid;grid-template-columns:minmax(0,1fr) 210px auto;align-items:end;gap:10px;margin:0}
.admin-user-list{display:grid;gap:8px}
.admin-user-row{
  display:grid;
  grid-template-columns:minmax(220px,1.1fr) minmax(240px,1.5fr) auto;
  align-items:center;
  gap:18px;
  padding:18px 20px;
  border:1px solid var(--line);
  background:#10141a;
  text-decoration:none;
  transition:border-color .14s ease,background .14s ease,transform .14s ease;
}
.admin-user-row:hover{border-color:var(--accent);background:#151a23;transform:translateX(3px)}
.admin-user-identity{display:grid;gap:5px;min-width:0}
.admin-user-identity strong{font-size:1.08rem}
.admin-user-identity span,.admin-user-joined{color:#98a3b3;font-size:.86rem;overflow-wrap:anywhere}
.admin-user-joined{text-align:right}
.admin-user-badges,.admin-tag-list{display:flex;gap:5px;flex-wrap:wrap;align-items:center}
.admin-badge{border-color:#3c4655;background:#15191f;color:#b8c1cf;text-transform:uppercase}
.admin-badge.owner{border-color:#8a6726;background:#2a2010;color:#ffe095}
.admin-badge.admin{border-color:#66528f;background:#221a36;color:#d7c5ff}
.admin-badge.verified,.admin-badge.active{border-color:#286342;background:#12291c;color:#9ff0c1}
.admin-badge.unverified{border-color:#705726;background:#251d10;color:#ffd985}
.admin-badge.suspended,.admin-badge.disabled{border-color:#74313c;background:#30151a;color:#ffabb6}
.admin-badge.private{border-color:#40547c;background:#151f36;color:#b8c8ff}
.admin-badge.neutral{background:#171c25}
.admin-detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:30px}
.admin-panel h2{margin:0 0 10px}
.admin-panel h3{margin:26px 0 10px}
.admin-panel>p{color:#98a3b3;line-height:1.6}
.admin-details-list{display:grid;gap:12px;margin:22px 0}
.admin-details-list div{display:grid;gap:5px;padding-bottom:10px;border-bottom:1px solid #242a32}
.admin-details-list dt{color:#8d98a8;font-size:.75rem;font-weight:900;text-transform:uppercase;letter-spacing:.09em}
.admin-details-list dd{margin:0;overflow-wrap:anywhere}
.admin-action-form{margin-top:18px}
.admin-check-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;padding:0;border:0}
.admin-check-option{grid-template-columns:auto 1fr;align-items:center;padding:11px;border:1px solid #343d4b;background:#0b0e13}
.admin-check-option input{width:18px}
.admin-audit-panel{margin-top:12px}
.admin-audit-list{display:grid;gap:8px;margin-top:18px}
.admin-audit-list article{padding:15px;border:1px solid #303947;background:#0c1016}
.admin-audit-list article>div{display:flex;justify-content:space-between;gap:15px}
.admin-audit-list time,.admin-audit-list p{color:#8f9aaa;font-size:.82rem}
.admin-audit-list p{margin:8px 0 0}
.admin-audit-list pre{overflow:auto;margin:12px 0 0;padding:12px;border:1px solid #252b34;background:#07090d;color:#b7c0cf;font-size:.78rem}
.owner-setup-panel{max-width:700px;margin-top:36px;border-left:4px solid var(--accent)}
.owner-setup-panel h2{font-size:1.8rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

@media(max-width:900px){
  .admin-summary{grid-template-columns:repeat(2,minmax(0,1fr))}
  .admin-user-row{grid-template-columns:1fr}
  .admin-user-joined{text-align:left}
  .admin-detail-grid{grid-template-columns:1fr}
  .admin-search-form{grid-template-columns:1fr}
}

@media(max-width:800px){
  .auth-shell{grid-template-columns:1fr;box-shadow:8px 8px 0 #000}
  .brand-panel{min-height:auto;padding:40px 30px;border-right:0;border-bottom:1px solid var(--line-strong)}
  .auth-card{padding:28px}
  .grid article{grid-column:span 12}
  .intention-grid{grid-template-columns:1fr}
  .profile-hero{align-items:flex-start}
  .profile-avatar{width:72px;height:72px;font-size:2rem}
  header{align-items:flex-start;gap:12px;flex-direction:column}
  .admin-check-grid{grid-template-columns:1fr}
}


body.modal-open{overflow:hidden}
.onboarding-overlay{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:24px;background:rgba(3,5,8,.88);backdrop-filter:blur(3px)}
.onboarding-dialog{width:min(980px,100%);max-height:calc(100vh - 48px);overflow:auto;padding:34px;border:1px solid var(--line-strong);background:#0d1015;box-shadow:14px 14px 0 #000}
.onboarding-heading{display:flex;justify-content:space-between;gap:20px;padding-bottom:14px;border-bottom:1px solid var(--line);color:var(--accent-strong);font-size:.75rem;font-weight:950;letter-spacing:.15em}
.onboarding-dialog h2{margin:26px 0 10px;font-size:clamp(2.2rem,6vw,4.4rem);line-height:.95;letter-spacing:-.045em}
.onboarding-dialog>p{color:var(--muted);line-height:1.65}
.onboarding-dialog form{margin-top:26px}
.onboarding-choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.onboarding-choice{position:relative;display:block;min-height:155px;padding:20px;border:1px solid var(--line);background:var(--panel);cursor:pointer;transition:transform .14s ease,border-color .14s ease,background .14s ease}
.onboarding-choice:hover{transform:translate(-2px,-2px);border-color:var(--line-strong);box-shadow:5px 5px 0 #000}
.onboarding-choice.selected{border-color:var(--accent);background:#121827;box-shadow:inset 5px 0 0 var(--accent)}
.onboarding-choice input{position:absolute;opacity:0;pointer-events:none}
.onboarding-choice-marker{display:block;color:#98a4b5;font-size:.7rem;font-weight:950;letter-spacing:.13em;text-transform:uppercase}
.onboarding-choice.selected .onboarding-choice-marker{color:var(--accent-strong)}
.onboarding-choice strong{display:block;margin:20px 0 8px;font-size:1.35rem}
.onboarding-choice p{margin:0;color:var(--muted);font-weight:500;line-height:1.5}
#onboarding-message{min-height:28px;margin:12px 0 0;padding:0}
.settings-page>h1{max-width:900px}
.settings-grid{display:grid;gap:16px;margin-top:38px}
.settings-panel{position:relative;padding:28px;border:1px solid var(--line-strong);background:var(--panel)}
.settings-panel::before{content:"";position:absolute;top:-1px;left:-1px;width:70px;height:4px;background:var(--accent)}
.settings-number{color:var(--accent-strong);font-size:.75rem;font-weight:950;letter-spacing:.16em}
.settings-panel h2{margin:16px 0 8px;font-size:2rem}
.settings-panel>p{color:var(--muted);line-height:1.6}
.settings-panel form{margin-top:24px}
@media(max-width:800px){.onboarding-dialog{padding:24px}.onboarding-choice-grid{grid-template-columns:1fr}.onboarding-choice{min-height:135px}}

.global-site-header{position:sticky;top:0;z-index:80;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:18px;min-height:72px;padding:7px clamp(14px,3vw,34px);border-bottom:1px solid #303946;background:rgba(8,11,15,.94);backdrop-filter:blur(18px)}
.global-site-brand{display:flex;align-items:center;gap:8px;color:#fff;text-decoration:none;white-space:nowrap;min-width:150px}.global-site-brand img{display:block;width:164px;height:56px;object-fit:contain;object-position:left center}.global-site-brand-title{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.global-site-brand small{font-size:.68rem;letter-spacing:.16em;color:#73b8ff}
.global-site-nav{display:flex;align-items:center;gap:5px;min-width:0;overflow:visible}.global-site-nav .header-link{padding:9px 11px;border-radius:10px;white-space:nowrap;text-decoration:none}.global-site-nav>a.header-link.active,.global-extras-menu.active>summary,.global-extras-menu[open]>summary{background:#1c2633;color:#fff}
.global-extras-menu{position:relative}.global-extras-menu>summary{display:flex;align-items:center;gap:6px;list-style:none;cursor:pointer}.global-extras-menu>summary::-webkit-details-marker{display:none}.global-extras-menu>summary::after{content:'▾';font-size:.72em;color:#8ea0b4;transition:transform .16s ease}.global-extras-menu[open]>summary::after{transform:rotate(180deg)}.global-extras-panel{position:absolute;top:calc(100% + 10px);left:0;z-index:120;display:grid;min-width:280px;padding:8px;border:1px solid #354253;border-radius:14px;background:#0d131b;box-shadow:0 20px 55px rgba(0,0,0,.48)}.global-extras-link{display:grid;gap:3px;padding:12px;border-radius:10px;color:#e8eef7;text-decoration:none}.global-extras-link:hover,.global-extras-link.active{background:#182333}.global-extras-link small{color:#94a2b3;font-size:.74rem;font-weight:400}
.global-header-actions{display:flex;align-items:center;justify-content:flex-end;gap:8px}.global-account-badge{padding:6px 9px;border:1px solid #3a4655;border-radius:999px;color:#cbd5e1;font-size:.78rem;white-space:nowrap}.global-header-notice{max-width:240px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#ffd98a;font-size:.78rem}.global-header-compat{display:none!important}
.admin-global-tabs{position:sticky;top:72px;z-index:70;display:flex;gap:6px;padding:9px clamp(14px,3vw,34px);overflow-x:auto;border-bottom:1px solid #303946;background:#0d1219}.admin-global-tabs a{padding:9px 12px;border:1px solid transparent;border-radius:9px;color:#aeb8c5;text-decoration:none;white-space:nowrap}.admin-global-tabs a:hover,.admin-global-tabs a.active{border-color:#40506a;background:#172131;color:#fff}
@media(max-width:1000px){.global-site-header{grid-template-columns:1fr auto;gap:8px}.global-site-nav{grid-column:1/-1;grid-row:2;overflow-x:auto;overflow-y:visible;scrollbar-width:none}.global-site-nav::-webkit-scrollbar{display:none}.global-header-actions{grid-column:2;grid-row:1}.global-account-badge,.global-header-notice{display:none}.admin-global-tabs{top:116px}.global-site-brand img{width:145px;height:48px}.global-extras-panel{position:fixed;top:112px;left:12px;right:12px;min-width:0}}
@media(max-width:560px){.global-site-header{padding:6px 10px}.global-site-brand img{width:125px;height:42px}.global-site-nav .header-link{padding:8px 9px;font-size:.84rem}.global-header-actions>button strong{display:none}.admin-global-tabs{top:106px;padding:7px 10px}.global-extras-panel{top:104px;left:8px;right:8px}}
.auth-page .brand-panel .brand-mark{width:min(100%,300px)!important;height:116px!important;border:0!important;border-radius:0!important;background:transparent url('/grev-dad-logo.svg') left center/contain no-repeat!important;box-shadow:none!important;color:transparent!important;text-indent:-9999px!important;overflow:hidden!important}

.global-notification-button{position:relative;min-height:38px;padding:8px 10px;border:1px solid var(--line-strong);border-radius:0;background:#171c23;color:var(--text);font-weight:850;cursor:pointer}.global-notification-button b{position:absolute;top:-8px;right:-8px;display:grid;place-items:center;min-width:20px;height:20px;padding:0 5px;border:2px solid #090c10;border-radius:999px;background:#e84f61;color:#fff;font-size:.58rem}.global-notification-dialog{width:min(680px,calc(100vw - 24px));max-height:calc(100dvh - 28px);margin:auto;padding:0;border:1px solid var(--line-strong);border-radius:0;background:#0b0f14;color:var(--text);box-shadow:10px 10px 0 #000;overflow:hidden}.global-notification-dialog[open]{display:grid;grid-template-rows:auto auto minmax(0,1fr) auto}.global-notification-dialog::backdrop{background:rgba(3,5,8,.72);backdrop-filter:blur(3px)}.global-notification-dialog>header{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:16px;border-bottom:1px solid var(--line-strong)}.global-notification-dialog h2{margin:3px 0 4px}.global-notification-dialog header p{margin:0;color:var(--muted);font-size:.7rem}.global-notification-dialog button{min-height:34px;padding:7px 9px;border:1px solid var(--line-strong);border-radius:0;background:#171c23;color:var(--text);font-size:.66rem;font-weight:900;cursor:pointer}.global-notification-toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 16px;border-bottom:1px solid var(--line);background:#0d141d}.global-notification-toolbar span{color:var(--muted);font-size:.68rem}.global-notification-list{display:grid;gap:7px;min-height:0;padding:12px 16px;overflow-y:auto}.global-notification-list article{display:grid;gap:8px;padding:11px;border:1px solid var(--line);background:#111720}.global-notification-list article.unread{border-left:4px solid var(--accent-strong)}.global-notification-list article>div:first-child{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}.global-notification-list article>div:first-child>div:first-child{display:grid;gap:2px}.global-notification-list strong{font-size:.74rem}.global-notification-list span{color:var(--muted);font-size:.6rem}.global-notification-list p{margin:0;font-size:.7rem;line-height:1.45}.global-notification-list a{justify-self:start;color:var(--accent-strong);font-size:.66rem;font-weight:900}.global-notification-open-all{display:grid;place-items:center;min-height:42px;border-top:1px solid var(--line-strong);background:#eef3fa;color:#080b10;font-size:.7rem;font-weight:950;text-decoration:none}.global-notification-empty{margin:0;padding:22px;border:1px dashed var(--line-strong);color:var(--muted);text-align:center}.site-profile-trigger{min-height:28px!important;padding:5px 7px!important;border:1px solid var(--line-strong)!important;border-radius:0!important;background:#111720!important;color:var(--accent-strong)!important;font-size:.58rem!important;font-weight:900!important;cursor:pointer!important}.admin-user-identity .site-profile-trigger{justify-self:start;margin-top:4px}.notification-actor{justify-self:start}@media(max-width:600px){.global-notification-button>span{display:none}.global-notification-dialog{width:calc(100vw - 16px);max-height:calc(100dvh - 16px);box-shadow:6px 6px 0 #000}.global-notification-toolbar{align-items:flex-start;flex-direction:column}.global-notification-toolbar button{width:100%}}

/* Canonical Grev.dad profile-card contract.
   All profile cards use the same DOM structure and globally locked geometry.
   Members may change content and styling, but no surface may change the card shape. */
.profile-card-loading-shell{display:grid;place-items:center;min-height:260px;border:1px solid #394657;background:#11161d;color:#aeb7c3}
.profile-card{
  --profile-card-primary:#11161d;
  --profile-card-secondary:#3157c9;
  --profile-card-angle:135deg;
  --profile-card-text:#f4f7fb;
  --profile-card-border:#526074;
  --profile-card-cover-height:180px;
  --profile-card-avatar-size:132px;
  --profile-card-padding:28px;
  --profile-card-border-width:1px;
  --profile-card-avatar-overlap:calc(var(--profile-card-avatar-size) * .38);
  position:relative;
  display:flex;
  width:100%;
  min-width:0;
  max-width:none;
  flex-direction:column;
  box-sizing:border-box;
  border:var(--profile-card-border-width) solid var(--profile-card-border);
  border-radius:0;
  background:linear-gradient(var(--profile-card-angle),var(--profile-card-primary),var(--profile-card-secondary));
  color:var(--profile-card-text);
  box-shadow:10px 10px 0 #000;
  overflow:hidden;
  isolation:isolate;
}
.profile-card::before{content:"";position:absolute;z-index:5;top:0;left:0;width:110px;height:5px;background:var(--profile-card-text);pointer-events:none}
.profile-card[data-card-shadow="none"]{box-shadow:none}
.profile-card[data-card-shadow="small"]{box-shadow:5px 5px 0 #000}
.profile-card[data-card-shadow="large"]{box-shadow:10px 10px 0 #000}
.profile-card[data-card-surface="cover"]::after{content:"";position:absolute;z-index:0;inset:0;background:rgba(0,0,0,.4);pointer-events:none}
.profile-card>.profile-card-cover,.profile-card>.profile-card-main,.profile-card>.profile-card-tile-area{position:relative;z-index:2}
.profile-card-cover{display:block;width:100%;height:var(--profile-card-cover-height);min-height:var(--profile-card-cover-height);flex:0 0 var(--profile-card-cover-height);box-sizing:border-box;border-bottom:1px solid color-mix(in srgb,var(--profile-card-border) 85%,transparent);background-position:center;background-size:cover;background-repeat:no-repeat}
.profile-card-cover:not(.has-media){background:linear-gradient(115deg,color-mix(in srgb,var(--profile-card-primary) 78%,#000),color-mix(in srgb,var(--profile-card-secondary) 70%,#000))}
.profile-card[data-card-surface="cover"]>.profile-card-cover{background:transparent!important}
.profile-card-main{display:grid;min-width:0;grid-template-columns:var(--profile-card-avatar-size) minmax(0,1fr);align-items:start;gap:clamp(14px,2vw,22px);padding:0 var(--profile-card-padding) var(--profile-card-padding);box-sizing:border-box}
.profile-card-avatar{position:relative;z-index:4;display:grid;place-items:center;width:var(--profile-card-avatar-size);height:var(--profile-card-avatar-size);min-width:var(--profile-card-avatar-size);min-height:var(--profile-card-avatar-size);margin-top:calc(var(--profile-card-avatar-overlap) * -1);box-sizing:border-box;border:4px solid var(--profile-card-primary);outline:1px solid var(--profile-card-border);background-color:var(--profile-card-primary);background-image:linear-gradient(135deg,var(--profile-card-secondary),var(--profile-card-primary));background-position:center;background-size:contain;background-repeat:no-repeat;color:var(--profile-card-text);font-size:calc(var(--profile-card-avatar-size) * .2);font-weight:950;line-height:1;letter-spacing:-.08em;overflow:hidden}
.profile-card[data-card-cover-visible="false"] .profile-card-avatar,.profile-card[data-card-cover-height="0"] .profile-card-avatar,.profile-card:has(>.profile-card-cover[hidden]) .profile-card-avatar{margin-top:var(--profile-card-padding)}
.profile-card[data-card-avatar-visible="false"] .profile-card-main,.profile-card-main:has(>.profile-card-avatar[hidden]){grid-template-columns:minmax(0,1fr)}
.profile-card[data-card-avatar-visible="false"] .profile-card-avatar{display:none!important}
.profile-card-identity{min-width:0;padding-top:22px}
.profile-card[data-card-cover-visible="false"] .profile-card-identity,.profile-card[data-card-cover-height="0"] .profile-card-identity,.profile-card:has(>.profile-card-cover[hidden]) .profile-card-identity{padding-top:var(--profile-card-padding)}
.profile-card-name-row{display:flex;min-width:0;align-items:flex-start;justify-content:space-between;gap:18px}
.profile-card-name-row>div{min-width:0}
.profile-card-name-row h2{margin:0;font-size:clamp(2rem,5vw,4.8rem);line-height:.92;letter-spacing:-.055em;overflow-wrap:anywhere}
.profile-card-name-row p{margin:9px 0 0;color:color-mix(in srgb,var(--profile-card-text) 72%,transparent);font-weight:800;overflow-wrap:anywhere}
.profile-card-status{flex:0 0 auto;padding:7px 10px;border:1px solid color-mix(in srgb,var(--profile-card-text) 48%,transparent);background:color-mix(in srgb,var(--profile-card-primary) 76%,transparent);font-size:.72rem;font-weight:950;letter-spacing:.08em;text-transform:uppercase}
.profile-card-headline{margin:20px 0 0;font-size:clamp(1.05rem,2.4vw,1.55rem);font-weight:900;line-height:1.3;overflow-wrap:anywhere}
.profile-card-bio{max-width:900px;margin:13px 0 0;color:color-mix(in srgb,var(--profile-card-text) 82%,transparent);font-size:1rem;line-height:1.65;white-space:pre-wrap;overflow-wrap:anywhere}
.profile-card-meta{display:flex;gap:10px 18px;flex-wrap:wrap;margin-top:20px;color:color-mix(in srgb,var(--profile-card-text) 72%,transparent);font-size:.82rem;font-weight:800}
.profile-card-meta a{color:inherit;overflow-wrap:anywhere}
.profile-card-tile-area{padding:0 var(--profile-card-padding) var(--profile-card-padding)}
@media(max-width:700px){.profile-card:not(.profile-card-scale-source){--profile-card-padding:16px;--profile-card-cover-height:132px;--profile-card-avatar-size:96px;--profile-card-avatar-overlap:36px}.profile-card:not(.profile-card-scale-source) .profile-card-main{grid-template-columns:var(--profile-card-avatar-size) minmax(0,1fr);gap:13px}.profile-card:not(.profile-card-scale-source) .profile-card-main:has(>.profile-card-avatar[hidden]){grid-template-columns:minmax(0,1fr)}.profile-card:not(.profile-card-scale-source) .profile-card-identity{padding-top:15px}.profile-card:not(.profile-card-scale-source) .profile-card-name-row{align-items:flex-start;flex-direction:column;gap:9px}.profile-card:not(.profile-card-scale-source) .profile-card-name-row h2{font-size:clamp(1.7rem,8vw,2.8rem)}.profile-card:not(.profile-card-scale-source) .profile-card-status{align-self:flex-start}}
@media(max-width:460px){.profile-card:not(.profile-card-scale-source) .profile-card-main{grid-template-columns:1fr;padding-top:0}.profile-card:not(.profile-card-scale-source) .profile-card-avatar{margin-top:calc(var(--profile-card-avatar-overlap) * -1)}.profile-card:not(.profile-card-scale-source)[data-card-cover-visible="false"] .profile-card-avatar,.profile-card:not(.profile-card-scale-source)[data-card-cover-height="0"] .profile-card-avatar,.profile-card:not(.profile-card-scale-source):has(>.profile-card-cover[hidden]) .profile-card-avatar{margin-top:var(--profile-card-padding)}.profile-card:not(.profile-card-scale-source) .profile-card-identity{padding-top:0}.profile-card:not(.profile-card-scale-source)[data-card-cover-visible="false"] .profile-card-identity,.profile-card:not(.profile-card-scale-source)[data-card-cover-height="0"] .profile-card-identity,.profile-card:not(.profile-card-scale-source):has(>.profile-card-cover[hidden]) .profile-card-identity{padding-top:0}}
.profile-card-tile-area{position:relative;z-index:3;padding:0 28px 28px}
.profile-card-tile-area[hidden]{display:none!important}
.profile-card-tile-grid{--profile-card-tile-gap:10px;--profile-card-tile-row:92px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));grid-auto-rows:var(--profile-card-tile-row);gap:var(--profile-card-tile-gap);min-height:0;padding-top:18px;border-top:1px solid color-mix(in srgb,var(--profile-card-border) 76%,transparent)}
.profile-card-mini-tile{container-type:size;position:relative;display:flex;min-width:0;min-height:0;height:100%;overflow:hidden;border:1px solid var(--card-tile-border,#394657);background:var(--card-tile-background,#11161d);color:var(--card-tile-text,#f4f7fb);font-family:var(--card-tile-font,Inter,Segoe UI,Arial,sans-serif);text-decoration:none;box-sizing:border-box}
.profile-card-mini-tile::before{content:"";position:absolute;z-index:1;inset:0;background:var(--card-tile-overlay,transparent);pointer-events:none}
.profile-card-mini-tile::after{content:"";position:absolute;z-index:3;top:-1px;left:-1px;width:34px;height:3px;background:var(--card-tile-text,#f4f7fb)}
.profile-card-mini-tile:hover{border-color:color-mix(in srgb,var(--card-tile-border,#394657) 55%,#fff);transform:translateY(-1px)}
.profile-card-mini-content{position:relative;z-index:2;display:grid;grid-template-rows:auto minmax(0,1fr);gap:8px;width:100%;min-width:0;padding:12px;box-sizing:border-box}
.profile-card-mini-head{display:flex;align-items:flex-start;gap:9px;min-width:0}
.profile-card-mini-icon{display:grid;place-items:center;width:34px;height:34px;flex:0 0 auto;border:1px solid var(--card-icon-border,#667181);background:var(--card-icon-background,#f3f5f8);background-position:center;background-repeat:no-repeat;background-size:var(--card-icon-fit,cover);color:var(--card-icon-text,#090b0f);font-size:.72rem;font-weight:950;letter-spacing:-.04em}
.profile-card-mini-title-wrap{min-width:0}
.profile-card-mini-kind{display:block;color:color-mix(in srgb,var(--card-tile-text,#f4f7fb) 64%,transparent);font-size:.54rem;font-weight:950;letter-spacing:.09em;text-transform:uppercase}
.profile-card-mini-title{display:block;margin-top:3px;font-size:clamp(.78rem,2.2cqw,1.08rem);line-height:1.03;overflow-wrap:anywhere}
.profile-card-mini-description{align-self:end;margin:0;color:color-mix(in srgb,var(--card-tile-text,#f4f7fb) 72%,transparent);font-size:clamp(.63rem,1.6cqw,.78rem);line-height:1.35;overflow:hidden}
.profile-card-mini-media{position:relative;z-index:2;display:flex;width:100%;min-width:0;flex-direction:column;justify-content:flex-end;align-items:flex-start;gap:7px;padding:12px;box-sizing:border-box}
.profile-card-mini-media-icon{display:grid;place-items:center;min-width:30px;min-height:30px;padding:5px;border:1px solid currentColor;background:rgba(0,0,0,.3);font-weight:950}
.profile-card-mini-media-title{max-width:100%;font-size:clamp(.82rem,3cqw,1.35rem);line-height:1.02;overflow-wrap:anywhere;text-shadow:0 2px 10px rgba(0,0,0,.75)}
.profile-card-mini-placeholder{margin:auto;align-self:center;padding:6px 8px;border:1px dashed currentColor;background:rgba(0,0,0,.4);font-size:.58rem;font-weight:950;letter-spacing:.08em;text-align:center;text-transform:uppercase}
.profile-card-mini-tile[data-overlay="light"] .profile-card-mini-media-title{color:#090b0f;text-shadow:0 1px 8px rgba(255,255,255,.7)}
.profile-card-mini-tile.card-editing{cursor:grab;box-shadow:3px 3px 0 rgba(0,0,0,.6)}
.profile-card-mini-tile.card-editing:active{cursor:grabbing}
.profile-card-mini-tile.card-selected{outline:2px solid #dce7ff;outline-offset:-3px}
.profile-card-mini-edit-strip{position:absolute;z-index:7;top:0;right:0;display:flex}
.profile-card-mini-settings{min-height:24px!important;padding:3px 7px!important;border:0!important;background:#1d2633!important;color:#dce7ff!important;font-size:.56rem!important;letter-spacing:.08em!important;text-transform:uppercase!important;cursor:pointer!important}
.profile-card-mini-resize{position:absolute;z-index:8;right:0;bottom:0;width:25px;height:25px;border:1px solid #7586a2;background:#1d2633;cursor:nwse-resize}
.profile-card-mini-resize::before{content:"";position:absolute;right:4px;bottom:4px;width:10px;height:10px;border-right:2px solid #dce7ff;border-bottom:2px solid #dce7ff}
.profile-card-tile-editor{display:grid;gap:12px;margin-top:16px;padding:14px;border:1px solid var(--line);background:#0e131a}
.profile-card-tile-editor-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:16px}
.profile-card-tile-editor-heading h3{margin:3px 0 0;font-size:1.25rem}
.profile-card-tile-editor-heading p{margin:0;color:var(--muted);font-size:.78rem;line-height:1.4}
.profile-card-tile-editor-heading strong{padding:6px 8px;border:1px solid var(--line);background:#11161d;color:var(--accent-strong);font-size:.68rem;text-transform:uppercase;letter-spacing:.08em}
.profile-card-tile-add{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}
.profile-card-tile-add button{display:grid;gap:4px;min-height:58px;padding:9px 10px;border:1px solid var(--line-strong);background:#171c23;color:var(--text);text-align:left;cursor:pointer}
.profile-card-tile-add button span{color:var(--muted);font-size:.68rem;line-height:1.35}
.profile-card-tile-add button:disabled{opacity:.38;cursor:not-allowed}
.profile-card-tile-editor-message{min-height:18px;margin:0;color:var(--muted);font-size:.76rem}
.profile-card-tile-editor-message.error{color:var(--danger)}
.profile-card-tile-editor-message.success{color:var(--success)}
.card-tile-dialog-section{display:grid;gap:10px;padding:14px;border:1px solid var(--line);background:#0e131a}
.card-tile-dialog-section h3{margin:0;padding-bottom:7px;border-bottom:1px solid var(--line);font-size:1.05rem}
.card-tile-two{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
.card-tile-three{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}
.card-tile-four{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px}
.card-tile-dialog-section label{display:grid;gap:6px;font-size:.73rem}
.card-tile-dialog-section input,.card-tile-dialog-section textarea,.card-tile-dialog-section select{width:100%;box-sizing:border-box}
.card-tile-upload{display:grid;gap:7px;padding:10px;border:1px dashed #536174;background:#10161e}
.card-tile-upload span{color:var(--muted);font-size:.7rem}
.card-tile-move{display:grid;grid-template-columns:repeat(4,38px);gap:4px}
.card-tile-move button{min-height:38px!important;padding:4px!important}
.card-tile-media-actions{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap}
.card-tile-danger{border-color:#6e3540!important;color:#ff9aaa!important}
@container (max-width:170px){.profile-card-mini-content{padding:9px}.profile-card-mini-icon{width:28px;height:28px}.profile-card-mini-description{display:none}.profile-card-mini-kind{display:none}}
@media(max-width:900px){.profile-card-tile-area{padding:0 16px 20px}.profile-card-tile-grid{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:min(42vw,150px)}.profile-card-mini-tile{grid-column:auto/span var(--card-mobile-width,1)!important;grid-row:auto/span var(--card-mobile-height,1)!important}.profile-card-mini-tile.card-editing{pointer-events:none;cursor:default}.profile-card-mini-settings{pointer-events:auto}.profile-card-mini-resize{display:none}.profile-card-tile-add{grid-template-columns:repeat(2,minmax(0,1fr))}.profile-card-tile-editor-heading{align-items:flex-start;flex-direction:column}.card-tile-four{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:560px){.profile-card-tile-add,.card-tile-two,.card-tile-three,.card-tile-four{grid-template-columns:1fr}.profile-card-mini-content,.profile-card-mini-media{padding:9px}}

/* One locked Grev.dad profile-card shape. Content and colours may differ; geometry may not. */
.profile-card[data-profile-card-contract="profile-card-baseline-v2"]{--profile-card-cover-height:180px!important;--profile-card-avatar-size:132px!important;--profile-card-padding:28px!important;--profile-card-border-width:1px!important;--profile-card-tile-gap-custom:10px!important;--profile-card-tile-row-custom:92px!important;width:min(100%,900px)!important;max-width:900px!important;aspect-ratio:3/2!important;min-height:0!important;max-height:none!important;margin-right:auto!important;margin-left:0!important;overflow:hidden!important;container-type:inline-size}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"]>.profile-card-cover{height:180px!important;min-height:180px!important;flex:0 0 180px!important}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"]>.profile-card-main{min-height:220px!important;max-height:220px!important;flex:0 0 220px!important;overflow:visible!important}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-identity{max-height:220px;overflow:hidden}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-name-row h2{max-height:1.9em;font-size:clamp(2.4rem,6cqw,3.7rem);line-height:.95;overflow:hidden}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-headline{max-height:2.6em;overflow:hidden}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-bio{max-height:4.95em;overflow:hidden}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-tile-area{min-height:172px!important;max-height:172px!important;flex:0 0 172px!important;padding:0 28px 28px!important;overflow:hidden!important}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-tile-grid{--profile-card-tile-gap:10px!important;--profile-card-tile-row:92px!important;gap:10px!important;grid-auto-rows:92px!important}
body:not(.profile-unified-editing) .profile-card[data-profile-card-contract="profile-card-baseline-v2"][data-card-tile-count="0"] .profile-card-tile-area{display:block!important;visibility:hidden!important}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-mini-tile{isolation:isolate}
.profile-card[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-mini-tile:focus-visible{outline:3px solid currentColor;outline-offset:2px}
.profile-card-scale-frame{position:relative;width:100%;min-width:0;min-height:1px;aspect-ratio:3/2;overflow:hidden;opacity:0;transition:opacity .12s linear}
.profile-card-scale-frame[data-scale-ready="true"]{opacity:1}
.profile-card-scale-frame>.profile-card-scale-source{position:absolute;top:0;left:0;width:900px!important;max-width:none!important;height:600px!important;min-height:600px!important;max-height:600px!important;aspect-ratio:3/2!important;overflow:hidden!important;transform-origin:top left!important}
.profile-card-shape-lock-note{margin:0;padding:10px 11px;border-left:3px solid var(--accent-strong);background:#0a0f15;color:var(--muted);font-size:.72rem;line-height:1.45}
@media(max-width:560px){
  .profile-card:not(.profile-card-scale-source)[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-tile-grid{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:92px!important}
  .profile-card:not(.profile-card-scale-source)[data-profile-card-contract="profile-card-baseline-v2"] .profile-card-mini-tile{grid-column:auto/span var(--card-mobile-width,1)!important;grid-row:auto/span var(--card-mobile-height,1)!important}
}
.global-profile-card-popover{width:min(920px,calc(100vw - 24px));max-height:calc(100vh - 28px);margin:auto;padding:0;border:1px solid var(--line-strong);border-radius:0;background:#0b0f14;color:var(--text);box-shadow:10px 10px 0 #000;overflow:auto}.global-profile-card-popover::backdrop{background:rgba(3,5,8,.66);backdrop-filter:blur(2px)}.global-profile-card-shell{position:relative;display:grid;gap:12px;padding:16px}.global-profile-card-close{position:sticky;z-index:20;top:10px;justify-self:end;min-height:34px;margin-bottom:-46px;padding:7px 9px;border:1px solid rgba(255,255,255,.45);border-radius:0;background:rgba(8,12,17,.92);color:#f4f7fb;font-size:.68rem;font-weight:900;cursor:pointer}.global-profile-card-host{min-width:0}.global-profile-card-frame{width:100%}.global-profile-card-loading{display:grid;place-items:center;min-height:240px;border:1px solid var(--line-strong);background:#11161d;color:var(--muted);font-weight:800}.global-profile-card-open{display:grid;place-items:center;min-height:42px;border:1px solid #eef3fa;background:#eef3fa;color:#080b10;font-size:.75rem;font-weight:950;text-decoration:none}.global-profile-card-message{min-height:0;margin:0;color:#ff9393;font-size:.7rem}.dashboard-profile-card[data-profile-user-id],#profile-card[data-profile-user-id],.profile-guestbook-author[data-profile-user-id]{cursor:pointer}@media(max-width:500px){.global-profile-card-popover{width:calc(100vw - 16px);max-height:calc(100vh - 16px);box-shadow:6px 6px 0 #000}.global-profile-card-shell{padding:10px}.global-profile-card-close{top:6px}}

.grev-chat-launcher{position:relative;display:inline-flex;align-items:center;gap:7px;min-height:38px;padding:8px 11px;border:1px solid var(--line-strong,#394657);border-radius:0;background:#151b23;color:var(--text,#f4f7fb);font-weight:900;cursor:pointer}.grev-chat-launcher b,.grev-chat-dock b{display:grid;place-items:center;min-width:20px;height:20px;padding:0 5px;border-radius:999px;background:#dc3b53;color:#fff;font-size:.62rem}.grev-chat-panel{position:fixed;z-index:1200;right:18px;bottom:18px;width:min(920px,calc(100vw - 36px));height:min(680px,calc(100dvh - 36px));border:1px solid var(--line-strong,#394657);background:#090d12;color:var(--text,#f4f7fb);box-shadow:12px 12px 0 rgba(0,0,0,.45);overflow:hidden}.grev-chat-panel[hidden]{display:none}.grev-chat-header{display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:58px;padding:10px 14px;border-bottom:1px solid var(--line-strong,#394657);background:#0e141c}.grev-chat-header>div:first-child{display:grid;gap:2px}.grev-chat-header span{color:var(--muted,#9aa6b5);font-size:.62rem;text-transform:uppercase;letter-spacing:.08em}.grev-chat-header strong{font-size:1rem}.grev-chat-header>div:last-child{display:flex;gap:6px}.grev-chat-header button,.grev-chat-room-heading button{min-width:38px;min-height:36px;border:1px solid var(--line-strong,#394657);border-radius:0;background:#171e27;color:var(--text,#f4f7fb);font-weight:900;cursor:pointer}.grev-chat-body{display:grid;grid-template-columns:270px minmax(0,1fr);height:calc(100% - 58px)}.grev-chat-body>aside{display:grid;grid-template-rows:auto minmax(0,1fr);min-width:0;border-right:1px solid var(--line-strong,#394657);background:#0b1016}.grev-chat-room-heading{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:10px;border-bottom:1px solid var(--line,#263140)}.grev-chat-room-heading strong{font-size:.78rem}.grev-chat-room-heading button{min-height:32px;font-size:.62rem}.grev-chat-rooms{display:grid;align-content:start;gap:5px;min-height:0;padding:8px;overflow-y:auto}.grev-chat-room{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:9px;min-width:0;padding:9px;border:1px solid transparent;border-radius:0;background:#101720;color:var(--text,#f4f7fb);text-align:left;cursor:pointer}.grev-chat-room:hover,.grev-chat-room.active{border-color:var(--line-strong,#394657);background:#18222f}.grev-chat-room>span:nth-child(2){display:grid;min-width:0;gap:2px}.grev-chat-room strong,.grev-chat-room small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.grev-chat-room strong{font-size:.72rem}.grev-chat-room small{color:var(--muted,#9aa6b5);font-size:.59rem}.grev-chat-room>b{display:grid;place-items:center;min-width:20px;height:20px;border-radius:999px;background:#dc3b53;font-size:.6rem}.grev-chat-room-avatar,.grev-chat-profile-avatar,.grev-chat-message-avatar,.grev-chat-hover-avatar{display:grid;place-items:center;flex:none;background:#263444 center/cover no-repeat;color:#fff;font-weight:950}.grev-chat-room-avatar{width:36px;height:36px}.grev-chat-room-avatar.symbolic{font-size:1rem}.grev-chat-body>main{display:grid;grid-template-rows:auto minmax(0,1fr) auto;min-width:0;min-height:0}.grev-chat-profile{min-height:78px;padding:10px 12px;border-bottom:1px solid var(--line,#263140);background:#0d131b}.grev-chat-person-card{display:grid;grid-template-columns:auto minmax(0,1fr) minmax(150px,.7fr);align-items:center;gap:12px;width:100%;padding:0;border:0;background:none;color:inherit;text-align:left;cursor:pointer}.grev-chat-profile-avatar{width:54px;height:54px}.grev-chat-person-card>div:nth-child(2){display:grid;gap:2px;min-width:0}.grev-chat-person-card strong,.grev-chat-person-card span,.grev-chat-person-card small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.grev-chat-person-card span,.grev-chat-person-card small{color:var(--muted,#9aa6b5);font-size:.65rem}.grev-chat-shared-card{display:flex;align-items:center;gap:12px}.grev-chat-shared-card>span{font-size:2rem}.grev-chat-shared-card>div{display:grid;gap:3px}.grev-chat-shared-card small{color:var(--muted,#9aa6b5)}.chat-xp{display:grid;gap:5px}.chat-xp>div{display:flex;align-items:center;justify-content:space-between;gap:8px}.chat-xp strong,.chat-xp span{font-size:.62rem}.chat-xp span{color:var(--muted,#9aa6b5)}.chat-xp>i{display:block;height:8px;border:1px solid #384657;background:#080b10}.chat-xp>i>b{display:block;height:100%;background:linear-gradient(90deg,#5b7cff,#b257ff)}.grev-chat-messages{display:grid;align-content:start;gap:10px;min-height:0;padding:12px;overflow-y:auto;background:#070a0e}.grev-chat-empty{margin:auto;color:var(--muted,#9aa6b5);font-size:.75rem}.grev-chat-message{display:grid;grid-template-columns:170px minmax(0,1fr);gap:10px;padding:9px;border:1px solid #202b38;background:#0d131b}.grev-chat-message.own{border-color:#384e70;background:#101a29}.grev-chat-sender{display:flex;align-items:flex-start;gap:8px;padding:0;border:0;background:none;color:inherit;text-align:left;cursor:pointer}.grev-chat-message-avatar{width:34px;height:34px}.grev-chat-sender>span:last-child{display:grid;min-width:0;gap:2px}.grev-chat-sender strong{font-size:.68rem}.grev-chat-sender small{color:var(--muted,#9aa6b5);font-size:.55rem;line-height:1.35}.grev-chat-message-body{display:grid;gap:6px;min-width:0}.grev-chat-message-body p{margin:0;font-size:.78rem;line-height:1.5;white-space:pre-wrap;overflow-wrap:anywhere}.grev-chat-message-body img{display:block;max-width:min(360px,100%);max-height:280px;object-fit:contain;border:1px solid #344154;background:#020304}.grev-chat-message-body time{color:var(--muted,#9aa6b5);font-size:.56rem}.grev-chat-form{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px;padding:10px;border-top:1px solid var(--line-strong,#394657);background:#0e141c}.grev-chat-form textarea,.grev-chat-gif-tools input{min-width:0;border:1px solid var(--line-strong,#394657);border-radius:0;background:#080c11;color:var(--text,#f4f7fb);padding:9px;font:inherit}.grev-chat-form>div{display:flex;align-items:flex-end;gap:6px}.grev-chat-form button{min-height:42px;padding:9px 12px;border:1px solid var(--line-strong,#394657);border-radius:0;background:#171e27;color:var(--text,#f4f7fb);font-weight:900;cursor:pointer}.grev-chat-form button.primary{border-color:#eef3fa;background:#eef3fa;color:#080b10}.grev-chat-form>[data-chat-status]{grid-column:1/-1;min-height:16px;margin:0;color:var(--muted,#9aa6b5);font-size:.62rem}.grev-chat-form>[data-chat-status].error{color:#ff9099}.grev-chat-gif-tools{grid-column:1/-1;display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;align-items:center!important}.grev-chat-gif-tools[hidden]{display:none!important}.grev-chat-gif-tools label{display:flex;align-items:center;gap:6px;padding:8px;border:1px solid var(--line-strong,#394657);font-size:.65rem;font-weight:900}.grev-chat-gif-tools input[type=file]{max-width:170px}.grev-chat-dock{position:fixed;z-index:1199;right:18px;bottom:18px;display:flex;align-items:center;gap:8px;min-height:46px;padding:10px 14px;border:1px solid var(--line-strong,#394657);border-radius:0;background:#111925;color:var(--text,#f4f7fb);box-shadow:7px 7px 0 #000;font-weight:900;cursor:pointer}.grev-chat-dock[hidden]{display:none}.grev-chat-hover-card{position:fixed;z-index:1300;display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:9px;width:250px;padding:10px;border:1px solid var(--line-strong,#394657);background:#111923;color:var(--text,#f4f7fb);box-shadow:5px 5px 0 #000;pointer-events:none}.grev-chat-hover-card[hidden]{display:none}.grev-chat-hover-avatar{width:42px;height:42px}.grev-chat-hover-card>div{display:grid;gap:2px;min-width:0}.grev-chat-hover-card span,.grev-chat-hover-card small{color:var(--muted,#9aa6b5);font-size:.62rem}.global-profile-card-message-button{min-height:42px;border:1px solid var(--line-strong,#394657);border-radius:0;background:#171e27;color:var(--text,#f4f7fb);font-weight:950;cursor:pointer}.global-profile-card-xp{display:grid}.dashboard-chat-tile{display:grid;align-content:start;gap:10px}.dashboard-chat-tile-icon{font-size:1.2rem}.dashboard-chat-tile-list{display:grid;gap:6px}.dashboard-chat-tile-list button{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:2px 8px;padding:7px;border:1px solid color-mix(in srgb,var(--tile-custom-border,#394657) 55%,transparent);background:transparent;color:inherit;text-align:left;cursor:pointer}.dashboard-chat-tile-list button strong,.dashboard-chat-tile-list button span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dashboard-chat-tile-list button strong{font-size:.68rem}.dashboard-chat-tile-list button span{grid-column:1;color:inherit;opacity:.72;font-size:.58rem}.dashboard-chat-tile-list button b{grid-column:2;grid-row:1/3;align-self:center}.dashboard-chat-tile-list p{margin:0;color:inherit;opacity:.7;font-size:.68rem}.dashboard-achievement-tile{display:grid;align-content:center;gap:9px}.dashboard-achievement-tile>[data-achievement-level]{font-size:1.2rem}.dashboard-achievement-progress{height:10px;border:1px solid currentColor}.dashboard-achievement-progress i{display:block;height:100%;background:currentColor}.dashboard-achievement-tile p{margin:0;font-size:.68rem}.profile-achievements{display:grid;gap:16px;margin-top:var(--profile-section-gap,32px);padding:18px;border:1px solid var(--line-strong,#394657);background:#0b1016;color:var(--profile-page-text,var(--text,#f4f7fb));box-shadow:8px 8px 0 rgba(0,0,0,.32)}.profile-achievements h2{margin:3px 0 5px}.profile-achievements header p{margin:0;color:var(--muted,#9aa6b5);font-size:.75rem}.profile-achievement-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.profile-achievement{display:grid;grid-template-columns:auto minmax(0,1fr);gap:10px;padding:11px;border:1px solid var(--line-strong,#394657);background:#111720}.profile-achievement.locked{opacity:.5;filter:grayscale(1)}.profile-achievement img{width:64px;height:64px;object-fit:contain}.profile-achievement>div{display:grid;align-content:center;gap:4px}.profile-achievement p{margin:0;color:var(--muted,#9aa6b5);font-size:.65rem;line-height:1.4}.profile-achievement span{font-size:.62rem;font-weight:850}.profile-achievements>[data-profile-level] .chat-xp{max-width:520px}.profile-achievements>[data-profile-level] .chat-xp>i{height:12px}@media(max-width:800px){.grev-chat-panel{right:8px;bottom:8px;width:calc(100vw - 16px);height:calc(100dvh - 16px);box-shadow:5px 5px 0 #000}.grev-chat-body{grid-template-columns:1fr}.grev-chat-body>aside{position:absolute;z-index:2;left:0;top:58px;bottom:0;width:min(280px,82vw);transform:translateX(-100%);transition:transform .18s}.grev-chat-panel:not(.room-open) .grev-chat-body>aside{transform:translateX(0)}.grev-chat-person-card{grid-template-columns:auto minmax(0,1fr)}.grev-chat-person-card>.chat-xp{grid-column:1/-1}.grev-chat-message{grid-template-columns:1fr}.grev-chat-sender{align-items:center}.profile-achievement-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:500px){.grev-chat-launcher strong{display:none}.grev-chat-profile{min-height:70px}.grev-chat-form{grid-template-columns:1fr}.grev-chat-form>div{justify-content:flex-end}.grev-chat-gif-tools{grid-template-columns:1fr!important}.profile-achievement-grid{grid-template-columns:1fr}.profile-achievement img{width:54px;height:54px}}
.grev-chat-tabs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px;padding:10px;border-bottom:1px solid #303946;background:#0c1118}.grev-chat-tabs button{position:relative;display:flex;align-items:center;justify-content:center;gap:5px;min-width:0;max-width:100%;overflow:hidden;padding:8px 6px;border:1px solid #344052;border-radius:9px;background:#141b24;color:#aeb8c5;font-size:.72rem}.grev-chat-tabs button>span{display:block;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.grev-chat-tabs button.active{border-color:#5c8cd6;background:#1b2a3f;color:#fff}.grev-chat-tabs button b{flex:none;min-width:18px;padding:2px 5px;border-radius:999px;background:#d94d5c;color:#fff;font-size:.66rem}.grev-chat-tab-empty{max-width:100%;padding:18px 12px;color:#8d98a7;font-size:.82rem;line-height:1.45;overflow-wrap:anywhere}.grev-chat-header>div:last-child{gap:2px}.grev-chat-header button,.grev-chat-room-heading button{display:grid;place-items:center;width:30px;min-width:30px;height:30px;min-height:30px;padding:0;border-color:transparent;background:transparent;color:#8d98a7;box-shadow:none;opacity:.26;transition:opacity .15s ease,background .15s ease,color .15s ease,border-color .15s ease}.grev-chat-panel:hover .grev-chat-header button,.grev-chat-panel:hover .grev-chat-room-heading button{opacity:.48}.grev-chat-header button:hover,.grev-chat-header button:focus-visible,.grev-chat-room-heading button:hover,.grev-chat-room-heading button:focus-visible{border-color:#344052;background:#151d27;color:#f4f7fb;opacity:1;outline:none}.grev-chat-header button[data-chat-close]:hover,.grev-chat-header button[data-chat-close]:focus-visible{border-color:#7c3540;background:#2b151b;color:#ff9aa3}.grev-chat-room-heading button{font-size:0}.grev-chat-room-heading button::before{content:'↻';font-size:.92rem;line-height:1}.grev-chat-room-heading{min-width:0}.grev-chat-room-heading strong{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media(hover:none){.grev-chat-header button,.grev-chat-room-heading button{opacity:.58}}
#beta-feedback-button{position:fixed;z-index:1180;left:18px;bottom:18px;min-height:38px;padding:8px 12px;border:1px solid var(--line-strong,#394657);border-radius:999px;background:rgba(12,17,24,.88);color:var(--text,#f4f7fb);box-shadow:5px 5px 0 rgba(0,0,0,.42);font-size:.7rem;font-weight:900;backdrop-filter:blur(10px);cursor:pointer}#beta-feedback-button:hover,#beta-feedback-button:focus-visible{background:#eef3fa;color:#080b10}#beta-site-banner{position:fixed;z-index:1175;left:50%;bottom:18px;display:flex;align-items:center;gap:10px;max-width:min(760px,calc(100vw - 300px));padding:8px 10px;border:1px solid #755d22;background:rgba(35,29,12,.94);color:#f7e5a9;box-shadow:5px 5px 0 rgba(0,0,0,.38);font-size:.68rem;backdrop-filter:blur(10px);transform:translateX(-50%)}#beta-site-banner strong{font-size:.62rem;letter-spacing:.08em;white-space:nowrap}#beta-site-banner span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#beta-site-banner button{padding:5px 8px;border:1px solid #9a7a2d;background:transparent;color:inherit;font-weight:900;cursor:pointer}#beta-feedback-dialog{width:min(720px,calc(100vw - 24px));max-height:calc(100dvh - 24px);margin:auto;padding:0;border:1px solid var(--line-strong,#394657);border-radius:0;background:#0b1016;color:var(--text,#f4f7fb);box-shadow:12px 12px 0 rgba(0,0,0,.55);overflow:auto}#beta-feedback-dialog::backdrop{background:rgba(2,4,7,.78)}#beta-feedback-dialog form{display:grid;gap:13px;padding:18px}#beta-feedback-dialog header,#beta-feedback-dialog footer{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}#beta-feedback-dialog header h2{margin:.2rem 0}#beta-feedback-dialog header p{margin:.25rem 0;color:var(--muted,#9aa6b5)}#beta-feedback-dialog label{display:grid;gap:6px;font-size:.72rem;font-weight:850}#beta-feedback-dialog input,#beta-feedback-dialog textarea,#beta-feedback-dialog select{width:100%;box-sizing:border-box;border:1px solid var(--line-strong,#394657);border-radius:0;background:#080c11;color:inherit;padding:10px;font:inherit}#beta-feedback-dialog button{min-height:36px;padding:8px 11px;border:1px solid var(--line-strong,#394657);border-radius:0;background:#171e27;color:inherit;font-weight:900;cursor:pointer}#beta-feedback-dialog button.primary{background:#eef3fa;color:#080b10}.feedback-file small{color:var(--muted,#9aa6b5);font-weight:500}#beta-feedback-dialog details{padding:10px;border:1px solid var(--line,#263140);background:#080c11}#beta-feedback-dialog pre,.feedback-report-card pre{max-height:260px;margin:8px 0 0;padding:9px;overflow:auto;background:#05070a;color:#b9c4d2;font-size:.62rem;white-space:pre-wrap;overflow-wrap:anywhere}#beta-feedback-dialog [role=status]{min-height:18px;margin:0}.success{color:#7ce5a5!important}.error{color:#ff9199!important}.feedback-release-summary{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;margin:14px 0}.feedback-release-summary article{display:grid;gap:6px;min-width:0;padding:15px;border:1px solid #303b4b;background:#101720}.feedback-release-summary small{color:#95a3b4}.feedback-release-summary strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.feedback-release-settings{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-bottom:16px}.feedback-release-settings label{display:grid;gap:6px}.feedback-release-settings .full{grid-column:1/-1}.feedback-release-settings textarea{resize:vertical}.feedback-admin-filters{display:flex;gap:10px;align-items:end;margin:16px 0}.feedback-admin-filters label{display:grid;gap:5px;min-width:190px}.feedback-admin-list{display:grid;gap:12px}.feedback-report-card{display:grid;gap:12px;padding:16px;border:1px solid #303b4b;border-left-width:5px;background:#0f151d}.feedback-report-card.severity-low{border-left-color:#5e7d9a}.feedback-report-card.severity-medium{border-left-color:#d1a84a}.feedback-report-card.severity-high{border-left-color:#df7a43}.feedback-report-card.severity-critical{border-left-color:#df4458}.feedback-report-card>header{display:flex;justify-content:space-between;gap:14px}.feedback-report-card h3{margin:.2rem 0}.feedback-report-card header span,.feedback-report-card header small{color:#99a6b6;font-size:.66rem}.feedback-report-card>p{margin:0;line-height:1.55;white-space:pre-wrap;overflow-wrap:anywhere}.feedback-report-card details{padding:10px;border:1px solid #273342;background:#090d12}.feedback-report-card details p{white-space:pre-wrap}.feedback-report-card img{display:block;max-width:100%;max-height:520px;object-fit:contain;border:1px solid #394657}.feedback-report-controls{display:grid;grid-template-columns:180px 180px minmax(0,1fr) auto;gap:10px;align-items:end}.feedback-report-controls label{display:grid;gap:5px}.feedback-report-controls .full{grid-column:3}.feedback-report-controls textarea{width:100%;box-sizing:border-box}.feedback-report-controls span{font-size:.68rem}@media(max-width:900px){#beta-site-banner{left:12px;right:12px;bottom:64px;max-width:none;transform:none}.feedback-release-summary{grid-template-columns:repeat(2,minmax(0,1fr))}.feedback-report-controls{grid-template-columns:1fr 1fr}.feedback-report-controls .full{grid-column:1/-1}.feedback-report-controls button{grid-column:1/-1}}@media(max-width:600px){#beta-feedback-button{left:10px;bottom:10px}#beta-site-banner{left:10px;right:10px;bottom:58px}.feedback-release-settings,.feedback-release-summary{grid-template-columns:1fr}.feedback-release-settings .full{grid-column:1}.feedback-admin-filters{align-items:stretch;flex-direction:column}.feedback-admin-filters label{min-width:0}.feedback-report-card>header{flex-direction:column}.feedback-report-controls{grid-template-columns:1fr}.feedback-report-controls .full,.feedback-report-controls button{grid-column:1}}