
:root {
  --bg: #0a0a0f;
  --surface: #16161f;
  --nav: #111118;
  --s2: #1e1e2a;
  --acc: #c8ff57;
  --acc-rgb: 200, 255, 87;
}
.account-bar { display:flex; justify-content:space-between; align-items:center; padding:14px 20px; border-bottom:1px solid #ffffff12; gap:12px; }
.app-wordmark { font-size:19px; font-weight:800; color:inherit; text-decoration:none; letter-spacing:-.8px; }
.app-wordmark span { color:var(--acc); }
#syncStatus { background:none; border:0; color:#a1a6b0; font:inherit; font-size:11px; cursor:pointer; text-align:right; }
#syncStatus[data-state="error"], #syncStatus[data-state="conflict"] { color:#fbbf24; }
.workspace-toolbar { display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:space-between; margin:20px; }
.search-form { display:flex; flex:1 1 240px; gap:8px; min-width:0; }
.search-form .fi { min-width:0; }
.workspace-toolbar > .btn, .search-form .btn, .empty .btn { padding:12px 16px; min-height:44px; }
.source-tabs { display:flex; gap:8px; padding:0 20px; flex-wrap:wrap; }
.source-tabs .pill { cursor:pointer; }
.workspace-notice { display:flex; align-items:center; justify-content:space-between; gap:12px; margin:20px; border-top:1px solid #ffffff15; border-bottom:1px solid #ffffff15; padding:12px 0; font-size:12px; color:#aab0bb; }
.results-heading { display:flex; flex-wrap:wrap; justify-content:space-between; gap:8px; padding:20px; font-size:12px; color:#929aa6; }
.results-heading span:first-child { color:#eef0f4; font-weight:700; }
.source-label { color:var(--acc); font-size:11px; font-weight:700; }
.personal-tools { display:flex; align-items:center; flex-wrap:wrap; gap:6px; padding:8px 0 12px; }
#det-body > .personal-tools { padding:0 20px 16px; }
.field-hint { font-size:12px; line-height:1.6; color:#a1a8b4; margin-bottom:14px; }
.form-error { color:#fca5a5; font-size:13px; margin:12px 0; }
.listing-flags { display:flex; flex-wrap:wrap; gap:14px; border:0; margin:12px 0 20px; font-size:13px; }
.listing-flags legend { color:#a1a8b4; font-size:12px; margin-bottom:12px; }
.listing-flags label { display:flex; gap:8px; align-items:center; }
.listing-flags input { accent-color:var(--acc); width:18px; height:18px; }
.stack-actions { display:grid; gap:12px; }
.bapp-act { flex-wrap:wrap; }
.bapp-act .btn { min-height:36px; }
.workspace-footnote { font-size:11px; line-height:1.7; color:#999fac; padding:12px 20px 24px; }
.listing-title, .bapp-n, .ap-name { overflow-wrap:anywhere; }
.listing-grid { display:grid; grid-template-columns:minmax(0,1fr); gap:20px; padding:0 20px; }
.listing-grid .listing { margin:0; }
.listing .listing-ov { pointer-events:none; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.empty .btn { margin:20px auto 0; }
.mbg:not(.open) { visibility:hidden; }
.menu:not(.open), .push:not(.show) { visibility:hidden; }
button, input, select, textarea { font-family:inherit; }
@media (min-width:760px) {
  #screens { min-height:0; }
  .listing-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  #nav { justify-content:center; }
  .sheet { max-width:640px !important; }
  .mbg { align-items:center !important; padding:20px; }
  .sheet { border-radius:20px !important; }
  #profil-body, #profil-hero, #score-body { max-width:700px; margin-inline:auto; }
  #bew-body { max-width:840px; margin-inline:auto; }
}
@media (max-width:420px) {
  .workspace-toolbar > .btn { width:100%; }
  .account-bar { padding:12px 16px; }
  .source-tabs { gap:6px; }
  .source-tabs .pill { padding:8px 10px; }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--acc);
  outline-offset: 3px;
}
html {
  height: 100%;
  overscroll-behavior: none;
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: #f0f0f5;
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
#app {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  max-width: 430px;
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
  transition: background 0.3s;
}
#screens {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.screen {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  padding-bottom: 96px;
}
.screen.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
#nav {
  height: 74px;
  background: var(--nav);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-shrink: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transition: background 0.3s;
}
.nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  transition: color 0.15s;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  position: relative;
}
.nav-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.15s;
}
.nav-btn.active {
  color: var(--acc);
}
.nav-btn.active svg {
  transform: translateY(-1px) scale(1.08);
}
.nav-dot {
  position: absolute;
  top: 11px;
  right: calc(50% - 17px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #ff5c5c;
  color: #fff;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--nav);
}
.nav-dot.show {
  display: flex;
}
.head {
  padding: 18px 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  transition: background 0.3s;
}
.head-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.title {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.subtitle {
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}
.head-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 14px;
  transition: opacity 0.15s, transform 0.12s;
  font-size: 14px;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
  opacity: 0.9;
}
.btn-acc {
  background: var(--acc);
  color: #0a0a0f;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f0f0f5;
}
.btn-danger {
  background: rgba(255, 80, 80, 0.14);
  color: #ff6b6b;
}
.btn-full {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  border-radius: 15px;
}
.btn-row {
  padding: 12px;
  font-size: 13px;
}
.btn-sm {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 10px;
}
.burger {
  padding: 0;
  width: 38px;
  height: 38px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pills {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pills::-webkit-scrollbar {
  display: none;
}
.pill {
  padding: 8px 15px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #888;
  white-space: nowrap;
  transition: all 0.15s;
  font-family: inherit;
}
.pill.active {
  background: var(--acc);
  color: #0a0a0f;
  border-color: var(--acc);
}
.listing {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  margin: 0 20px 12px;
  position: relative;
}
.listing-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.listing-ov {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.badge {
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 99px;
}
.badge-top {
  background: var(--acc);
  color: #0a0a0f;
}
.badge-ko {
  background: rgba(255, 70, 70, 0.92);
  color: #fff;
}
.badge-new {
  background: #4f9dff;
  color: #fff;
  margin-left: auto;
}
.listing-body {
  padding: 16px;
}
.listing-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.listing-loc {
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
}
.listing-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--acc);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.listing-price span {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}
.score2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.sbox {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 11px 12px;
}
.sbox-l {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  margin-bottom: 4px;
}
.sbox-v {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}
.bar-f {
  height: 100%;
  border-radius: 99px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #999;
}
.tag-ok {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
}
.tag-no {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}
.why2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.why {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 10px 12px;
}
.why-t {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
  margin-bottom: 7px;
}
.why-i {
  font-size: 11px;
  margin-bottom: 5px;
  line-height: 1.4;
}
.why-i.g {
  color: #34d399;
}
.why-i.b {
  color: #f87171;
}
.l-acts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.l-acts .full {
  grid-column: 1/-1;
}
.fsec {
  padding: 0 20px;
}
.fg {
  margin-bottom: 16px;
}
.fl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 8px;
}
.fi,
.fs {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #f0f0f5;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.fi:focus,
.fs:focus {
  border-color: var(--acc);
}
.fs {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fhint {
  font-size: 11px;
  color: #555;
  margin-top: 5px;
}
.slabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  padding: 20px 20px 8px;
}
.steps {
  display: flex;
  gap: 4px;
  padding: 12px 20px 0;
}
.seg {
  height: 3px;
  flex: 1;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}
.seg.done {
  background: var(--acc);
}
.docg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 0 20px;
}
.doct {
  background: var(--surface);
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  color: inherit;
  font-family: inherit;
  width: 100%;
}
.doct.on {
  border-color: var(--acc);
  background: rgba(var(--acc-rgb), 0.06);
}
.doct-ic {
  font-size: 24px;
  margin-bottom: 6px;
}
.doct-n {
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
}
.doct.on .doct-n {
  color: var(--acc);
}
.cbar {
  padding: 12px 20px 4px;
}
.cbar-t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cbar-l {
  font-size: 12px;
  color: #888;
  font-weight: 600;
}
.cbar-p {
  font-size: 14px;
  font-weight: 800;
  color: var(--acc);
}
.ctrack {
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}
.cfill {
  height: 100%;
  background: linear-gradient(90deg, var(--acc), #57ffd8);
  border-radius: 99px;
  transition: width 0.5s;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 20px 4px;
}
.stat {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 14px 12px;
}
.stat-v {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--acc);
}
.stat-l {
  font-size: 10px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}
.notice {
  margin: 0 20px;
  background: rgba(var(--acc-rgb), 0.06);
  border: 1px solid rgba(var(--acc-rgb), 0.15);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}
.notice strong {
  color: var(--acc);
  display: block;
  margin-bottom: 4px;
}
.notice.warn {
  background: rgba(255, 100, 100, 0.06);
  border-color: rgba(255, 100, 100, 0.15);
}
.notice.warn strong {
  color: #f87171;
}
.hero {
  margin: 16px 20px 0;
  background: linear-gradient(
    135deg,
    rgba(var(--acc-rgb), 0.16),
    rgba(var(--acc-rgb), 0.05) 60%,
    transparent
  );
  border: 1px solid rgba(var(--acc-rgb), 0.15);
  border-radius: 20px;
  padding: 20px;
}
.hero-t {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-d {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 14px;
}
.hero-c {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.chip {
  background: rgba(var(--acc-rgb), 0.1);
  color: var(--acc);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
}
.chip.warn {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}
.proof {
  margin: 14px 20px 0;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-em {
  font-size: 26px;
}
.proof-n {
  font-size: 18px;
  font-weight: 800;
  color: var(--acc);
  letter-spacing: -0.02em;
}
.proof-s {
  font-size: 12px;
  color: #888;
  margin-top: 1px;
}
.stories {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 20px 4px;
  scrollbar-width: none;
}
.stories::-webkit-scrollbar {
  display: none;
}
.story {
  flex: 0 0 240px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 14px;
}
.story-q {
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 10px;
}
.story-a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.story-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #0a0a0f;
}
.story-nm {
  font-size: 12px;
  font-weight: 700;
}
.story-loc {
  font-size: 11px;
  color: #666;
}
.mbg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.mbg.open {
  opacity: 1;
  pointer-events: all;
}
.sheet {
  background: var(--surface);
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 430px;
  padding: 12px 0 0;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(40px);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: calc(env(safe-area-inset-bottom, 20px) + 12px);
}
.mbg.open .sheet {
  transform: translateY(0);
}
.handle {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  margin: 0 auto 16px;
}
.mtitle {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 0 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mbody {
  padding: 0 20px;
}
.mfoot {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 16px;
}
.ap-prev {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}
.ap-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
}
.ap-meta {
  font-size: 12px;
  color: #666;
}
.ap-sc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.ap-s {
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}
.ap-s-v {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ap-s-l {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.65;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tone-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.tone {
  flex: 1;
  padding: 9px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #888;
  transition: all 0.15s;
  font-family: inherit;
}
.tone.on {
  background: rgba(var(--acc-rgb), 0.12);
  border-color: var(--acc);
  color: var(--acc);
}
.letter {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
  line-height: 1.65;
  color: #ddd;
  white-space: pre-wrap;
  min-height: 200px;
  outline: none;
  font-family: inherit;
  width: 100%;
  resize: vertical;
  transition: border-color 0.15s;
}
.letter:focus {
  border-color: var(--acc);
}
.dchk {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.dc {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}
.dc.ok {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
}
.dc.miss {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}
.bapp {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 16px;
  margin: 0 20px 12px;
}
.bapp-h {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.bapp-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.bapp-n {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
}
.bapp-l {
  font-size: 12px;
  color: #666;
}
.bapp-p {
  font-size: 13px;
  color: var(--acc);
  font-weight: 700;
  margin-top: 3px;
}
.timeline {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.tl-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
}
.tl-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #555;
  z-index: 2;
  transition: all 0.3s;
  border: 2px solid var(--surface);
}
.tl-dot.done {
  background: var(--acc);
  color: #0a0a0f;
}
.tl-dot.cur {
  background: var(--acc);
  color: #0a0a0f;
  box-shadow: 0 0 0 4px rgba(var(--acc-rgb), 0.2);
}
.tl-dot.rej {
  background: #ff5c5c;
  color: #fff;
}
.tl-lbl {
  font-size: 9px;
  font-weight: 700;
  color: #666;
  text-align: center;
}
.tl-lbl.act {
  color: var(--acc);
}
.tl-line {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}
.tl-line.done {
  background: var(--acc);
}
.bapp-act {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.scorecard {
  margin: 16px 20px 0;
  background: var(--surface);
  border: 1px solid rgba(var(--acc-rgb), 0.2);
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
}
.sc-id {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.sc-id-nm {
  font-size: 14px;
  font-weight: 800;
}
.sc-brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--acc);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sc-ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
}
.sc-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sc-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.sc-max {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  margin-top: 2px;
}
.sc-tier {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.sc-tier-d {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  margin-bottom: 16px;
}
.sc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-top: 4px;
}
.sc-bk-t {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 5px;
}
.sc-bk-n {
  color: #aaa;
  font-weight: 600;
}
.sc-bk-v {
  font-weight: 800;
}
.sc-strengths {
  margin: 16px 20px 0;
}
.sc-str {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.sc-str-ic {
  font-size: 18px;
}
.sc-str-tx {
  font-size: 13px;
  color: #ddd;
}
.rad-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.rad-ic {
  width: 26px;
  text-align: center;
  font-size: 16px;
  flex-shrink: 0;
}
.rad-info {
  flex: 1;
}
.rad-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 4px;
}
.rad-n {
  color: #bbb;
  font-weight: 600;
}
.rad-n.hl {
  color: var(--acc);
}
.rad-v {
  font-weight: 800;
  color: #888;
}
.rad-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
}
.rad-f {
  height: 100%;
  border-radius: 99px;
  background: #57a9ff;
  transition: width 0.6s;
}
.rad-f.hl {
  background: var(--acc);
}
.det-img {
  width: calc(100% - 40px);
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 20px 16px;
}
.det-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.det-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 12px 14px;
}
.det-box-l {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 4px;
}
.det-box-v {
  font-size: 16px;
  font-weight: 800;
}
.celeb {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 15, 0.96);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}
.celeb.show {
  display: flex;
}
.celeb-em {
  font-size: 60px;
  margin-bottom: 16px;
  animation: pop 0.5s ease;
}
@keyframes pop {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.celeb-t {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.celeb-t span {
  color: var(--acc);
}
.celeb-card {
  background: var(--surface);
  border: 1px solid rgba(var(--acc-rgb), 0.2);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  margin-bottom: 14px;
}
.celeb-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.celeb-card-b {
  padding: 16px;
  text-align: left;
}
.celeb-card-n {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 3px;
}
.celeb-card-l {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}
.celeb-match {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--acc-rgb), 0.12);
  color: var(--acc);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 99px;
}
.celeb-line {
  font-size: 14px;
  color: #bbb;
  line-height: 1.55;
  max-width: 320px;
  margin-bottom: 24px;
}
.confetti {
  position: fixed;
  top: -10px;
  width: 9px;
  height: 9px;
  z-index: 400;
  pointer-events: none;
  border-radius: 1px;
}
.push {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  width: calc(100% - 32px);
  max-width: 400px;
  background: var(--s2);
  border: 1px solid rgba(var(--acc-rgb), 0.2);
  border-radius: 18px;
  padding: 14px 16px;
  z-index: 350;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  cursor: pointer;
}
.push.show {
  transform: translateX(-50%) translateY(0);
}
.push-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--acc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.push-t {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 1px;
}
.push-d {
  font-size: 12px;
  color: #999;
}
.pro-h {
  text-align: center;
  padding: 8px 0 16px;
}
.pro-em {
  font-size: 44px;
  margin-bottom: 10px;
}
.pro-t {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pro-t span {
  color: var(--acc);
}
.pro-d {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}
.pro-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pro-feat-ic {
  color: var(--acc);
  font-size: 18px;
}
.pro-feat-tx {
  font-size: 14px;
}
.pro-price {
  text-align: center;
  padding: 16px 0 8px;
}
.pro-price-v {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.pro-price-v span {
  font-size: 15px;
  color: #888;
  font-weight: 600;
}
.empty {
  padding: 60px 20px 20px;
  text-align: center;
}
.empty-ic {
  font-size: 44px;
  margin-bottom: 16px;
}
.empty-t {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.empty-d {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
#toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--s2);
  color: #f0f0f5;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.onb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  max-width: 430px;
  margin: 0 auto;
}
.onb-logo {
  font-size: 52px;
  margin-bottom: 18px;
}
.onb-t {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.onb-t span {
  color: var(--acc);
}
.onb-d {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 30px;
}
.onb-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  margin-bottom: 30px;
}
.onb-s {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 16px;
  text-align: left;
}
.onb-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--acc);
  color: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.onb-st {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.onb-sd {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}
.phero {
  margin: 14px 20px 0;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 18px;
}
.phero-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.phero-edit {
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.phero-cam {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--acc);
  color: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: 2px solid var(--surface);
}
.phero-name {
  font-size: 18px;
  font-weight: 800;
}
.phero-lvl {
  font-size: 12px;
  color: var(--acc);
  font-weight: 700;
  margin-top: 2px;
}
.xp-row {
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #888;
  font-weight: 600;
}
.xp-track {
  height: 7px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
}
.xp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--acc), #57ffd8);
  border-radius: 99px;
  transition: width 0.5s;
}
.ach-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 14px;
  scrollbar-width: none;
  align-items: center;
}
.ach-strip::-webkit-scrollbar {
  display: none;
}
.ach-b {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  filter: grayscale(1);
  opacity: 0.35;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ach-b.on {
  filter: none;
  opacity: 1;
  background: rgba(var(--acc-rgb), 0.12);
  border-color: rgba(var(--acc-rgb), 0.3);
}
.ach-more {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--acc);
  font-weight: 700;
  padding: 0 8px;
  cursor: pointer;
  white-space: nowrap;
}
.achg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.acht {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.acht.on {
  background: rgba(var(--acc-rgb), 0.1);
  border-color: rgba(var(--acc-rgb), 0.25);
}
.acht-ic {
  font-size: 22px;
  filter: grayscale(1);
  opacity: 0.4;
}
.acht.on .acht-ic {
  filter: none;
  opacity: 1;
}
.acht-n {
  font-size: 13px;
  font-weight: 700;
}
.acht-s {
  font-size: 11px;
  color: #666;
}
.acht.on .acht-s {
  color: var(--acc);
}
.menubg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.menubg.open {
  opacity: 1;
  pointer-events: all;
}
.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 86vw;
  background: var(--surface);
  z-index: 130;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.menu.open {
  transform: translateX(0);
}
.menu-head {
  padding: 24px 20px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-name {
  font-size: 16px;
  font-weight: 800;
}
.menu-lvl {
  font-size: 12px;
  color: var(--acc);
  font-weight: 700;
  margin-top: 2px;
}
.menu-list {
  padding: 10px;
  flex: 1;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: #f0f0f5;
}
.menu-item:active {
  background: rgba(255, 255, 255, 0.05);
}
.menu-item-ic {
  font-size: 18px;
  width: 24px;
  text-align: center;
}
.menu-item-tx {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}
.menu-item-r {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}
.menu-item-r.pro {
  background: var(--acc);
  color: #0a0a0f;
}
.menu-item-r.free {
  background: rgba(255, 255, 255, 0.08);
  color: #888;
}
.menu-item-ch {
  color: #555;
  font-size: 16px;
}
.menu-foot {
  padding: 16px 20px;
  font-size: 11px;
  color: #555;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.sw {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 0.15s;
}
.sw.on {
  border-color: #fff;
  transform: scale(1.08);
}
.bgsw {
  width: 60px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bgsw.on {
  border-color: var(--acc);
  transform: scale(1.05);
}
.bgsw-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.bgsw-nm {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 4px;
}
.cust-av {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.notif-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.notif-tx {
  flex: 1;
}
.notif-n {
  font-size: 14px;
  font-weight: 600;
}
.notif-d {
  font-size: 12px;
  color: #666;
  margin-top: 1px;
}
.tg {
  position: relative;
  width: 46px;
  height: 27px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.tg.on {
  background: var(--acc);
}
.tg::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}
.tg.on::after {
  transform: translateX(19px);
}
.info-p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.65;
  margin-bottom: 14px;
}
.info-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: flex-start;
}
.info-ic {
  font-size: 18px;
}
.info-row-t {
  font-size: 14px;
  font-weight: 600;
}
.info-row-d {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
  line-height: 1.45;
}
.auth-shell {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(200, 255, 87, 0.1), transparent 38%), var(--bg);
}
.auth-card {
  margin: auto;
  flex-shrink: 0;
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.auth-brand {
  margin-bottom: 24px;
  text-align: center;
}
.auth-brand-logo {
  font-size: 38px;
}
.auth-brand-name {
  margin-top: 6px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.auth-brand-name span {
  color: var(--acc);
}
.auth-title {
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 800;
}
.auth-copy {
  margin-bottom: 20px;
  color: #888;
  font-size: 13px;
  line-height: 1.5;
}
.auth-field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}
.auth-field label {
  color: #aaa;
  font-size: 12px;
  font-weight: 700;
}
.auth-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  outline: none;
  background: var(--surface2);
  color: #fff;
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.auth-field input:focus {
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(var(--acc-rgb), 0.12);
}
.auth-field input[aria-invalid="true"] {
  border-color: #f39595;
}
.auth-field input[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(243, 149, 149, 0.12);
}
.auth-field-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(243, 149, 149, 0.07);
  color: #f7b3b3;
  font-size: 12px;
  line-height: 1.5;
  animation: auth-error-enter 0.16s ease-out;
}
.auth-field-error[hidden] {
  display: none;
}
.auth-error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex: 0 0 15px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
@keyframes auth-error-enter {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .auth-field-error { animation: none; }
  .auth-field input { transition: none; }
}
.auth-error {
  display: none;
  margin-bottom: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(248, 113, 113, 0.28);
  border-radius: 12px;
  background: rgba(248, 113, 113, 0.1);
  color: #fca5a5;
  font-size: 13px;
  line-height: 1.4;
}
.auth-error.show {
  display: block;
}
.auth-switch {
  margin-top: 16px;
  color: #888;
  font-size: 13px;
  text-align: center;
}
.auth-switch button {
  border: 0;
  background: transparent;
  color: var(--acc);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.auth-note {
  margin-top: 18px;
  color: #666;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}
.auth-loading {
  padding: 28px 0 12px;
  color: #888;
  text-align: center;
}
