/* ===================== SALES JOBS — WOW 2026 UI (FINAL) ===================== */
:root{
  --bg0:#070A1A;
  --bg1:#0A1028;
  --card: rgba(255,255,255,.07);
  --card2: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.12);
  --text:#F3F6FF;
  --muted: rgba(243,246,255,.72);

  --a:#6D28D9;        /* violet */
  --b:#22C55E;        /* green */
  --c:#06B6D4;        /* cyan */
  --d:#FB7185;        /* pink */
  --e:#F59E0B;        /* amber */

  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --shadow2: 0 12px 30px rgba(0,0,0,.35);
  --r: 18px;
  --r2: 26px;

  --max: 1120px;

  /* iOS safe area */
  --safeB: env(safe-area-inset-bottom, 0px);
  --safeT: env(safe-area-inset-top, 0px);
}

/* Reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 900px at 20% -10%, rgba(109,40,217,.35), transparent 60%),
              radial-gradient(1000px 800px at 110% 0%, rgba(6,182,212,.30), transparent 55%),
              radial-gradient(1100px 900px at 60% 120%, rgba(34,197,94,.22), transparent 60%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Smooth scroll inside webviews */
*{
  -webkit-tap-highlight-color: transparent;
}
a, button{
  touch-action: manipulation;
}

/* Background layers */
.bg-aurora{
  position:fixed; inset:-20%;
  background:
    radial-gradient(closest-side at 20% 30%, rgba(251,113,133,.28), transparent 55%),
    radial-gradient(closest-side at 70% 20%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(closest-side at 80% 80%, rgba(109,40,217,.30), transparent 55%),
    radial-gradient(closest-side at 30% 85%, rgba(6,182,212,.22), transparent 60%);
  filter: blur(28px) saturate(125%);
  opacity:.85;
  z-index:-3;
  animation: aurora 10s ease-in-out infinite alternate;
}
@keyframes aurora{
  0%{transform: translate3d(0,0,0) scale(1)}
  100%{transform: translate3d(2.2%, -1.8%, 0) scale(1.04)}
}
.bg-grid{
  position:fixed; inset:0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px) 0 0/ 36px 36px,
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0/ 36px 36px;
  mask-image: radial-gradient(700px 420px at 50% 25%, rgba(0,0,0,.85), transparent 70%);
  opacity:.35;
  z-index:-2;
}

/* App layout */
.app{
  min-height:100%;
  padding-bottom: calc(86px + var(--safeB)); /* bottom nav + safe area */
}
.main{
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 14px 30px;
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(7,10,26,.72), rgba(7,10,26,.38));
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: calc(10px + var(--safeT)) 12px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  border:0;
  background:transparent;
  color:var(--text);
  cursor:pointer;
  padding: 6px 8px;
  border-radius: 16px;
  transition: transform .15s ease, background .15s ease;
}
.brand:hover{ background: rgba(255,255,255,.06) }
.brand:active{ transform: scale(.985) }

.brandLogoWrap{
  width:44px; height:44px;
  border-radius: 16px;
  position:relative;
  box-shadow: 0 12px 25px rgba(0,0,0,.35);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 58%),
    linear-gradient(135deg, rgba(109,40,217,.95), rgba(6,182,212,.75));
  border:1px solid rgba(255,255,255,.18);
  transform: translateZ(0);
}
.brandLogo{
  width:100%; height:100%;
  border-radius: 16px;
  object-fit: cover;
  display:block;
}
.logoFallback{
  width:100%; height:100%;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:.5px;
}
.brandText{ line-height:1.05 }
.brandTitle{
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .4px;
  text-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.brandSub{
  font-size: 12px;
  color: var(--muted);
}

.topActions{
  display:flex;
  gap:8px;
  align-items:center;
}
.iconBtn, .chipBtn{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 14px;
  cursor:pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: transform .14s ease, background .14s ease, border .14s ease;
}
.iconBtn{
  width:42px; height:42px;
  display:grid;
  place-items:center;
}
.iconBtn:hover, .chipBtn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}
.iconBtn:active, .chipBtn:active{ transform: scale(.98) }

.chipBtn{
  height:42px;
  padding: 0 12px;
  display:flex;
  align-items:center;
  gap:8px;
}
.chipDot{
  width:10px; height:10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.8), rgba(255,255,255,.2));
  box-shadow:
    0 0 0 2px rgba(109,40,217,.45),
    0 0 22px rgba(109,40,217,.55);
}
.ico{ opacity:.95 }

/* Tabs */
.tabs{
  display:flex;
  gap:10px;
  padding: 14px 4px 10px;
}
.tab{
  flex:1;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 18px;
  padding: 12px 12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight: 800;
  letter-spacing:.2px;
  box-shadow: var(--shadow2);
  transition: transform .14s ease, background .14s ease, border .14s ease;
}
.tabIco{ filter: drop-shadow(0 10px 20px rgba(0,0,0,.35)); }
.tab:hover{ background: rgba(255,255,255,.09) }
.tab:active{ transform: scale(.99) }
.tab.active{
  border-color: rgba(255,255,255,.22);
  background:
    radial-gradient(circle at 30% 20%, rgba(109,40,217,.35), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(6,182,212,.25), transparent 55%),
    rgba(255,255,255,.08);
}

/* Views */
.view{ display:none; padding: 8px 2px 14px; }
.view.view-active{ display:block; }

.viewHead{
  padding: 4px 6px 10px;
}
.viewTitle{
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .2px;
  text-shadow: 0 14px 35px rgba(0,0,0,.5);
}
.viewHint{
  margin-top:6px;
  font-size: 13px;
  color: var(--muted);
}

/* Toolbar */
.feedToolbar{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap: wrap;
  padding: 10px 4px 14px;
}
.segmented{
  display:flex;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.seg{
  border:0;
  background:transparent;
  color: var(--muted);
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 850;
  transition: background .14s ease, color .14s ease;
}
.seg.active{
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(109,40,217,.85), rgba(6,182,212,.55));
}
.seg:hover{ color: var(--text) }

.searchWrap{
  flex:1;
  min-width: 220px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 0 12px;
  height: 44px;
  box-shadow: var(--shadow2);
}
.searchIco{ opacity:.85 }
.search{
  width:100%;
  background:transparent;
  border:0;
  outline:none;
  color: var(--text);
  font-size: 14px;
}
.search::placeholder{ color: rgba(243,246,255,.55) }

/* Cards Grid */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 6px 4px 10px;
}

/* Post Card */
.pCard{
  position:relative;
  border-radius: var(--r2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(500px 220px at 10% 0%, rgba(109,40,217,.18), transparent 55%),
    radial-gradient(520px 240px at 110% 40%, rgba(6,182,212,.14), transparent 55%),
    rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  transition: transform .16s ease, border .16s ease, background .16s ease;
}
.pCard:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.20);
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(251,113,133,.14), transparent 60%),
    radial-gradient(520px 260px at 110% 10%, rgba(34,197,94,.12), transparent 60%),
    rgba(255,255,255,.07);
}
.pTopTag{
  position:absolute;
  top:12px; left:12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing:.2px;
  font-size: 12px;
  background: linear-gradient(135deg, rgba(245,158,11,.95), rgba(251,113,133,.85));
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
}
.pInner{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px;
  align-items: stretch;
}
.pPhoto{
  width:92px; height:92px;
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.16), transparent 55%),
    linear-gradient(135deg, rgba(109,40,217,.65), rgba(6,182,212,.35));
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  overflow:hidden;
  transform: translateZ(0);
}
.pPhoto img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
}
.pBody{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:8px;
}
.pTitle{
  font-size: 15px;
  font-weight: 950;
  letter-spacing:.15px;
  line-height:1.15;
}
.pCompany{
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
  margin-top:3px;
}

.pMeta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 4px;
}
.pSalary{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  background: rgba(34,197,94,.16);
  border:1px solid rgba(34,197,94,.35);
  color: rgba(223,255,235,.95);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.pPill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(243,246,255,.95);
}

.pContact{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 2px;
  color: rgba(243,246,255,.86);
  font-weight: 750;
  font-size: 12px;
}
.pContact a{
  color: rgba(243,246,255,.95);
  text-decoration:none;
  border-bottom: 1px dashed rgba(255,255,255,.25);
}
.pContact a:hover{ border-bottom-color: rgba(255,255,255,.6) }

/* Buttons */
.btnPrimary, .btnGhost, .btnSmall, .btnDanger{
  border:0;
  cursor:pointer;
  font-weight: 950;
  letter-spacing:.15px;
  border-radius: 18px;
  transition: transform .14s ease, filter .14s ease, background .14s ease, border .14s ease;
  position:relative;
  overflow:hidden;
}
.btnPrimary{
  width:100%;
  padding: 14px 14px;
  color: white;
  background:
    radial-gradient(circle at 30% 0%, rgba(255,255,255,.20), transparent 55%),
    linear-gradient(135deg, rgba(109,40,217,1), rgba(6,182,212,.75));
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.18);
}
.btnPrimary:hover{ filter: brightness(1.05) }
.btnPrimary:active{ transform: scale(.99) }

.btnGhost{
  width:100%;
  padding: 12px 14px;
  color: rgba(243,246,255,.92);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
}
.btnGhost:hover{ background: rgba(255,255,255,.09) }
.btnGhost:active{ transform: scale(.99) }

.btnSmall{
  width:100%;
  padding: 12px 12px;
  color: rgba(243,246,255,.95);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
}
.btnSmall:hover{ background: rgba(255,255,255,.10) }
.btnSmall:active{ transform: scale(.99) }

.btnDanger{
  width:100%;
  padding: 12px 12px;
  color: white;
  background: linear-gradient(135deg, rgba(244,63,94,.95), rgba(245,158,11,.85));
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.15);
}
.btnDanger:active{ transform: scale(.99) }

/* Focus ring (keyboard) */
:focus-visible{
  outline: 2px solid rgba(6,182,212,.45);
  outline-offset: 2px;
  border-radius: 14px;
}

/* Spark shine on primary */
.spark{
  position:absolute;
  inset:-200% -30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(10deg);
  animation: shine 2.8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shine{
  0%{ transform: translateX(-40%) rotate(10deg) }
  100%{ transform: translateX(40%) rotate(10deg) }
}

/* Form */
.card{
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  margin: 10px 4px 0;
}
.card.glass{
  background:
    radial-gradient(520px 260px at 0% 0%, rgba(109,40,217,.16), transparent 60%),
    radial-gradient(520px 260px at 110% 20%, rgba(6,182,212,.12), transparent 60%),
    rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.card.dark{
  background:
    radial-gradient(520px 260px at 0% 0%, rgba(251,113,133,.10), transparent 60%),
    radial-gradient(520px 260px at 110% 20%, rgba(245,158,11,.10), transparent 60%),
    rgba(8,10,26,.50);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.cardHead{
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cardTitle{
  font-size: 15px;
  font-weight: 950;
  letter-spacing:.15px;
}
.cardSub{
  margin-top:6px;
  color: var(--muted);
  font-size: 12.5px;
}

.form{ padding: 12px 14px 14px; }
.row{ margin-bottom: 12px; }
.row.two{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.label{
  display:block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(243,246,255,.88);
  margin-bottom: 8px;
}
.input, .textarea, .file{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 12px 12px;
  outline:none;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.textarea{ resize: vertical; min-height: 110px; }
.input::placeholder, .textarea::placeholder{ color: rgba(243,246,255,.55) }
.hint{
  margin-top:8px;
  font-size: 12px;
  color: rgba(243,246,255,.62);
}

/* Fix iOS autofill white background */
input:-webkit-autofill,
textarea:-webkit-autofill{
  -webkit-text-fill-color: var(--text);
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px rgba(255,255,255,.06) inset;
  border:1px solid rgba(255,255,255,.12);
  caret-color: var(--text);
}

/* type switch */
.typeSwitch{
  display:flex;
  gap:10px;
  padding: 12px 14px 0;
}
.typeBtn{
  flex:1;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 12px 12px;
  color: rgba(243,246,255,.9);
  cursor:pointer;
  font-weight: 950;
  letter-spacing:.12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow: var(--shadow2);
  transition: transform .14s ease, background .14s ease, border .14s ease;
}
.typeBtn:hover{ background: rgba(255,255,255,.10) }
.typeBtn:active{ transform: scale(.99) }
.typeBtn.active{
  background: linear-gradient(135deg, rgba(34,197,94,.30), rgba(6,182,212,.20));
  border-color: rgba(255,255,255,.22);
}
.typeEmoji{
  filter: drop-shadow(0 14px 25px rgba(0,0,0,.35));
}

/* Regions chips */
.regionAdd{
  display:flex;
  gap:8px;
  align-items:center;
}
.regionAdd .input{ flex:1; }
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  font-weight: 900;
  font-size: 12px;
  color: rgba(243,246,255,.92);
  box-shadow: 0 10px 25px rgba(0,0,0,.20);
}
.chip button{
  border:0;
  background: rgba(255,255,255,.10);
  color: rgba(243,246,255,.95);
  cursor:pointer;
  width:22px; height:22px;
  border-radius: 999px;
  display:grid;
  place-items:center;
}
.chip button:hover{ background: rgba(255,255,255,.18) }

/* Load more */
.loadMoreWrap{ padding: 10px 4px 0; }

/* Post detail */
.postDetail{
  margin: 10px 4px 0;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(520px 260px at 0% 0%, rgba(6,182,212,.12), transparent 60%),
    radial-gradient(520px 260px at 110% 20%, rgba(109,40,217,.14), transparent 60%),
    rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow:hidden;
  padding: 14px;
}
.pDetailTop{
  display:flex;
  gap:12px;
  align-items:center;
}
.pDetailPhoto{
  width: 86px; height: 86px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  overflow:hidden;
}
.pDetailPhoto img{ width:100%; height:100%; object-fit:cover; display:block }
.pDetailTitle{ font-size: 18px; font-weight: 950; line-height:1.15 }
.pDetailCompany{ margin-top:6px; color: var(--muted); font-weight: 850 }
.pDetailDesc{ margin-top: 12px; color: rgba(243,246,255,.88); line-height:1.45 }

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  top: calc(76px + var(--safeT));
  transform: translateX(-50%);
  min-width: 240px;
  max-width: 92vw;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(8,10,26,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  color: rgba(243,246,255,.95);
  font-weight: 850;
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 99;
}
.toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(6px);
}

/* Bottom nav (mobile) */
.bottomNav{
  position: fixed;
  left: 50%;
  bottom: calc(10px + var(--safeB));
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 16px));
  display:flex;
  gap:10px;
  padding: 10px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(8,10,26,.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  z-index: 50;
}
.bNav{
  flex:1;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: rgba(243,246,255,.88);
  border-radius: 18px;
  padding: 10px 10px;
  cursor:pointer;
  font-weight: 950;
  display:flex;
  flex-direction:column;
  gap:4px;
  align-items:center;
  justify-content:center;
  transition: transform .14s ease, background .14s ease, border .14s ease;
}
.bNav:hover{ background: rgba(255,255,255,.10) }
.bNav:active{ transform: scale(.99) }
.bNav.active{
  color: var(--text);
  border-color: rgba(255,255,255,.20);
  background:
    radial-gradient(circle at 30% 0%, rgba(255,255,255,.18), transparent 55%),
    linear-gradient(135deg, rgba(109,40,217,.85), rgba(6,182,212,.55));
}
.bIco{
  filter: drop-shadow(0 14px 25px rgba(0,0,0,.35));
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index: 80;
}
.modal.show{ display:block; }
.modalOverlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.modalBody{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: min(560px, calc(100% - 18px));
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(8,10,26,.60);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modalHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.modalTitle{
  font-weight: 950;
  letter-spacing:.2px;
}
.modalContent{ padding: 12px 14px 14px; }

.profileBox{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom: 14px;
}
.avatar3d{
  width: 54px; height: 54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  font-weight: 950;
  letter-spacing:.3px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 58%),
    linear-gradient(135deg, rgba(34,197,94,.85), rgba(6,182,212,.55));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  transform: perspective(600px) rotateX(8deg) rotateY(-10deg);
}
.pName{ font-weight: 950; }
.pMeta{ color: var(--muted); font-weight: 800; font-size: 12px; margin-top:4px; }

.miniStats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-bottom: 12px;
}
.stat{
  padding: 12px 10px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
  text-align:center;
}
.statNum{ font-weight: 950; font-size: 18px; }
.statLbl{ color: var(--muted); font-weight: 850; font-size: 12px; margin-top:4px; }

/* Responsive (PC) */
@media (min-width: 860px){
  .main{ padding: 18px 18px 38px; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .row.two{ grid-template-columns: 1fr 1fr; }
  .pInner{ grid-template-columns: 110px 1fr; }
  .pPhoto{ width:110px; height:110px; border-radius: 24px; }
  .brandTitle{ font-size: 16px; }
  .viewTitle{ font-size: 20px; }
  .bottomNav{ bottom: calc(14px + var(--safeB)); }
}

/* Ultra wide */
@media (min-width: 1180px){
  .grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .bg-aurora{ animation:none }
  .spark{ animation:none }
}