:root {
  --dp-primary: #6d28d9;
  --dp-secondary: #4f46e5;
  --dp-primary-gradient: linear-gradient(135deg, #6d28d9 0%, #4f46e5 100%);
  --dp-surface: #ffffff;
  --dp-border: #e2e8f0;
  --dp-text-strong: #0f172a;
  --dp-text-soft: #475569;
  --dp-shadow: 0 18px 40px -24px rgba(79, 70, 229, 0.45);
  --dp-radius-lg: 24px;
  --dp-radius-xl: 32px;
  --dp-font: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.pageContainerWrapper.dp-syb-page-wrapper {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 45%, #eef2ff 100%);
  isolation: isolate;
}

.pageContainerWrapper.dp-syb-page-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.08), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(109, 40, 217, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.pageContainerWrapper.dp-syb-page-wrapper > * {
  position: relative;
  z-index: 1;
}

.dp-syb-page {
  position: relative;
  padding: 6rem 1.5rem 5rem;
  min-height: 100vh;
  font-family: var(--dp-font);
}

.dp-syb-page > .web-form-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.dp-syb-hero,
.dp-syb-marketplace,
.dp-syb-empty,
.dp-syb-footer-cta {
  font-family: var(--dp-font);
}

.dp-syb-hero {
  position: relative;
  padding: 4rem 1.5rem 4.5rem;
  margin-bottom: 3rem;
  color: #fff;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.45), transparent 60%),
    radial-gradient(circle at bottom left, rgba(109, 40, 217, 0.45), transparent 65%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.68));
  overflow: hidden;
  border-radius: var(--dp-radius-xl);
  box-shadow: var(--dp-shadow);
}

.dp-syb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.dp-syb-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.dp-syb-hero__copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: #fff;
}

.dp-syb-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dp-syb-hero__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.92);
  max-width: 520px;
}

.dp-syb-hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dp-syb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-family: inherit;
}

.dp-syb-btn--primary {
  color: #fff;
  background-image: var(--dp-primary-gradient);
  box-shadow: 0 12px 24px -12px rgba(79, 70, 229, 0.6);
}

.dp-syb-btn--primary:hover,
.dp-syb-btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -16px rgba(79, 70, 229, 0.55);
}

.dp-syb-btn--secondary {
  background: rgba(79, 70, 229, 0.12);
  color: #312e81;
}

.dp-syb-btn--ghost {
  background: rgba(15, 23, 42, 0.24);
  color: rgba(226, 232, 240, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.35);
}

.dp-syb-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.38);
  transform: translateY(-2px);
}

.dp-syb-btn-link {
  border: none;
  background: transparent;
  color: var(--dp-secondary);
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
}

.dp-syb-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--dp-radius-lg);
  background: rgba(15, 23, 42, 0.35);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.06);
}

.dp-syb-hero__stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  display: block;
}

.dp-syb-hero__stat-label {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.72);
}

.dp-syb-marketplace {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.dp-syb-marketplace__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.dp-syb-search {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dp-surface);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
  border: 1px solid rgba(79, 70, 229, 0.12);
  box-shadow: 0 12px 32px -24px rgba(15, 23, 42, 0.35);
}

.dp-syb-search input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
}

.dp-syb-search__icon {
  font-size: 1.1rem;
  opacity: 0.65;
}

.dp-syb-marketplace__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.dp-syb-filters {
  background: var(--dp-surface);
  border-radius: var(--dp-radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--dp-border);
  box-shadow: 0 18px 48px -32px rgba(15, 23, 42, 0.35);
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dp-syb-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--dp-text-soft);
  font-size: 0.95rem;
}

.dp-syb-field select,
.dp-syb-field input {
  border-radius: 0.9rem;
  border: 1px solid var(--dp-border);
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.dp-syb-field select:focus,
.dp-syb-field input:focus {
  border-color: rgba(79, 70, 229, 0.65);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
  outline: none;
}

.dp-syb-field--double {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dp-syb-field--double > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.dp-syb-field--double input[type="number"] {
  font-variant-numeric: tabular-nums;
}

.dp-syb-filters__apply {
  width: 100%;
}

.dp-syb-marketplace__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dp-syb-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dp-syb-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--dp-secondary);
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.dp-syb-chip button {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.dp-syb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.dp-syb-card {
  background: var(--dp-surface);
  border-radius: var(--dp-radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 40px -32px rgba(15, 23, 42, 0.28);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

.dp-syb-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.08), rgba(79, 70, 229, 0.08));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.dp-syb-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 52px -30px rgba(79, 70, 229, 0.4);
}

.dp-syb-card:hover::before {
  opacity: 1;
}

.dp-syb-card__accent {
  height: 4px;
  width: 100%;
  border-radius: 999px;
  background-image: var(--dp-primary-gradient);
  position: absolute;
  top: 0;
  left: 0;
}

.dp-syb-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dp-syb-card__logo {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.15), rgba(79, 70, 229, 0.35));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dp-syb-card__logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.dp-syb-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dp-text-strong);
}

.dp-syb-card__tagline {
  font-size: 0.95rem;
  color: var(--dp-text-soft);
}

.dp-syb-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dp-syb-card__about {
  color: var(--dp-text-soft);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5rem;
}

.dp-syb-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dp-syb-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dp-primary);
}

.dp-syb-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}

.dp-syb-pagination button {
  border-radius: 999px;
  border: 1px solid rgba(79, 70, 229, 0.22);
  background: var(--dp-surface);
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--dp-secondary);
  transition: background 0.18s ease, transform 0.18s ease;
}

.dp-syb-pagination button:hover:not([disabled]) {
  background: rgba(79, 70, 229, 0.08);
  transform: translateY(-2px);
}

.dp-syb-pagination button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.dp-syb-divider {
  height: 4px;
  width: 160px;
  margin: 4rem auto 3rem;
  border-radius: 999px;
  background-image: var(--dp-primary-gradient);
}

.dp-syb-footer-cta {
  text-align: center;
  max-width: 960px;
  margin: 3.5rem auto 0;
  padding: 3rem 1.5rem;
  background: var(--dp-surface);
  border-radius: var(--dp-radius-lg);
  border: 1px solid rgba(79, 70, 229, 0.12);
  box-shadow: 0 24px 60px -34px rgba(15, 23, 42, 0.35);
}

.dp-syb-form-placeholder {
  margin: 4rem auto 0;
  padding: 3rem;
  background: var(--dp-surface);
  border-radius: var(--dp-radius-lg);
  border: 1px dashed rgba(79, 70, 229, 0.32);
  box-shadow: 0 26px 60px -38px rgba(15, 23, 42, 0.35);
  display: grid;
  gap: 1.5rem;
  text-align: center;
  max-width: 880px;
}

.dp-syb-form-placeholder__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(79, 70, 229, 0.12);
  color: var(--dp-secondary);
}

.dp-syb-form-placeholder h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: var(--dp-text-strong);
  margin: 0;
}

.dp-syb-form-placeholder p {
  margin: 0;
  color: var(--dp-text-soft);
  line-height: 1.6;
}

.dp-syb-form-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.dp-syb-form-placeholder__actions .dp-syb-btn {
  min-width: 200px;
}

.dp-syb-form-placeholder__meta {
  font-size: 0.9rem;
  opacity: 0.75;
}

.dp-syb-noscript {
  margin-top: 2rem;
  text-align: center;
  color: var(--dp-text-soft);
  font-family: var(--dp-font);
}

.dp-syb-footer-cta h2 {
  font-size: 2rem;
  color: var(--dp-text-strong);
  margin-bottom: 0.75rem;
}

.dp-syb-empty {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--dp-radius-lg);
  border: 1px dashed rgba(79, 70, 229, 0.3);
  background: rgba(79, 70, 229, 0.04);
  color: var(--dp-text-soft);
}

.dp-syb-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
}

.dp-syb-modal[data-open="true"] {
  display: flex;
}

.dp-syb-modal__dialog {
  background: var(--dp-surface);
  border-radius: var(--dp-radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 30px 60px -28px rgba(15, 23, 42, 0.4);
  position: relative;
}

.dp-syb-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(79, 70, 229, 0.12);
  height: 36px;
  width: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--dp-secondary);
}

.dp-syb-modal form {
  display: grid;
  gap: 1rem;
}

.dp-syb-modal label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--dp-text-soft);
}

.dp-syb-modal input,
.dp-syb-modal textarea {
  border-radius: 0.9rem;
  border: 1px solid var(--dp-border);
  padding: 0.75rem 0.85rem;
  font-family: inherit;
}

.dp-syb-modal textarea {
  min-height: 120px;
  resize: vertical;
}

.dp-syb-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--dp-text-strong);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.55);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10000;
}

.dp-syb-toast[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

.dp-syb-filter-toggle {
  display: none;
}

@media (max-width: 992px) {
  .dp-syb-marketplace__layout {
    grid-template-columns: 1fr;
  }
  .dp-syb-filters {
    position: fixed;
    inset: auto 1.5rem 1.5rem 1.5rem;
    max-width: 420px;
    margin: 0 auto;
    z-index: 9998;
    transform: translateY(120%);
    transition: transform 0.25s ease;
  }
  .dp-syb-filters[data-open="true"] {
    transform: translateY(0%);
  }
  .dp-syb-filter-toggle {
    display: inline-flex;
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .dp-syb-page {
    padding: 5rem 1rem 4rem;
  }
  .dp-syb-marketplace {
    padding: 3.25rem 1rem 4rem;
  }
  .dp-syb-marketplace__header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .dp-syb-hero {
    border-radius: var(--dp-radius-lg);
    padding: 3.25rem 1.15rem 3.5rem;
  }
  .dp-syb-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .dp-syb-search {
    flex: 1 1 auto;
    width: 100%;
    padding: 0.65rem 0.75rem 0.65rem 1rem;
    border-radius: 20px;
  }
  .dp-syb-search input[type="search"] {
    font-size: 0.95rem;
  }
  .dp-syb-field--double {
    grid-template-columns: 1fr;
  }
  .dp-syb-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .dp-syb-filter-toggle {
    width: 100%;
  }
  .dp-syb-marketplace__layout {
    gap: 1.5rem;
  }
  .dp-syb-filters {
    inset: auto 1.25rem 1.5rem 1.25rem;
    max-width: none;
    width: auto;
  }
  .dp-syb-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
  .dp-syb-card {
    padding: 1.5rem;
    gap: 1rem;
  }
  .dp-syb-card__header {
    align-items: flex-start;
  }
  .dp-syb-card__title {
    font-size: 1.15rem;
  }
  .dp-syb-form-placeholder {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .dp-syb-page {
    padding: 4.5rem 0.75rem 3.5rem;
  }
  .dp-syb-marketplace {
    padding: 2.75rem 0.75rem 3rem;
  }
  .dp-syb-hero {
    padding: 2.85rem 0.9rem 3.1rem;
  }
  .dp-syb-filters {
    inset: auto 0.75rem 1.25rem 0.75rem;
  }
  .dp-syb-search {
    padding: 0.6rem 0.65rem 0.6rem 0.9rem;
  }
  .dp-syb-search button {
    display: none;
  }
  .dp-syb-grid {
    gap: 1rem;
  }
  .dp-syb-card {
    padding: 1.35rem;
  }
  .dp-syb-card__logo {
    height: 44px;
    width: 44px;
  }
  .dp-syb-card__title {
    font-size: 1.05rem;
  }
  .dp-syb-card__tagline {
    font-size: 0.9rem;
  }
  .dp-syb-card__price {
    font-size: 1rem;
  }
  .dp-syb-form-placeholder {
    margin-top: 3rem;
    padding: 2.2rem 1.25rem;
  }
  .dp-syb-form-placeholder__actions {
    flex-direction: column;
  }
}

#dp-syb-form.dp-syb-form-highlight,
.dp-syb-form-placeholder.dp-syb-form-highlight {
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
  border-radius: var(--dp-radius-lg);
  transition: box-shadow 0.3s ease;
}