:root {
  --bg: #05080d;
  --panel: #0a0f18;
  --panel-soft: #0e1521;
  --panel-deep: #070b12;
  --line: rgba(142, 155, 179, 0.22);
  --line-strong: rgba(172, 186, 214, 0.34);
  --text: #f7f9ff;
  --muted: #8f9bae;
  --muted-2: #626d80;
  --purple: #6e36f6;
  --purple-2: #9f63ff;
  --gold: #f8c236;
  --cyan: #1cc9ff;
  --pink: #ff4edb;
  --teal: #20ded8;
  --ok: #68d391;
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 64% 42%, rgba(80, 47, 171, 0.16), transparent 34rem),
    radial-gradient(circle at 8% 8%, rgba(43, 102, 210, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
}

.app-start-status {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: grid;
  gap: 3px;
  max-width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(110, 54, 246, 0.44);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(7, 11, 18, 0.92);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  color: white;
}

.app-start-status strong {
  font-size: 13px;
  text-transform: uppercase;
}

.app-start-status span {
  color: var(--muted);
  font-size: 12px;
}

.app-ready .app-start-status {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.mobile-product {
  display: none;
}

.desktop-product {
  min-height: 100vh;
}

.template-switcher {
  position: sticky;
  top: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
  padding: 5px 20px;
  border-bottom: 1px solid rgba(142, 155, 179, 0.18);
  background: #03060a;
  color: #8f9bae;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.template-switcher button {
  min-height: 24px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 10px;
  background: #0b111b;
  color: #b8c1d2;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.template-switcher button.active {
  border-color: rgba(32, 222, 216, 0.42);
  background: linear-gradient(135deg, rgba(32, 222, 216, 0.18), rgba(110, 54, 246, 0.34));
  color: white;
}

.template-switcher .template-admin-login {
  margin-left: auto;
  border-color: rgba(248, 194, 54, 0.48);
  background: linear-gradient(135deg, rgba(248, 194, 54, 0.14), rgba(110, 54, 246, 0.24));
  color: #ffd76a;
}

.template-mobile-view .template-switcher .template-admin-login {
  margin-left: 14px;
}

.template-mobile-view {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 12%, rgba(110, 54, 246, 0.18), transparent 28rem),
    #05080d;
}

.template-mobile-view .desktop-product {
  min-height: auto;
}

.template-mobile-view .desktop-product > :not(.template-switcher) {
  display: none;
}

.template-mobile-view .template-switcher {
  top: 0;
  justify-content: center;
}

.template-mobile-view .mobile-product {
  display: block;
  width: min(100%, 430px);
  min-height: calc(100vh - 92px);
  margin: 28px auto 56px;
  padding: 24px 14px 86px;
  border: 1px solid rgba(142, 155, 179, 0.24);
  border-radius: 30px;
  background: #080d15;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(255, 255, 255, 0.03);
}

.topbar {
  position: sticky;
  top: 34px;
  z-index: 40;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 1rem;
  height: 76px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid rgba(159, 99, 255, 0.9);
  border-radius: 6px;
  color: white;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(110, 54, 246, 0.35);
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #a9b1c1;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 46px);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-select {
  min-height: 40px;
  max-width: 132px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
  background: #0c121d;
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.icon-button,
.login-button,
.primary-link,
.button,
.ghost-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c121d;
  color: white;
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 40px;
  place-items: center;
  font-size: 22px;
}

.login-button {
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-link,
.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(110, 54, 246, 0.95);
  background: linear-gradient(135deg, #7a3cff, #4b21d2);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(110, 54, 246, 0.35);
}

.primary-link {
  padding: 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.secondary,
.ghost-button {
  background: rgba(10, 15, 24, 0.82);
}

.button.full {
  width: 100%;
}

.desktop-stage {
  display: grid;
  grid-template-columns: 300px minmax(560px, 1fr) 330px;
  grid-template-areas:
    "left wall phone"
    "benefits benefits benefits"
    "below below below"
    "dashboard dashboard admin"
    "buy buy admin";
  gap: 10px;
  padding: 14px;
}

.template-wall .topbar {
  height: 56px;
  grid-template-columns: 250px 1fr auto;
  background: rgba(3, 6, 10, 0.84);
}

.template-wall .desktop-nav a:nth-child(n + 6),
.template-wall .topbar-actions .icon-button {
  display: none;
}

.template-wall .brand small {
  font-size: 9px;
}

.template-wall .brand strong {
  font-size: 18px;
}

.template-wall .brand-mark {
  width: 32px;
  height: 32px;
  font-size: 18px;
}

.site-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 4px auto 0;
  border-top: 1px solid rgba(142, 155, 179, 0.07);
  padding: 10px 14px 16px;
  color: rgba(174, 184, 202, 0.34);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent);
}

.site-credit span {
  color: rgba(174, 184, 202, 0.28);
}

.site-credit a {
  color: rgba(174, 184, 202, 0.44);
  text-decoration: none;
  transition: color 140ms ease;
}

.site-credit a:hover {
  color: rgba(255, 255, 255, 0.74);
}

.template-wall .desktop-nav {
  justify-content: flex-start;
  gap: 22px;
}

.template-wall .desktop-stage {
  grid-template-columns: clamp(260px, 19vw, 320px) minmax(0, 1fr);
  grid-template-areas:
    "left wall"
    "benefits benefits"
    "below below"
    "dashboard dashboard"
    "buy admin";
  padding: 8px;
}

.template-wall .wall-stage {
  height: auto;
  min-height: calc(100vh - 112px);
  padding: 8px;
  overflow: visible;
}

.template-wall .wall-toolbar {
  position: relative;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  pointer-events: auto;
}

.template-wall .wall-toolbar > * {
  background: rgba(6, 10, 16, 0.78);
  backdrop-filter: blur(16px);
}

.template-wall .legend-control {
  display: flex;
  order: 3;
  min-height: 36px;
  gap: 10px;
  padding: 0 10px;
  font-size: 10px;
  white-space: nowrap;
}

.template-wall .world-pattern-toggle {
  display: flex;
  order: 4;
}

.template-wall .world-pattern-toggle span {
  display: none;
}

.template-wall .world-pattern-toggle button {
  padding: 0 10px;
}

.template-wall .search-box {
  margin-left: auto;
  max-width: 260px;
}

.template-wall .wall-canvas {
  height: calc(100vh - 196px);
  min-height: 620px;
}

.template-wall .wall-help {
  margin-top: 8px;
}

.template-wall .left-panel {
  grid-template-columns: 1fr;
  align-items: start;
  align-content: start;
  max-height: calc(100vh - 74px);
  overflow: auto;
  padding-right: 4px;
}

.template-wall .hero-copy,
.template-wall .premium-panel {
  min-height: auto;
}

.template-wall .hero-copy h1 {
  display: block;
  margin-bottom: 16px;
}

.template-wall .hero-copy h1 span,
.template-wall .hero-copy h1 em,
.template-wall .hero-copy h1 b {
  display: block;
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 0.98;
}

.template-wall .hero-copy p {
  display: block;
  font-size: 13px;
  line-height: 1.55;
}

.template-wall .live-activity {
  display: grid;
}

.template-wall .metric-row {
  margin-top: 12px;
}

.template-wall .phone-preview {
  display: none;
}

.left-panel {
  grid-area: left;
  display: grid;
  gap: 12px;
  align-content: start;
  align-items: start;
}

.hero-copy,
.premium-panel,
.wall-stage,
.module,
.commerce,
.admin,
.dashboard,
.benefits {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 19, 31, 0.94), rgba(7, 11, 18, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.hero-copy {
  height: 610px;
  overflow: hidden;
  padding: 28px 20px 16px;
}

.hero-copy h1 {
  margin: 0;
  color: white;
  font-size: clamp(32px, 2.7vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 span,
.hero-copy h1 em,
.hero-copy h1 b {
  display: block;
}

.hero-copy h1 em {
  color: var(--purple-2);
  font-style: normal;
}

.hero-copy h1 b {
  font-weight: 900;
}

.hero-copy p {
  margin: 16px 0 0;
  color: #aeb8ca;
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8px;
  margin-top: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-row span {
  min-height: 62px;
  padding: 10px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  color: #b2bbca;
  font-size: 9px;
  line-height: 1.35;
  text-transform: uppercase;
}

.metric-row span:last-child {
  border-right: 0;
}

.metric-row strong {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-size: 16px;
}

.sales-progress {
  margin-top: 14px;
  padding: 10px 0 2px;
}

.sales-progress span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: #aeb8ca;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.sales-progress strong {
  color: white;
  font-size: 18px;
}

.sales-progress i {
  position: relative;
  display: block;
  height: 9px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #171d2b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.sales-progress i::before,
.mobile-progress i::before,
.mobile-real-progress i::before {
  content: "";
  display: block;
  width: var(--sold-progress, 12.843%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #8f5bff 52%, #20ded8);
  box-shadow: 0 0 16px rgba(143, 91, 255, 0.55);
  transition: width 220ms ease;
}

.live-activity {
  margin-top: 16px;
}

.live-activity h2,
.premium-panel h2 {
  margin: 0 0 12px;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

.activity-list {
  display: grid;
  gap: 7px;
}

.activity-item {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 8px;
  align-items: center;
  color: #aab3c3;
  font-size: 11px;
}

.activity-item i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 5px;
  background: var(--activity-color, #6e36f6);
  color: white;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}

.activity-item strong {
  color: white;
}

.activity-item time {
  color: #7f8a9d;
  white-space: nowrap;
}

.premium-panel {
  padding: 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(110, 54, 246, 0.28), transparent 14rem),
    linear-gradient(180deg, rgba(13, 19, 31, 0.94), rgba(7, 11, 18, 0.94));
}

.premium-panel p {
  margin: -4px 0 14px;
  color: #aeb8ca;
  font-size: 12px;
}

.premium-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.premium-mini {
  border: 1px solid var(--mini-color, var(--line));
  border-radius: 6px;
  padding: 10px 5px;
  background: rgba(10, 15, 24, 0.72);
  color: white;
  text-align: center;
  cursor: pointer;
}

.premium-mini strong {
  display: block;
  color: var(--mini-color, var(--gold));
  font-size: 15px;
}

.premium-mini span {
  color: #c8d0dd;
  font-size: 9px;
}

.text-link {
  color: var(--purple-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.wall-stage {
  grid-area: wall;
  position: relative;
  align-self: start;
  height: 810px;
  min-height: 810px;
  padding: 14px;
  overflow: hidden;
}

.phone-preview {
  grid-area: phone;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 810px;
  padding-top: 0;
}

.wall-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.zoom-control,
.legend-control,
.map-mode-toggle,
.world-pattern-toggle,
.sponsor-layer-toggle,
.palette-toggle,
.sponsor-size-control,
.wall-select-control,
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c121d;
  min-height: 36px;
}

.wall-select-control {
  gap: 8px;
  padding-left: 10px;
  color: #aeb8ca;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.wall-select-control select {
  min-height: 34px;
  max-width: 230px;
  border: 0;
  border-left: 1px solid var(--line);
  padding: 0 10px;
  background: transparent;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.search-box {
  margin-left: auto;
}

.admin-wall-tool[hidden] {
  display: none !important;
}

.zoom-control button,
.zoom-control span {
  display: grid;
  min-width: 38px;
  height: 36px;
  place-items: center;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
}

.zoom-control .zoom-slider {
  width: 132px;
  height: 36px;
  margin: 0;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 10px;
  background: transparent;
  accent-color: #8f5bff;
  cursor: pointer;
  appearance: none;
}

.zoom-control .zoom-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    #8f5bff 0 var(--zoom-progress, 0%),
    #263247 var(--zoom-progress, 0%) 100%
  );
}

.zoom-control .zoom-slider::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  margin-top: -5px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #8f5bff;
  box-shadow: 0 0 10px rgba(143, 91, 255, 0.72);
  appearance: none;
}

.zoom-control .zoom-slider::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: #263247;
}

.zoom-control .zoom-slider::-moz-range-progress {
  height: 4px;
  border-radius: 4px;
  background: #8f5bff;
}

.zoom-control .zoom-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #8f5bff;
  box-shadow: 0 0 10px rgba(143, 91, 255, 0.72);
}

.zoom-control button:last-child {
  border-right: 0;
}

.map-mode-toggle {
  overflow: hidden;
}

.map-mode-toggle button {
  min-height: 36px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 12px;
  background: transparent;
  color: #b8c1d2;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.map-mode-toggle button:last-child {
  border-right: 0;
}

.map-mode-toggle .active {
  background: linear-gradient(135deg, #7140ff, #4b21d2);
  color: white;
}

.world-pattern-toggle {
  overflow: hidden;
  justify-self: end;
}

.world-pattern-toggle span,
.world-pattern-toggle button,
.world-image-upload {
  min-height: 36px;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 0 11px;
  background: transparent;
  color: #b8c1d2;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.world-pattern-toggle span {
  display: grid;
  place-items: center;
  color: #758198;
  letter-spacing: 0;
}

.world-pattern-toggle button {
  cursor: pointer;
  max-width: 168px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.world-media-v3-tab {
  display: flex;
  align-items: center;
  min-width: 0;
}

.world-media-v3-tab .world-image-upload,
.world-media-v3-tab .media-occupancy-control,
.world-media-v3-tab .media-saturation-control {
  display: none;
}

.world-media-v3-tab.is-active .world-image-upload,
.world-media-v3-tab.is-active .media-occupancy-control,
.world-media-v3-tab.is-active .media-saturation-control {
  display: grid;
}

.media-occupancy-control {
  grid-template-columns: auto 46px auto;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  border-right: 1px solid var(--line);
  padding: 0 8px;
  color: #b8c1d2;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.media-occupancy-control input {
  width: 46px;
  min-height: 26px;
  border: 1px solid rgba(143, 91, 255, 0.44);
  border-radius: 5px;
  background: rgba(8, 13, 21, 0.88);
  color: #ffffff;
  font: inherit;
  text-align: center;
}

.media-occupancy-control small {
  color: #8f5bff;
}

.media-saturation-control {
  grid-template-columns: auto minmax(86px, 120px) 42px;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  border-right: 1px solid var(--line);
  padding: 0 8px;
  color: #b8c1d2;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.media-saturation-control input {
  width: 100%;
  accent-color: #20ded8;
}

.media-saturation-control small {
  color: #20ded8;
  text-align: right;
}

.sponsor-size-control {
  display: grid;
  grid-template-columns: auto minmax(48px, 64px) minmax(44px, 58px) auto;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  color: #b8c1d2;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.sponsor-size-control input {
  width: 100%;
  min-height: 28px;
  accent-color: #ffc323;
}

.sponsor-size-control small {
  color: #ffc323;
  text-align: right;
}

.sponsor-size-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-sponsor-scale-preview {
  min-height: 86px;
  overflow: hidden;
  border: 1px solid rgba(142, 155, 179, 0.2);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #070b12;
  background-size: 16px 16px;
}

.admin-sponsor-scale-preview .map-callout {
  position: relative;
  display: grid;
  inset: auto;
}

.occupancy-toolbar-control {
  display: grid;
  grid-template-columns: auto 54px auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  border: 1px solid rgba(143, 91, 255, 0.38);
  border-radius: 6px;
  padding: 0 10px;
  background: rgba(12, 18, 31, 0.84);
  color: #cbd7ea;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.occupancy-toolbar-control input {
  width: 54px;
  min-height: 26px;
  border: 1px solid rgba(143, 91, 255, 0.44);
  border-radius: 6px;
  background: rgba(8, 13, 21, 0.78);
  color: #ffffff;
  font: inherit;
  text-align: center;
}

.occupancy-toolbar-control small {
  color: #8f5bff;
  font-size: 11px;
}

.occupancy-v3-control {
  border-color: rgba(32, 222, 216, 0.36);
}

.occupancy-v3-control small {
  color: #20ded8;
}

.world-image-upload {
  display: grid;
  place-items: center;
  cursor: pointer;
  max-width: 132px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.world-image-upload em {
  max-width: 112px;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
}

.world-image-upload.is-processing {
  cursor: wait;
  color: #20ded8;
}

.world-image-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.world-pattern-toggle button:last-child {
  border-right: 0;
}

.world-pattern-toggle .active,
.world-image-upload.active {
  background: linear-gradient(135deg, rgba(32, 222, 216, 0.22), rgba(143, 91, 255, 0.48));
  color: white;
  box-shadow: inset 0 0 0 1px rgba(32, 222, 216, 0.28);
}

.sponsor-layer-toggle,
.sample-zone-toggle {
  justify-content: center;
  min-height: 36px;
  border-radius: 6px;
  padding: 0 12px;
  color: #b8c1d2;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.sample-zone-toggle {
  color: #dbe7ff;
  border-color: rgba(32, 222, 216, 0.28);
  background: rgba(32, 222, 216, 0.08);
}

.sample-zone-toggle.active {
  color: white;
  border-color: rgba(32, 222, 216, 0.58);
  background: linear-gradient(135deg, rgba(32, 222, 216, 0.24), rgba(113, 64, 255, 0.5));
  box-shadow: inset 0 0 0 1px rgba(32, 222, 216, 0.22);
}

.standalone-media-tab {
  overflow: hidden;
  border: 1px solid rgba(32, 222, 216, 0.2);
  border-radius: 6px;
  background: rgba(9, 15, 25, 0.7);
}

.standalone-media-tab .sample-zone-toggle,
.standalone-media-tab .media-occupancy-control,
.standalone-media-tab .world-image-upload {
  border-radius: 0;
}

.palette-toggle {
  justify-content: center;
  min-height: 36px;
  border-radius: 6px;
  padding: 0 12px;
  color: #b8c1d2;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.palette-toggle.active {
  border-color: rgba(159, 99, 255, 0.58);
  background: rgba(110, 54, 246, 0.22);
  color: white;
}

.sponsor-layer-toggle.active {
  border-color: rgba(32, 222, 216, 0.48);
  background: linear-gradient(135deg, rgba(32, 222, 216, 0.18), rgba(110, 54, 246, 0.34));
  color: white;
}

.legend-control {
  justify-self: center;
  gap: 18px;
  padding: 0 16px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: -1px;
}

.sold-dot {
  background: var(--purple);
}

.available-dot {
  background: #1f2b3a;
  box-shadow: inset 0 0 0 1px #7d8696;
}

.premium-dot {
  border: 2px solid var(--gold);
}

.held-dot {
  background: #20ded8;
  box-shadow: 0 0 8px rgba(32, 222, 216, 0.56);
}

.search-box {
  padding: 0 8px 0 12px;
}

.search-box input {
  width: 100%;
  min-height: 34px;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
}

.search-box button {
  border: 0;
  background: transparent;
  color: #aab3c3;
  cursor: pointer;
  font-size: 20px;
}

.wall-canvas {
  position: relative;
  height: 718px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
  background:
    radial-gradient(circle at 50% 35%, rgba(110, 54, 246, 0.14), transparent 24rem),
    #080d15;
}

.account-quick-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -4px 0 10px;
  border: 1px solid rgba(143, 91, 255, 0.24);
  border-radius: 7px;
  padding: 9px 10px;
  background: rgba(12, 18, 31, 0.68);
}

.account-quick-panel div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.account-quick-panel strong {
  color: white;
  font-size: 12px;
}

.account-quick-panel span {
  color: var(--muted);
  font-size: 11px;
}

.account-quick-panel.has-pending-hold {
  border-color: rgba(255, 195, 35, 0.48);
  background: rgba(255, 195, 35, 0.08);
}

.account-quick-panel.is-signed-in {
  border-color: rgba(76, 224, 179, 0.38);
  background: rgba(76, 224, 179, 0.07);
}

.wall-canvas.is-dragging {
  cursor: grabbing;
}

.wall-canvas.is-selecting {
  cursor: crosshair;
}

.wall-pan-zoom {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 1000px;
  height: 1000px;
  transform: translate(var(--pan-x, 0px), var(--pan-y, 0px)) scale(var(--zoom, 1));
  transform-origin: 0 0;
  transition: transform 120ms ease;
  will-change: transform;
}

.wall-canvas.is-dragging .wall-pan-zoom {
  transition: none;
}

.sponsor-box-layer {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 1000px;
  height: 1000px;
  transform: translate(var(--pan-x, 0px), var(--pan-y, 0px)) scale(var(--zoom, 1));
  transform-origin: 0 0;
  transition: transform 120ms ease;
  pointer-events: none;
  will-change: transform;
}

.wall-canvas.is-dragging .sponsor-box-layer {
  transition: none;
}

.slot-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  background: #101722;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  cursor: crosshair;
}

.slot-image-layer {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: visible;
  transform: translate(var(--pan-x, 0px), var(--pan-y, 0px));
  transform-origin: 0 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
  isolation: isolate;
  will-change: transform, opacity;
  color-scheme: only light;
  forced-color-adjust: none;
}

.slot-image-layer.is-collage-zoom {
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.slot-virtual-media-canvas {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
  contain: strict;
}

.slot-virtual-media-canvas.is-active {
  opacity: 1;
}

.wall-canvas.is-dragging .slot-virtual-media-canvas,
.wall-canvas.is-selecting .slot-virtual-media-canvas {
  opacity: 0;
}

.wall-raster-tile {
  position: absolute;
  z-index: 0;
  left: calc(var(--tile-x, 0) * var(--zoom-px, 1px));
  top: calc(var(--tile-y, 0) * var(--zoom-px, 1px));
  width: calc(var(--tile-slots, 32) * var(--zoom-px, 1px));
  height: calc(var(--tile-slots, 32) * var(--zoom-px, 1px));
  contain: strict;
  overflow: hidden;
}

.wall-raster-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.slot-material-tile {
  position: absolute;
  z-index: 1;
  left: calc(var(--slot-x, 0) * var(--zoom-px, 1px));
  top: calc(var(--slot-y, 0) * var(--zoom-px, 1px));
  width: var(--zoom-px, 1px);
  height: var(--zoom-px, 1px);
  overflow: hidden;
  contain: strict;
  background: var(--slot-color, #20ded8);
  box-shadow: 0 0 0 calc(var(--zoom-px, 1px) * 0.025) rgba(255, 255, 255, 0.38);
}

.slot-material-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sample-zone-tile {
  isolation: isolate;
  color-scheme: only light;
  forced-color-adjust: none;
  box-shadow:
    0 0 0 calc(var(--zoom-px, 1px) * 0.04) rgba(255, 255, 255, 0.72),
    0 0 calc(var(--zoom-px, 1px) * 0.18) rgba(32, 222, 216, 0.9);
}

.tile {
  position: relative;
  min-height: 10px;
  border: 0;
  border-radius: 2px;
  background: #121a25;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.tile:hover {
  z-index: 3;
  filter: brightness(1.35);
  outline: 1px solid rgba(255, 255, 255, 0.72);
}

.tile.selected {
  z-index: 4;
  outline: 2px solid var(--purple-2);
  box-shadow: 0 0 18px rgba(159, 99, 255, 0.65);
}

.tile.sold {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 60%),
    var(--tile-color, #1a6ea5);
}

.tile.available {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
    #101722;
}

.tile.pending {
  background: linear-gradient(135deg, rgba(248, 194, 54, 0.7), rgba(110, 54, 246, 0.3));
}

.tile.premium {
  outline: 1px solid rgba(248, 194, 54, 0.9);
  box-shadow: 0 0 8px rgba(248, 194, 54, 0.42);
}

.tile .tile-label {
  position: absolute;
  inset: 1px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.map-callout {
  position: absolute;
  z-index: 12;
  display: none;
  --sponsor-icon-size: min(48px, calc(var(--sponsor-box-height, 66px) - 18px));
  grid-template-columns: var(--sponsor-icon-size) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  align-items: center;
  column-gap: 10px;
  box-sizing: border-box;
  width: var(--sponsor-box-width, 128px);
  height: var(--sponsor-box-height, 66px);
  min-width: 0;
  min-height: 0;
  border: 2px solid var(--callout, var(--purple));
  border-radius: 6px;
  padding: 8px 12px 8px 8px;
  background: rgba(7, 11, 18, 0.86);
  box-shadow: 0 0 24px color-mix(in srgb, var(--callout, var(--purple)) 55%, transparent);
  cursor: grab;
  touch-action: none;
  user-select: none;
  pointer-events: auto;
  transform-origin: 0 0;
  transition: opacity 120ms ease;
  overflow: hidden;
}

.wall-canvas.show-sponsor-boxes .map-callout {
  display: grid;
}

.map-callout.is-dragging {
  cursor: grabbing;
  opacity: 0.92;
  transition: none;
}

.map-callout span {
  grid-row: 1 / span 2;
  display: grid;
  width: var(--sponsor-icon-size);
  height: var(--sponsor-icon-size);
  place-items: center;
  border-radius: 5px;
  background: var(--callout, var(--purple));
  color: white;
  font-size: min(22px, calc(var(--sponsor-box-height, 66px) * 0.28));
  font-weight: 900;
}

.map-callout strong {
  overflow: hidden;
  font-size: min(14px, calc(var(--sponsor-box-height, 66px) * 0.22));
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-callout small {
  overflow: hidden;
  color: white;
  font-size: min(11px, calc(var(--sponsor-box-height, 66px) * 0.17));
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.callout-gold {
  --callout: #ffc323;
  top: 54px;
  left: 48px;
}

.callout-pink {
  --callout: #ff3bd5;
  top: 128px;
  right: 90px;
}

.callout-purple {
  --callout: #8e3dff;
  top: 270px;
  left: 38%;
}

.callout-cyan {
  --callout: #1cc9ff;
  top: 345px;
  right: 160px;
}

.callout-teal {
  --callout: #20ded8;
  bottom: 260px;
  left: 140px;
}

.callout-final {
  --callout: #ffc323;
  right: 42px;
  bottom: 150px;
}

.wall-palette {
  position: absolute;
  z-index: 24;
  top: 16px;
  right: 16px;
  width: min(620px, calc(100% - 32px));
  max-height: 46%;
  border: 1px solid rgba(159, 99, 255, 0.34);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 11, 18, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  cursor: default;
  touch-action: auto;
  user-select: text;
}

.wall-palette[hidden] {
  display: none;
}

body:not(.is-admin-user) .wall-palette {
  display: none !important;
}

.template-wall .wall-palette {
  top: 62px;
}

.wall-palette-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
}

.wall-palette-head strong,
.wall-palette-head span {
  display: block;
}

.wall-palette-head strong {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

.wall-palette-head span {
  margin-top: 3px;
  color: #8f9aae;
  font-size: 11px;
}

.wall-palette-head button {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #0c121d;
  color: white;
  cursor: pointer;
  font-size: 20px;
}

.wall-palette-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wall-palette-head .wall-palette-export {
  display: grid;
  width: auto;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 10px;
  background: #0c121d;
  color: #dcd3ff;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.wall-palette-head .wall-palette-export:hover {
  border-color: rgba(159, 99, 255, 0.58);
  background: rgba(110, 54, 246, 0.22);
  color: white;
}

.wall-palette-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-height: 290px;
  overflow: auto;
  background: var(--line);
}

.wall-palette-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-width: 0;
  padding: 9px;
  background: #0a1019;
}

.wall-palette-swatch {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.wall-palette-name {
  min-width: 0;
}

.wall-palette-name strong,
.wall-palette-name small,
.wall-palette-count strong,
.wall-palette-count small {
  display: block;
}

.wall-palette-name strong {
  overflow: hidden;
  color: #eef3ff;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wall-palette-name small,
.wall-palette-count small {
  margin-top: 3px;
  color: #748096;
  font-size: 9px;
}

.wall-palette-count {
  text-align: right;
}

.wall-palette-count strong {
  color: white;
  font-size: 11px;
}

.wall-help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 28px;
  margin-top: 10px;
  pointer-events: none;
}

.wall-help span {
  cursor: default;
}

.wall-help span {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(8, 13, 21, 0.72);
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.wall-help b {
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
}

.selection-panel {
  position: static;
  z-index: 1;
  display: grid;
  width: 100%;
  max-height: none;
  gap: 10px;
  border: 1px solid rgba(32, 222, 216, 0.45);
  border-radius: 9px;
  padding: 14px;
  background: rgba(7, 13, 20, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 28px rgba(32, 222, 216, 0.18);
  overflow: auto;
  pointer-events: auto;
}

.selection-panel[hidden] {
  display: none;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-head > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.selection-close {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.selection-close:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.cart-head strong,
.selection-panel strong {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}

.cart-head span,
.selection-panel span,
.cart-selection-list {
  color: #aeb8ca;
  font-size: 12px;
}

.cart-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.cart-summary div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.cart-summary span {
  display: block;
  color: #8f9bae;
  font-size: 10px;
  text-transform: uppercase;
}

.cart-summary strong {
  display: block;
  margin-top: 3px;
  color: white;
  font-size: 16px;
}

.cart-summary .cart-total {
  border-color: rgba(32, 222, 216, 0.36);
  background: rgba(32, 222, 216, 0.08);
}

.cart-summary .cart-total strong {
  color: var(--teal);
}

.cart-selection-list {
  display: flex;
  max-height: 98px;
  flex-wrap: wrap;
  gap: 6px;
  overflow: auto;
}

.selection-list-head {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}

.selection-list-head span {
  color: #d7deea;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.selection-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(32, 222, 216, 0.35);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(32, 222, 216, 0.08);
  color: white;
  cursor: pointer;
  font-size: 11px;
}

.selection-chip span {
  color: var(--teal);
  font-size: 10px;
}

.selection-chip b {
  color: var(--gold);
  font-size: 10px;
}

.cart-note {
  margin: 0;
  color: #8f9bae;
  font-size: 12px;
}

.cart-form {
  display: grid;
  gap: 8px;
}

.cart-form input,
.cart-form select,
.cart-form textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 10px;
  outline: 0;
  background: #0c121d;
  color: white;
  font-size: 12px;
}

.cart-form textarea {
  min-height: 64px;
  resize: vertical;
}

.file-upload {
  display: grid;
  gap: 6px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.upload-preview {
  min-height: 92px;
  overflow: hidden;
  border: 1px solid rgba(32, 222, 216, 0.35);
  border-radius: 7px;
  background: rgba(32, 222, 216, 0.06);
}

.upload-preview[hidden] {
  display: none;
}

.upload-preview > img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.upload-preview span {
  display: block;
  padding: 8px 10px;
  color: #bdeff1;
  font-size: 11px;
}

.upload-preview .upload-error {
  color: #ffb5c7;
}

.upload-crop-shell {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.upload-crop-frame {
  position: relative;
  aspect-ratio: 1;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: #05080d;
}

.upload-crop-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--crop-x, 50%) var(--crop-y, 50%);
  transform: scale(var(--crop-scale, 1));
  transform-origin: var(--crop-x, 50%) var(--crop-y, 50%);
  user-select: none;
}

.upload-crop-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.upload-crop-controls {
  display: grid;
  gap: 8px;
}

.upload-crop-controls label {
  display: grid;
  grid-template-columns: 52px 44px 1fr;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 800;
}

.upload-crop-controls b {
  color: white;
  font-size: 10px;
  text-align: right;
}

.upload-crop-controls input {
  accent-color: var(--violet);
}

.upload-crop-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tiny-button.danger {
  border-color: rgba(255, 95, 130, 0.45);
  color: #ffc2d0;
}

.selection-actions {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 8px;
}

.area-selection-box {
  position: absolute;
  z-index: 50;
  border: 1px solid rgba(32, 222, 216, 0.95);
  background: rgba(32, 222, 216, 0.16);
  box-shadow: 0 0 26px rgba(32, 222, 216, 0.32);
  pointer-events: none;
}

.area-selection-box[hidden] {
  display: none;
}

.phone-shell {
  width: 320px;
  height: 690px;
  border: 5px solid #1b1e25;
  border-radius: 54px;
  padding: 8px;
  background: #05070b;
  box-shadow:
    inset 0 0 0 2px #323741,
    0 26px 80px rgba(0, 0, 0, 0.55);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 42px;
  background: #080d15;
}

.phone-screen * {
  box-sizing: border-box;
  min-width: 0;
}

.phone-screen::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 4;
  width: 92px;
  height: 30px;
  border-radius: 999px;
  background: #010204;
  transform: translateX(-50%);
}

.mobile-app-preview,
.mobile-product {
  background:
    radial-gradient(circle at 76% 18%, rgba(110, 54, 246, 0.14), transparent 14rem),
    #080d15;
}

.mobile-app-preview {
  height: 100%;
  padding: 64px 14px 16px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.mobile-app-preview::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.mobile-head,
.mobile-real-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-head button,
.mobile-real-head button {
  border: 0;
  background: transparent;
  color: white;
  font-size: 22px;
}

.mobile-head strong,
.mobile-real-head strong {
  font-size: 22px;
}

.mobile-progress,
.mobile-real-progress {
  margin-top: 22px;
}

.mobile-progress span,
.mobile-real-progress span {
  color: #aeb8ca;
  font-size: 13px;
}

.mobile-progress strong,
.mobile-real-progress strong {
  color: white;
  font-size: 20px;
}

.mobile-progress i,
.mobile-real-progress i {
  display: block;
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #171d2b;
}

.mobile-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 22px 0 28px;
}

.mobile-tabs button,
.mobile-tabs a {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #0d1420;
  color: #d5dbea;
  font-size: 10px;
  cursor: pointer;
}

.mobile-tabs .active {
  border-color: rgba(110, 54, 246, 0.9);
  background: linear-gradient(135deg, #7140ff, #4b21d2);
}

.real-tabs {
  grid-template-columns: repeat(3, 1fr);
}

.mobile-search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-bottom: 10px;
}

.mobile-search-box input,
.mobile-search-box button {
  min-height: 42px;
  border: 1px solid rgba(142, 155, 179, 0.24);
  border-radius: 7px;
  padding: 9px 10px;
  outline: 0;
  background: #0b111b;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.mobile-search-box button {
  min-width: 58px;
  cursor: pointer;
}

.mobile-wall-controls {
  display: grid;
  grid-template-columns: 34px 50px minmax(0, 1fr) 34px 46px 46px;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
}

.mobile-wall-controls button,
.mobile-map-mode-row button {
  min-height: 34px;
  border: 1px solid rgba(142, 155, 179, 0.24);
  border-radius: 6px;
  background: #0b111b;
  color: #d5dbea;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-wall-controls span {
  color: white;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.mobile-wall-controls input {
  width: 100%;
  accent-color: var(--purple);
}

.mobile-map-mode-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 8px;
}

.mobile-map-mode-row button.active {
  border-color: rgba(110, 54, 246, 0.86);
  background: linear-gradient(135deg, #7140ff, #4b21d2);
  color: white;
}

.mobile-wall-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 10px;
  color: #aeb8ca;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-wall-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mobile-wall-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.legend-available {
  background: #172332;
}

.legend-selected {
  background: #20ded8;
}

.legend-premium {
  background: #ffc323;
}

.legend-sponsor {
  background: #7c3aed;
}

.mobile-panel {
  display: none;
}

.mobile-panel.is-active {
  display: block;
}

.mobile-map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(142, 155, 179, 0.22);
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  background: #03060a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.mobile-map-card canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.mobile-map-card.is-dragging canvas {
  cursor: grabbing;
}

.mobile-map-card.is-pinching canvas {
  cursor: zoom-in;
}

.mobile-sponsor-box-layer {
  position: absolute;
  z-index: 8;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mobile-sponsor-callout {
  position: absolute;
  display: grid;
  grid-template-columns: min(42px, calc(100% * 0.32)) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  align-items: center;
  column-gap: 8px;
  box-sizing: border-box;
  border: 2px solid var(--callout, var(--purple));
  border-radius: 7px;
  padding: 7px 24px 7px 7px;
  background: rgba(7, 11, 18, 0.92);
  box-shadow: 0 0 22px color-mix(in srgb, var(--callout, var(--purple)) 55%, transparent);
  color: white;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  user-select: none;
}

.mobile-sponsor-callout span {
  grid-row: 1 / span 2;
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  place-items: center;
  border-radius: 5px;
  background: var(--callout, var(--purple));
  font-size: 10px;
  font-weight: 900;
}

.mobile-sponsor-callout span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.mobile-sponsor-callout strong,
.mobile-sponsor-callout small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-sponsor-callout strong {
  font-size: 11px;
}

.mobile-sponsor-callout small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
}

.sponsor-box-close {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 2;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0;
  background: rgba(3, 6, 10, 0.82);
  color: white;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}

.mobile-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.mobile-action-row .button,
.mobile-reserve-button {
  min-height: 44px;
}

.mobile-action-row .button:nth-child(3) {
  grid-column: 1 / -1;
}

.mobile-rank-list,
.mobile-premium-grid {
  display: grid;
  gap: 10px;
}

.mobile-rank-list .rank-item {
  width: 100%;
}

.mobile-premium-grid .premium-card {
  width: 100%;
}

.mobile-sponsor-card,
.mobile-buy-summary {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(142, 155, 179, 0.24);
  border-radius: 10px;
  padding: 14px;
  background:
    radial-gradient(circle at 88% 8%, rgba(32, 222, 216, 0.12), transparent 11rem),
    #0b111b;
  color: white;
}

.mobile-sponsor-card p,
.mobile-buy-summary p {
  margin: 0;
  color: #aeb8ca;
  line-height: 1.45;
}

.mobile-buy-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-buy-stats span,
.mobile-buy-chip {
  border: 1px solid rgba(142, 155, 179, 0.2);
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #d5dbea;
}

.mobile-buy-stats strong,
.mobile-buy-chip strong {
  display: block;
  color: white;
}

.mobile-buy-chips {
  display: grid;
  gap: 7px;
  max-height: 210px;
  overflow: auto;
}

.mobile-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: white;
  text-transform: uppercase;
}

.mobile-section-title h1,
.mobile-section-title span {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.mobile-section-title small {
  color: #aab3c3;
  text-transform: none;
}

.phone-feed {
  display: grid;
  gap: 12px;
  width: 100%;
  overflow: hidden;
}

.mobile-spot-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background:
    radial-gradient(circle at 78% 24%, color-mix(in srgb, var(--spot-color, #6e36f6) 34%, transparent), transparent 12rem),
    linear-gradient(145deg, rgba(110, 54, 246, 0.24), rgba(8, 13, 21, 0.88));
}

.mobile-spot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 70% 36%, transparent 0 19px, rgba(255, 255, 255, 0.07) 20px 21px);
  opacity: 0.35;
}

.mobile-card-top,
.mobile-card-body,
.mobile-card-stats {
  position: relative;
  z-index: 2;
}

.mobile-card-top {
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

.premium-badge {
  border-radius: 4px;
  padding: 3px 8px;
  background: var(--gold);
  color: #161005;
  font-size: 10px;
  font-weight: 900;
}

.heart-button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: var(--purple);
  color: white;
}

.mobile-card-body {
  padding: 0 14px 12px;
}

.mobile-card-body strong {
  display: block;
  color: white;
  font-size: 30px;
}

.mobile-card-body small {
  color: white;
}

.brand-word {
  margin: 20px 0 16px;
  color: white;
  font-size: clamp(42px, 11vw, 58px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.mobile-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(28, 15, 58, 0.45), rgba(28, 15, 58, 0.72));
}

.mobile-card-stats span {
  color: #c5cedd;
  font-size: 11px;
}

.mobile-card-stats strong {
  display: block;
  color: white;
  font-size: 15px;
}

.visit-button {
  display: inline-flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  text-decoration: none;
  background: linear-gradient(135deg, #7140ff, #4b21d2);
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.mobile-card-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px 14px;
}

.mobile-card-actions button {
  min-height: 38px;
  border: 1px solid rgba(142, 155, 179, 0.24);
  border-radius: 7px;
  background: rgba(11, 17, 27, 0.82);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 100px;
  margin-top: -2px;
}

.benefits article {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-content: center;
  padding: 18px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.benefits article:last-child {
  border-right: 0;
}

.benefits span {
  grid-row: 1 / span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #121b2a;
  color: white;
  font-size: 25px;
}

.benefits strong {
  font-size: 13px;
  text-transform: uppercase;
}

.benefits p {
  margin: 4px 0 0;
  color: #aab3c3;
  font-size: 12px;
  line-height: 1.45;
}

.below-grid {
  grid-area: below;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
}

.module,
.commerce,
.admin {
  padding: 18px;
}

.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 14px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--purple-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.module h2,
.commerce h2,
.admin h2 {
  margin: 0;
  font-size: 24px;
}

.muted {
  color: var(--muted);
}

.rank-list,
.admin-table,
.buy-form {
  display: grid;
  gap: 9px;
}

.rank-item,
.admin-row,
.premium-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.rank-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.rank-index {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 7px;
  background: rgba(110, 54, 246, 0.18);
  color: var(--purple-2);
  font-weight: 900;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.premium-card {
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.premium-card strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
}

.premium-card span,
.premium-card p {
  color: #aeb8ca;
  font-size: 12px;
}

.premium-auction-meta {
  display: grid;
  gap: 2px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

.premium-auction-meta b {
  color: white;
  font-size: 20px;
}

.premium-auction-meta small {
  color: var(--gold);
  font-size: 11px;
}

.commerce {
  grid-area: buy;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 24px;
}

.commerce p {
  color: #aeb8ca;
  line-height: 1.6;
}

.buy-form label {
  display: grid;
  gap: 6px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.buy-form input,
.buy-form textarea,
.buy-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  outline: 0;
  background: #0c121d;
  color: white;
}

.buy-form textarea {
  min-height: 88px;
  resize: vertical;
}

.split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
}

.availability {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px;
  background: #0c121d;
  color: var(--muted);
  font-size: 12px;
}

.availability.good {
  border-color: rgba(104, 211, 145, 0.5);
  color: #bdf4d0;
}

.availability.hot {
  border-color: rgba(248, 194, 54, 0.55);
  color: #ffe49a;
}

.availability.bad {
  border-color: rgba(255, 78, 120, 0.55);
  color: #ffb5c7;
}

.admin {
  grid-area: admin;
  display: none;
}

.admin-entry .desktop-stage {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "admin";
}

.admin-entry .left-panel,
.admin-entry .wall-stage,
.admin-entry .phone-preview,
.admin-entry .benefits,
.admin-entry .about-page,
.admin-entry .below-grid,
.admin-entry .commerce,
.admin-entry .dashboard {
  display: none;
}

.admin-entry .admin {
  display: block;
}

.dashboard {
  grid-area: dashboard;
  display: none;
  padding: 18px;
}

.dashboard:target,
.route-account .dashboard {
  display: block;
}

.about-page {
  grid-column: 1 / -1;
  display: none;
  padding: 18px;
}

.about-page:target,
.route-about .about-page {
  display: grid;
  gap: 14px;
}

.about-hero {
  display: grid;
  gap: 14px;
  min-height: 360px;
  align-content: end;
  border: 1px solid rgba(143, 91, 255, 0.3);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(5, 8, 13, 0.72), rgba(5, 8, 13, 0.42)),
    radial-gradient(circle at 76% 22%, rgba(32, 222, 216, 0.28), transparent 20rem),
    radial-gradient(circle at 18% 14%, rgba(143, 91, 255, 0.32), transparent 22rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    #070b12;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.about-hero h2 {
  max-width: 920px;
  margin: 0;
  color: white;
  font-size: clamp(36px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #c8d1e1;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-kpis,
.about-value-grid,
.about-story {
  display: grid;
  gap: 10px;
}

.about-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-kpis article,
.about-story article,
.about-value-grid article,
.about-cta,
.about-quote {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 13, 21, 0.72);
}

.about-kpis article {
  padding: 18px;
}

.about-story {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-story article {
  padding: clamp(20px, 3vw, 32px);
}

.about-story h3 {
  margin: 0 0 12px;
  color: white;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  text-transform: uppercase;
}

.about-story p:not(.eyebrow),
.about-quote p {
  color: #c5cedd;
  line-height: 1.62;
}

.about-kpis strong {
  display: block;
  color: white;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1;
}

.about-kpis span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-value-grid article {
  padding: 18px;
}

.about-value-grid b {
  display: block;
  color: white;
  font-size: 18px;
}

.about-value-grid p,
.about-cta p {
  color: #aeb8ca;
  line-height: 1.55;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(32, 222, 216, 0.2);
  border-radius: 8px;
  background: rgba(32, 222, 216, 0.2);
}

.about-proof-strip span {
  padding: 15px;
  background: #080d15;
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.about-quote {
  margin: 0;
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(247, 195, 95, 0.16), rgba(143, 91, 255, 0.12)),
    rgba(8, 13, 21, 0.86);
}

.about-quote p {
  max-width: 900px;
  margin: 0;
  color: white;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(143, 91, 255, 0.2), rgba(32, 222, 216, 0.09)),
    rgba(8, 13, 21, 0.88);
}

.about-cta h3 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.sponsor-page {
  grid-column: 1 / -1;
  display: none;
  padding: 18px;
}

.sponsor-page:target,
.route-sponsor .sponsor-page,
.sponsor-route .sponsor-page {
  display: block;
}

.sponsor-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 12px;
}

.sponsor-preview-card,
.sponsor-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(8, 13, 21, 0.72);
}

.sponsor-wall-preview {
  position: relative;
  display: grid;
  min-height: 230px;
  grid-template-columns: repeat(20, 1fr);
  gap: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  background: #080d15;
}

.mini-slot {
  min-height: 8px;
  background: #1f2b3a;
}

.mini-slot.premium {
  background: #f8c236;
}

.mini-slot.selected {
  background: #20ded8;
}

.sponsor-preview-box {
  display: grid;
  top: 82px;
  left: 72px;
}

.sponsor-preview-card h3,
.sponsor-form h3 {
  margin: 14px 0 8px;
  color: white;
}

.sponsor-rules {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #aeb8ca;
  font-size: 12px;
}

.sponsor-form {
  display: grid;
  gap: 10px;
}

.sponsor-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.sponsor-form input,
.sponsor-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 10px;
  outline: 0;
  background: #0c121d;
  color: white;
}

.sponsor-form textarea {
  min-height: 86px;
  resize: vertical;
}

.sponsor-price-summary,
.sponsor-active-list {
  display: grid;
  gap: 8px;
}

.sponsor-price-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(32, 222, 216, 0.22);
  border-radius: 8px;
  padding: 10px;
  background: rgba(32, 222, 216, 0.07);
}

.sponsor-price-summary span,
.sponsor-price-summary strong {
  color: #dce5f2;
  font-size: 12px;
}

.sponsor-price-summary strong {
  grid-column: 1 / -1;
  color: var(--teal);
  font-size: 16px;
}

.sponsor-active-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.sponsor-active-row span {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--sponsor-color, var(--purple));
}

.sponsor-active-row small {
  color: var(--muted);
}

.sponsor-ad-callout span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.dashboard-subhead {
  margin: 14px 0 4px;
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.template-wall.is-buy-mode .hero-copy {
  display: none;
}

.template-wall.is-buy-mode .left-panel {
  max-height: calc(100vh - 74px);
}

.template-wall .login-button {
  display: inline-grid;
  position: relative;
  z-index: 80;
}

.mobile-preview-route {
  min-height: 100vh;
  background: #080d15;
}

.mobile-preview-route .desktop-product,
.mobile-preview-route .template-switcher {
  display: none;
}

.mobile-preview-route .mobile-product {
  display: block;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 14px 86px;
}

.mobile-preview-route .mobile-product,
.template-mobile-view .mobile-product {
  height: 100dvh;
  min-height: 100dvh;
  padding: 10px 10px 12px;
  overflow: hidden;
}

.mobile-preview-route .mobile-real-head,
.template-mobile-view .mobile-real-head {
  min-height: 30px;
}

.mobile-preview-route .mobile-real-head button,
.template-mobile-view .mobile-real-head button {
  font-size: 18px;
}

.mobile-preview-route .mobile-real-head strong,
.template-mobile-view .mobile-real-head strong {
  font-size: 18px;
}

.mobile-preview-route .mobile-real-progress,
.template-mobile-view .mobile-real-progress {
  margin-top: 8px;
}

.mobile-preview-route .mobile-real-progress span,
.template-mobile-view .mobile-real-progress span {
  font-size: 11px;
}

.mobile-preview-route .mobile-real-progress strong,
.template-mobile-view .mobile-real-progress strong {
  font-size: 16px;
}

.mobile-preview-route .mobile-real-progress i,
.template-mobile-view .mobile-real-progress i {
  height: 5px;
  margin-top: 6px;
}

.mobile-preview-route .mobile-tabs,
.template-mobile-view .mobile-tabs {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
  margin: 10px 0;
}

.mobile-preview-route .mobile-tabs button,
.template-mobile-view .mobile-tabs button {
  min-height: 34px;
  border-radius: 6px;
  font-size: 9px;
}

.mobile-preview-route .mobile-panel.is-active,
.template-mobile-view .mobile-panel.is-active {
  min-height: 0;
  overflow: auto;
}

.mobile-preview-route .mobile-panel[data-mobile-panel="map"].is-active,
.template-mobile-view .mobile-panel[data-mobile-panel="map"].is-active {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-preview-route .mobile-section-title,
.template-mobile-view .mobile-section-title {
  margin-bottom: 6px;
}

.mobile-preview-route .mobile-section-title h1,
.template-mobile-view .mobile-section-title h1 {
  font-size: 18px;
}

.mobile-preview-route .mobile-section-title small,
.template-mobile-view .mobile-section-title small {
  font-size: 10px;
}

.mobile-preview-route .mobile-search-box,
.template-mobile-view .mobile-search-box {
  gap: 6px;
  margin-bottom: 6px;
}

.mobile-preview-route .mobile-search-box input,
.mobile-preview-route .mobile-search-box button,
.template-mobile-view .mobile-search-box input,
.template-mobile-view .mobile-search-box button {
  min-height: 34px;
  padding: 7px 9px;
  font-size: 11px;
}

.mobile-preview-route .mobile-wall-controls,
.template-mobile-view .mobile-wall-controls {
  grid-template-columns: 30px 44px minmax(0, 1fr) 30px 40px 40px;
  gap: 4px;
  margin-bottom: 6px;
}

.mobile-preview-route .mobile-wall-controls button,
.mobile-preview-route .mobile-map-mode-row button,
.template-mobile-view .mobile-wall-controls button,
.template-mobile-view .mobile-map-mode-row button {
  min-height: 30px;
  border-radius: 5px;
  font-size: 9px;
}

.mobile-preview-route .mobile-map-mode-row,
.template-mobile-view .mobile-map-mode-row {
  gap: 5px;
  margin-bottom: 6px;
}

.mobile-preview-route .mobile-wall-legend,
.template-mobile-view .mobile-wall-legend {
  gap: 4px 7px;
  margin-bottom: 6px;
  font-size: 8px;
  line-height: 1.1;
}

.mobile-preview-route .mobile-wall-legend i,
.template-mobile-view .mobile-wall-legend i {
  width: 8px;
  height: 8px;
}

.mobile-preview-route .mobile-map-card,
.template-mobile-view .mobile-map-card {
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
}

.mobile-preview-route .mobile-action-row,
.template-mobile-view .mobile-action-row {
  gap: 6px;
  margin-top: 6px;
}

.mobile-preview-route .mobile-action-row .button,
.template-mobile-view .mobile-action-row .button {
  min-height: 36px;
  padding: 8px 10px;
  font-size: 10px;
}

@media (max-height: 720px) {
  .mobile-preview-route .mobile-section-title,
  .template-mobile-view .mobile-section-title {
    display: none;
  }
}

@media (max-height: 660px) {
  .mobile-preview-route .mobile-real-progress,
  .template-mobile-view .mobile-real-progress {
    display: none;
  }

  .mobile-preview-route .mobile-wall-legend,
  .template-mobile-view .mobile-wall-legend {
    display: none;
  }
}

.auth-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.auth-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-form > strong {
  grid-column: 1 / -1;
  font-size: 13px;
  text-transform: uppercase;
}

.auth-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.auth-form input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 10px;
  outline: 0;
  background: #0c121d;
  color: white;
}

.auth-form button {
  min-height: 40px;
}

.account-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  background: rgba(76, 224, 179, 0.06);
}

.account-session[hidden],
.auth-shell[hidden] {
  display: none;
}

.account-session span,
.account-session small,
.account-session strong {
  display: block;
}

.account-session small {
  color: var(--muted);
}

.auth-message {
  min-height: 18px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.auth-message.is-error {
  color: #ffb5c7;
}

.auth-message.is-success {
  color: #bdf4d0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.dashboard-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.dashboard-card strong {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 24px;
}

.user-panel-list {
  display: grid;
  gap: 9px;
}

.user-slot-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-row {
  display: grid;
  grid-template-columns: 92px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.admin-tabs a {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce5f5;
  font-size: 12px;
  font-weight: 800;
}

.admin-tabs a.active {
  border-color: rgba(143, 91, 255, 0.75);
  background: rgba(110, 54, 246, 0.2);
  color: white;
}

.admin-section {
  margin-bottom: 12px;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-card h3 {
  margin: 0 0 12px;
}

.admin-head-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-session {
  margin: 0;
}

.admin-pricing-form,
.admin-promo-form,
.admin-wall-form,
.admin-page-form {
  display: grid;
  gap: 10px;
}

.admin-pricing-form,
.admin-promo-form,
.admin-wall-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-composition-preview,
.admin-composition-published {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  border: 1px solid rgba(32, 222, 216, 0.22);
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(32, 222, 216, 0.08), rgba(110, 54, 246, 0.12));
}

.admin-composition-published {
  grid-template-columns: minmax(0, 1fr) 84px;
  align-items: center;
}

.admin-composition-preview[hidden],
.admin-composition-published[hidden] {
  display: none;
}

.admin-composition-preview > div,
.admin-composition-published > div {
  display: grid;
  gap: 3px;
}

.admin-composition-preview strong,
.admin-composition-published strong {
  color: white;
}

.admin-composition-preview span,
.admin-composition-published span,
.admin-composition-published small {
  color: var(--muted);
  font-size: 12px;
}

.admin-composition-preview img,
.admin-composition-published img {
  width: 100%;
  max-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: #05080d;
  image-rendering: pixelated;
  object-fit: contain;
}

.admin-pricing-form h3,
.admin-pricing-form p,
.admin-pricing-form button,
.admin-promo-form button,
.admin-wall-form button,
.admin-form-wide,
.admin-wall-form > strong {
  grid-column: 1 / -1;
}

.admin-pricing-form label,
.admin-promo-form label,
.admin-wall-form label,
.admin-page-form {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.admin-pricing-form input,
.admin-pricing-form select,
.admin-promo-form input,
.admin-promo-form select,
.admin-wall-form input,
.admin-wall-form select,
.admin-wall-form textarea,
.admin-page-form input,
.admin-page-form select,
.admin-page-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 10px;
  background: #0c121d;
  color: white;
}

.admin-wall-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.admin-wall-edit-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-wall-form textarea {
  min-height: 86px;
  resize: vertical;
}

.admin-compact-form {
  grid-template-columns: minmax(120px, 0.9fr) minmax(150px, 1.3fr) minmax(120px, 0.7fr) minmax(120px, 0.7fr) minmax(150px, 1fr) auto;
}

.admin-compact-form input,
.admin-compact-form select {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 9px;
  background: #0c121d;
  color: white;
}

.admin-promo-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.admin-promo-row {
  grid-template-columns: 130px 1fr auto minmax(120px, 0.8fr);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-page-list {
  display: grid;
  gap: 10px;
}

.admin-page-form {
  grid-template-columns: 120px 1fr 130px auto auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-page-form textarea {
  grid-column: 1 / -1;
  min-height: 92px;
}

.static-page {
  min-height: 100vh;
  background: #070b12;
  color: white;
}

.static-page-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.static-page-card {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.wall-seo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.wall-seo-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.wall-seo-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.wall-seo-grid strong {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 20px;
}

.slot-page-hero {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-radius: 10px;
  background: var(--spot-color);
  overflow: hidden;
}

.slot-page-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.slot-page-hero strong {
  font-size: clamp(36px, 8vw, 92px);
}

.admin-stats article {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 18px;
}

.status-pill,
.type-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #d9e0ef;
  font-size: 11px;
}

.type-pill {
  border-color: rgba(248, 194, 54, 0.45);
  color: var(--gold);
}

.status-pill.active {
  color: var(--ok);
}

.status-pill.pending {
  color: var(--gold);
}

.admin-actions {
  display: flex;
  gap: 6px;
}

.tiny-button {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 9px;
  background: #0c121d;
  color: white;
  cursor: pointer;
  font-size: 11px;
}

.spot-dialog {
  width: min(680px, calc(100% - 2rem));
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #0b111b;
  color: white;
  padding: 16px;
}

.spot-dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
}

.notice-dialog {
  width: min(420px, calc(100% - 2rem));
  border: 1px solid rgba(143, 91, 255, 0.52);
  border-radius: 10px;
  padding: 0;
  background: #090f19;
  color: white;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.68),
    0 0 34px rgba(143, 91, 255, 0.18);
}

.notice-dialog::backdrop {
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(3px);
}

.notice-dialog-shell {
  display: grid;
  gap: 11px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(143, 91, 255, 0.16), transparent 46%),
    radial-gradient(circle at top right, rgba(32, 222, 216, 0.16), transparent 32%),
    #090f19;
}

.notice-kicker {
  color: #20ded8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.notice-dialog strong {
  font-size: 18px;
}

.notice-dialog p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #111827;
  color: white;
  cursor: pointer;
}

.spot-visual {
  display: grid;
  min-height: 210px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.18), transparent 11rem),
    var(--spot-color, #6e36f6);
}

.spot-visual strong {
  font-size: 60px;
}

.spot-visual.has-image {
  position: relative;
  overflow: hidden;
  background: #05080d;
}

.spot-visual.has-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.spot-visual.has-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 6px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--spot-color) 72%, white);
  background: var(--spot-color, #05080d);
  color: var(--spot-label-text, white);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.34);
  font-size: 13px;
  font-weight: 900;
}

.mobile-upload-preview {
  display: block;
  width: 100%;
  height: 104px;
  margin: 18px 0 14px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-screen .mobile-tabs {
  gap: 6px;
  margin: 16px 0 18px;
}

.phone-screen .mobile-tabs button {
  min-height: 42px;
  font-size: 9px;
}

.phone-screen .mobile-section-title {
  margin-bottom: 10px;
}

.phone-screen .mobile-spot-card {
  min-height: 0;
}

.phone-screen .mobile-card-top {
  padding: 10px;
}

.phone-screen .mobile-card-body {
  padding: 0 10px 10px;
}

.phone-screen .mobile-card-body strong {
  font-size: 24px;
}

.phone-screen .mobile-upload-preview {
  height: 92px;
  margin: 12px 0 10px;
}

.phone-screen .brand-word {
  margin: 12px 0;
  font-size: 36px;
}

.phone-screen .mobile-card-stats {
  gap: 7px;
  padding: 10px;
}

.phone-screen .mobile-card-actions {
  padding: 0 10px 10px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.matched-color {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
}

.matched-color > span:last-child {
  display: grid;
  gap: 1px;
}

.matched-color small {
  font-size: 10px;
  text-transform: uppercase;
}

.matched-color strong {
  color: white;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.matched-color-swatch {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  background: var(--matched-color, #6e36f6);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.28),
    0 4px 12px color-mix(in srgb, var(--matched-color) 42%, transparent);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.profile-stats span {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  color: var(--muted);
}

.profile-stats strong {
  display: block;
  color: white;
}

.auction-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
  border: 1px solid rgba(248, 194, 54, 0.32);
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(248, 194, 54, 0.12), rgba(110, 54, 246, 0.1));
}

.auction-panel div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 9px;
  background: rgba(7, 11, 18, 0.56);
}

.auction-panel span,
.auction-panel p {
  color: #aeb8ca;
  font-size: 11px;
}

.auction-panel strong {
  display: block;
  color: white;
  font-size: 17px;
}

.auction-panel p,
.auction-form {
  grid-column: 1 / -1;
  margin: 0;
}

.auction-form {
  display: grid;
  grid-template-columns: 1fr 120px auto;
  gap: 8px;
}

.auction-form input {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 10px;
  outline: 0;
  background: #0c121d;
  color: white;
}

@media (max-width: 1320px) {
  .desktop-stage {
    grid-template-columns: 290px minmax(520px, 1fr);
    grid-template-areas:
      "left wall"
      "phone wall"
      "benefits benefits"
      "below below"
      "dashboard dashboard"
      "buy admin";
  }

  .phone-preview {
    min-height: 0;
  }

  .phone-shell {
    width: 286px;
    height: 618px;
    border-radius: 46px;
  }

  .phone-screen {
    border-radius: 36px;
  }

  .template-wall .desktop-stage {
    grid-template-columns: 260px minmax(0, 1fr);
    grid-template-areas:
      "left wall"
      "benefits benefits"
      "below below"
      "dashboard dashboard"
      "buy admin";
  }

  .template-wall .left-panel {
    grid-template-columns: 1fr;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .template-wall .desktop-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "wall"
      "left"
      "benefits"
      "below"
      "dashboard"
      "buy"
      "admin";
  }

  .template-wall .left-panel {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .sponsor-layout {
    grid-template-columns: 1fr;
  }

  .about-kpis,
  .about-story,
  .about-value-grid,
  .about-proof-strip,
  .about-cta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  body {
    background: #080d15;
  }

  .desktop-product {
    display: none;
  }

  .route-about .desktop-product {
    display: block;
  }

  .route-about .desktop-stage {
    display: block;
    padding: 12px;
  }

  .route-about .desktop-stage > :not(.about-page) {
    display: none;
  }

  .route-about .topbar {
    display: flex;
    height: auto;
    padding: 12px;
  }

  .route-about .desktop-nav,
  .route-about .topbar-actions {
    display: none;
  }

  .route-about .about-page {
    display: grid;
    padding: 0;
  }

  .route-about .about-hero {
    min-height: 420px;
    padding: 22px;
  }

  .route-about .about-kpis,
  .route-about .about-story,
  .route-about .about-value-grid,
  .route-about .about-proof-strip,
  .route-about .about-cta {
    grid-template-columns: 1fr;
  }

  .route-about .about-cta {
    align-items: stretch;
  }

  .route-about .site-credit {
    display: flex;
  }

  .mobile-product {
    display: block;
    min-height: 100vh;
    padding: 24px 14px 86px;
  }

  .route-about .mobile-product {
    display: none;
  }

  .mobile-real-head {
    padding-top: 4px;
  }

  .mobile-real-head strong {
    font-size: 24px;
  }

  .mobile-real-progress {
    margin-top: 24px;
  }

  .real-tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 10px 0;
    background: rgba(8, 13, 21, 0.9);
    backdrop-filter: blur(12px);
  }

  .mobile-section-title {
    margin-top: 20px;
  }

  .mobile-section-title h1 {
    font-size: 18px;
  }

  .real-feed {
    gap: 12px;
  }

  .real-feed .mobile-spot-card {
    min-height: 316px;
  }

  .real-feed .brand-word {
    margin-top: 34px;
    font-size: clamp(44px, 16vw, 64px);
  }

  .mobile-tabs a {
    text-decoration: none;
  }
}

@media (max-width: 1180px) {
  .wall-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legend-control,
  .world-pattern-toggle,
  .search-box {
    justify-self: stretch;
  }

  .template-wall .wall-toolbar {
    display: flex;
  }

  .template-wall .wall-canvas {
    min-height: 620px;
  }
}
