:root {
  /* Surfaces */
  --ink:        #07080a;
  --surface:    #0e1015;
  --surface-2:  #141720;
  --surface-3:  #1a1e28;
  --border:     #1e2230;
  --border-bright: #272c3c;

  /* Text */
  --text:       #eceae0;
  --text-dim:   #8a8e9c;
  --text-mute:  #52566a;

  /* Accents matched to bidoncalls.com brand */
  --blue:        #00a3dc;
  --blue-bright: #10bcf5;
  --blue-deep:   #006c94;
  --blue-soft:   #90e0ff;
  --orange:      #ff9a1a;
  --orange-bright: #ffb24a;
  --red:         #ed1723;
  --red-bright:  #ff2e3a;
  --red-deep:    #b8121c;
  --pink:        #e5356f;
  --magenta:     #ca2b5e;
  --purple:      #8a4caf;
  /* Brand gradient mirrors the "Bid" lettering */
  --brand-grad: linear-gradient(90deg, #8a4caf 0%, #e5356f 45%, #ed1723 100%);

  /* Lime/green accent for winning bids and positive metrics */
  --lime:      #a3e635;
  --lime-dim:  #6ea81e;

  /* Typography */
  --display: "Bricolage Grotesque", "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Inter Tight", -apple-system, sans-serif;
  --mono: "JetBrains Mono", monospace;

  --shadow-1: 0 12px 30px -18px rgba(0, 0, 0, 0.7);
  --shadow-2: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --ring: 0 0 0 4px rgba(16, 188, 245, 0.18);
}

/* ============ LIGHT MODE ============ */
html.light {
  --ink:        #ffffff;
  --surface:    #f8f9fb;
  --surface-2:  #f1f3f7;
  --surface-3:  #e8ebf2;
  --border:     #dde0ea;
  --border-bright: #c8ccd8;
  --text:       #0d0f14;
  --text-dim:   #4a4f60;
  --text-mute:  #8a8e9c;
}
html.light body {
  background: var(--ink);
  color: var(--text);
}
html.light nav.main {
  background: rgba(255,255,255,0.88);
  border-bottom-color: var(--border);
}
html.light .status-bar {
  background: var(--surface-2);
}
html.light .ticker {
  background: var(--surface-2);
}
html.light .ticker::before {
  background: linear-gradient(90deg, var(--surface-2), transparent);
}
html.light .ticker::after {
  background: linear-gradient(-90deg, var(--surface-2), transparent);
}
html.light .metrics {
  background: var(--surface);
}
html.light .compliance {
  background: var(--surface);
}
html.light footer {
  background: var(--surface);
}
html.light .contact-form {
  background: var(--surface-2);
  border-color: var(--border);
}
html.light .form-field input,
html.light .form-field select,
html.light .form-field textarea {
  background: var(--ink);
  color: var(--text);
  border-color: var(--border-bright);
}
html.light .step {
  background: var(--ink);
}
html.light .step:hover {
  background: var(--surface);
}
html.light .auction-card {
  background: var(--surface);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: rgba(0, 163, 220, 0.22);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 10px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ STATUS BAR ============ */
.status-bar {
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
}
.status-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.market-status {
  display: flex;
  align-items: center;
  gap: 18px;
}
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
}
.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(0, 163, 220, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 163, 220, 0.6);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(0, 163, 220, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 163, 220, 0);
  }
}
.status-sep {
  color: var(--text-mute);
}
.status-login {
  display: flex;
  gap: 20px;
}
.status-login a {
  transition: color 0.15s;
}
.status-login a:hover {
  color: var(--text);
}
.status-login .buyer:hover {
  color: var(--blue);
}
.status-login .seller:hover {
  color: var(--red);
}

/* ============ MAIN NAV ============ */
nav.main {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  /* needed for absolute-positioned mobile menu */
  isolation: isolate;
}
nav.main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
html.light nav.main .logo-top-image {
  background: #191932;
  border-radius: 8px;
  padding: 6px 10px;
}
html.light footer .logo-footer-image {
  background: #191932;
  border-radius: 8px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
}
footer .logo-img {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav-links a {
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links .caret {
  font-size: 9px;
  opacity: 0.6;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.15s;
  font-family: var(--sans);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.btn:active {
  transform: translateY(0px);
}
.btn-primary {
  background: var(--brand-grad);
  color: #ffffff;
  border: none;
  font-weight: 600;
}
.btn-primary:hover {
  opacity: 0.88;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border-bright);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--ink);
  border-color: var(--text);
}

.btn-amber {
  background: var(--orange);
  color: #0d0f14;
  border: none;
  font-weight: 600;
}
.btn-amber:hover {
  background: #ffae40;
  color: #0d0f14;
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 800px 400px at 20% 0%,
      rgba(0, 163, 220, 0.12),
      transparent
    ),
    radial-gradient(
      ellipse 600px 300px at 90% 20%,
      rgba(237, 23, 35, 0.07),
      transparent
    );
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text-dim);
  margin-bottom: 28px;
}
.eyebrow-tag {
  background: var(--blue);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
h1.hero-title em {
  font-style: italic;
  font-weight: 700;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0 0.08em;
  display: inline-block;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
}
.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-mute);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.hero-trust strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  font-size: 18px;
  font-family: var(--sans);
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

/* ============ LIVE AUCTION CARD ============ */
.auction-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}
.auction-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(0, 163, 220, 0.5),
    transparent 45%,
    rgba(237, 23, 35, 0.35)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.auction-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.auction-title {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--mono);
  margin-bottom: 6px;
}
.auction-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 90;
}
.auction-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 163, 220, 0.1);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.auction-live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

.bid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.bid-stat {
  background: var(--surface-2);
  border-radius: 10px;
  padding: 14px 16px;
}
.bid-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bid-stat-val {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.bid-stat-val.lime {
  color: var(--lime);
}
.bid-stat-val .sub {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 400;
}

.bid-history {
  background: var(--surface-2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.bid-history-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bid-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  padding: 5px 0;
}
.bid-row + .bid-row {
  border-top: 1px solid var(--border);
}
.bid-buyer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
}
.bid-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--text);
}
.bid-amount {
  color: var(--text);
  font-weight: 500;
}
.bid-amount.winning {
  color: var(--blue);
}

.auction-footer {
  display: flex;
  gap: 10px;
}
.btn-bid {
  flex: 1;
  background: var(--blue);
  color: #ffffff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}
.btn-bid:hover {
  background: var(--blue-bright);
}
.btn-watch {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-bright);
  color: var(--text-dim);
  font-size: 14px;
}

/* ============ TICKER ============ */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
}
.ticker-sym {
  font-weight: 600;
  color: var(--text);
}
.offers-ticker .ticker-track {
  gap: 40px;
}
.offers-ticker .ticker-item {
  position: relative;
  padding-right: 40px;
}
.offers-ticker .ticker-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(125, 135, 156, 0.65);
  transform: translateY(-50%);
}
.offers-ticker .ticker-item:last-child::after {
  display: none;
}
.offers-ticker .ticker-sym {
  color: rgba(241, 242, 246, 0.92);
  letter-spacing: 0.01em;
}
html.light .offers-ticker .ticker-sym {
  color: rgba(17, 24, 39, 0.88);
}
.ticker-price {
  color: var(--text);
}
.ticker-change.up {
  color: var(--blue);
}
.ticker-change.down {
  color: var(--red);
}
.ticker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-mute);
}

/* ============ SECTION SCAFFOLD ============ */
section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--blue);
}
h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h2 em {
  font-style: italic;
  font-weight: 700;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0 0.08em;
  display: inline-block;
}
h2 .amber-em {
  color: var(--red);
}
.section-head p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 540px;
}

/* ============ TWO-SIDED ============ */
.sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.side:hover {
  transform: translateY(-4px);
}
.side.buyer:hover {
  border-color: rgba(0, 163, 220, 0.4);
}
.side.seller:hover {
  border-color: rgba(237, 23, 35, 0.4);
}

.side-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.side.buyer .side-tag {
  background: rgba(0, 163, 220, 0.12);
  color: var(--blue);
}
.side.seller .side-tag {
  background: rgba(237, 23, 35, 0.12);
  color: var(--red);
}

.side h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  font-variation-settings: "wdth" 90;
}
.side h3 em {
  font-style: italic;
}
.side.buyer h3 em {
  color: var(--blue);
}
.side.seller h3 em {
  color: var(--red);
}

.side p {
  color: var(--text-dim);
  margin-bottom: 28px;
  font-size: 15px;
}

.side-features {
  list-style: none;
  margin-bottom: 32px;
}
.side-features li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.side-features li:last-child {
  border-bottom: none;
}
.side-features .label {
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 0 0 130px;
}
.side-features .val {
  color: var(--text);
  flex: 1;
}

.side-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  transition: gap 0.2s;
}
.side-cta:hover {
  gap: 14px;
}
.side.buyer .side-cta {
  color: var(--blue);
}
.side.seller .side-cta {
  color: var(--red);
}

/* ============ INDUSTRIES ============ */
.industries {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.industry {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.industry:hover {
  border-color: var(--border-bright);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.industry.feat {
  grid-column: span 6;
}
.industry.reg {
  grid-column: span 3;
}

.industry-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.industry:hover .industry-icon {
  border-color: var(--blue);
}

.industry-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.industry.feat .industry-name {
  font-size: 28px;
}
.industry-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 40px;
}
.industry-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.industry-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.industry-stat-val {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text);
}
.industry-stat-val.lime {
  color: var(--lime);
}

/* ============ METRICS ============ */
.metrics {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.metric {
  border-left: 1px solid var(--border-bright);
  padding-left: 24px;
}
.metric-val {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: "wdth" 85;
}
.metric-val .unit {
  font-size: 32px;
  color: var(--blue);
}
.metric-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ============ HOW ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.step {
  background: var(--ink);
  padding: 36px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.step:hover {
  background: var(--surface);
}
.step-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 36px;
}
.step-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  margin-top: auto;
}
.step-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ============ DASHBOARD PREVIEW ============ */
.dash-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px;
  position: relative;
}
.dash-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 14px;
}
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface-3);
}
.dash-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  margin-left: 12px;
}
.dash-body {
  background: var(--ink);
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  min-height: 420px;
}
.dash-nav {
  border-right: 1px solid var(--border);
  padding-right: 20px;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.dash-nav-item.active {
  background: var(--surface-2);
  color: var(--text);
}
.dash-nav-item .ico {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--surface-3);
}
.dash-nav-item.active .ico {
  background: var(--blue);
}
.dash-nav-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 20px 0 10px;
}

.dash-main h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.dash-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.dash-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dash-stat-val {
  font-family: var(--mono);
  font-size: 20px;
  margin-bottom: 4px;
}
.dash-stat-delta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--blue);
}
.dash-stat-delta.down {
  color: var(--red);
}

.dash-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  height: 200px;
  position: relative;
}
.dash-chart-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dash-chart-title {
  font-size: 13px;
  color: var(--text);
}
.dash-chart-legend {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
}
.dash-chart svg {
  width: 100%;
  height: calc(100% - 34px);
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.5;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
}
.testimonial-quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
}
.author-info {
  text-align: left;
}
.author-name {
  font-size: 14px;
  margin-bottom: 2px;
}
.author-role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.testimonial-dot {
  width: 24px;
  height: 2px;
  background: var(--border-bright);
  border-radius: 2px;
}
.testimonial-dot.active {
  background: var(--blue);
}

/* ============ COMPLIANCE BAR ============ */
.compliance {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  background: var(--surface);
}
.compliance .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.compliance-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badges {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
}
.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 1000px 500px at 50% 50%,
    rgba(0, 163, 220, 0.1),
    transparent 70%
  );
}
.final-cta-inner {
  position: relative;
  text-align: center;
}
.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 24px;
}
.final-cta p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 40px;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-about {
  max-width: 360px;
}
.footer-about p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 16px 0 24px;
  line-height: 1.6;
}
.footer-contact {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.8;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sides {
    grid-template-columns: 1fr;
  }
  .industries {
    grid-template-columns: 1fr 1fr;
  }
  .industry.feat,
  .industry.reg {
    grid-column: span 1;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .dash-body {
    grid-template-columns: 1fr;
  }
  .dash-nav {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Tablet nav & layout (768px) ---- */
@media (max-width: 768px) {
  /* Hide desktop nav items, show hamburger */
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile nav dropdown */
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(7, 8, 10, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    display: none;
    z-index: 99;
  }
  html.light .nav-links {
    background: rgba(255, 255, 255, 0.97);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    width: 100%;
    min-height: 44px;
    font-size: 15px;
  }
  /* Show login links inside mobile menu */
  .nav-links a::after { display: none; } /* no underline anim in mobile */

  /* Hero stacks */
  .hero-cta {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-cta .btn { flex: 1 1 140px; justify-content: center; }
  .hero-trust {
    flex-wrap: wrap;
    gap: 18px;
  }

  /* Testimonials already 1-col */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Features */
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .subcat-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Mobile (640px) ---- */
@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
  section {
    padding: 72px 0;
  }

  /* Status bar: hide secondary items */
  .status-bar {
    font-size: 10.5px;
  }
  .status-bar .container {
    height: 32px;
    gap: 0;
  }
  .status-sep { display: none; }
  .market-status span:not(.live-dot) { display: none; }
  .status-login a { font-size: 10px; }

  /* Hero */
  .hero { padding: 60px 0 40px; }
  h1.hero-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-sub { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust { display: none; }

  /* Auction card */
  .auction-card { padding: 18px 16px; }

  /* Page hero */
  h1.page-hero-title { font-size: clamp(26px, 8vw, 42px); }
  .page-hero-sub { font-size: 15px; }
  .page-hero div[style*="flex"] { flex-direction: column; }
  .page-hero div[style*="flex"] .btn { width: 100%; justify-content: center; }

  /* Industries */
  .industries {
    grid-template-columns: 1fr;
  }

  /* Metrics */
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
  }

  /* Features */
  .feature-grid,
  .subcat-grid {
    grid-template-columns: 1fr;
  }

  /* Final CTA buttons */
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 18px;
  }

  /* Stats strip */
  .stats-strip {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  /* Publisher profiles */
  .pub-profiles {
    flex-direction: column;
  }

  /* Ensure 44px touch targets everywhere */
  .btn { min-height: 44px; }
  .nav-links a { min-height: 44px; }
}

/* ============ INTERIOR PAGE PATTERNS ============ */
.page-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    ellipse 800px 300px at 30% 0%,
    rgba(0, 163, 220, 0.08),
    transparent
  );
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  max-width: 1080px;
}
h1.page-hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
  max-width: 900px;
}
h1.page-hero-title em {
  font-style: italic;
  font-weight: 700;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0 0.08em;
  display: inline-block;
}
.page-hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 680px;
  line-height: 1.55;
}

/* Active nav state */
.nav-links a[aria-current="page"] {
  color: var(--text);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-bright);
  background: transparent;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.theme-toggle:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-bright);
}
html:not(.light) .theme-toggle .icon-moon { display: none; }
html.light .theme-toggle .icon-sun { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  font-size: 22px;
  color: var(--text);
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border-bright);
}
/* nav-links.open styling is handled in the responsive block */

/* ============ TESTIMONIALS GRID ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  padding: 28px 32px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-card .t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-bright);
  flex-shrink: 0;
}
.testimonial-card .t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-card .t-role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

/* ============ STATS STRIP ============ */
.stats-strip {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stats-strip .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stats-strip .stat-num {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stats-strip .stat-lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ INDUSTRY PILLS / ICON CARDS ============ */
.industry-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: all 0.15s;
  text-decoration: none;
  min-height: 44px;
}
.industry-pill:hover {
  border-color: var(--blue);
  color: var(--text);
  background: var(--surface-3);
}

/* Prose content (About, Legal pages) */
.prose-section {
  padding: 80px 0;
}
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
  margin-top: 48px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
}
.prose p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 18px;
}
.prose ul,
.prose ol {
  margin: 16px 0 24px 24px;
  color: var(--text-dim);
  line-height: 1.7;
}
.prose li {
  margin-bottom: 8px;
}
.prose a {
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.prose a:hover {
  border-color: var(--blue);
}
.prose strong {
  color: var(--text);
  font-weight: 500;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* Feature grid (used on buyers/sellers pages) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.feature:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--border-bright), 0 8px 32px -8px rgba(0,163,220,0.12);
  background: var(--surface-2);
}
.feature-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 163, 220, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature.sell .feature-ico {
  background: rgba(237, 23, 35, 0.1);
  color: var(--red);
}
.feature h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.feature p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Vertical-page sub-category list */
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.subcat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
}
.subcat-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.subcat-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.subcat-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--blue);
}
.subcat-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Contact form styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding: 80px 0;
}
.contact-info h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 28px;
}
.contact-channels {
  margin-top: 40px;
}
.contact-channel {
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.contact-channel:last-child {
  border-bottom: 1px solid var(--border);
}
.contact-channel .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-channel .val {
  font-size: 16px;
  color: var(--text);
}
.contact-channel .val a {
  color: var(--blue);
}
.contact-form {
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(0, 163, 220, 0.12), transparent 58%),
    radial-gradient(820px 520px at 92% 22%, rgba(138, 76, 175, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.92), rgba(16, 18, 24, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow-2);
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(144, 148, 160, 0.7);
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #3a4050;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--ring);
  background: #0d0f14;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-ico {
  position: absolute;
  left: 14px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  border-radius: 999px;
  padding-left: 46px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 11, 13, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.input-wrap textarea {
  border-radius: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 120px;
}
.input-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
}
.input-wrap-select::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(144, 148, 160, 0.9);
  border-bottom: 2px solid rgba(144, 148, 160, 0.9);
  transform: rotate(45deg);
  pointer-events: none;
}
.input-wrap-textarea::after {
  display: none;
}

.input-wrap input:hover,
.input-wrap select:hover,
.input-wrap textarea:hover {
  border-color: rgba(255, 255, 255, 0.32);
}
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 163, 220, 0.18);
}
.form-submit {
  background: linear-gradient(180deg, var(--orange-bright), var(--orange));
  color: #0a0b0d;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    filter 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
  width: 100%;
  box-shadow: 0 18px 40px -22px rgba(255, 154, 26, 0.55);
}
.form-submit:hover {
  filter: brightness(1.02);
  box-shadow: 0 22px 55px -26px rgba(255, 154, 26, 0.75);
  transform: translateY(-1px);
}
.form-submit:active {
  transform: translateY(0px);
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.faq-a {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}


/* ==================== UI POLISH + ANIMATIONS (v2) ==================== */
@keyframes boc-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes boc-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes boc-scale-in {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes boc-pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  50%     { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
@keyframes boc-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes boc-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes boc-gradient-shift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* Page-level entry */
body { animation: boc-fade-in .5s ease-out both; }

/* Hero entrance */
.page-hero .section-eyebrow,
.page-hero-title,
.page-hero-sub,
.page-hero .btn { animation: boc-fade-up .7s cubic-bezier(.2,.7,.2,1) both; }
.page-hero-title { animation-delay: .08s; }
.page-hero-sub   { animation-delay: .18s; }
.page-hero .btn  { animation-delay: .28s; }

/* Live dot pulse */
.live-dot::before,
.live-dot::after { animation: boc-pulse-dot 2s ease-out infinite; }

/* Status bar ticker subtle move on hover */
.status-bar .market-status span { transition: color .2s ease; }
.status-bar:hover .market-status span { color: #fff; }

/* Nav link underline grow */
.nav-links a {
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left center; }

/* Buttons – lift + glow */
.btn {
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease !important;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 10px 30px -10px rgba(0,163,220,.45), 0 0 0 1px rgba(0,163,220,.2) inset; }
.btn-amber:hover   { box-shadow: 0 10px 30px -10px rgba(255,154,26,.55), 0 0 0 1px rgba(255,154,26,.35) inset; }
.btn-ghost:hover   { box-shadow: 0 10px 30px -10px rgba(255,255,255,.15); }

/* Metric cards */
.metric {
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, background .3s ease;
}
.metric:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,.4) !important;
  background: linear-gradient(180deg, rgba(245,158,11,.04), transparent) !important;
}
.metric .metric-val {
  background: linear-gradient(135deg, #fff 0%, #f59e0b 60%, #22c55e 120%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: boc-gradient-shift 8s ease-in-out infinite;
}

/* Subcat cards (industries) */
.subcat {
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.subcat::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(245,158,11,.08), transparent 40%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.subcat:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,.45) !important;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.6);
}
.subcat:hover::before { opacity: 1; }
.subcat-price { transition: color .25s ease; }
.subcat:hover .subcat-price { color: #f59e0b; }

/* Side cards (buyer/seller) */
.side {
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.side:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
}
.side.buyer:hover  { border-color: rgba(34,197,94,.5) !important; }
.side.seller:hover { border-color: rgba(245,158,11,.5) !important; }
.side-cta { position: relative; transition: color .2s ease, letter-spacing .2s ease; }
.side-cta:hover { letter-spacing: .02em; }

/* Headings emphasis */
h1 em, h2 em, h3 em {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* Section reveal on scroll – via IntersectionObserver-friendly fallback (always on) */
section { animation: boc-fade-in .6s ease-out both; }

/* Footer link hover */
footer a { transition: color .2s ease, transform .2s ease; display: inline-block; }
footer a:hover { transform: translateX(2px); }

/* Logo subtle hover */
.logo-img { transition: transform .4s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.logo:hover .logo-img { transform: rotate(-4deg) scale(1.06); filter: drop-shadow(0 6px 16px rgba(245,158,11,.4)); }

/* Prose links */
.prose a { position: relative; transition: color .2s ease; }
.prose a:hover { color: #f59e0b; }

/* Final CTA – shimmer behind */
.final-cta { position: relative; overflow: hidden; }
.final-cta::after {
  content: '';
  position: absolute; inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.08), transparent);
  background-size: 800px 100%;
  animation: boc-shimmer 6s linear infinite;
  pointer-events: none;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Selection */
::selection { background: rgba(245,158,11,.35); color: #fff; }

/* Scrollbar polish */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0A0B0D; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #1f2937, #111827); border-radius: 10px; border: 2px solid #0A0B0D; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #f59e0b, #b45309); }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============= THEME TOGGLE ============= */
.theme-toggle {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-bright);
  background: var(--surface-2);
  color: var(--text);
  transition: all 0.25s ease;
  margin-right: 4px;
}
.theme-toggle:hover {
  background: var(--surface-3);
  transform: translateY(-1px);
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html.light .theme-toggle .icon-sun { display: block; }
html.light .theme-toggle .icon-moon { display: none; }

/* ============= LIGHT MODE ============= */
html.light {
  --ink: #f7f8fa;
  --surface: #ffffff;
  --surface-2: #f1f3f7;
  --surface-3: #e7eaf1;
  --border: #e1e5ec;
  --border-bright: #cdd3dd;
  --text: #0e1116;
  --text-dim: #4b5160;
  --text-mute: #7a8090;
  --shadow-1: 0 12px 30px -18px rgba(15, 22, 36, 0.18);
  --shadow-2: 0 24px 60px -24px rgba(15, 22, 36, 0.22);
}
html.light body { background: var(--ink); color: var(--text); }
html.light ::selection { background: rgba(0, 163, 220, 0.18); }

/* ===== Phase 1/2 polish updates ===== */
.logo-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(145deg, #22b8f5 0%, #0a75ff 40%, #ea445a 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  padding: 6px;
  box-shadow: 0 10px 20px -12px rgba(10, 117, 255, 0.85);
}
.logo-mark span {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.94);
}
.logo-text {
  font-family: "Bricolage Grotesque", "Inter Tight", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.logo-text strong {
  background: linear-gradient(135deg, #e8f4ff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 1px;
}
.logo-text span {
  color: var(--blue);
  font-weight: 600;
}
html.light .logo-text strong {
  background: linear-gradient(135deg, #1367ba 0%, #17325f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.offers-showcase {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.9), rgba(10, 12, 18, 0.76));
}
html.light .offers-showcase {
  background: linear-gradient(180deg, #f6f9fd, #f1f5fb);
  border-color: rgba(15, 23, 42, 0.09);
}
.offers-shell {
  padding: 24px 0;
}
.offers-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.offers-pill {
  border: 1px solid rgba(0, 163, 220, 0.36);
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.offers-caption {
  margin: 0;
  color: var(--text-mute);
  font-size: 0.92rem;
}
.offers-stage {
  min-height: 132px;
  position: relative;
}
.offer-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 26px 28px;
  background: linear-gradient(130deg, rgba(18, 22, 32, 0.95) 0%, rgba(13, 18, 27, 0.75) 100%);
  box-shadow: 0 24px 50px -40px rgba(0, 0, 0, 0.85), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
html.light .offer-card {
  background: linear-gradient(130deg, #ffffff 0%, #f3f8ff 100%);
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 24px 50px -40px rgba(15, 23, 42, 0.35);
}
.offer-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--text-mute);
}
.offer-name {
  margin: 0;
  font-size: clamp(1.25rem, 3.1vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.offers-progress {
  height: 3px;
  width: 100%;
  background: rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  margin-top: 14px;
  overflow: hidden;
}
.offers-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00a3dc, #f59e0b);
}
.dash-wrap img {
  object-fit: cover;
  max-height: min(60vw, 540px);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  animation: dash-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}
@keyframes dash-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.theme-toggle {
  color: var(--text) !important;
  border-color: rgba(148, 163, 184, 0.32) !important;
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
html:not(.light) .theme-toggle .icon-moon {
  display: block;
  color: #e6edf5;
}
html:not(.light) .theme-toggle .icon-sun {
  display: none;
}
html.light .theme-toggle .icon-moon {
  display: none;
}
html.light .theme-toggle .icon-sun {
  display: block;
  color: #0f172a;
}
.theme-toggle:hover {
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.55);
}
@media (max-width: 680px) {
  .offers-shell {
    padding: 18px 0;
  }
  .offers-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .offer-card {
    padding: 20px 18px;
  }
}

/* ===========================
   UI/UX PRO MAX REVAMP LAYER
   =========================== */
:root {
  --ui-bg: #06080f;
  --ui-surface: #0c1220;
  --ui-surface-2: #111a2c;
  --ui-surface-3: #18243a;
  --ui-stroke: rgba(166, 184, 215, 0.18);
  --ui-stroke-strong: rgba(166, 184, 215, 0.32);
  --ui-text: #edf3ff;
  --ui-text-dim: #a6b6d4;
  --ui-glow: 0 18px 48px -30px rgba(6, 160, 255, 0.4);
  --ui-radius-sm: 12px;
  --ui-radius-md: 18px;
  --ui-radius-lg: 26px;
}

html.light {
  --ui-bg: #f5f8ff;
  --ui-surface: #ffffff;
  --ui-surface-2: #f4f7fd;
  --ui-surface-3: #ecf2fb;
  --ui-stroke: rgba(29, 57, 97, 0.12);
  --ui-stroke-strong: rgba(29, 57, 97, 0.22);
  --ui-text: #0d1a32;
  --ui-text-dim: #4f6385;
  --ui-glow: 0 18px 44px -30px rgba(24, 110, 220, 0.3);
}

body {
  color: var(--ui-text);
  background:
    radial-gradient(1000px 520px at 10% -10%, rgba(12, 89, 190, 0.22), transparent 60%),
    radial-gradient(900px 460px at 95% 0%, rgba(44, 121, 224, 0.12), transparent 62%),
    var(--ui-bg);
}

nav.main {
  border-bottom: 1px solid var(--ui-stroke);
  background: rgba(8, 13, 24, 0.78);
  box-shadow: 0 14px 36px -30px rgba(4, 8, 18, 0.9);
}
html.light nav.main {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px -24px rgba(17, 42, 84, 0.2);
}

.status-bar {
  border-bottom-color: var(--ui-stroke);
  background: rgba(7, 11, 19, 0.88);
}
html.light .status-bar {
  background: rgba(242, 247, 255, 0.85);
}

.btn {
  border-radius: 11px !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn-primary {
  box-shadow: var(--ui-glow);
}

.hero {
  padding: 110px 0 74px;
}
.hero-title {
  max-width: 19ch;
  line-height: 1.02;
}
.hero-sub {
  max-width: 60ch;
  color: var(--ui-text-dim);
}
.hero-trust {
  border-top-color: var(--ui-stroke);
}

.auction-card,
.side,
.industry,
.step,
.testimonial-card,
.contact-form,
.dash-wrap,
.metric {
  border: 1px solid var(--ui-stroke) !important;
  border-radius: var(--ui-radius-md) !important;
  background: linear-gradient(170deg, rgba(17, 27, 46, 0.9), rgba(12, 20, 34, 0.88)) !important;
  box-shadow: 0 24px 56px -38px rgba(0, 0, 0, 0.95);
}
html.light .auction-card,
html.light .side,
html.light .industry,
html.light .step,
html.light .testimonial-card,
html.light .contact-form,
html.light .dash-wrap,
html.light .metric {
  background: linear-gradient(168deg, #ffffff, #f5f8ff) !important;
  box-shadow: 0 24px 50px -34px rgba(35, 66, 120, 0.26);
}

.auction-card::before {
  border-radius: var(--ui-radius-md);
}
.auction-header {
  border-bottom-color: var(--ui-stroke);
}
.auction-title,
.bid-stat-label,
.bid-history-label,
.compliance-label,
.footer-col h5,
.section-eyebrow,
.metric-label {
  color: var(--ui-text-dim) !important;
}
.auction-name {
  color: var(--ui-text);
  font-size: clamp(2rem, 2.6vw, 2.7rem);
}

.bid-stat,
.bid-history {
  border: 1px solid var(--ui-stroke);
  background: linear-gradient(170deg, rgba(23, 35, 56, 0.7), rgba(13, 24, 40, 0.78));
  border-radius: var(--ui-radius-sm);
}
html.light .bid-stat,
html.light .bid-history {
  background: linear-gradient(170deg, #fdfefe, #eff5ff);
}

.bid-row + .bid-row {
  border-top-color: var(--ui-stroke);
}
.bid-avatar {
  border: 1px solid var(--ui-stroke);
}
.btn-bid,
.form-submit {
  background: linear-gradient(135deg, #11a8dd, #1d7fe3);
  border: 1px solid rgba(128, 221, 255, 0.26);
  box-shadow: var(--ui-glow);
}
.btn-watch {
  border-radius: 12px;
  border-color: var(--ui-stroke-strong);
}

.offers-ticker {
  border-top: 1px solid var(--ui-stroke);
  border-bottom: 1px solid var(--ui-stroke);
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.88), rgba(6, 10, 17, 0.86));
}
html.light .offers-ticker {
  background: linear-gradient(180deg, #f7faff, #f3f7ff);
}
.offers-ticker .ticker-track {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.compliance,
.metrics,
footer {
  background: transparent;
}
.badge {
  border-color: var(--ui-stroke-strong);
  background: rgba(17, 30, 48, 0.42);
}
html.light .badge {
  background: rgba(255, 255, 255, 0.78);
}

section {
  padding: 110px 0;
}
.section-head {
  margin-bottom: 54px;
}
.section-head p,
.side p,
.industry-desc,
.step-desc,
.footer-about p,
.prose p,
.contact-channel .val {
  color: var(--ui-text-dim);
}

.industries {
  gap: 16px;
}
.industry-icon {
  border-radius: 12px;
  border: 1px solid var(--ui-stroke);
  background: rgba(18, 31, 50, 0.7);
}
html.light .industry-icon {
  background: rgba(241, 247, 255, 0.9);
}

.steps {
  gap: 14px;
}
.step {
  padding: 28px 24px;
}
.step-num {
  color: var(--ui-text-dim);
}

.dash-wrap {
  border-radius: var(--ui-radius-lg) !important;
  overflow: hidden;
}
.dash-chrome {
  border-bottom: 1px solid var(--ui-stroke);
  background: rgba(12, 18, 33, 0.86);
}
html.light .dash-chrome {
  background: rgba(247, 251, 255, 0.9);
}

.testimonials-grid {
  gap: 18px;
}
.testimonial-card {
  border-left: 1px solid var(--ui-stroke);
}
.testimonial-card blockquote {
  font-size: 16px;
  color: var(--ui-text);
}

.final-cta {
  padding: 132px 0;
}
.final-cta::before {
  background: radial-gradient(ellipse 920px 440px at 50% 50%, rgba(19, 147, 235, 0.18), transparent 72%);
}
.final-cta p {
  color: var(--ui-text-dim);
}

footer {
  border-top-color: var(--ui-stroke);
}
.footer-grid,
.footer-bottom {
  border-color: var(--ui-stroke);
}
.footer-col a,
.footer-contact,
.footer-bottom {
  color: var(--ui-text-dim);
}

.page-hero {
  border-bottom-color: var(--ui-stroke);
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.86), transparent);
}
html.light .page-hero {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.88), transparent);
}
.prose h2,
.prose h3,
.contact-info h2 {
  color: var(--ui-text);
}

.contact-form {
  padding: 30px 28px;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--ui-stroke-strong);
  background: rgba(8, 14, 24, 0.52);
  color: var(--ui-text);
  border-radius: 10px;
}
html.light .form-field input,
html.light .form-field select,
html.light .form-field textarea {
  background: #ffffff;
}

@media (max-width: 1024px) {
  section {
    padding: 88px 0;
  }
  .hero {
    padding-top: 84px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 66px;
  }
  .auction-name {
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
    line-height: 1.08;
  }
  .bid-stat-val {
    font-size: 30px;
  }
  .bid-row {
    font-size: 11px;
  }
  .testimonial-card {
    padding: 22px 18px;
  }
}

/* ===========================
   PROFESSIONAL POLISH PASS
   =========================== */
body {
  letter-spacing: 0;
}

nav.main {
  border-bottom: 1px solid var(--border-bright);
}

section {
  padding: 96px 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  letter-spacing: -0.02em;
}

.section-head p {
  max-width: 66ch;
}

.btn {
  border-radius: 10px !important;
  min-height: 44px;
  font-weight: 600;
}

.auction-card,
.side,
.industry,
.step,
.testimonial-card,
.contact-form,
.dash-wrap,
.metric {
  background: var(--surface) !important;
  border: 1px solid var(--border-bright) !important;
  border-radius: 16px !important;
  box-shadow: 0 16px 40px -30px rgba(0, 0, 0, 0.75) !important;
}

html.light .auction-card,
html.light .side,
html.light .industry,
html.light .step,
html.light .testimonial-card,
html.light .contact-form,
html.light .dash-wrap,
html.light .metric {
  box-shadow: 0 16px 34px -26px rgba(28, 55, 98, 0.22) !important;
}

.bid-stat,
.bid-history {
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 12px;
}

.auction-header,
.bid-row + .bid-row,
.footer-bottom {
  border-color: var(--border);
}

.industry-icon,
.bid-avatar {
  border: 1px solid var(--border);
}

.offers-ticker {
  border-top: 1px solid var(--border-bright);
  border-bottom: 1px solid var(--border-bright);
}

.offers-ticker .ticker-track {
  gap: 34px;
  font-size: 12px;
}

.offers-ticker .ticker-sym {
  font-weight: 600;
}

.compliance,
.metrics,
footer {
  background: transparent;
}

.badge {
  background: var(--surface);
  border-color: var(--border-bright);
}

.testimonial-card blockquote {
  color: var(--text-dim);
  font-style: normal;
}

.final-cta {
  padding: 116px 0;
}

.final-cta::before {
  opacity: 0.8;
}

.footer-col a,
.footer-contact,
.footer-bottom {
  color: var(--text-dim);
}

.footer-col a:hover,
.nav-links a:hover {
  color: var(--text);
}

@media (max-width: 1024px) {
  section {
    padding: 82px 0;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }
  .auction-name {
    line-height: 1.1;
  }
}
