* {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg: #080808;
  --panel: #111111;
  --panel-2: #171717;
  --panel-3: #1e1a10;
  --gold: #c9a227;
  --gold-soft: #e8c870;
  --warm: #f5f0e8;
  --copy: #b8a98a;
  --muted: #7a6e56;
  --stroke: rgba(201, 162, 39, 0.13);
  --green: #22c55e;
  --red: #ef4444;
  --amber: #f59e0b;

  /* Legacy aliases used in app.js older render paths */
  --g: #22c55e;
  --r: #ef4444;
  --g2: rgba(34, 197, 94, 0.1);
  --r2: rgba(239, 68, 68, 0.1);
  --b2: rgba(139, 127, 103, 0.14);
  --p2: rgba(201, 162, 39, 0.1);
  --w3: #c5b89c;
  --w4: #7a6e56;
  --w5: #52483a;
  --fm: "DM Mono", monospace;

  --surface-shadow: 0 24px 56px rgba(0, 0, 0, 0.42), 0 4px 16px rgba(0, 0, 0, 0.24);
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  --display: "Playfair Display", serif;
  --ui: "Syne", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "DM Mono", monospace;
  --tab: 82px;
}

html,
body {
  background: radial-gradient(ellipse at 60% 0%, #1c1508 0%, #0a0a0a 42%);
}

body {
  font-family: var(--ui);
  color: var(--warm);
  -webkit-font-smoothing: antialiased;
}

/* ── APP SHELL ── */

.app {
  max-width: 430px;
  background: linear-gradient(
    170deg,
    rgba(201, 162, 39, 0.055) 0%,
    rgba(8, 8, 8, 0.99) 16%,
    #080808 100%
  );
}

.app::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.14) 0%, rgba(201, 162, 39, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.app > * {
  position: relative;
  z-index: 1;
}

/* ── VIEWPORT CONTAINER ── */

.vc {
  padding: 0 18px 16px;
}

/* ── SECTION STRUCTURE ── */

.sec {
  margin-bottom: 20px;
}

.sec-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 2px;
}

/* ── TAB BAR ── */

.tbar {
  height: var(--tab);
  padding: 10px 8px env(safe-area-inset-bottom, 0px);
  background: rgba(8, 8, 8, 0.92);
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  align-items: start;
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  backdrop-filter: blur(32px) saturate(1.5);
}

.tb {
  gap: 4px;
  padding: 8px 4px 6px;
  border-radius: 16px;
  transition: background 0.15s ease;
}

.tb svg {
  stroke: #5a5040;
  stroke-width: 1.6;
  transition: stroke 0.15s ease;
}

.tb span {
  font-size: 9.5px;
  font-weight: 700;
  color: #5a5040;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.tb.on {
  background: rgba(201, 162, 39, 0.09);
}

.tb.on svg {
  stroke: var(--gold);
}

.tb.on span {
  color: var(--gold-soft);
}

/* ── PAGE TITLE ── */

.lt {
  padding: 0;
  color: var(--warm);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ── SHELL HEADER ── */

.shell-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  margin-bottom: 18px;
}

.shell-head.compact {
  align-items: center;
  margin-bottom: 16px;
}

.shell-mark {
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.shell-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: rgba(201, 162, 39, 0.07);
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── MARKET SWITCHER ── */

.market-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.market-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--copy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.15s ease;
}

.market-pill.active {
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.22);
  color: var(--gold-soft);
}

.market-pill.off {
  opacity: 0.4;
}

/* ── SUBLINE ── */

.subline {
  max-width: 300px;
  margin-top: 6px;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.65;
}

/* ── HERO CARD ── */

.hero {
  margin: 16px 0 18px;
  padding: 22px 20px;
  border-radius: 26px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  background: linear-gradient(
    150deg,
    rgba(201, 162, 39, 0.11) 0%,
    rgba(38, 29, 11, 0.9) 28%,
    rgba(14, 14, 14, 0.98) 100%
  );
  box-shadow: var(--surface-shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.14) 0%, rgba(201, 162, 39, 0) 70%);
  pointer-events: none;
}

.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

/* ── KICKER LABELS ── */

.hero-lbl,
.chart-kicker,
.grp-label,
.detail-kicker,
.caption-kicker {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-lbl {
  margin-bottom: 8px;
  letter-spacing: 0.26em;
}

.grp-label {
  margin: 20px 0 10px 2px;
  letter-spacing: 0.22em;
}

/* ── HERO VALUE ── */

.hero-val,
.detail-price {
  color: var(--warm);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-val {
  margin-bottom: 8px;
  font-size: 42px;
  line-height: 1;
}

.detail-price {
  font-size: 38px;
}

/* ── SECONDARY TEXT ── */

.hero-note,
.chart-note,
.detail-sub,
.about-card .desc,
.emp p,
.prof-sub {
  color: var(--copy);
  font-size: 13px;
  line-height: 1.65;
}

.hero-note {
  max-width: 250px;
}

/* ── CHANGE BADGE ── */

.hero-chg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-chg svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.hero-chg.up {
  color: #b4f0c6;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.16);
}

.hero-chg.dn {
  color: #fcc8c8;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.16);
}

/* ── HERO GRID ── */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 162, 39, 0.13);
}

.hg-lbl,
.st-l,
.ps-lbl {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hg-lbl {
  margin-bottom: 5px;
}

/* ── MONO VALUES ── */

.hg-val,
.pp-val,
.si-pr,
.si-ch,
.dv-am,
.ps-val,
.caption-value,
.gl-val,
.al-det,
.about-card .ver {
  font-family: var(--mono);
}

.hg-val {
  color: var(--warm);
  font-size: 17px;
  font-weight: 500;
}

/* ── CARD CONTAINERS ── */

.chart-wrap,
.grp,
.st-p,
.grp-list {
  border: 1px solid rgba(201, 162, 39, 0.11);
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.97),
    rgba(12, 12, 12, 0.97)
  );
}

.chart-wrap {
  margin-bottom: 18px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  box-shadow: var(--card-shadow);
}

.chart-wrap.clean {
  padding-top: 12px;
}

.chart-kicker {
  margin-bottom: 8px;
}

.chart-note {
  margin-bottom: 12px;
  font-size: 13px;
}

/* ── CHART TABS ── */

.chtb {
  gap: 5px;
  flex-wrap: wrap;
  background: transparent;
  margin-bottom: 10px;
}

.chtb button {
  min-width: 46px;
  padding: 8px 0;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.1);
  background: transparent;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.15s ease;
  cursor: pointer;
}

.chtb button.on {
  background: var(--gold);
  color: #060606;
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

/* ── CHART CANVAS ── */

.ch-c {
  height: 156px;
}

.portfolio-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.portfolio-chart-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-chart-base {
  fill: none;
  stroke: rgba(245, 240, 232, 0.06);
  stroke-width: 1;
}

.portfolio-chart-dot {
  fill: var(--gold-soft);
  stroke: #080808;
  stroke-width: 2;
}

/* ── SECTION TITLES ── */

.sec-t {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.sec-t .cnt {
  margin-left: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.sec-a {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: rgba(201, 162, 39, 0.07);
  color: var(--gold-soft);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.sec-a:hover {
  background: rgba(201, 162, 39, 0.12);
}

/* ── CARD GROUPS ── */

.grp,
.grp-list {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

/* ── LIST ITEM BASE ── */

.si,
.dv-i,
.gl-i,
.al-i {
  position: relative;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.12s ease;
}

.si:active,
.gl-i:active,
.sr-i:active,
.btn-s:active {
  background: rgba(201, 162, 39, 0.07);
}

/* ── LIST SEPARATORS ── */

.si + .si::before,
.dv-i + .dv-i::before,
.gl-i + .gl-i::before,
.al-i + .al-i::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  height: 1px;
  background: rgba(201, 162, 39, 0.09);
}

.si + .si::before,
.dv-i + .dv-i::before {
  left: 64px;
}

.gl-i + .gl-i::before,
.al-i + .al-i::before {
  left: 56px;
}

/* ── AVATARS ── */

.si-av,
.dv-ic {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.si-av {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* ── LIST TEXT ── */

.si-tk,
.dv-tk,
.gl-txt,
.al-tk {
  font-size: 14px;
  font-weight: 700;
  color: var(--warm);
  letter-spacing: 0.01em;
}

.si-nm,
.si-meta,
.si-vl,
.dv-dt,
.gl-val,
.sr-nm {
  color: var(--copy);
}

.si-nm {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.3;
}

.si-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.si-pr {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm);
}

.si-ch {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
}

.si-vl,
.dv-dt,
.al-det {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.si-arr,
.gl-arr {
  color: var(--gold-soft);
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── PORTFOLIO PILLS ── */

.pf-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: -4px 0 18px;
}

.pf-pill {
  min-width: 120px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.12);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.97), rgba(12, 12, 12, 0.97));
  flex: 1;
}

.pp-val {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 500;
  color: var(--warm);
  letter-spacing: -0.01em;
}

.pp-lbl {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── EMPTY STATES ── */

.emp {
  padding: 40px 20px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.emp-ic {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  border: 1px solid rgba(201, 162, 39, 0.16);
  background: linear-gradient(
    160deg,
    rgba(201, 162, 39, 0.16),
    rgba(201, 162, 39, 0.05)
  );
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.12);
}

.emp h3,
.prof-name,
.about-card h3,
.sh-title {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.emp h3 {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--warm);
}

.emp p {
  margin-bottom: 20px;
  max-width: 260px;
}

/* ── BUTTONS ── */

.btn-p {
  border-radius: 16px;
  background: var(--gold);
  color: #060606;
  font-family: var(--ui);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.28);
}

.btn-p:hover {
  background: #d9b233;
  box-shadow: 0 6px 22px rgba(201, 162, 39, 0.36);
}

.btn-p:active {
  transform: scale(0.98);
}

.btn-s {
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: var(--warm);
  font-family: var(--ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-s:hover {
  background: rgba(201, 162, 39, 0.07);
  border-color: rgba(201, 162, 39, 0.24);
}

/* ── STATS PANEL ── */

.st-p {
  border-radius: 18px;
  overflow: hidden;
}

.st-v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* ── SEARCH ── */

.m-search input,
.fld-i,
.fld-sel {
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: var(--warm);
  font-family: var(--ui);
}

.m-search input {
  padding: 14px 14px 14px 42px;
  font-size: 14px;
  font-weight: 600;
}

.m-search input::placeholder {
  color: var(--muted);
}

/* ── PROFILE ── */

.prof-header {
  padding: 24px 0 16px;
  text-align: center;
}

.prof-av {
  width: 80px;
  height: 80px;
  border-radius: 26px;
  border: 1px solid rgba(201, 162, 39, 0.16);
  background: linear-gradient(
    160deg,
    rgba(201, 162, 39, 0.22),
    rgba(80, 62, 18, 0.36)
  );
  color: var(--gold-soft);
  font-family: var(--display);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mansa-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prof-av.mansa-logo {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mansa-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.prof-name {
  font-size: 28px;
  margin-bottom: 4px;
}

.prof-sub {
  font-size: 13px;
  max-width: 280px;
  margin: 0 auto;
}

/* ── PROFILE STATS ── */

.prof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 4px;
}

.ps-item {
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.1);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.ps-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--warm);
  display: block;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.ps-lbl {
  display: block;
}

/* ── BOTTOM SHEET ── */

.sheet-bg {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.sheet {
  border-radius: 26px 26px 0 0;
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-bottom: none;
  background: linear-gradient(
    180deg,
    #191308 0%,
    #0e0e0e 14%,
    #0a0a0a 100%
  );
  box-shadow: 0 -24px 64px rgba(0, 0, 0, 0.44);
}

.sh-handle {
  width: 38px;
  height: 4px;
  border-radius: 2px;
  background: rgba(245, 240, 232, 0.14);
  margin: 10px auto 0;
}

.sh-title {
  font-size: 26px;
}

.sh-x {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--copy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ── FORM FIELDS ── */

.fld-l {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.fld-i {
  padding: 13px 14px;
  font-size: 15px;
  width: 100%;
}

.fld-i:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.38);
  background: rgba(201, 162, 39, 0.04);
}

.fld-sel {
  padding: 13px 36px 13px 14px;
  font-size: 14px;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C9A227' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* ── SEARCH RESULTS ── */

.sr {
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.11);
  background: #111111;
  overflow: hidden;
}

.sr-i {
  border-bottom: 1px solid rgba(201, 162, 39, 0.07);
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.12s ease;
}

.sr-i:last-child {
  border-bottom: none;
}

.sr-i:hover,
.sr-i:active {
  background: rgba(201, 162, 39, 0.06);
}

/* ── TOAST ── */

.toast {
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.14);
  background: #131313;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ── FAB ── */

.fab {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.28);
  color: #080808;
  font-weight: 500;
  display: none !important;
}

/* ── DETAIL VIEW ── */

.detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

/* ── CAPTION CARDS ── */

.caption-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.caption-card {
  flex: 1;
  padding: 12px 13px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.09);
  background: rgba(255, 255, 255, 0.02);
}

/* ── WATCHLIST ── */

.watch-stack {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.watch-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 11px 12px 11px 14px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.12);
  background: rgba(201, 162, 39, 0.07);
  color: var(--warm);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
}

.watch-pill:hover {
  border-color: rgba(201, 162, 39, 0.22);
  background: rgba(201, 162, 39, 0.11);
}

.watch-pill-label {
  color: var(--gold-soft);
}

.watch-pill-open {
  margin-left: auto;
  color: var(--copy);
  font-size: 10px;
}

.watch-pill-remove {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 68, 68, 0.16);
  background: rgba(239, 68, 68, 0.1);
  color: #fecaca;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── ICON CONTAINERS ── */

.al-ic,
.gl-ic {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* ── ALERT DELETE ── */

.al-del {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.18);
  background: rgba(239, 68, 68, 0.1);
  color: #fecaca;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ── ABOUT CARD ── */

.about-card {
  margin-top: 24px;
  padding: 22px 18px;
  border-radius: 20px;
  border: 1px solid rgba(201, 162, 39, 0.1);
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.about-card .ver {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.about-card .badge {
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  background: rgba(201, 162, 39, 0.07);
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.about-card .logo.mansa-logo {
  width: 68px;
  height: 68px;
  margin: 0 auto 12px;
}

/* ── DANGER DELETE BUTTON ── */

.btn-del {
  width: 100%;
  margin-bottom: 14px;
  padding: 13px;
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  background: transparent;
  color: #fecaca;
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-del:active {
  background: rgba(239, 68, 68, 0.12);
}

/* ── PREMIUM SHEET ── */

.premium-sheet .sh-body {
  padding-bottom: 8px;
}

.premium-plan-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.16);
  background: rgba(201, 162, 39, 0.09);
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-sheet-copy {
  margin-bottom: 16px;
  color: var(--copy);
  font-size: 13.5px;
  line-height: 1.7;
}

.premium-limit-card {
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(201, 162, 39, 0.12);
  background: linear-gradient(
    160deg,
    rgba(201, 162, 39, 0.1),
    rgba(255, 255, 255, 0.025)
  );
}

.premium-limit-value {
  color: var(--warm);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.premium-limit-note {
  margin-top: 4px;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.6;
}

.premium-features {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.premium-feature {
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--warm);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.premium-cta {
  margin-top: 4px;
}

/* ── RESPONSIVE ── */

@media (max-width: 430px) {
  .fab {
    right: 18px;
  }
}
