:root {
  --ink: #f7f8fc;
  --charcoal: #0a0d16;
  --slate: #121826;
  --teal: #4c6fff;
  --emerald: #6d5efc;
  --sea: #9eb0ff;
  --champagne: #d7c3a0;
  --champagne-soft: #2a2330;
  --coral: #ff6b7a;
  --muted: #98a3bd;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(15, 20, 33, 0.86);
  --soft: #070a12;
  --green: #3ecf8e;
  --red: #ff5d73;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  color-scheme: dark;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(76, 111, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(138, 125, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 50% 100%, rgba(255, 107, 122, 0.07), transparent 28rem),
    linear-gradient(145deg, #06080f 0%, #0a0d16 35%, #0b1020 100%);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  overflow-x: hidden;
}

button, input, textarea, select { font: inherit; }
input:focus, textarea:focus, select:focus, button:focus-visible, .wa:focus-visible {
  outline: 3px solid rgba(109, 94, 252, 0.42);
  outline-offset: 2px;
}
button, .wa {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
}
button:hover, .wa:hover { transform: translateY(-2px); filter: saturate(1.06); }
button:active, .wa:active { transform: scale(0.98); }
button:disabled { opacity: 0.52; cursor: not-allowed; }
img { display: block; width: 100%; object-fit: cover; }
main { width: min(1220px, calc(100% - 24px)); margin: 0 auto 86px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 19, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  background: transparent;
  color: #ffffff;
  font-weight: 950;
  font-size: 1.08rem;
  white-space: nowrap;
}
.brand span { color: var(--sea); }
nav { display: flex; flex: 1; min-width: 0; gap: 6px; overflow-x: auto; scrollbar-width: none; }
nav button, .pill {
  background: rgba(18,24,38,0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  padding: 10px 13px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}
nav button:hover, .pill:hover {
  border-color: rgba(109, 94, 252, 0.34);
  box-shadow: 0 12px 28px rgba(76, 111, 255, 0.18);
}

.mobile-dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px;
  background: rgba(10, 13, 22, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-dock button {
  min-height: 48px;
  border-radius: 8px;
  background: rgba(18, 24, 38, 0.96);
  color: var(--ink);
  font-weight: 950;
}

.primary, .secondary, .dark, .wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 18px 40px rgba(76, 111, 255, 0.2);
}
.primary::after, .secondary::after, .dark::after, .wa::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.32) 45%, transparent 62%);
  transform: translateX(-130%);
  animation: buttonShine 3.8s ease-in-out infinite;
}
.primary { background: linear-gradient(135deg, var(--teal), var(--emerald) 58%, #2b2f7f); }
.secondary { background: linear-gradient(135deg, #23283a, #323956 60%, #3c4366); color: #eef1ff; }
.dark { background: linear-gradient(135deg, #05070d, #111726 62%, #1c2440); }
.wa { background: linear-gradient(135deg, #20c463, #0b8e52); }
@keyframes buttonShine { 0%, 38% { transform: translateX(-130%); } 60%, 100% { transform: translateX(130%); } }
.big { min-height: 58px; font-size: 1.04rem; }
.wide { width: 100%; }
.ghost { background: transparent; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 18px 0 26px;
}

.launch-hero {
  min-height: calc(100vh - 88px);
  display: grid;
  gap: 18px;
  align-items: stretch;
  padding: 20px 0 12px;
}

.hero-copy,
.hero-showcase {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  display: grid;
  gap: 18px;
  padding: 28px 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(76,111,255,0.18), transparent 18rem),
    radial-gradient(circle at 100% 20%, rgba(109,94,252,0.14), transparent 18rem),
    linear-gradient(145deg, rgba(9,12,20,0.96), rgba(15,20,33,0.94));
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-points,
.hero-stack {
  display: grid;
  gap: 10px;
}

.hero-points article,
.show-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
}

.hero-points b,
.show-card h2 {
  display: block;
  margin-bottom: 6px;
}

.hero-points span,
.show-card p {
  color: var(--muted);
  margin: 0;
}

.hero-showcase {
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,122,0.1), transparent 16rem),
    linear-gradient(160deg, rgba(10,13,22,0.98), rgba(18,24,38,0.94));
}

.show-card.accent {
  background: linear-gradient(145deg, rgba(76,111,255,0.12), rgba(109,94,252,0.08));
}

.show-card.subtle {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.landing-band {
  display: grid;
  gap: 14px;
  margin: 10px 0 18px;
}

.how-grid {
  display: grid;
  gap: 12px;
}

.how-grid div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.02);
}

.landing-inline-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: rgba(15, 20, 33, 0.76);
  box-shadow: var(--shadow);
}

.landing-inline-cta p {
  margin: 0;
  color: var(--muted);
}

.split-home {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px 0;
}

.entry-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.auctioneer-entry {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6,8,15,0.96), rgba(22,28,54,0.9) 48%, rgba(76,111,255,0.62)),
    url("https://images.unsplash.com/photo-1607863680198-23d4b2565df0?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.auctioneer-entry .lead,
.auctioneer-entry .eyebrow { color: rgba(255,255,255,0.86); }

.buyer-entry {
  background:
    linear-gradient(135deg, rgba(10,13,22,0.92), rgba(18,24,38,0.86) 45%, rgba(109,94,252,0.18)),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}
.buyer-entry .lead,
.buyer-entry .eyebrow,
.buyer-entry h1,
.buyer-entry p { color: #eef1ff; }
.hero h1, .page-head h1, .dashboard-head h1, .live-panel h1, .auth-panel h1 {
  margin: 0;
  font-size: clamp(2.3rem, 11vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}
.lead { color: var(--muted); font-size: 1.12rem; line-height: 1.55; max-width: 700px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--sea);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight, .panel, .stat, .lot-card, .auth-panel, .invoice, .live-panel, .feed, .search-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}
.spotlight img { aspect-ratio: 4 / 3; min-height: 250px; }
.live-strip {
  padding: 10px 14px;
  color: #eef1ff;
  background: linear-gradient(90deg, rgba(76,111,255,0.9), rgba(109,94,252,0.76), rgba(255,107,122,0.42));
  font-weight: 950;
}
.card-pad, .panel, .auth-panel, .invoice, .live-panel, .feed { padding: 16px; }
.panel:hover, .lot-card:hover, .stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 80px rgba(76, 111, 255, 0.16);
  border-color: rgba(255,255,255,0.12);
}
.panel, .lot-card, .stat { transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.bid-amount { margin: 12px 0; font-size: clamp(2rem, 11vw, 4rem); font-weight: 950; line-height: 1; }

.stats-grid, .lot-grid, .dash-panels, .control-layout, .legal-grid {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}
.stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat { padding: 16px; }
.stat span { display: block; color: var(--muted); font-size: 0.83rem; }
.stat strong { display: block; margin-top: 8px; font-size: clamp(1.35rem, 5vw, 2rem); }
.stat.hot { color: var(--coral); }

.command-card {
  display: grid;
  gap: 14px;
  align-items: center;
  margin: 18px 0;
  border-radius: 14px;
  padding: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(158,176,255,0.22), transparent 15rem),
    radial-gradient(circle at 12% 100%, rgba(255,107,122,0.14), transparent 16rem),
    linear-gradient(135deg, #0a0d16, #18213c 58%, #3d49aa);
  box-shadow: var(--shadow);
}

.command-card h2 { margin: 0; font-size: clamp(1.7rem, 8vw, 3rem); line-height: 1; }
.command-card p { color: rgba(255,255,255,0.78); }
.command-card .eyebrow { color: rgba(255,255,255,0.82); }

.readiness-grid, .trust-strip, .pricing-grid, .public-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0;
}

.readiness, .trust-strip article, .check-row, .public-highlights article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 13px;
  box-shadow: 0 10px 24px rgba(17, 18, 37, 0.08);
}

.readiness b, .trust-strip b, .check-row span, .public-highlights b {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 950;
  background: rgba(255, 138, 52, 0.16);
  color: #b85507;
}

.readiness.done b, .check-row.done span {
  background: rgba(22, 214, 154, 0.16);
  color: #087b63;
}

.readiness span, .readiness small, .trust-strip span, .public-highlights span {
  display: block;
  margin-top: 7px;
}

.readiness span, .trust-strip span, .public-highlights span { color: var(--muted); }

.site-footer {
  margin: 28px auto 84px;
  width: min(1220px, calc(100% - 24px));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(9, 12, 20, 0.9);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-brand {
  padding: 0;
  min-height: auto;
  justify-content: flex-start;
  background: transparent;
  box-shadow: none;
}

.footer-brand::after { display: none; }

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links button,
.footer-links a,
.footer-links span {
  color: var(--muted);
  background: transparent;
  padding: 0;
  border: 0;
  text-align: left;
  text-decoration: none;
  box-shadow: none;
}

.footer-links button:hover,
.footer-links a:hover {
  transform: none;
  filter: none;
  color: var(--ink);
}

.footer-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.readiness small { color: var(--muted); line-height: 1.35; }

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.price-card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(1.8rem, 9vw, 3rem);
  line-height: 1;
  color: var(--sea);
}
.price-card.featured {
  border-color: rgba(124, 142, 255, 0.28);
  box-shadow: 0 22px 54px rgba(49, 65, 168, 0.2);
}
.price-badge {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: linear-gradient(135deg, rgba(124,142,255,0.24), rgba(88,109,255,0.18));
  color: #dfe6ff;
  font-size: 0.75rem;
  font-weight: 950;
}
.price-limits {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}
.price-limits span {
  color: var(--muted);
  font-size: 0.92rem;
}
.price-limits b {
  color: var(--ink);
}
.plan-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}
.plan-list li {
  color: var(--muted);
}
.compare-table,
.faq-list {
  display: grid;
  gap: 10px;
}
.compare-table {
  overflow-x: auto;
}
.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 10px;
  align-items: center;
}
.compare-head {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}
.compare-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.02);
}
.faq-item b {
  display: block;
  margin-bottom: 8px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
}
.usage-block {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.usage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.usage-row span {
  color: var(--muted);
  font-size: 0.9rem;
}
.subscription-card {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
}
.subscription-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.subscription-head span {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}
.subscription-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.usage-chip {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
}
.usage-chip span {
  color: var(--muted);
}
.usage-chip.warn {
  border-color: rgba(255,138,86,0.3);
  background: rgba(255,138,86,0.08);
}
.readiness.ready b,
.readiness.done b {
  background: rgba(22, 214, 154, 0.16);
  color: #087b63;
}
.readiness.warning b {
  background: rgba(255, 196, 139, 0.18);
  color: #ffcf94;
}
.readiness.not-active b,
.readiness.needs-setup b {
  background: rgba(255, 107, 122, 0.18);
  color: #ffccd2;
}
.bidder-tag {
  margin-bottom: 10px;
}
.compact-panel {
  padding-top: 12px;
  padding-bottom: 12px;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(5, 8, 16, 0.72);
  backdrop-filter: blur(10px);
}
.modal-card {
  width: min(100%, 560px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
  background: rgba(13, 18, 31, 0.98);
  box-shadow: 0 26px 80px rgba(0,0,0,0.42);
}
.modal-card h2 {
  margin: 0 0 8px;
}
.confirm-facts {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}
.confirm-facts div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
}
.confirm-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}
.confirm-facts b {
  display: block;
  margin-top: 4px;
}

.page-head, .dashboard-head {
  margin: 18px 0;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(76, 111, 255, 0.12), rgba(138, 125, 255, 0.1), rgba(255, 107, 122, 0.05));
}
.colour-band {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(158,176,255,0.2), transparent 14rem),
    radial-gradient(circle at 14% 100%, rgba(255,107,122,0.12), transparent 16rem),
    linear-gradient(135deg, #090c14 0%, #171f39 58%, #3d49aa 100%);
}
.colour-band p, .colour-band .eyebrow { color: rgba(255,255,255,0.86); }

.action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}
.action-grid.tight { grid-template-columns: repeat(2, 1fr); margin-top: 10px; }

.meta-row, .lot-top, .price-row, .feed-row, .invoice-row, .invoice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.status, .pulse-status {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(109, 94, 252, 0.14);
  color: var(--sea);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: capitalize;
}
.status.live, .status.open-for-registration, .pulse-status.open { color: #aab8ff; background: rgba(76, 111, 255, 0.18); }
.status.sold, .pulse-status.sold { color: var(--coral); background: rgba(216, 93, 79, 0.14); }
.status.reserve-not-met, .pulse-status.reserve-not-met, .status.unsold { color: #ffc48b; background: rgba(255, 138, 52, 0.12); }
.pulse-status.going-once, .pulse-status.going-twice { color: #fff4dc; background: rgba(215, 195, 160, 0.18); animation: pulse 0.75s ease-in-out infinite alternate; }
@keyframes pulse { from { transform: scale(1); } to { transform: scale(1.04); } }

.lot-card img { aspect-ratio: 4 / 3; background: #0b1020; }
.lot-card h3 { margin: 10px 0 6px; }
.lot-card p { color: var(--muted); min-height: 46px; }
.price-row { padding: 10px 0; border-top: 1px solid var(--line); }
.price-row.hot strong { color: var(--coral); }
.price-row.reserve strong { color: var(--champagne); }

.form { display: grid; gap: 12px; }
.two { display: grid; grid-template-columns: 1fr; gap: 12px; }
.full { grid-column: 1 / -1; }
label { display: grid; gap: 6px; font-weight: 850; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 16, 30, 0.96);
  color: var(--ink);
  padding: 13px 12px;
}
textarea { min-height: 96px; resize: vertical; }
.check { display: flex; align-items: center; gap: 8px; }
.check input { width: auto; }
.auth-panel { max-width: 720px; margin: 22px auto; }
.muted { color: var(--muted); }
.fineprint { color: var(--muted); font-size: 0.9rem; }
.alert {
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 107, 122, 0.12);
  color: #ffb5be;
  font-weight: 850;
}

.linkish {
  display: inline;
  min-height: auto;
  padding: 0;
  color: inherit;
  background: transparent;
  text-decoration: underline;
  font-weight: 900;
  box-shadow: none;
}

.upload-zone {
  border: 2px dashed rgba(109, 94, 252, 0.28);
  border-radius: 8px;
  padding: 18px;
  background: rgba(109, 94, 252, 0.06);
  text-align: center;
  cursor: pointer;
}

.upload-zone.dragging {
  border-color: var(--sea);
  background: rgba(76, 111, 255, 0.12);
  box-shadow: inset 0 0 0 2px rgba(76, 111, 255, 0.16);
}

.upload-zone input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-zone strong,
.upload-zone span,
.upload-zone small {
  display: block;
}

.upload-zone span,
.upload-zone small {
  color: var(--muted);
  margin-top: 6px;
}

.verify-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.verify-row span { display: block; color: var(--muted); }
.verify-row > div:last-child { display: flex; gap: 8px; flex-wrap: wrap; }

.toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 16px 0;
}

.live-room {
  display: grid;
  gap: 14px;
  margin: 16px 0;
}
.live-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.live-visual img {
  height: 100%;
  min-height: 300px;
  transition: transform 0.45s ease, filter 0.45s ease, opacity 0.45s ease;
}
.lot-image-shift {
  transform: scale(1.03);
  filter: saturate(1.08) brightness(1.03);
}
.pulse-status { position: absolute; left: 14px; top: 14px; }
.lot-progress-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(10, 13, 22, 0.72);
  color: #eef1ff;
  font-size: 0.76rem;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.connection {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 950;
}
.connection.online { color: #087b63; background: rgba(22, 214, 154, 0.15); }
.connection.offline { color: #ffb5be; background: rgba(255, 107, 122, 0.14); }
.live-hud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 14px;
}
.live-hud article {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255,255,255,0.03);
}
.live-hud span,
.bid-hint-row span,
.bid-meta-row span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}
.live-hud b,
.bid-meta-row b {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
}
.current-bid {
  margin: 14px 0;
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(158,176,255,0.24), transparent 12rem),
    linear-gradient(135deg, #0a0d16, #3d49aa);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(158,176,255,0.18), 0 18px 42px rgba(76,111,255,0.22);
}
.current-bid span, .current-bid small { display: block; color: rgba(255,255,255,0.72); }
.current-bid strong { display: block; font-size: clamp(2.6rem, 15vw, 4.6rem); line-height: 1; margin: 8px 0; }
.next-min {
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 12px;
  background: rgba(76, 111, 255, 0.12);
}
.auction-cadence {
  display: grid;
  gap: 4px;
  margin: 12px 0;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
}
.auction-cadence b { font-size: 1.05rem; text-transform: capitalize; }
.auction-cadence span { color: rgba(255,255,255,0.76); }
.stage-meter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}
.stage-meter span {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 8px 10px;
  text-align: center;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  font-size: 0.76rem;
  font-weight: 900;
}
.stage-meter span.on {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  box-shadow: 0 12px 28px rgba(76,111,255,0.24);
}
.stage-meter.warm span.on { background: linear-gradient(135deg, #7b5cff, #ff8a56); }
.stage-meter.danger span.on { background: linear-gradient(135deg, #ff6b7a, #ff9955); }
.win-banner, .outbid-banner {
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 13px 14px;
  font-weight: 950;
}
.win-banner { color: #087b63; background: rgba(22, 214, 154, 0.16); }
.outbid-banner { color: #b41556; background: rgba(255, 61, 139, 0.14); }
.state-pop {
  animation: statePop 0.28s ease;
}
@keyframes statePop {
  from { transform: scale(0.97); opacity: 0.3; }
  to { transform: scale(1); opacity: 1; }
}
.voice-callout {
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  color: #eef1ff;
  font-weight: 950;
  letter-spacing: 0.01em;
}
.voice-callout.warm { background: linear-gradient(135deg, rgba(123,92,255,0.18), rgba(255,138,86,0.12)); }
.voice-callout.danger { background: linear-gradient(135deg, rgba(255,107,122,0.2), rgba(255,153,85,0.12)); }
.voice-callout.sold { background: linear-gradient(135deg, rgba(62,207,142,0.16), rgba(76,111,255,0.12)); }
.bid-dock {
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.bid-dock.open {
  position: sticky;
  bottom: 74px;
  z-index: 15;
  box-shadow: 0 22px 48px rgba(0,0,0,0.32);
  backdrop-filter: blur(18px);
}
.bid-dock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.bid-dock-head span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}
.bid-dock-head b { font-size: 0.9rem; }
.leading-chip {
  position: sticky;
  top: 0;
  z-index: 3;
  margin: 0 0 10px;
  border-radius: 999px;
  padding: 9px 12px;
  width: max-content;
  background: linear-gradient(135deg, rgba(62,207,142,0.2), rgba(76,111,255,0.16));
  color: #dcfff0;
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 0 10px 28px rgba(62,207,142,0.14);
}
.bid-buttons { display: grid; grid-template-columns: 1fr; gap: 10px; }
.bid {
  min-height: 76px;
  font-size: 1.22rem;
  animation: bidBreathe 2.4s ease-in-out infinite;
}
.bid small,
.bid span {
  display: block;
}
.bid small {
  opacity: 0.78;
  font-size: 0.8rem;
  font-weight: 800;
}
.bid span {
  margin-top: 4px;
  font-size: 1.2rem;
  font-weight: 950;
}
.bid:nth-child(2) { animation-delay: 0.18s; }
.bid:nth-child(3) { animation-delay: 0.36s; }
@keyframes bidBreathe {
  0%, 100% { box-shadow: 0 14px 32px rgba(76, 111, 255, 0.2); }
  50% { box-shadow: 0 20px 44px rgba(109, 94, 252, 0.26); }
}
.inline-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 10px; }
.bid-meta-row,
.bid-hint-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 0;
}
.fx-panel {
  margin: 12px 0 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(15,20,33,0.74);
  box-shadow: var(--shadow);
}
.fx-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.fx-head h2 {
  margin: 0;
  font-size: 1.1rem;
}
.fx-toggles {
  display: grid;
  gap: 10px;
}
.fx-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
}
.fx-toggle input {
  width: auto;
  accent-color: var(--teal);
}
.lot-handoff-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  top: 84px;
  z-index: 65;
  border: 1px solid rgba(158,176,255,0.18);
  border-radius: 16px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(76,111,255,0.92), rgba(109,94,252,0.9));
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 24px 60px rgba(76,111,255,0.28);
  animation: handoffIn 0.35s ease;
}
@keyframes handoffIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.countdown-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.84rem;
  font-weight: 950;
}
.countdown-pill.calm { background: rgba(76,111,255,0.14); color: #b9c5ff; }
.countdown-pill.warm { background: rgba(255,153,85,0.16); color: #ffd0b1; }
.countdown-pill.danger {
  background: rgba(255,107,122,0.18);
  color: #ffd3d8;
  animation: pulse 0.7s ease-in-out infinite alternate;
}
.feed-pop {
  border-radius: 12px;
  padding-left: 10px;
  padding-right: 10px;
  background: linear-gradient(135deg, rgba(76,111,255,0.12), rgba(109,94,252,0.08));
  animation: feedFlash 1s ease;
}
@keyframes feedFlash {
  from { transform: translateX(8px); opacity: 0.35; }
  to { transform: translateX(0); opacity: 1; }
}

.watch-btn {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  border: 1px solid rgba(76,111,255,0.28);
  border-radius: 8px;
  background: rgba(76,111,255,0.08);
  color: var(--sea);
  font-weight: 950;
}
.watch-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
}
.watch-panel { border-color: rgba(76,111,255,0.28); }
.watch-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.watch-chips button {
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(76,111,255,0.16);
  color: var(--sea);
  font-weight: 900;
}
.auction-result {
  display: grid;
  gap: 4px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid rgba(109,94,252,0.2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(12, 17, 31, 0.92);
  color: var(--ink);
  text-align: left;
}
.auction-result b { font-size: 1.05rem; }
.auction-result span, .auction-result small { color: var(--muted); }

.feed-row, .invoice-row {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.feed-row span, .invoice-row small { display: block; color: var(--muted); }

.control-layout { grid-template-columns: 1fr; }
.live-control img { max-height: 330px; border-radius: 8px; }
.control-facts, .mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0;
}
.control-facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}
.control-facts span { display: block; color: var(--muted); font-size: 0.8rem; }
.control-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.queue {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}
.queue-item {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  text-align: left;
  color: var(--ink);
}
.queue-item.active { outline: 3px solid var(--coral); }
.progress {
  overflow: hidden;
  height: 13px;
  border-radius: 999px;
  background: rgba(17, 18, 37, 0.1);
}
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--teal), var(--sea), var(--champagne)); }
.progress.custom span { opacity: 0.45; }

table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.table-wrap { overflow-x: auto; }
.invoice { max-width: 980px; margin: 18px auto; }
.invoice-parties {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 18px 0;
}
.invoice-total {
  margin: 18px 0;
  text-align: right;
  font-size: 2.5rem;
  font-weight: 950;
}

.toast {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  border-radius: 8px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--ink), var(--emerald));
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 900;
}

@media (min-width: 760px) {
  .hero { grid-template-columns: 1.08fr 0.92fr; }
  .launch-hero { grid-template-columns: 1.1fr 0.9fr; }
  .hero-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-home { grid-template-columns: 1fr 1fr; }
  .mobile-dock { display: none; }
  .action-grid { grid-template-columns: repeat(auto-fit, minmax(170px, max-content)); }
  .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .readiness-grid, .trust-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .public-highlights { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .command-card { grid-template-columns: 1fr auto; }
  .lot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dash-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .legal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .toolbar { grid-template-columns: 1fr 240px; }
  .live-room { grid-template-columns: minmax(0, 1fr) 420px; align-items: start; }
  .feed { grid-column: 1 / -1; }
  .control-layout { grid-template-columns: 1.08fr 0.92fr; align-items: start; }
  .control-layout .full { grid-column: 1 / -1; }
  .bid-buttons { grid-template-columns: repeat(3, 1fr); }
  .invoice-parties { grid-template-columns: 1fr 1fr; }
  .verify-row { grid-template-columns: 1fr auto; align-items: center; }
  .subscription-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .toast { left: auto; right: 22px; width: 380px; }
}

@media (max-width: 640px) {
  main { width: min(100%, calc(100% - 14px)); margin-bottom: 92px; }
  .site-footer { width: min(100%, calc(100% - 14px)); margin-bottom: 92px; padding: 16px; }
  .topbar { flex-wrap: wrap; align-items: stretch; gap: 8px; padding: 10px; }
  .brand { flex: 1 1 auto; min-width: 0; font-size: 1rem; text-align: left; }
  .topbar nav { order: 3; flex: 1 0 100%; }
  .topbar .pill { margin-left: 0; max-width: 44vw; overflow: hidden; text-overflow: ellipsis; padding: 9px 11px; font-size: 0.92rem; }
  nav button, .pill { padding: 9px 11px; }
  .page-head h1, .dashboard-head h1, .auth-panel h1 { font-size: clamp(1.7rem, 8vw, 2.7rem); line-height: 1.02; }
  .page-head p, .dashboard-head p, .auth-panel p { max-width: 100%; }
  .modal-card { padding: 16px; border-radius: 16px; }
  .card-pad, .panel, .auth-panel, .invoice, .live-panel, .feed { padding: 13px; }
  .live-room { gap: 10px; margin: 10px 0; }
  .live-visual { min-height: 240px; }
  .live-visual img { min-height: 240px; }
  .live-hud { grid-template-columns: 1fr; gap: 6px; margin: 8px 0 10px; }
  .stage-meter { gap: 6px; margin: 10px 0; }
  .stage-meter span { padding: 7px 8px; font-size: 0.7rem; }
  .current-bid { margin: 10px 0; padding: 14px; }
  .current-bid strong { font-size: clamp(2.1rem, 13vw, 3.5rem); }
  .next-min { margin-bottom: 10px; padding: 10px; }
  .bid-dock.open { bottom: 68px; padding: 10px; border-radius: 14px; }
  .bid { min-height: 66px; font-size: 1.08rem; }
  .bid span { font-size: 1.08rem; }
  .inline-form { grid-template-columns: 1fr; }
  .bid-meta-row, .bid-hint-row, .bid-dock-head, .fx-head { display: grid; gap: 6px; }
  .lot-handoff-banner { top: 74px; left: 8px; right: 8px; padding: 14px 15px; font-size: 0.94rem; }
  .compare-head, .compare-row { min-width: 520px; }
}

@media (min-width: 1080px) {
  .live-room { grid-template-columns: minmax(0, 1fr) 430px 310px; }
  .feed { grid-column: auto; }
}

@media print {
  body { background: #fff; }
  main { width: 100%; margin: 0; }
  .topbar, .toast, .no-print, button, .wa { display: none !important; }
  .invoice, .panel { box-shadow: none; border: 0; }
}
