/*
 * CoinLocations World-Class Marketplace V1
 * Scoped homepage CSS. Safe for CakePHP 2.x legacy site because styles are namespaced under .clx-page.
 */

:root {
  --clx-bg: #07111f;
  --clx-bg-2: #0a1829;
  --clx-bg-3: #0e2236;
  --clx-panel: rgba(13, 30, 50, .78);
  --clx-panel-strong: rgba(12, 27, 45, .94);
  --clx-card: rgba(255,255,255,.075);
  --clx-card-2: rgba(255,255,255,.11);
  --clx-border: rgba(146, 213, 255, .18);
  --clx-border-strong: rgba(55, 245, 194, .34);
  --clx-text: #eef8ff;
  --clx-text-2: #b9cbe0;
  --clx-muted: #82a0ba;
  --clx-teal: #1D9E75;
  --clx-mint: #37f5c2;
  --clx-cyan: #54c7ff;
  --clx-blue: #0b5fff;
  --clx-gold: #ffc857;
  --clx-danger: #ff5f79;
  --clx-shadow: 0 24px 80px rgba(0,0,0,.36);
  --clx-shadow-soft: 0 18px 46px rgba(0,0,0,.22);
  --clx-radius-xl: 34px;
  --clx-radius-lg: 24px;
  --clx-radius-md: 18px;
  --clx-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body.clx-page {
  margin: 0 !important;
  background: var(--clx-bg) !important;
  color: var(--clx-text) !important;
  font-family: var(--clx-font) !important;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.clx-page *,
body.clx-page *::before,
body.clx-page *::after { box-sizing: border-box; }
body.clx-page a { color: inherit; }
body.clx-page a:hover,
body.clx-page a:focus { text-decoration: none; }
body.clx-page img { max-width: 100%; height: auto; display: block; }
body.clx-page .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.clx-container {
  width: min(100% - 44px, 1380px);
  margin-inline: auto;
}
.clx-skip {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 99999;
  background: var(--clx-mint);
  color: #03111d !important;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  transition: top .2s ease;
}
.clx-skip:focus { top: 18px; }
.clx-flash {
  margin-top: 96px;
  border-radius: 16px;
  overflow: hidden;
}

/* Header */
.clx-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(7,17,31,.58);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.clx-header.is-scrolled {
  background: rgba(7,17,31,.92);
  box-shadow: 0 12px 44px rgba(0,0,0,.28);
  border-bottom-color: rgba(55,245,194,.13);
}
.clx-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.clx-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff !important;
  min-width: 235px;
}
.clx-brand__mark {
  width: 52px;
  height: 52px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--clx-mint);
  filter: drop-shadow(0 0 20px rgba(55,245,194,.24));
}
.clx-brand__mark svg { width: 43px; height: 43px; position: relative; z-index: 2; }
.clx-brand__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,245,194,.26), transparent 60%);
  border: 1px solid rgba(55,245,194,.25);
  animation: clxPulse 3.4s ease-in-out infinite;
}
.clx-brand__copy { display: flex; flex-direction: column; gap: 2px; }
.clx-brand__copy strong {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.clx-brand__copy em {
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clx-muted);
  font-weight: 800;
}
.clx-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1;
}
.clx-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(238,248,255,.78) !important;
  font-weight: 800;
  font-size: .94rem;
  letter-spacing: -.01em;
  transition: color .2s ease, background .2s ease;
}
.clx-nav a:hover,
.clx-nav a:focus {
  color: #fff !important;
  background: rgba(255,255,255,.08);
}
.clx-header-actions { display: flex; align-items: center; gap: 12px; min-width: 235px; justify-content: flex-end; }
.clx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .94rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.clx-btn:hover,
.clx-btn:focus { transform: translateY(-1px); }
.clx-btn--primary {
  background: linear-gradient(135deg, var(--clx-mint), #15bb91 54%, #20a7ff);
  color: #03111d !important;
  box-shadow: 0 14px 34px rgba(29,158,117,.28);
}
.clx-btn--primary:hover,
.clx-btn--primary:focus { box-shadow: 0 18px 46px rgba(55,245,194,.32); color: #03111d !important; }
.clx-btn--line {
  border-color: rgba(255,255,255,.18);
  color: #eef8ff !important;
  background: rgba(255,255,255,.04);
}
.clx-btn--line:hover,
.clx-btn--line:focus { background: rgba(255,255,255,.1); color: #fff !important; border-color: rgba(255,255,255,.28); }
.clx-btn--glass {
  border-color: rgba(255,255,255,.16);
  color: #eaf8ff !important;
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.clx-btn--glass:hover,
.clx-btn--glass:focus { background: rgba(255,255,255,.12); color: #fff !important; }
.clx-btn--ghost { color: #eaf8ff !important; background: rgba(255,255,255,.06); }
.clx-btn--xl { min-height: 54px; padding: 17px 24px; font-size: 1rem; }
.clx-menu-toggle { display: none; }

/* Hero */
.clx-main { position: relative; background: var(--clx-bg); }
.clx-hero {
  position: relative;
  min-height: 830px;
  padding: 164px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 5%, rgba(55,245,194,.18), transparent 31%),
    radial-gradient(circle at 75% 15%, rgba(84,199,255,.16), transparent 33%),
    radial-gradient(circle at 50% 100%, rgba(29,158,117,.18), transparent 40%),
    linear-gradient(135deg, #07111f 0%, #091a2e 50%, #061826 100%);
}
.clx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.25) 65%, transparent);
  opacity: .65;
}
.clx-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 250px;
  background: linear-gradient(to bottom, transparent, var(--clx-bg));
  pointer-events: none;
}
.clx-network-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .66; }
.clx-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}
.clx-hero__orb--one { width: 260px; height: 260px; right: 17%; top: 180px; background: rgba(55,245,194,.10); }
.clx-hero__orb--two { width: 220px; height: 220px; left: 4%; bottom: 130px; background: rgba(84,199,255,.10); }
.clx-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .62fr);
  gap: 56px;
  align-items: center;
}
.clx-kicker,
.clx-eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clx-mint);
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.clx-kicker span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--clx-mint), var(--clx-cyan));
  box-shadow: 0 0 16px rgba(55,245,194,.55);
}
.clx-hero h1 {
  margin: 0;
  max-width: 930px;
  color: #fff;
  font-size: clamp(3.4rem, 6vw, 7.4rem);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 1000;
  text-wrap: balance;
}
.clx-hero__lead {
  margin: 28px 0 0;
  max-width: 760px;
  color: var(--clx-text-2);
  font-size: clamp(1.12rem, 1.5vw, 1.38rem);
  line-height: 1.62;
}
.clx-search {
  position: relative;
  z-index: 3;
  margin: 36px 0 0;
  max-width: 840px;
  min-height: 76px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  padding: 9px;
  border-radius: 28px;
  border: 1px solid rgba(55,245,194,.34);
  background: rgba(255,255,255,.1);
  box-shadow: 0 26px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.clx-search__icon { display: grid; place-items: center; color: var(--clx-mint); }
.clx-search__icon svg { width: 24px; height: 24px; }
.clx-search input {
  width: 100%;
  min-height: 58px;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 700;
}
.clx-search input::placeholder { color: rgba(238,248,255,.54); }
.clx-search button {
  min-height: 58px;
  border: 0;
  border-radius: 21px;
  padding: 0 30px;
  background: linear-gradient(135deg, var(--clx-mint), var(--clx-cyan));
  color: #03111d;
  font-size: 1.02rem;
  font-weight: 1000;
  box-shadow: 0 16px 34px rgba(55,245,194,.24);
}
.clx-hero__chips {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.clx-hero__chips a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
  color: rgba(238,248,255,.82) !important;
  font-weight: 850;
  font-size: .9rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.clx-hero__chips a:hover,
.clx-hero__chips a:focus { background: rgba(55,245,194,.12); border-color: rgba(55,245,194,.32); color: #fff !important; }
.clx-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* Command panel */
.clx-command {
  position: relative;
  padding: 22px;
  border-radius: var(--clx-radius-xl);
  border: 1px solid rgba(151,218,255,.2);
  background: linear-gradient(145deg, rgba(13,30,50,.82), rgba(8,19,34,.62));
  box-shadow: var(--clx-shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
}
.clx-command::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(55,245,194,.65), rgba(84,199,255,.15), rgba(255,255,255,.1));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.clx-command__top,
.clx-command__metrics,
.clx-command__activity { position: relative; z-index: 2; }
.clx-command__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.clx-command__top div { display: flex; align-items: center; gap: 10px; color: #fff; }
.clx-command__top strong { font-size: .98rem; }
.clx-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--clx-mint);
  box-shadow: 0 0 0 6px rgba(55,245,194,.13), 0 0 22px rgba(55,245,194,.72);
}
.clx-command__tag {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(55,245,194,.11);
  color: var(--clx-mint);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.clx-map-card {
  position: relative;
  min-height: 310px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 35% 32%, rgba(55,245,194,.28), transparent 20%),
    radial-gradient(circle at 72% 68%, rgba(84,199,255,.20), transparent 24%),
    linear-gradient(135deg, rgba(7,17,31,.96), rgba(13,48,71,.9));
}
.clx-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .68;
  transform: perspective(500px) rotateX(42deg) scale(1.25) translateY(-36px);
  transform-origin: top center;
}
.clx-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--clx-mint);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 8px rgba(55,245,194,.13), 0 0 24px rgba(55,245,194,.65);
  animation: clxFloat 4.8s ease-in-out infinite;
}
.clx-pin::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 6px;
  top: 6px;
  background: #07111f;
}
.clx-pin--one { left: 17%; top: 33%; }
.clx-pin--two { right: 24%; top: 25%; background: var(--clx-cyan); animation-delay: -.8s; }
.clx-pin--three { left: 48%; bottom: 26%; background: var(--clx-gold); animation-delay: -1.4s; }
.clx-pin--four { right: 15%; bottom: 18%; animation-delay: -2.2s; }
.clx-map-card__panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(4,14,26,.72);
  backdrop-filter: blur(14px);
}
.clx-map-card__panel small {
  display: block;
  margin-bottom: 4px;
  color: var(--clx-muted);
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.clx-map-card__panel strong { color: #fff; font-size: 1.02rem; }
.clx-command__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.clx-command__metrics a {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.055);
  color: #fff !important;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.clx-command__metrics a:hover { transform: translateY(-2px); background: rgba(255,255,255,.09); border-color: rgba(55,245,194,.24); }
.clx-command__metrics strong { font-size: 1.8rem; line-height: 1; letter-spacing: -.04em; }
.clx-command__metrics span { margin-top: 6px; color: var(--clx-muted); font-weight: 800; font-size: .86rem; }
.clx-command__activity {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--clx-text-2);
  font-size: .92rem;
  font-weight: 700;
}
.clx-command__activity div { display: flex; gap: 10px; align-items: flex-start; }
.clx-command__activity span { width: 7px; height: 7px; margin-top: 7px; border-radius: 50%; background: var(--clx-mint); box-shadow: 0 0 14px rgba(55,245,194,.55); flex: 0 0 auto; }

/* Sections */
.clx-section { position: relative; padding: 92px 0; overflow: hidden; }
.clx-section--rail { background: linear-gradient(180deg, var(--clx-bg) 0%, #081526 100%); }
.clx-section--categories { background: #081526; padding-top: 76px; }
.clx-section--inventory {
  background:
    radial-gradient(circle at 10% 0%, rgba(84,199,255,.12), transparent 30%),
    linear-gradient(180deg, #081526 0%, #0b1930 100%);
}
.clx-section--split {
  background:
    radial-gradient(circle at 80% 20%, rgba(55,245,194,.10), transparent 34%),
    linear-gradient(180deg, #0b1930 0%, #07111f 100%);
}
.clx-section--atm {
  background: linear-gradient(135deg, #06101d 0%, #09233a 54%, #07111f 100%);
}
.clx-section--trust { background: #07111f; }
.clx-section-head { max-width: 780px; margin-bottom: 34px; }
.clx-section-head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.clx-section-head--row > p { max-width: 420px; margin: 0; }
.clx-section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.clx-section-head h2,
.clx-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 1000;
  text-wrap: balance;
}
.clx-section-head p,
.clx-cta p,
.clx-muted {
  color: var(--clx-text-2);
  font-size: 1.05rem;
  line-height: 1.7;
}
.clx-eyebrow { margin-bottom: 14px; }
.clx-section-link {
  display: inline-flex;
  align-items: center;
  color: var(--clx-mint) !important;
  font-weight: 950;
  border-bottom: 1px solid rgba(55,245,194,.32);
}
.clx-section-link:hover { color: #fff !important; border-bottom-color: #fff; }

/* Action cards */
.clx-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.clx-action {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--clx-radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  color: #fff !important;
  box-shadow: var(--clx-shadow-soft);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.clx-action::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 150px;
  background: radial-gradient(circle, rgba(55,245,194,.24), transparent 70%);
  opacity: .72;
  transition: opacity .2s ease, transform .2s ease;
}
.clx-action:hover,
.clx-action:focus { transform: translateY(-6px); border-color: rgba(55,245,194,.34); background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); }
.clx-action:hover::before { opacity: 1; transform: translateY(-12px); }
.clx-action__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(55,245,194,.11);
  color: var(--clx-mint);
  border: 1px solid rgba(55,245,194,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.clx-action__icon svg { width: 30px; height: 30px; }
.clx-action strong { margin-top: 24px; font-size: 1.45rem; font-weight: 1000; letter-spacing: -.04em; }
.clx-action span:not(.clx-action__icon) { margin-top: 10px; color: var(--clx-text-2); font-weight: 650; line-height: 1.55; }
.clx-action em { margin-top: auto; padding-top: 22px; font-style: normal; color: var(--clx-mint); font-weight: 950; }
.clx-action--deals .clx-action__icon { background: rgba(255,200,87,.12); color: var(--clx-gold); border-color: rgba(255,200,87,.22); }
.clx-action--stores .clx-action__icon { background: rgba(84,199,255,.12); color: var(--clx-cyan); border-color: rgba(84,199,255,.22); }
.clx-action--atm .clx-action__icon { background: rgba(118,104,255,.13); color: #a9a1ff; border-color: rgba(169,161,255,.22); }

/* Category cloud */
.clx-category-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.clx-category-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: rgba(238,248,255,.9) !important;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.clx-category-cloud a:hover,
.clx-category-cloud a:focus { transform: translateY(-2px); background: rgba(55,245,194,.1); border-color: rgba(55,245,194,.28); color: #fff !important; }

/* Listings */
.clx-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.clx-listing {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--clx-radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.065);
  color: #fff !important;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.clx-listing:hover,
.clx-listing:focus { transform: translateY(-5px); border-color: rgba(55,245,194,.34); background: rgba(255,255,255,.09); }
.clx-listing__media {
  position: relative;
  aspect-ratio: 1.48 / 1;
  background: rgba(255,255,255,.04);
  overflow: hidden;
}
.clx-listing__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.clx-listing:hover .clx-listing__media img { transform: scale(1.04); }
.clx-listing__signal {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7,17,31,.76);
  color: var(--clx-mint);
  border: 1px solid rgba(55,245,194,.24);
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.clx-listing__body { padding: 18px; display: flex; flex-direction: column; gap: 10px; min-height: 170px; }
.clx-listing__body strong { color: #fff; font-size: 1.05rem; line-height: 1.32; font-weight: 1000; letter-spacing: -.03em; }
.clx-listing__body em { font-style: normal; color: var(--clx-muted); font-weight: 700; font-size: .9rem; line-height: 1.45; }
.clx-listing__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.09); }
.clx-listing__meta b { color: var(--clx-mint); font-size: .98rem; }
.clx-listing__meta small { color: var(--clx-muted); font-weight: 800; }
.clx-empty-state {
  padding: 28px;
  border-radius: var(--clx-radius-lg);
  border: 1px dashed rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  color: var(--clx-text-2);
  font-weight: 700;
}
.clx-empty-state a { color: var(--clx-mint) !important; font-weight: 950; }

/* Split stores + deals */
.clx-split-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(380px, .62fr);
  gap: 28px;
  align-items: start;
}
.clx-store-stack { display: grid; gap: 12px; }
.clx-store-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.065);
  color: #fff !important;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.clx-store-row:hover,
.clx-store-row:focus { transform: translateX(4px); background: rgba(255,255,255,.095); border-color: rgba(55,245,194,.28); }
.clx-store-row > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.clx-store-row img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.clx-store-row strong { display: flex; flex-direction: column; gap: 4px; min-width: 0; font-size: 1.03rem; font-weight: 1000; }
.clx-store-row em { font-style: normal; color: var(--clx-muted); font-size: .9rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.clx-store-row b { color: var(--clx-mint); font-weight: 950; }
.clx-deals-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--clx-radius-xl);
  border: 1px solid rgba(255,200,87,.22);
  background: linear-gradient(145deg, rgba(75,55,13,.34), rgba(12,27,45,.76));
  box-shadow: var(--clx-shadow);
}
.clx-deals-panel__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,87,.25), transparent 70%);
}
.clx-deals-panel h2 { position: relative; margin: 0 0 22px; font-size: clamp(2rem, 3.4vw, 3.4rem); line-height: 1; letter-spacing: -.06em; font-weight: 1000; color: #fff; }
.clx-deal-list { position: relative; display: grid; gap: 12px; margin-bottom: 22px; }
.clx-deal-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.11);
  color: #fff !important;
}
.clx-deal-row span {
  grid-row: span 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 14px;
  background: rgba(255,200,87,.15);
  color: var(--clx-gold);
  font-size: .75rem;
  font-weight: 1000;
  letter-spacing: .06em;
}
.clx-deal-row strong { font-size: .95rem; line-height: 1.35; }
.clx-deal-row em { font-style: normal; color: var(--clx-muted); font-size: .84rem; font-weight: 800; }

/* ATM */
.clx-atm-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(430px, .8fr);
  gap: 58px;
  align-items: center;
}
.clx-atm-copy p:not(.clx-eyebrow) { max-width: 640px; color: var(--clx-text-2); font-size: 1.1rem; line-height: 1.75; }
.clx-atm-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.clx-atm-panel {
  position: relative;
  min-height: 520px;
  padding: 30px;
  border-radius: var(--clx-radius-xl);
  border: 1px solid rgba(84,199,255,.24);
  background:
    radial-gradient(circle at 50% 48%, rgba(84,199,255,.18), transparent 31%),
    linear-gradient(145deg, rgba(13,30,50,.84), rgba(7,17,31,.62));
  box-shadow: var(--clx-shadow);
  overflow: hidden;
}
.clx-atm-radar {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.clx-atm-radar span {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(84,199,255,.22);
  box-shadow: 0 0 42px rgba(84,199,255,.1);
  animation: clxRadar 4.8s ease-out infinite;
}
.clx-atm-radar span:nth-child(2) { animation-delay: 1.3s; }
.clx-atm-radar span:nth-child(3) { animation-delay: 2.6s; }
.clx-atm-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin-top: 74px;
}
.clx-atm-list a {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 5px 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff !important;
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.clx-atm-list a:hover { transform: translateX(4px); background: rgba(255,255,255,.1); border-color: rgba(84,199,255,.3); }
.clx-atm-list span {
  grid-row: span 2;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--clx-cyan);
  box-shadow: 0 0 0 6px rgba(84,199,255,.13), 0 0 22px rgba(84,199,255,.62);
}
.clx-atm-list strong { font-size: 1rem; font-weight: 1000; }
.clx-atm-list em { font-style: normal; color: var(--clx-muted); font-weight: 750; font-size: .9rem; }

/* Trust + CTA */
.clx-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.clx-trust-grid div {
  min-height: 210px;
  padding: 26px;
  border-radius: var(--clx-radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
}
.clx-trust-grid strong { display: block; color: #fff; font-size: 1.22rem; line-height: 1.2; font-weight: 1000; letter-spacing: -.04em; }
.clx-trust-grid span { display: block; margin-top: 12px; color: var(--clx-text-2); font-weight: 700; line-height: 1.6; }
.clx-cta {
  padding: 70px 0 104px;
  background: linear-gradient(180deg, #07111f 0%, #050c16 100%);
}
.clx-cta__box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 44px;
  border-radius: var(--clx-radius-xl);
  border: 1px solid rgba(55,245,194,.26);
  background:
    radial-gradient(circle at 10% 20%, rgba(55,245,194,.18), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(84,199,255,.14), transparent 30%),
    linear-gradient(135deg, rgba(16,50,70,.9), rgba(7,17,31,.88));
  box-shadow: var(--clx-shadow);
  overflow: hidden;
}
.clx-cta__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .3;
}
.clx-cta__box > * { position: relative; z-index: 2; }
.clx-cta p { max-width: 700px; margin-bottom: 0; }
.clx-cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }

/* Footer */
.clx-footer {
  background: #050c16;
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 56px 0 28px;
}
.clx-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1fr);
  gap: 58px;
}
.clx-brand--footer { min-width: 0; }
.clx-footer__brand p { max-width: 430px; margin: 18px 0 0; color: var(--clx-muted); font-weight: 700; line-height: 1.65; }
.clx-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.clx-footer h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: .85rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.clx-footer__grid a {
  display: block;
  margin: 10px 0;
  color: var(--clx-muted) !important;
  font-weight: 800;
}
.clx-footer__grid a:hover { color: var(--clx-mint) !important; }
.clx-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(185,203,224,.68);
  font-weight: 800;
  font-size: .9rem;
}
.clx-backtop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 800;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clx-mint);
  color: #03111d !important;
  font-size: 1.5rem;
  font-weight: 1000;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.clx-backtop.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Legacy plugin compatibility */
.clx-page .ac_results {
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(55,245,194,.25) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.32) !important;
  z-index: 10000 !important;
}
.clx-page .ac_results ul,
.clx-page .ac_results li { font-family: var(--clx-font) !important; }
.clx-page .modal { color: #1b2b3a; }

/* Animation */
@keyframes clxPulse { 0%,100% { transform: scale(.86); opacity: .75; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes clxFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes clxRadar { 0% { transform: scale(.24); opacity: .85; } 100% { transform: scale(3.2); opacity: 0; } }

/* Responsive */
@media (max-width: 1199px) {
  .clx-hero__grid { grid-template-columns: 1fr; }
  .clx-command { max-width: 760px; }
  .clx-action-grid,
  .clx-listing-grid,
  .clx-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clx-split-grid,
  .clx-atm-grid { grid-template-columns: 1fr; }
  .clx-atm-panel { min-height: 440px; }
}
@media (max-width: 991px) {
  .clx-container { width: min(100% - 32px, 1380px); }
  .clx-header__inner { min-height: 74px; }
  .clx-brand { min-width: 0; }
  .clx-brand__copy em { display: none; }
  .clx-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    color: #fff;
    order: 3;
  }
  .clx-menu-toggle span:not(.sr-only) { width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
  .clx-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(7,17,31,.96);
    box-shadow: var(--clx-shadow-soft);
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: blur(20px);
  }
  .clx-nav.is-open { display: flex; }
  .clx-nav a { justify-content: center; }
  .clx-header-actions .clx-btn--line { display: none; }
  .clx-header-actions { min-width: auto; }
  .clx-hero { padding-top: 126px; min-height: auto; }
  .clx-hero h1 { font-size: clamp(3rem, 12vw, 5.6rem); }
  .clx-section { padding: 72px 0; }
  .clx-section-head--row { align-items: flex-start; flex-direction: column; }
  .clx-footer__top { grid-template-columns: 1fr; gap: 34px; }
  .clx-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clx-cta__box { grid-template-columns: 1fr; }
  .clx-cta__actions { justify-content: flex-start; }
}
@media (max-width: 767px) {
  .clx-container { width: min(100% - 24px, 1380px); }
  .clx-brand__mark { width: 46px; height: 46px; }
  .clx-brand__copy strong { font-size: 1.02rem; }
  .clx-header-actions .clx-btn--primary { padding-left: 14px; padding-right: 14px; min-height: 42px; }
  .clx-hero { padding: 112px 0 66px; }
  .clx-hero__lead { font-size: 1rem; }
  .clx-search { grid-template-columns: 44px 1fr; border-radius: 24px; }
  .clx-search button { grid-column: 1 / -1; width: 100%; margin-top: 4px; }
  .clx-hero__actions, .clx-atm-actions, .clx-cta__actions { flex-direction: column; }
  .clx-btn--xl, .clx-hero__actions .clx-btn, .clx-atm-actions .clx-btn, .clx-cta__actions .clx-btn { width: 100%; }
  .clx-command { padding: 16px; border-radius: 26px; }
  .clx-map-card { min-height: 250px; }
  .clx-command__metrics,
  .clx-action-grid,
  .clx-listing-grid,
  .clx-trust-grid { grid-template-columns: 1fr; }
  .clx-action { min-height: 230px; }
  .clx-split-grid { gap: 18px; }
  .clx-store-row { grid-template-columns: 58px minmax(0, 1fr); }
  .clx-store-row > span { width: 58px; height: 58px; border-radius: 16px; }
  .clx-store-row b { grid-column: 2; }
  .clx-deals-panel { padding: 24px; border-radius: 26px; }
  .clx-deal-row { grid-template-columns: 1fr; }
  .clx-deal-row span { grid-row: auto; width: fit-content; }
  .clx-atm-panel { min-height: 430px; padding: 20px; }
  .clx-atm-list { margin-top: 42px; }
  .clx-cta__box { padding: 28px; border-radius: 26px; }
  .clx-footer__grid { grid-template-columns: 1fr; }
  .clx-footer__bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .clx-page *, .clx-page *::before, .clx-page *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .clx-network-canvas { display: none; }
}
