/* ============================================================
   GPS Admin — normal dashboard (deliberately NOT kiosk-styled)
   ============================================================ */
.admin {
  --ink:    #1b2230;
  --muted:  #616b7a;
  --faint:  #8a93a3;
  --line:   #e5e8ee;
  --bg:     #f4f6f9;
  --card:   #ffffff;
  --accent: #3b54d6;
  --accent-soft: #eef1fd;
  --ok:     #15803d;
  --ok-soft:#e7f6ec;
  --warn:   #b45309;
  --warn-soft:#fbf0dd;
  --danger: #c0341d;
  --danger-soft:#fbe9e6;
  --purple: #6d3bd6;
  --purple-soft:#f0eafc;

  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}
.admin *,
.admin *::before,
.admin *::after { box-sizing: border-box; }

.admin .num { font-variant-numeric: tabular-nums; }

/* ---- top bar ---- */
.adm-top {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px; height: 60px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.adm-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 16px; letter-spacing: -0.01em;
}
.adm-logo .mk {
  background: var(--ink); color: #fff; font-weight: 800;
  border-radius: 7px; padding: 4px 9px; letter-spacing: 0.04em; font-size: 14px;
}
.adm-logo .sub { color: var(--faint); font-weight: 600; font-size: 13px; }
.adm-env {
  margin-left: 8px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--warn); background: var(--warn-soft);
  padding: 4px 9px; border-radius: 6px;
}
.adm-top .spacer { flex: 1; }
.adm-user { display: flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 600; font-size: 13px; }
.adm-user .av {
  width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; font-weight: 800; font-size: 12px;
}
.adm-exit {
  font-family: inherit; font-weight: 700; font-size: 13px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 14px; cursor: pointer; transition: background 120ms;
}
.adm-exit:hover { background: var(--bg); }

/* ---- body: sidebar + main ---- */
.adm-body { flex: 1; display: flex; min-height: 0; }
.adm-side {
  flex-shrink: 0; width: 248px;
  background: var(--card); border-right: 1px solid var(--line);
  padding: 16px 12px; display: flex; flex-direction: column; gap: 4px;
}
.adm-side .sec-cap {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--faint); padding: 12px 12px 6px;
}
.nav-item {
  display: flex; align-items: center; gap: 12px; width: 100%;
  font-family: inherit; font-weight: 700; font-size: 14.5px; text-align: left;
  color: var(--muted); background: transparent; border: none; border-radius: 9px;
  padding: 11px 13px; cursor: pointer; transition: background 120ms, color 120ms;
}
.nav-item:hover { background: var(--bg); color: var(--ink); }
.nav-item.active { background: var(--accent-soft); color: var(--accent); }
.nav-item .ico {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 6px;
  display: grid; place-items: center; font-size: 13px;
  background: currentColor; color: var(--card);
}
.nav-item .ico span { color: var(--muted); }
.nav-item.active .ico span { color: var(--accent); }
.nav-item .badge-count {
  margin-left: auto; font-size: 12px; font-weight: 800; color: var(--faint);
  background: var(--bg); border-radius: 999px; padding: 2px 9px;
}

/* ---- main ---- */
.adm-main { flex: 1; overflow-y: auto; padding: 28px 32px 60px; }
.adm-main::-webkit-scrollbar { width: 12px; }
.adm-main::-webkit-scrollbar-thumb { background: #d4d9e2; border-radius: 999px; }

.adm-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.adm-h1 { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
.adm-sub { color: var(--muted); font-weight: 500; font-size: 14.5px; margin-top: 4px; max-width: 60ch; }
.adm-actions { display: flex; gap: 10px; }

.btn {
  font-family: inherit; font-weight: 700; font-size: 14px; cursor: pointer;
  border-radius: 9px; padding: 10px 16px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); transition: background 120ms, filter 120ms;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn:hover { background: var(--bg); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { filter: brightness(1.07); background: var(--accent); }
.btn .pl { font-size: 16px; line-height: 1; }

/* ---- card / panel ---- */
.panel { background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
.panel-pad { padding: 22px 24px; }

/* ---- table ---- */
.tbl-wrap { overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.tbl th {
  text-align: left; font-weight: 800; font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--faint);
  padding: 14px 18px; border-bottom: 1px solid var(--line); white-space: nowrap;
}
.tbl td { padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tbody tr:hover { background: #fafbfd; }
.tbl .casino-cell { font-weight: 800; }
.tbl .casino-cell small { display: block; font-weight: 600; color: var(--faint); font-size: 12px; margin-top: 2px; }
.tbl .num { font-weight: 700; }

/* ---- badges ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 800; border-radius: 999px; padding: 5px 11px; white-space: nowrap;
}
.badge .dt { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.b-active   { color: var(--ok);     background: var(--ok-soft); }
.b-scheduled{ color: var(--accent); background: var(--accent-soft); }
.b-draft    { color: var(--muted);  background: var(--bg); }
.b-home     { color: var(--accent); background: var(--accent-soft); }
.b-wh       { color: var(--purple); background: var(--purple-soft); }
.b-express  { color: var(--ok);     background: var(--ok-soft); }
.b-custom   { color: var(--purple); background: var(--purple-soft); }
.b-byyou    { color: var(--accent); background: var(--accent-soft); }
.b-conv     { color: var(--purple); background: var(--purple-soft); }
.b-low      { color: var(--danger); background: var(--danger-soft); }

/* ---- campaign builder form ---- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form .full { grid-column: 1 / -1; }
@media (max-width: 900px) { .form { grid-template-columns: 1fr; } }
.field-label { font-weight: 800; font-size: 14px; margin-bottom: 8px; display: block; }
.field-help { color: var(--muted); font-weight: 500; font-size: 13px; margin-top: 7px; line-height: 1.4; }
.field-label .req { color: var(--danger); margin-left: 3px; }
.inp, .sel {
  width: 100%; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 11px 13px;
}
.inp:focus, .sel:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.inp-row { display: flex; gap: 12px; align-items: center; }
.inp-row span { color: var(--faint); font-weight: 700; }

/* radio cards */
.radio-set { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 720px) { .radio-set { grid-template-columns: 1fr; } }
.radio-card {
  border: 1.5px solid var(--line); border-radius: 12px; padding: 16px; cursor: pointer;
  display: flex; gap: 12px; align-items: flex-start; transition: border-color 120ms, background 120ms;
}
.radio-card:hover { border-color: #c4ccda; }
.radio-card.sel { border-color: var(--accent); background: var(--accent-soft); }
.radio-card .dot {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid #c4ccda; flex-shrink: 0; margin-top: 2px;
  display: grid; place-items: center;
}
.radio-card.sel .dot { border-color: var(--accent); }
.radio-card.sel .dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.radio-card .rc-title { font-weight: 800; font-size: 15px; }
.radio-card .rc-help { color: var(--muted); font-weight: 500; font-size: 13px; margin-top: 5px; line-height: 1.45; }

/* shoe checklist */
.checklist { display: flex; flex-direction: column; gap: 8px; }
.check-row {
  display: flex; align-items: center; gap: 14px; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: 11px; cursor: pointer; background: #fff;
  transition: border-color 120ms, background 120ms;
}
.check-row:hover { border-color: #c4ccda; }
.check-row.on { border-color: var(--accent); background: var(--accent-soft); }
.check-box {
  width: 22px; height: 22px; border-radius: 6px; border: 2px solid #c4ccda; flex-shrink: 0;
  display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 900;
}
.check-row.on .check-box { background: var(--accent); border-color: var(--accent); }
.check-name { font-weight: 800; }
.check-name small { display: block; font-weight: 600; color: var(--faint); font-size: 12.5px; margin-top: 1px; }
.check-meta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.check-denom { font-weight: 800; font-variant-numeric: tabular-nums; }
.check-denom small { display: block; font-weight: 600; color: var(--faint); font-size: 11px; text-align: right; }

.form-foot { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }

/* ---- gift card coverage (shipping + tax) ---- */
.coverage { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; }
.cov-input { display: flex; align-items: center; gap: 8px; }
.cov-input .cov-cap { font-size: 13.5px; font-weight: 800; color: var(--ink); }
.cov-input .cov-affix { font-size: 15px; font-weight: 800; color: var(--faint); }
.cov-input .inp { width: 88px; font-variant-numeric: tabular-nums; }
.cov-note {
  flex: 1 1 280px; min-width: 240px;
  font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.45;
  background: var(--accent-soft); border-radius: 10px; padding: 11px 14px;
}
.cov-note b { color: #33408a; font-weight: 800; }
.check-denom small { white-space: nowrap; }

/* ---- inventory ---- */
.denom-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.denom-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.denom-card.low { border-color: #f0c4bc; box-shadow: 0 0 0 1px #f5d3cc inset; }
.denom-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.denom-val { font-size: 30px; font-weight: 800; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.denom-val small { font-size: 13px; font-weight: 700; color: var(--faint); }
.denom-bar { height: 10px; border-radius: 999px; background: var(--line); overflow: hidden; display: flex; margin-bottom: 16px; }
.denom-bar i { height: 100%; display: block; }
.denom-bar .c { background: var(--ink); }
.denom-bar .r { background: var(--warn); }
.denom-bar .a { background: var(--ok); }
.denom-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.dstat { }
.dstat .k { font-size: 12px; font-weight: 700; color: var(--faint); display: flex; align-items: center; gap: 6px; }
.dstat .k .sw { width: 9px; height: 9px; border-radius: 3px; }
.dstat .v { font-size: 20px; font-weight: 800; font-variant-numeric: tabular-nums; margin-top: 2px; }
.dstat .v.danger { color: var(--danger); }

.pool-list { display: flex; flex-direction: column; }
.pool-row { display: flex; align-items: center; gap: 14px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
.pool-row:last-child { border-bottom: none; }
.pool-name { font-weight: 800; }
.pool-name small { font-weight: 600; color: var(--faint); font-size: 12.5px; margin-left: 8px; }
.pool-left { margin-left: auto; font-weight: 800; font-variant-numeric: tabular-nums; }
.pool-track { width: 160px; height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.pool-track i { display: block; height: 100%; background: var(--ok); }
.pool-track i.low { background: var(--danger); }

/* ---- reporting ---- */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 24px; }
.kpi { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; }
.kpi .k { color: var(--muted); font-weight: 700; font-size: 13.5px; }
.kpi .v { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; margin-top: 8px; font-variant-numeric: tabular-nums; }
.kpi .d { font-size: 13px; font-weight: 700; margin-top: 6px; }
.kpi .d.up { color: var(--ok); }
.kpi .d.flat { color: var(--muted); }

.charts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 980px) { .charts { grid-template-columns: 1fr; } }
.chart { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; }
.chart.full { grid-column: 1 / -1; }
.chart h3 { font-size: 16px; font-weight: 800; margin-bottom: 18px; }
.bar-row { display: grid; grid-template-columns: 150px 1fr 64px; align-items: center; gap: 14px; margin-bottom: 13px; }
.bar-row:last-child { margin-bottom: 0; }
.bar-lab { font-weight: 700; font-size: 13.5px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bar-track { height: 16px; border-radius: 6px; background: var(--bg); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; background: var(--accent); }
.bar-fill.alt { background: var(--purple); }
.bar-fill.ok { background: var(--ok); }
.bar-val { text-align: right; font-weight: 800; font-size: 13.5px; font-variant-numeric: tabular-nums; }

.report-note {
  margin-top: 18px; display: flex; gap: 10px; align-items: flex-start;
  background: var(--accent-soft); border-radius: 11px; padding: 14px 16px;
  color: #33408a; font-weight: 600; font-size: 13.5px; line-height: 1.45;
}
.report-note .i { font-weight: 900; }

/* ---- toast ---- */
.adm-toast {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 14px;
  border-radius: 11px; padding: 14px 18px; box-shadow: 0 16px 40px -14px rgba(20,28,45,0.5);
  display: flex; align-items: center; gap: 10px;
  animation: admToast 0.25s ease;
}
.adm-toast .i { color: #8fb3ff; }
@keyframes admToast { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* discreet staff button on the kiosk */
.staff-btn {
  position: absolute; z-index: 9; bottom: 14px; right: 16px;
  font-family: "Mulish", system-ui, sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: oklch(0.86 0.02 86 / 0.4); background: transparent;
  border: 1px solid oklch(0.80 0.105 86 / 0.18); border-radius: 8px;
  padding: 7px 12px; cursor: pointer; transition: color 140ms, border-color 140ms, background 140ms;
}
.staff-btn:hover { color: var(--cream); border-color: oklch(0.80 0.105 86 / 0.5); background: oklch(0.80 0.105 86 / 0.08); }

/* ============================================================
   Campaign Builder — Storefront Branding
   ============================================================ */
.brand-panel { margin-top: 18px; }
.brand-head { margin-bottom: 20px; }
.brand-h { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.brand-sub { color: var(--muted); font-weight: 500; font-size: 14px; margin-top: 4px; max-width: 64ch; line-height: 1.45; }

.brand-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 440px); gap: 32px; align-items: start; }
@media (max-width: 1080px) { .brand-grid { grid-template-columns: 1fr; } }
.brand-controls { display: flex; flex-direction: column; gap: 22px; min-width: 0; }

/* preset chips */
.preset-row { display: flex; flex-wrap: wrap; gap: 10px; }
.preset-chip {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 13.5px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 11px;
  padding: 8px 13px 8px 9px; transition: border-color 120ms, background 120ms;
}
.preset-chip:hover { border-color: #c4ccda; }
.preset-chip.sel { border-color: var(--accent); background: var(--accent-soft); }
.pc-swatches { display: inline-flex; }
.pc-swatches i { width: 16px; height: 16px; border-radius: 50%; box-shadow: 0 0 0 1.5px #fff; }
.pc-swatches i:not(:first-child) { margin-left: -6px; }
.pc-name { white-space: nowrap; }

/* color fields */
.color-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .color-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .color-row { grid-template-columns: 1fr; } }
.color-field {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  align-items: center; gap: 2px 12px;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff;
}
.cf-swatch {
  grid-row: 1 / 3; width: 44px; height: 44px; border-radius: 10px; cursor: pointer;
  position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}
.cf-swatch input[type="color"] { position: absolute; inset: -4px; width: calc(100% + 8px); height: calc(100% + 8px); border: none; padding: 0; cursor: pointer; opacity: 0; }
.cf-label { font-weight: 800; font-size: 13.5px; align-self: end; }
.cf-hex { font-weight: 700; font-size: 12px; color: var(--muted); letter-spacing: 0.02em; align-self: start; }
.cf-hint { grid-column: 1 / -1; font-size: 12px; font-weight: 600; color: var(--faint); margin-top: 4px; }

/* font specimen under each select */
.font-specimen {
  margin-top: 10px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: #fafbfd; font-size: 22px; line-height: 1.1; color: var(--ink); overflow: hidden;
  white-space: nowrap; text-overflow: ellipsis;
}

/* contrast chips */
.contrast-chips { display: flex; flex-direction: column; gap: 8px; }
.cc-chip {
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700;
  border-radius: 10px; padding: 9px 13px; border: 1px solid var(--line); background: #fff;
}
.cc-chip .cc-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.cc-chip .cc-k { color: var(--ink); }
.cc-chip .cc-v { margin-left: auto; font-variant-numeric: tabular-nums; font-weight: 800; }
.cc-chip.ok   { background: var(--ok-soft);     border-color: #c7e8d2; }
.cc-chip.ok   .cc-dot { background: var(--ok); }      .cc-chip.ok   .cc-v { color: var(--ok); }
.cc-chip.warn { background: var(--warn-soft);   border-color: #f0dcb4; }
.cc-chip.warn .cc-dot { background: var(--warn); }    .cc-chip.warn .cc-v { color: var(--warn); }
.cc-chip.bad  { background: var(--danger-soft); border-color: #f0c4bc; }
.cc-chip.bad  .cc-dot { background: var(--danger); }  .cc-chip.bad  .cc-v { color: var(--danger); }

/* ---- preview column ---- */
.brand-preview { position: sticky; top: 8px; }
.bp-cap { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.bp-note { font-size: 12.5px; font-weight: 600; color: var(--faint); margin-top: 12px; text-align: center; }

.theme-preview { border-radius: 16px; overflow: hidden; box-shadow: 0 18px 50px -22px rgba(20,28,45,0.5); border: 1px solid var(--line); }
.tp-bar { display: flex; align-items: center; gap: 7px; padding: 9px 13px; background: #2a2f3a; }
.tp-bar .tp-dot { width: 9px; height: 9px; border-radius: 50%; background: #5a6172; }
.tp-bar .tp-url { margin-left: 12px; font-size: 11px; font-weight: 600; color: #aeb6c6; font-variant-numeric: tabular-nums; }

/* the mini kiosk — themed entirely by inline CSS vars from the builder */
.tp-stage {
  position: relative; aspect-ratio: 16 / 11; width: 100%;
  display: flex; flex-direction: column; overflow: hidden;
  color: var(--cream);
  background: radial-gradient(120% 80% at 50% 16%, var(--navy-soft) 0%, var(--navy) 44%, var(--navy-deep) 100%);
}
.tp-stage::before {
  content: ""; position: absolute; left: 50%; top: 36%; width: 130%; height: 130%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, color-mix(in oklab, var(--gold), transparent 84%) 0%, transparent 60%);
  pointer-events: none;
}
.tp-frame { position: absolute; inset: 11px; border: 1px solid color-mix(in oklab, var(--gold), transparent 78%); border-radius: 9px; pointer-events: none; }
.tp-stage > * { position: relative; z-index: 1; }

.tp-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 0; }
.tp-cobrand { display: flex; align-items: center; gap: 9px; }
.tp-mark {
  width: 34px; height: 34px; border-radius: 7px; flex-shrink: 0; display: grid; place-items: center;
  border: 1px solid color-mix(in oklab, var(--gold), transparent 45%);
  background: repeating-linear-gradient(45deg, color-mix(in oklab, var(--gold), transparent 90%) 0 4px, transparent 4px 8px);
}
.tp-mark span { font-family: var(--sans); font-size: 6px; letter-spacing: 0.14em; color: var(--gold); }
.tp-name { font-family: var(--serif); font-weight: 600; font-size: 17px; line-height: 1; color: var(--cream); }
.tp-loc { font-family: var(--sans); font-weight: 600; font-size: 7px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.tp-tag {
  font-family: var(--sans); font-weight: 700; font-size: 7px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-dim); border: 1px solid color-mix(in oklab, var(--gold), transparent 60%);
  border-radius: 999px; padding: 6px 11px;
}

.tp-hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8px 26px; gap: 7px; }
.tp-eyebrow { font-family: var(--sans); font-weight: 700; font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.tp-headline { font-family: var(--serif); font-weight: 600; font-size: 27px; line-height: 1.04; color: var(--cream); max-width: 14ch; }
.tp-headline em { font-style: italic; color: var(--gold-bright); }
.tp-sub { font-family: var(--sans); font-weight: 500; font-size: 11px; color: var(--cream-dim); }
.tp-start {
  margin-top: 6px; font-family: var(--sans); font-weight: 800; font-size: 12px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--navy-deep); cursor: default;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border: none; border-radius: 999px; padding: 11px 30px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 20px -8px color-mix(in oklab, var(--gold), transparent 40%);
}

.tp-card {
  position: absolute; right: 18px; bottom: 54px; z-index: 2;
  width: 132px; border-radius: 11px; padding: 12px 13px; color: var(--cream);
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  border: 1px solid color-mix(in oklab, var(--gold), transparent 50%);
  box-shadow: 0 16px 34px -16px rgba(0,0,0,0.7);
}
.tp-card-l { font-family: var(--sans); font-weight: 800; font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.tp-card-v { font-family: var(--serif); font-weight: 700; font-size: 26px; line-height: 1; color: var(--gold-bright); margin-top: 4px; }
.tp-chip { width: 22px; height: 16px; border-radius: 4px; margin-top: 8px; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); }

.tp-foot { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 0 14px; }
.tp-by { font-family: var(--sans); font-weight: 600; font-size: 6.5px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in oklab, var(--cream-dim), transparent 35%); }
.tp-gps { font-family: var(--sans); font-weight: 700; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); display: flex; align-items: center; gap: 7px; }
.tp-gps b { font-family: var(--serif); color: var(--cream); border: 1px solid color-mix(in oklab, var(--gold), transparent 45%); border-radius: 5px; padding: 2px 7px; letter-spacing: 0.04em; }
.tp-gps b::first-letter { color: var(--gold); }
