.secnd-app {
  --secnd-bg: #f8fafc;
  --secnd-surface: #ffffff;
  --secnd-border: #e2e8f0;
  --secnd-text: #0f172a;
  --secnd-muted: #64748b;
  --secnd-accent: #008fc8;
  --secnd-heading: #0f172a;
  --secnd-button-text: #ffffff;
  display: flex;
  min-height: 100vh;
  background: var(--secnd-bg);
  color: var(--secnd-text);
  font-family: "Host Grotesk", system-ui, -apple-system, sans-serif;
  height: 100vh;
  overflow: hidden;
  overscroll-behavior: contain;
}

body.secnd-dashboard-open {
  margin: 0;
  overflow: hidden;
}

body.secnd-dashboard-open .secnd-app {
  height: 100vh;
}

.secnd-app[data-theme="dark"] {
  --secnd-bg: #0f172a;
  --secnd-surface: #111827;
  --secnd-border: #1f2937;
  --secnd-text: #e2e8f0;
  --secnd-muted: #94a3b8;
  --secnd-heading: #f8fafc;
  --secnd-button-text: #0f172a;
}

.secnd-sidebar {
  width: 260px;
  background: var(--secnd-surface);
  border-right: 1px solid var(--secnd-border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 12px;
}

.secnd-sidebar__brand {
  padding: 24px;
  border-bottom: 1px solid var(--secnd-border);
}

.secnd-sidebar__logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--secnd-heading);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secnd-sidebar__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.secnd-sidebar__logo .secnd-logo--dark {
  display: none !important;
}

.secnd-sidebar__logo .secnd-logo--light {
  display: block !important;
}

.secnd-app[data-theme="dark"] .secnd-sidebar__logo .secnd-logo--dark {
  display: block !important;
}

.secnd-app[data-theme="dark"] .secnd-sidebar__logo .secnd-logo--light {
  display: none !important;
}
.secnd-sidebar__logo .secnd-logo--dark,
.secnd-mobile-logo .secnd-logo--dark {
  display: none !important;
}

.secnd-sidebar__logo .secnd-logo--light,
.secnd-mobile-logo .secnd-logo--light {
  display: block !important;
}

.secnd-app[data-theme="dark"] .secnd-sidebar__logo .secnd-logo--dark,
.secnd-app[data-theme="dark"] .secnd-mobile-logo .secnd-logo--dark {
  display: block !important;
}

.secnd-app[data-theme="dark"] .secnd-sidebar__logo .secnd-logo--light,
.secnd-app[data-theme="dark"] .secnd-mobile-logo .secnd-logo--light {
  display: none !important;
}
.secnd-logo--dark {
  display: none;
}

.secnd-app[data-theme="light"] .secnd-logo--dark {
  display: none;
}

.secnd-app[data-theme="light"] .secnd-logo--light {
  display: block;
}

.secnd-app[data-theme="dark"] .secnd-logo--dark {
  display: block;
}

.secnd-app[data-theme="dark"] .secnd-logo--light {
  display: none;
}

.secnd-sidebar__cta {
  padding: 16px;
}

.secnd-sidebar__cta .secnd-btn__icon {
  display: inline-flex;
  align-items: center;
}

.secnd-sidebar__cta .secnd-btn__icon svg {
  width: 20px;
  height: 20px;
}

.secnd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.secnd-btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: progress;
  filter: brightness(0.95);
}

.secnd-btn.is-disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.secnd-btn.is-disabled[data-secnd-pro-only] {
  opacity: 0.55;
  position: relative;
}

.secnd-btn.is-disabled[data-secnd-pro-only]::after {
  content: "Pro-only";
  font-size: 10px;
  font-weight: 600;
  margin-left: 6px;
  color: var(--secnd-muted);
}

.secnd-btn--primary {
  background: linear-gradient(135deg, var(--secnd-accent), #0ea5e9);
  color: var(--secnd-button-text);
}

.secnd-btn--primary:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-sidebar__nav {
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.secnd-sidebar__link {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--secnd-muted);
  text-decoration: none;
  font-weight: 500;
}

.secnd-sidebar__link.is-active,
.secnd-sidebar__link:hover {
  background: rgba(0, 143, 200, 0.1);
  color: var(--secnd-accent);
}

.secnd-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--secnd-accent);
  display: inline-block;
  margin-left: 8px;
  opacity: 0;
}

.secnd-nav-dot.is-visible {
  opacity: 1;
}

.secnd-sidebar__user {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid var(--secnd-border);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: calc(8px + env(safe-area-inset-bottom));
}

.secnd-sidebar__user-avatar {
  position: relative;
  display: inline-flex;
}

.secnd-sidebar__user img {
  border-radius: 999px;
}

.secnd-sidebar__user-name {
  font-weight: 600;
  font-size: 14px;
}

.secnd-sidebar__user-email {
  font-size: 12px;
  color: var(--secnd-muted);
}

.secnd-sidebar__user {
  position: relative;
}

.secnd-sidebar__user-menu {
  position: absolute;
  right: 12px;
  bottom: 100%;
  margin-bottom: 8px;
  background: #ffffff;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
  display: none;
  min-width: 160px;
  z-index: 5;
}

.secnd-sidebar__user-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--secnd-text);
  text-decoration: none;
  font-weight: 500;
}

.secnd-sidebar__user-menu a:hover {
  background: rgba(0, 143, 200, 0.12);
  color: var(--secnd-accent);
}

.secnd-sidebar__user:hover .secnd-sidebar__user-menu,
.secnd-sidebar__user:focus-within .secnd-sidebar__user-menu,
.secnd-sidebar__user.is-open .secnd-sidebar__user-menu {
  display: block;
}

.secnd-main {
  flex: 1;
  padding: 0 32px 32px;
  overflow: auto;
  overscroll-behavior: contain;
}

.secnd-main {
  overflow-x: hidden;
}

.secnd-main h1,
.secnd-main h2,
.secnd-main h3,
.secnd-main h4 {
  color: var(--secnd-heading);
}

.secnd-section {
  margin-bottom: 32px;
}

.secnd-section {
  display: none !important;
}

.secnd-section.is-active {
  display: block !important;
}

.secnd-settings__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  padding: 8px;
  border-radius: 999px;
  margin: 16px 0 24px;
}

.secnd-settings__tab {
  border: none;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--secnd-muted);
  font-weight: 600;
}

.secnd-settings__tab.is-active {
  background: rgba(0, 143, 200, 0.12);
  color: var(--secnd-accent);
}

.secnd-settings__panel {
  display: none !important;
}

.secnd-settings__panel.is-active {
  display: block !important;
}

.secnd-profile {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  margin-top: 16px;
}

.secnd-profile__avatar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.secnd-avatar__edit {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--secnd-text);
}

.secnd-avatar__input,
.secnd-profile__avatar input[type="file"] {
  display: none !important;
}

.secnd-profile__avatar img {
  border-radius: 50%;
}

.secnd-profile__fields {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.secnd-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.secnd-input-group input {
  flex: 1;
}

.secnd-profile-url {
  display: grid;
  gap: 12px;
}

.secnd-profile-url__input {
  width: 100%;
}

.secnd-profile-url__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.secnd-profile-url__actions .secnd-btn {
  width: auto;
}

.secnd-slider-options {
  display: none;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.secnd-slider-options.is-active {
  display: grid;
}

.secnd-slider-mode {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.secnd-slider-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.secnd-slider-upload {
  position: relative;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.secnd-slider-upload__preview {
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
}

.secnd-slider-upload__preview.has-image {
  opacity: 1;
}

.secnd-slider-upload.has-image .secnd-muted {
  opacity: 0;
}

@media (max-width: 600px) {
  .secnd-slider-options {
    grid-template-columns: 1fr;
  }
}

.secnd-profile__fields label,
.secnd-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--secnd-muted);
}

.secnd-profile__fields input,
.secnd-profile__fields textarea,
.secnd-profile__fields select,
.secnd-form-grid input,
.secnd-form-grid select,
.secnd-form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
  font-size: 14px;
}

.secnd-app[data-theme="dark"] .secnd-profile__fields select,
.secnd-app[data-theme="dark"] .secnd-form-grid select {
  color: #333333;
}

.secnd-field--full {
  grid-column: 1 / -1;
}

.secnd-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.secnd-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.secnd-btn--ghost {
  background: transparent;
  border: 1px solid var(--secnd-border);
  color: var(--secnd-text);
}

.secnd-btn--ghost.secnd-btn--filled {
  background: var(--secnd-surface);
  border-color: var(--secnd-border);
}

.secnd-btn--danger {
  background: #ef4444;
  color: #ffffff;
}

.secnd-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.secnd-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--secnd-border);
}

.secnd-list__row:last-child {
  border-bottom: none;
}

.secnd-list__row--danger strong {
  color: #ef4444;
}

.secnd-toggle {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 26px;
}

.secnd-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.secnd-toggle span {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 999px;
  transition: 0.2s ease;
}

.secnd-toggle span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.2s ease;
}

.secnd-toggle input:checked + span {
  background: var(--secnd-accent);
}

.secnd-toggle input:checked + span::after {
  transform: translateX(18px);
}

.secnd-badge {
  background: rgba(0, 143, 200, 0.12);
  color: var(--secnd-accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.secnd-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--secnd-accent);
  margin-left: 6px;
}

.secnd-pro-badge__icon svg {
  width: 14px;
  height: 14px;
}

.secnd-pro-locked {
  position: relative;
}

.secnd-pro-locked__content {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
}

.secnd-pro-locked__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: inherit;
  z-index: 2;
}

.secnd-pro-locked__overlay--compact {
  padding: 8px;
}

.secnd-pro-locked__card {
  display: grid;
  gap: 8px;
  max-width: 320px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.secnd-pro-locked__overlay--compact .secnd-pro-locked__card {
  max-width: 200px;
  padding: 8px 10px;
  font-size: 12px;
}

.secnd-pro-locked__overlay--compact .secnd-btn {
  padding: 6px 10px;
  font-size: 12px;
}

.secnd-checkbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.secnd-checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  cursor: pointer;
  font-size: 12px;
  color: var(--secnd-text);
}

.secnd-checkbox-pill input {
  margin: 0;
}

.secnd-pro-locked__icon svg {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  color: var(--secnd-accent);
}

.secnd-subscription {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .secnd-profile {
    grid-template-columns: 1fr;
  }

  .secnd-profile__fields,
  .secnd-form-grid {
    grid-template-columns: 1fr;
  }
}

.secnd-section__header h1,
.secnd-section__header h2 {
  margin: 0 0 6px;
}

.secnd-section__header p {
  margin: 0;
  color: var(--secnd-muted);
}

.secnd-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
  align-items: stretch;
}

.secnd-analytics__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0 24px;
  align-items: stretch;
}

.secnd-analytics__summary-main .secnd-card,
.secnd-analytics__summary-stats .secnd-stats-grid {
  height: 100%;
}

.secnd-analytics__summary-stats {
  display: flex;
  width: 100%;
}

.secnd-analytics__summary-main .secnd-card {
  display: flex;
}

.secnd-stats-grid--compact {
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.secnd-stats-grid--compact .secnd-card--feedback {
  grid-column: 1 / -1;
}

.secnd-stats-grid--compact .secnd-card {
  height: 100%;
  width: 100%;
}

.secnd-analytics__table {
  margin-top: 16px;
}

.secnd-analytics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.secnd-analytics-table th,
.secnd-analytics-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--secnd-border);
}

.secnd-analytics-table th {
  color: var(--secnd-muted);
  font-weight: 600;
}

.secnd-analytics__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.secnd-analytics__filters,
.secnd-analytics__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.secnd-analytics__filters select {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
}

.secnd-analytics__range-custom {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--secnd-muted);
}

.secnd-analytics__range-custom.is-visible {
  display: inline-flex;
}

.secnd-analytics__range-custom input {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
}

.secnd-analytics__design {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
}

.secnd-analytics__design-info {
  display: flex;
  align-items: stretch;
  gap: 16px;
  height: 100%;
}

.secnd-analytics__thumb img {
  height: 100%;
  width: auto;
  min-width: 140px;
  max-width: 200px;
  border-radius: 12px;
  object-fit: contain;
  background: #ffffff;
}

.secnd-analytics__thumb {
  align-self: stretch;
  display: flex;
  height: 100%;
  flex: 0 0 auto;
}

.secnd-analytics__design-meta {
  display: grid;
  gap: 8px;
}

.secnd-analytics__design-meta strong {
  font-size: 18px;
}

.secnd-analytics__design-meta .secnd-muted {
  font-size: 14px;
}

.secnd-analytics__design-question {
  font-size: 20px;
  font-weight: 700;
  color: var(--secnd-text);
}

.secnd-analytics__design-type {
  color: var(--secnd-muted);
  font-size: 13px;
}

.secnd-analytics__design-btn {
  font-size: 14px;
  padding: 8px 16px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-analytics__design .secnd-btn--primary {
  background: linear-gradient(135deg, var(--secnd-accent), #0ea5e9);
  color: var(--secnd-button-text);
}

.secnd-analytics__design .secnd-btn--primary:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-analytics__breakdown {
  margin: 16px 0;
}

.secnd-analytics__wordcloud {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.secnd-analytics__image-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.secnd-analytics__image-choice-item {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  background: var(--secnd-surface);
  text-align: center;
}

.secnd-analytics__image-choice-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.secnd-analytics__wordcloud h3 {
  margin-bottom: 6px;
}

.secnd-analytics__wordcloud p {
  margin-bottom: 10px;
}

.secnd-wordcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: center;
  align-content: center;
  line-height: 1.2;
  margin-top: 8px;
  min-height: 220px;
  padding: 8px 0 4px;
  overflow: hidden;
}

.secnd-wordcloud span {
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  transform-origin: center;
}

.secnd-demographic-card {
  display: grid;
  gap: 12px;
}

.secnd-demographic__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.secnd-demographic__views {
  display: inline-flex;
  gap: 6px;
}

.secnd-demographic__view-btn {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-muted);
  border-radius: 999px;
  padding: 4px;
  font-size: 12px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-demographic__view-btn.is-active {
  border-color: var(--secnd-accent);
  color: var(--secnd-accent);
}

.secnd-demographic__view-btn svg {
  width: 16px;
  height: 16px;
}

.secnd-demographic-card[data-view="pie"] .secnd-demographic__bars {
  display: none;
}

.secnd-demographic-card[data-view="bars"] .secnd-demographic__pie {
  display: none;
}

.secnd-demographic__pie {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
}

.secnd-demographic__pie-chart {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--secnd-pie);
}

.secnd-demographic__legend {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--secnd-muted);
}

.secnd-demographic__legend-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.secnd-demographic__legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .secnd-app {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
  .secnd-user-menu__desktop {
    display: none;
  }

  .secnd-user-menu__mobile {
    display: inline-flex;
  }

  .secnd-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transition: transform 0.25s ease;
    width: min(80vw, 320px);
    background: #ffffff;
    border-right: 1px solid var(--secnd-border);
    transform: translateX(-100%);
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .secnd-sidebar__nav {
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .secnd-sidebar__brand,
  .secnd-sidebar__cta,
  .secnd-sidebar__user {
    flex: 0 0 auto;
  }

  .secnd-sidebar.is-open,
  body.secnd-menu-open .secnd-sidebar {
    transform: translateX(0);
  }

  .secnd-sidebar__close {
    display: inline-flex;
  }

  .secnd-mobile-bar {
    display: flex;
  }

  .secnd-main {
    padding: calc(72px + env(safe-area-inset-top)) 16px calc(24px + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
  }

  .secnd-card__icon {
    width: 24px;
    height: 24px;
  }

  .secnd-card__icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .secnd-get-started {
    padding: 24px 16px 40px;
  }

  .secnd-get-started__card {
    width: 100%;
    max-width: 480px;
    padding: 24px;
  }

  .secnd-design-card--manage {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .secnd-design-card--manage .secnd-design-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .secnd-design-card--manage .secnd-design-card__goal {
    width: 100%;
  }

  .secnd-design-card--manage .secnd-design-card__goal-gauge {
    display: none;
  }

  .secnd-design-card--manage .secnd-design-card__goal-bar {
    margin-top: 0;
  }

  .secnd-design-card--manage .secnd-design-card__footer [data-secnd-action="view-results"] {
    width: 100%;
    justify-content: center;
  }

  .secnd-design-card--manage .secnd-design-card__goal-bar-wrap {
    margin-bottom: 8px;
  }
}

.secnd-analytics__row > .secnd-card,
.secnd-grid > .secnd-card {
  height: 100%;
}

.secnd-analytics__demographics h3,
.secnd-analytics__split h3 {
  margin-bottom: 12px;
}

.secnd-analytics__demographic-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.secnd-analytics__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.secnd-analytics__filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--secnd-muted);
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  padding: 6px 10px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .secnd-analytics__demographic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .secnd-analytics__demographic-grid {
    grid-template-columns: 1fr;
  }
}

.secnd-analytics__split {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 16px 0 8px;
}

.secnd-analytics__split-inner {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.secnd-analytics__split-inner > .secnd-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.secnd-analytics__row-inner {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.secnd-analytics__row-inner > .secnd-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .secnd-analytics__split {
    grid-template-columns: 1fr;
  }

  .secnd-analytics__split-inner {
    grid-template-columns: 1fr;
  }

  .secnd-analytics__row-inner {
    grid-template-columns: 1fr;
  }
}

.secnd-card__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(0, 143, 200, 0.12);
  color: var(--secnd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.secnd-card__icon svg {
  width: 18px !important;
  height: 18px !important;
}

.secnd-analytics__chart {
  margin: 16px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.secnd-analytics__row--three .secnd-analytics__chart,
.secnd-analytics__row--three .secnd-analytics__goal-card,
.secnd-analytics__row--three .secnd-analytics__breakdown--compact {
  margin: 0;
}

.secnd-analytics__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0;
  align-items: stretch;
}

.secnd-analytics__row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.secnd-analytics__row--three > .secnd-card {
  min-width: 0;
}

.secnd-analytics__breakdown--compact {
  margin: 0;
}

.secnd-analytics__row > .secnd-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.secnd-analytics__row > .secnd-analytics__row-inner {
  grid-column: 1 / -1;
}

.secnd-analytics__goal-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.secnd-analytics__chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.secnd-analytics__chart-header h3 {
  margin: 0;
}

.secnd-analytics__chart-svg {
  width: 100%;
  height: 180px;
  flex: 1;
}

.secnd-analytics__line {
  fill: none;
  stroke: var(--secnd-accent);
  stroke-width: 3;
}

.secnd-analytics__dot {
  fill: var(--secnd-accent);
  vector-effect: non-scaling-stroke;
}

.secnd-analytics__grid {
  stroke: var(--secnd-border);
  stroke-dasharray: 4 4;
}

.secnd-analytics__axis-text {
  fill: var(--secnd-muted);
  font-size: 10px;
}

.secnd-analytics__highlight {
  fill: var(--secnd-accent);
  stroke: var(--secnd-surface);
  stroke-width: 2px;
}

.secnd-chart-tooltip {
  position: absolute;
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--secnd-text);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  transform: translate(-50%, -100%);
  z-index: 10;
}

.secnd-chart-tooltip.is-visible {
  opacity: 1;
}

.secnd-chart-tooltip span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--secnd-muted);
  text-align: left;
}

.secnd-analytics__chart-labels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 6px;
  margin-top: 6px;
  font-size: 11px;
  color: var(--secnd-muted);
  text-align: center;
}

.secnd-chart-detail {
  margin-top: 10px;
  font-size: 12px;
  color: var(--secnd-muted);
  white-space: pre-line;
}

.secnd-analytics__chart-labels span {
  white-space: nowrap;
}

.secnd-card {
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  position: relative;
}

.secnd-card h3 {
  color: var(--secnd-heading);
  margin: 0 0 6px;
}

.secnd-card__label {
  font-size: 13px;
  color: var(--secnd-muted);
  margin-bottom: 8px;
}

.secnd-card__value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secnd-heading);
}

.secnd-card__meta {
  font-size: 12px;
  color: #16a34a;
}

.secnd-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.secnd-notifications {
  display: grid;
  gap: 12px;
}

.secnd-notification {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
}

.secnd-notification__icon svg {
  width: 18px;
  height: 18px;
}

.secnd-card--notifications {
  margin-top: 16px;
}

.secnd-goal__control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.secnd-goal {
  --secnd-goal-value-width: 92px;
  --secnd-goal-gap: 12px;
}

.secnd-goal__control {
  gap: var(--secnd-goal-gap);
}

.secnd-goal__control input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
      to right,
      var(--secnd-accent) 0%,
      var(--secnd-accent) var(--secnd-range-percent, 0%),
      var(--secnd-border) var(--secnd-range-percent, 0%),
      var(--secnd-border) 100%
    );
}

.secnd-goal__control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--secnd-accent);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
  cursor: pointer;
}

.secnd-goal__control input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--secnd-accent);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
  cursor: pointer;
}

.secnd-goal__control input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--secnd-border);
}

.secnd-goal__value {
  min-width: 80px;
  font-weight: 600;
  color: var(--secnd-heading);
}

.secnd-goal__labels {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  font-size: 12px;
  color: var(--secnd-muted);
  text-align: center;
  margin-top: 8px;
  width: calc(100% - var(--secnd-goal-value-width) - var(--secnd-goal-gap));
  margin-right: calc(var(--secnd-goal-value-width) + var(--secnd-goal-gap));
}

.secnd-card__placeholder {
  padding: 32px 16px;
  text-align: center;
  color: var(--secnd-muted);
}

.secnd-dashboard__designs {
  margin-top: 24px;
  display: block;
}

#secnd-dashboard .secnd-dashboard__designs,
#secnd-dashboard .secnd-design-grid {
  display: block !important;
}

#secnd-dashboard .secnd-design-grid {
  display: grid !important;
}

.secnd-dashboard__designs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.secnd-activity {
  display: grid;
  gap: 12px;
}

.secnd-activity__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.secnd-activity__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--secnd-accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  min-width: 28px;
  min-height: 28px;
}

.secnd-activity__icon--positive,
.secnd-activity__icon--negative,
.secnd-activity__icon--neutral {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-activity__icon svg {
  width: 16px;
  height: 16px;
}

.secnd-activity__icon svg path,
.secnd-activity__icon svg circle,
.secnd-activity__icon svg rect,
.secnd-activity__icon svg line,
.secnd-activity__icon svg polyline,
.secnd-activity__icon svg polygon {
  stroke: #ffffff;
}

.secnd-messages {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}

.secnd-messages__list,
.secnd-messages__detail {
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  background: var(--secnd-surface);
  min-height: 420px;
  padding: 16px;
}


.secnd-messages__empty {
  height: calc(100% - 56px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--secnd-muted);
  gap: 8px;
}

.secnd-messages__empty-icon {
  width: 42px;
  height: 42px;
  color: #a1a1aa;
}

.secnd-messages__list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.secnd-messages__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.secnd-messages__actions .secnd-btn {
  white-space: nowrap;
}

.secnd-messages__actions .secnd-icon-btn {
  border-color: var(--secnd-accent);
  color: var(--secnd-accent);
  background: #ffffff;
}

.secnd-messages__actions .secnd-icon-btn:hover {
  border-color: var(--secnd-accent);
  color: #ffffff;
  background: var(--secnd-accent);
}

.secnd-messages__actions .secnd-icon-btn svg {
  width: 18px;
  height: 18px;
}

.secnd-messages__actions .secnd-btn--ghost {
  border-color: var(--secnd-accent);
  color: var(--secnd-accent);
}

.secnd-messages__actions .secnd-btn--ghost:hover {
  border-color: var(--secnd-accent);
  background: #ffffff;
  color: var(--secnd-accent);
}

.secnd-messages__threads {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.secnd-message-thread {
  border: 1px solid #ffffff;
  border-radius: 14px;
  background: #ffffff;
  padding: 10px 12px;
  text-align: left;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.secnd-message-thread__avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-message-thread__dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secnd-accent);
  border: 2px solid #ffffff;
}

.secnd-message-thread:hover {
  border-color: var(--secnd-accent);
  background: #ffffff;
  box-shadow: none;
}

.secnd-message-thread strong {
  color: var(--secnd-text);
}

.secnd-message-thread img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.secnd-message-thread.is-active {
  border-color: var(--secnd-accent);
  box-shadow: none;
  background: #ffffff;
}

.secnd-message-thread__meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: var(--secnd-muted);
  font-size: 12px;
}

.secnd-message-thread__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.secnd-message-thread__name {
  text-decoration: none;
  color: var(--secnd-text);
}

.secnd-message-thread__name:hover {
  color: var(--secnd-accent);
}

.secnd-message-thread__header .secnd-muted {
  display: block;
  margin-top: 4px;
}

.secnd-message-thread__header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.secnd-message-thread__body {
  display: grid;
  gap: 10px;
  padding: 10px 4px 16px;
  max-height: 320px;
  overflow-y: auto;
}

.secnd-message-thread__typing {
  margin-top: 6px;
  font-size: 12px;
  color: var(--secnd-muted);
}
.secnd-message-bubble {
  max-width: 70%;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--secnd-text);
  display: grid;
  gap: 6px;
}

.secnd-message-bubble.is-outgoing {
  margin-left: auto;
  background: var(--secnd-accent);
  color: #fff;
}

.secnd-message-bubble span {
  font-size: 12px;
  color: inherit;
  opacity: 0.7;
}

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

.secnd-message-form__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  position: relative;
}

.secnd-emoji-btn {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.secnd-emoji-btn:hover {
  border-color: var(--secnd-accent);
  color: var(--secnd-accent);
}

.secnd-emoji-btn svg {
  width: 18px;
  height: 18px;
}

.secnd-emoji-picker {
  display: none;
  gap: 6px;
  flex-wrap: wrap;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  border-radius: 12px;
  padding: 8px;
  max-width: 260px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10;
}

.secnd-emoji-picker.is-open {
  display: flex;
}

.secnd-emoji-picker__item {
  border: none;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
}

.secnd-emoji-picker__item:hover {
  background: rgba(var(--secnd-accent-rgb), 0.12);
}

.secnd-message-form .secnd-btn--primary {
  background: #ffffff;
  color: var(--secnd-accent);
  border: 1px solid #ffffff;
}

.secnd-message-form .secnd-btn--primary:hover {
  border-color: var(--secnd-accent);
  background: #ffffff;
  color: var(--secnd-accent);
}

.secnd-app[data-theme="dark"] .secnd-message-form textarea,
.secnd-app[data-theme="dark"] .secnd-compose-form textarea {
  background: #111827;
  color: #e2e8f0;
  border-color: #1f2937;
}

.secnd-message-form textarea,
.secnd-compose-form textarea,
.secnd-compose-form input,
.secnd-compose-form select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
  width: 100%;
}

.secnd-compose-form {
  display: grid;
  gap: 12px;
}

.secnd-modal--message .secnd-modal__content {
  max-width: 520px;
  margin: 8vh auto;
  background: var(--secnd-surface);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.secnd-modal--message .secnd-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.secnd-modal--message {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.secnd-modal--message.is-active {
  display: block;
}

.secnd-grid {
  display: grid;
  gap: 16px;
}

.secnd-grid--2-1 {
  grid-template-columns: 2fr 1fr;
}

.secnd-design-card {
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  padding: 16px;
  background: var(--secnd-surface);
  position: relative;
}

.secnd-design-card__media {
  position: relative;
}

.secnd-design-card__media img {
  border-radius: 12px;
}

.secnd-design-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.secnd-design-card__media .secnd-design-card__tags {
  position: absolute;
  top: 12px;
  left: 12px;
}

.secnd-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  color: var(--secnd-text);
  font-size: 12px;
}

.secnd-design-card__media .secnd-tag {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.secnd-tag--status {
  background: rgba(16, 185, 129, 0.2);
  color: #0f9d72;
}

.secnd-design-card__media .secnd-tag--status {
  background: #ffffff;
  color: #0f9d72;
}

.secnd-tag--status.is-paused {
  background: rgba(248, 113, 113, 0.2);
  color: #dc2626;
}

.secnd-design-card__media .secnd-tag--status.is-paused {
  background: #ffffff;
  color: #dc2626;
}

.secnd-design-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.secnd-design-card__select {
  position: absolute;
  top: 12px;
  right: 12px;
  display: none;
  z-index: 5;
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  border-radius: 8px;
  padding: 4px;
  pointer-events: auto;
}

.secnd-design-card__media {
  position: relative;
  z-index: 1;
}

.secnd-design-card__title {
  margin: 12px 0 8px;
  font-size: 16px;
  color: var(--secnd-heading);
}

.secnd-design-card__question {
  margin: 0 0 12px;
  color: var(--secnd-muted);
}

.secnd-design-card__menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secnd-design-card__menu-trigger {
  border: none;
  background: transparent;
  color: var(--secnd-muted);
  cursor: pointer;
  font-size: 18px;
}

.secnd-design-card__menu-list {
  position: absolute;
  right: 0;
  top: 28px;
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  min-width: 180px;
  padding: 6px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
  display: none;
  z-index: 10080;
}

.secnd-design-card__followed {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secnd-primary, var(--secnd-accent));
  color: #ffffff;
}

.secnd-design-card__followed svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
}

.secnd-design-card__menu.is-open .secnd-design-card__menu-list {
  display: block;
}

.secnd-design-card__folder {
  position: relative;
}

.secnd-design-card__folder-trigger {
  border: none;
  background: transparent;
  color: var(--secnd-muted);
  cursor: pointer;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-design-card__folder-menu {
  position: absolute;
  right: 0;
  top: 28px;
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  min-width: 180px;
  padding: 6px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
  display: none;
  z-index: 10080;
}

.secnd-design-card__folder.is-open .secnd-design-card__folder-menu {
  display: block;
}

.secnd-design-card__folder-menu button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  color: var(--secnd-text);
  border-radius: 8px;
}

.secnd-design-card__folder-menu button:hover {
  background: rgba(0, 0, 0, 0.06);
}

.secnd-design-card__menu-list button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  color: var(--secnd-text);
  border-radius: 8px;
}

.secnd-design-card__menu-list .secnd-menu-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.secnd-design-card__menu-list .secnd-menu-icon svg {
  width: 16px;
  height: 16px;
}

.secnd-design-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px;
}

.secnd-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.secnd-menu-icon svg {
  width: 16px;
  height: 16px;
}

.secnd-design-card__menu-list button:hover {
  background: rgba(0, 0, 0, 0.06);
  background: color-mix(in srgb, var(--secnd-accent) 12%, transparent);
  color: var(--secnd-accent);
}

.secnd-analytics__goal-bar {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.secnd-analytics__goal-bar-track {
  width: 100%;
  height: 14px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.secnd-analytics__goal-bar-fill {
  display: block;
  height: 100%;
  background: var(--secnd-accent);
  border-radius: inherit;
}

.secnd-analytics__goal-bar-segments {
  display: flex;
  height: 100%;
  width: 100%;
}

.secnd-analytics__goal-bar-segment {
  height: 100%;
}

.secnd-analytics__goal-bar-segment:first-child {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.secnd-analytics__goal-bar-segment:last-child {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.secnd-analytics__goal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--secnd-muted);
}

.secnd-analytics__goal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.secnd-analytics__goal-legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.secnd-analytics__goal-bar-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--secnd-text);
}

.secnd-analytics__goal-meta {
  margin-top: 8px;
  color: var(--secnd-muted);
  font-size: 13px;
}

.secnd-analytics__goal-count {
  margin-top: 6px;
  color: var(--secnd-muted);
  font-size: 12px;
}

.secnd-design-card__menu-list .is-danger {
  color: #ef4444;
}

.secnd-menu-group {
  padding: 6px 10px;
}

.secnd-menu-label {
  display: block;
  font-size: 12px;
  color: var(--secnd-muted);
  margin-bottom: 6px;
}

.secnd-menu-folders {
  display: grid;
  gap: 4px;
}

.secnd-design-page {
  padding: 24px;
}

.secnd-design-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--secnd-text);
  text-decoration: none;
  padding-left: 12px;
}

.secnd-design-page__back-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.secnd-design-page__back-icon svg {
  width: 18px;
  height: 18px;
}

.secnd-design-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.secnd-design-page__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}

.secnd-design-page__media {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 16px;
  height: fit-content;
}

.secnd-design-page__label {
  color: var(--secnd-muted);
  font-weight: 500;
  margin-right: 6px;
}

.secnd-design-page__info-col .secnd-tag {
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
}

.secnd-design-page__details {
  display: grid;
  gap: 16px;
}

.secnd-design-page__title-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.secnd-design-page__category {
  margin-top: 2px;
}

.secnd-design-page__question {
  display: grid;
  gap: 12px;
  overflow: visible;
}

.secnd-design-page__question-card {
  display: grid;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  background: var(--secnd-surface);
  box-shadow: none;
}

.secnd-design-page__question-headings {
  display: grid;
  gap: 8px;
}

.secnd-design-page__question-title {
  margin: 0;
  font-size: 20px;
  color: var(--secnd-accent);
}

.secnd-design-page__question-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 10px;
  align-items: start;
}

.secnd-design-page__question-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.secnd-design-page__all-questions {
  align-self: flex-start;
}

.secnd-design-page__related {
  display: grid;
  gap: 12px;
}

.secnd-design-page__similar {
  margin-top: 60px;
}

.secnd-design-page__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.secnd-design-page__related-item {
  display: grid;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.secnd-design-page__related-item img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.secnd-design-page__related-placeholder {
  width: 100%;
  padding: 32px 12px;
  border-radius: 12px;
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  color: var(--secnd-muted);
  text-align: center;
  font-size: 12px;
}

.secnd-design-page__related-meta {
  display: grid;
  gap: 4px;
}

.secnd-design-page__project-questions {
  display: grid;
  gap: 12px;
}

.secnd-design-page__question-list {
  display: grid;
  gap: 16px;
}

.secnd-design-page__question-row {
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  padding: 16px;
  display: grid;
  gap: 10px;
  background: var(--secnd-surface);
}

.secnd-design-page__question-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.secnd-design-page__question-row-text {
  margin: 0;
  font-size: 18px;
}

.secnd-design-page__question-text {
  font-size: 36px;
  margin: 0;
}

.secnd-design-page__looking-for {
  font-size: 24px;
  color: var(--secnd-accent);
}

.secnd-design-page__looking-for--left {
  font-size: 18px;
  color: var(--secnd-muted);
}

.secnd-design-page__looking-for--left strong {
  color: var(--secnd-accent);
}

.secnd-design-page__looking-for--right {
  font-size: 24px;
  color: var(--secnd-muted);
  padding: 16px;
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  background: var(--secnd-surface);
}

.secnd-design-page__looking-for--right strong {
  color: var(--secnd-accent);
}

.secnd-design-page__reply-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--secnd-accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.secnd-design-page__results {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: none;
  padding: 16px;
}

.secnd-design-page__responses {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.secnd-design-page__responses strong {
  font-size: 20px;
  color: var(--secnd-accent);
}

.secnd-design-page__response-split {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--secnd-muted);
}

.secnd-design-page__results.is-hidden {
  display: none;
}

.secnd-design-page__linked-questions {
  display: grid;
  gap: 16px;
}

.secnd-design-page__question-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--secnd-muted);
}

.secnd-design-page__carousel {
  display: grid;
  gap: 12px;
}

.secnd-design-page__question-panel {
  display: none;
}

.secnd-design-page__question-panel.is-active {
  display: block;
}

.secnd-design-page__linked-btn {
  align-self: flex-start;
}

.secnd-design-page__looking-for {
  font-size: 24px;
  color: var(--secnd-muted);
}

.secnd-design-page__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-left: 12px;
}

.secnd-design-page__title {
  margin: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.secnd-design-page__title-lock {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--secnd-accent);
  border-radius: 999px;
}

.secnd-design-page__title-lock svg {
  width: 14px;
  height: 14px;
}

.secnd-questions__lock {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  color: var(--secnd-accent);
}

.secnd-design-card__lock {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  color: var(--secnd-accent);
}

.secnd-design-page__media-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  box-shadow: none;
}

.secnd-design-page__carousel-main img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.secnd-design-page__carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 64px);
  gap: 8px;
  width: max-content;
  justify-content: start;
}

.secnd-design-page__thumb {
  border: 1px solid var(--secnd-border);
  border-radius: 10px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  height: 64px;
}

.secnd-design-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.secnd-design-page__thumb.is-active {
  border-color: var(--secnd-accent);
  box-shadow: 0 0 0 2px rgba(0, 143, 200, 0.2);
}

.secnd-design-page__question {
  position: relative;
}

.secnd-design-page__question.is-locked .secnd-vote-wrapper {
  opacity: 0.35;
  pointer-events: none;
  filter: grayscale(1);
}

.secnd-design-page__locked {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 16px;
}

.secnd-design-page__locked-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
  padding: 16px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  display: grid;
  gap: 12px;
}

.secnd-design-page__locked-actions {
  display: grid;
  gap: 10px;
}

.secnd-design-page__image img {
  width: 100%;
  border-radius: 12px;
}

.secnd-design-page__profile {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: none;
  padding: 12px;
  background: #ffffff;
}

.secnd-design-page__profile .secnd-pro-badge {
  margin-left: 6px;
  display: inline-flex;
  vertical-align: middle;
}

.secnd-design-page__profile .secnd-pro-label {
  margin-left: 6px;
  vertical-align: super;
}

.secnd-design-page__similar {
  margin-top: 32px;
  padding: 24px;
  background: #fbfdff;
  border-top: 1px solid var(--secnd-border);
  grid-column: 1 / -1;
}

.secnd-design-page__similar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
  width: 100%;
}

.secnd-design-page__similar-header h3 {
  flex: 1;
  margin: 0;
  white-space: nowrap;
  min-width: 0;
  padding-right: 16px;
}

.secnd-design-page__similar-header .secnd-btn {
  margin-left: auto;
  display: inline-flex;
  white-space: nowrap;
  color: #ffffff;
  text-decoration: none;
  flex: 0 0 auto;
  width: auto;
}

.secnd-design-page__similar-header .secnd-btn:hover {
  text-decoration: none;
  color: #ffffff;
}

.secnd-design-page__media {
  padding-top: 12px;
}

.secnd-design-page__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.secnd-design-page__related-item {
  position: relative;
  display: block;
}

.secnd-design-page__related-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.secnd-design-page__related-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.secnd-design-page__related-icons {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  color: #ffffff;
}

.secnd-design-page__related-icon svg {
  width: 14px;
  height: 14px;
}

.secnd-design-page__related-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--secnd-primary, var(--secnd-accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-design-page__menu .secnd-design-card__menu-list {
  background: #ffffff;
}

@media (max-width: 800px) {
  .secnd-design-page__similar-header {
    flex-wrap: wrap;
  }
  .secnd-design-page__similar-header h3 {
    white-space: normal;
  }
}

@media (max-width: 1100px) {
  .secnd-design-page__related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .secnd-design-page__related-item:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 700px) {
  .secnd-design-page__related-grid {
    grid-template-columns: 1fr;
  }
  .secnd-design-page__related-item:nth-child(n + 4) {
    display: none;
  }
}

.secnd-design-page__profile img {
  border-radius: 999px;
}

.secnd-vote-status {
  display: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 143, 200, 0.08);
  color: var(--secnd-accent);
  margin: 12px 0;
}

.secnd-vote-status.is-visible {
  display: block;
}

.secnd-profile-page {
  padding: 24px;
}

.secnd-profile-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.secnd-profile-page__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.secnd-profile-page__bio {
  margin: 0;
  color: var(--secnd-text);
}

.secnd-profile-page__panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.secnd-profile-page__panel {
  height: 100%;
}

.secnd-profile-page__info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.secnd-profile-page__name {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.secnd-profile-page__pro {
  font-size: 12px;
  line-height: 1;
  color: #ec4899;
  font-weight: 700;
}

.secnd-profile-page__pro .secnd-pro-badge {
  margin-left: 0;
}

.secnd-pro-label {
  font-size: 12px;
  line-height: 1;
  color: #ec4899;
  font-weight: 700;
  margin-left: 4px;
}

.secnd-profile-page__avatar img {
  border-radius: 999px;
}

.secnd-profile-page__grid {
  margin-top: 60px;
}

.secnd-profile-design-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.secnd-profile-design-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
}

.secnd-profile-design-card__image {
  position: relative;
}

.secnd-profile-design-card__image img {
  width: 100%;
  display: block;
}

.secnd-profile-design-card__image .secnd-design-card__tags {
  position: absolute;
  top: 12px;
  left: 12px;
}

.secnd-profile-design-card__image .secnd-tag {
  background: #ffffff;
  color: var(--secnd-accent);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 900px) {
  .secnd-profile-page__hero {
    grid-template-columns: 1fr;
  }

  .secnd-profile-page__panels {
    grid-template-columns: 1fr;
  }

  .secnd-profile-design-grid {
    grid-template-columns: 1fr;
  }
}

.secnd-design-page__stats {
  display: grid;
  gap: 12px;
}

.secnd-design-page__stats-summary {
  margin-top: 8px;
}

.secnd-design-page__details .secnd-tag {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
}

.secnd-design-page__category {
  align-self: flex-start;
  justify-self: flex-start;
  display: inline-flex !important;
  width: auto !important;
  max-width: fit-content;
  text-decoration: none;
}

.secnd-design-page__type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 4px;
  color: var(--secnd-muted);
  font-size: 14px;
}

.secnd-design-page__type strong {
  color: var(--secnd-text);
}

.secnd-design-page__type-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.secnd-design-page__type-icon svg {
  width: 16px;
  height: 16px;
}

.secnd-design-page__question-text {
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--secnd-heading);
}

@media (max-width: 900px) {
  .secnd-design-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .secnd-design-page__media {
    position: static;
  }

  .secnd-design-page__question-row {
    grid-template-columns: 1fr;
  }

  .secnd-design-page__question-text {
    font-size: 28px;
  }

  .secnd-design-page__looking-for {
    font-size: 20px;
  }
}

.secnd-designs {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
}

#secnd-designs .secnd-designs {
  padding-top: 16px;
}

.secnd-designs__folders {
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  padding: 16px;
}

.secnd-designs .secnd-design-card {
  background: #ffffff;
  border-color: #e2e8f0;
}

.secnd-designs .secnd-design-card__title a,
.secnd-designs .secnd-design-card__question,
.secnd-designs .secnd-design-card__stats,
.secnd-designs .secnd-design-card__author {
  color: #0f172a;
}

.secnd-designs__folders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.secnd-designs__folders-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secnd-designs__folders-collapsible {
  display: none;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  background: var(--secnd-surface);
  padding: 10px 12px;
}

.secnd-designs__folders-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.secnd-designs__folders-summary::-webkit-details-marker {
  display: none;
}

.secnd-designs__folders-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secnd-muted);
  transition: transform 0.2s ease;
}

.secnd-designs__folders-collapsible[open] .secnd-designs__folders-toggle {
  transform: rotate(180deg);
}

.secnd-designs__folders-body {
  margin-top: 12px;
}

.secnd-folder-new {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-muted);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  margin-left: 8px;
}

.secnd-folder-list {
  display: grid;
  gap: 8px;
}

.secnd-folder-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.secnd-folder-menu {
  margin-left: auto;
}

.secnd-folder-menu .secnd-design-card__menu-list {
  min-width: 140px;
}
.secnd-folder-item {
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--secnd-text);
}

.secnd-folder-item.is-active,
.secnd-folder-item:hover {
  background: rgba(0, 143, 200, 0.1);
  color: var(--secnd-accent);
  border-color: rgba(0, 143, 200, 0.2);
}

.secnd-section__header .secnd-muted {
  display: block;
  padding-bottom: 30px;
}

.secnd-questions-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}

.secnd-questions-row {
  display: grid;
  grid-template-columns: 72px minmax(220px, 2fr) 120px 140px 120px 220px;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  align-items: center;
}

.secnd-questions-row--head {
  background: transparent;
  border-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.secnd-questions-row--design {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.1);
}

.secnd-questions-col-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.secnd-questions-row--question {
  margin-left: 22px;
}

.secnd-questions-cell--thumb img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.secnd-questions-thumb--empty {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #e2e8f0;
  color: #64748b;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.secnd-questions-cell--design {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.secnd-questions-cell--design .secnd-tag--status {
  align-self: flex-start;
}

.secnd-questions__add {
  cursor: pointer;
}

.secnd-questions-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.secnd-questions__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.secnd-questions__toolbar input {
  flex: 1 1 260px;
}

.secnd-questions__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.secnd-designs__sentinel {
  height: 1px;
}

.secnd-questions-cell--question {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.secnd-questions-cell--stats,
.secnd-questions-cell--stats-label {
  display: none;
}

.secnd-questions-stats {
  width: 100%;
}

.secnd-questions-stats summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--secnd-primary, #1d4ed8);
  list-style: none;
}

.secnd-questions-stats summary::-webkit-details-marker {
  display: none;
}

.secnd-questions-stats__body {
  display: grid;
  gap: 6px;
  padding-top: 8px;
  color: #0f172a;
  font-size: 14px;
}

@media (max-width: 1350px) {
  .secnd-questions-row {
    grid-template-columns: 72px minmax(220px, 2fr) 140px 220px;
  }

  .secnd-questions-cell--responses,
  .secnd-questions-cell--goal,
  .secnd-questions-cell--percent {
    display: none;
  }

  .secnd-questions-cell--stats,
  .secnd-questions-cell--stats-label {
    display: block;
  }
}

.secnd-questions-cell--actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.secnd-questions-row--question .secnd-questions-cell--actions {
  flex-wrap: nowrap;
}

.secnd-questions__toolbar {
  margin-top: 8px;
}

.secnd-questions__toolbar input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
}

.secnd-questions-handle {
  cursor: grab;
  font-size: 18px;
  color: #94a3b8;
}

.secnd-questions-row.is-dragging {
  opacity: 0.6;
}

.secnd-questions-type {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

@media (max-width: 900px) {
  .secnd-questions-row {
    grid-template-columns: 1fr;
  }

  .secnd-questions-row--question {
    margin-left: 0;
  }
}

.secnd-designs__toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.secnd-designs__search input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
}

.secnd-designs__filters {
  display: flex;
  gap: 8px;
  align-items: center;
}

.secnd-designs__filters select {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
}

.secnd-view-toggle button {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--secnd-text);
}

.secnd-view-toggle button.is-active {
  border-color: var(--secnd-accent);
  color: var(--secnd-accent);
}

.secnd-bulk-bar {
  display: none;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.secnd-bulk-bar.is-active {
  display: flex;
}

.secnd-bulk-bar select {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
}

.secnd-design-grid.is-selecting .secnd-design-card__select {
  display: inline-flex;
}

.secnd-design-grid.is-list {
  grid-template-columns: 1fr;
}

.secnd-design-grid.is-list .secnd-design-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
}

.secnd-design-grid.is-list .secnd-design-card__media {
  grid-row: 1 / span 4;
  align-self: flex-start;
}

.secnd-design-grid.is-list .secnd-design-card__header,
.secnd-design-grid.is-list .secnd-design-card__question,
.secnd-design-grid.is-list .secnd-design-card__stats,
.secnd-design-grid.is-list .secnd-design-card__footer {
  grid-column: 2;
}

.secnd-design-grid.is-list .secnd-design-card__stats {
  flex-direction: column;
  gap: 6px;
}

.secnd-design-grid.is-list .secnd-design-card__footer {
  justify-content: flex-start;
}

.secnd-design-grid.is-list .secnd-design-card__media img {
  width: 100%;
  height: auto;
}

.secnd-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  margin: 0;
  border-radius: 0;
}

.secnd-mobile-logo {
  font-weight: 700;
  font-size: 18px;
  color: var(--secnd-heading);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.secnd-mobile-logo img {
  max-height: 28px;
  width: auto;
  display: block;
}

.secnd-mobile-toggle {
  border: none;
  background: transparent;
  color: var(--secnd-accent);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.secnd-sidebar__close {
  display: none;
  border: none;
  background: transparent;
  font-size: 22px;
  color: var(--secnd-muted);
}

.secnd-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 9998;
}

.secnd-sidebar-overlay.is-active {
  display: block;
}

body.secnd-menu-open .secnd-sidebar-overlay {
  display: block;
}

@media (max-width: 1024px) {
  .secnd-designs {
    grid-template-columns: 1fr;
  }

  .secnd-designs__folders {
    order: 2;
  }
}

@media (max-width: 900px) {
  html,
  body,
  body.secnd-dashboard-open {
    height: auto;
    overflow: auto;
  }

  .secnd-app {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .secnd-main {
    min-height: 100dvh;
  }

  .secnd-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transition: transform 0.25s ease;
    width: min(80vw, 320px);
    background: #ffffff;
    border-right: 1px solid var(--secnd-border);
    transform: translateX(-100%);
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .secnd-sidebar.is-open {
    transform: translateX(0);
  }

  body.secnd-menu-open .secnd-sidebar {
    transform: translateX(0);
  }

  .secnd-sidebar__close {
    display: inline-flex;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.05);
    color: var(--secnd-text);
  }

  .secnd-sidebar__nav {
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .secnd-mobile-bar {
    display: flex !important;
  }

  .secnd-main {
    padding: calc(72px + env(safe-area-inset-top)) 16px calc(24px + env(safe-area-inset-bottom));
    overflow: visible;
  }

  .secnd-designs__toolbar {
    grid-template-columns: 1fr;
  }

  .secnd-designs__folders {
    display: none;
  }

  .secnd-designs__folders-collapsible {
    display: block;
  }

  .secnd-design-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .secnd-view-toggle {
    display: none;
  }

  .secnd-design-grid .secnd-design-card {
    display: block;
    grid-template-columns: none;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .secnd-design-grid .secnd-design-card__media {
    width: 100%;
    height: auto;
  }

  .secnd-design-grid .secnd-design-card__media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
  }

  .secnd-design-card--manage {
    height: auto;
    overflow: visible;
    padding: 16px;
  }

  .secnd-design-card--manage .secnd-design-card__body {
    padding: 0;
  }

  .secnd-design-card--manage .secnd-design-card__media {
    aspect-ratio: auto;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
  }

  .secnd-design-card--manage .secnd-design-card__media-link {
    height: auto;
  }

  .secnd-design-card--manage .secnd-design-card__media img {
    height: auto;
    border-radius: 12px;
  }

  body.secnd-dashboard-open {
    overflow: auto;
  }

  body.secnd-dashboard-open .secnd-app {
    height: auto;
    min-height: 100dvh;
  }

  .secnd-design-card--manage {
    height: auto;
    overflow: visible;
    padding: 16px;
  }

  .secnd-design-card--manage .secnd-design-card__body {
    padding: 0;
  }

  .secnd-design-card--manage .secnd-design-card__media {
    aspect-ratio: auto;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .secnd-design-card--manage .secnd-design-card__media img {
    height: auto;
  }

  .secnd-designs .secnd-design-grid {
    grid-template-columns: 1fr;
  }

  .secnd-design-card__menu-list .secnd-menu-icon,
  .secnd-design-card__menu-list .secnd-menu-icon svg {
    width: 14px;
    height: 14px;
  }

  .secnd-sidebar__nav a {
    font-size: 18px;
  }
}

.secnd-user-menu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 99990;
  overflow: visible;
  isolation: isolate;
}

.secnd-user-menu__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.secnd-user-menu__logo img {
  height: 28px;
  width: auto;
  display: block;
}

@media (prefers-color-scheme: dark) {
  .secnd-user-menu .secnd-logo--dark,
  .secnd-user-menu__panel .secnd-logo--dark {
    display: block;
  }
  .secnd-user-menu .secnd-logo--light,
  .secnd-user-menu__panel .secnd-logo--light {
    display: none;
  }
}

.secnd-user-menu .secnd-btn {
  width: auto;
  padding: 8px 14px;
}

.secnd-user-menu a:hover,
.secnd-user-menu a:focus {
  text-decoration: none;
}

.secnd-user-menu > .secnd-btn--primary {
  color: #ffffff;
  text-decoration: none;
}

.secnd-user-menu > .secnd-btn--primary:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-user-menu > .secnd-btn--ghost.secnd-btn--filled {
  text-decoration: none;
}

.secnd-user-menu > .secnd-btn--ghost.secnd-btn--filled:hover {
  color: var(--secnd-primary, var(--secnd-accent));
  border-color: var(--secnd-primary, var(--secnd-accent));
}

.secnd-user-menu__desktop > .secnd-btn--primary {
  color: #ffffff;
}

.secnd-user-menu__panel-actions .secnd-btn--primary {
  color: #ffffff;
}

.secnd-user-menu__panel-actions .secnd-btn--primary:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-user-menu__trigger {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.secnd-user-menu__avatar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.secnd-user-menu__avatar {
  position: relative;
  display: inline-flex;
}

.secnd-notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--secnd-accent);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--secnd-surface);
}

.secnd-user-menu__chevron {
  color: var(--secnd-muted);
  font-size: 12px;
}

.secnd-user-menu__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: #ffffff;
  border: 1px solid var(--secnd-border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  width: 240px;
  padding: 12px;
  display: none;
  z-index: 100100;
}

.secnd-user-menu.is-open .secnd-user-menu__dropdown {
  display: block;
}

.secnd-user-menu__header {
  border-bottom: 1px solid var(--secnd-border);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.secnd-user-menu__links {
  display: grid;
  gap: 6px;
}

.secnd-user-menu__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--secnd-text);
  text-decoration: none;
}

.secnd-user-menu__icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.75;
}

@media (max-width: 640px) {
  .secnd-user-menu__dropdown {
    right: auto;
    left: 0;
    width: min(90vw, 280px);
  }
}

.secnd-user-menu__links a:hover {
  background: rgba(0, 143, 200, 0.1);
  color: var(--secnd-accent);
}

.secnd-user-menu__footer {
  border-top: 1px solid var(--secnd-border);
  padding-top: 10px;
  margin-top: 10px;
}

.secnd-user-menu__logout {
  color: #ef4444;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.secnd-user-menu__mobile {
  display: none;
}

.secnd-user-menu__mobile-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

.secnd-user-menu__mobile-toggle:hover,
.secnd-user-menu__mobile-toggle:focus {
  background: var(--secnd-surface);
}

.secnd-user-menu__mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.secnd-user-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9998;
}

.secnd-user-menu__panel {
  position: fixed;
  right: 0;
  top: 0;
  height: 100svh;
  max-height: 100svh;
  width: 80vw;
  max-width: 80vw;
  background: #ffffff;
  border-left: 1px solid var(--secnd-border);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 18px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.secnd-user-menu.is-mobile-open .secnd-user-menu__overlay {
  opacity: 1;
  pointer-events: auto;
}

.secnd-user-menu.is-mobile-open .secnd-user-menu__panel {
  transform: translateX(0);
}

.secnd-user-menu__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--secnd-border);
}

.secnd-user-menu__logo {
  font-weight: 700;
  font-size: 20px;
  color: var(--secnd-heading);
  text-decoration: none;
}

.secnd-user-menu__logo img {
  max-height: 28px;
  width: auto;
  display: block;
}

.secnd-user-menu__panel-close {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--secnd-muted);
}

.secnd-user-menu__panel-body {
  padding: 8px 16px;
  background: #ffffff;
  text-align: left;
  overflow-x: hidden;
}

.secnd-user-menu__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  box-sizing: border-box;
}

.secnd-user-menu__nav li {
  list-style: none;
}

.secnd-user-menu__nav a {
  color: var(--secnd-text);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  display: block;
  text-align: left;
  white-space: normal;
  word-break: break-word;
}

.secnd-user-menu__nav a:hover {
  background: rgba(0, 143, 200, 0.1);
  color: var(--secnd-accent);
}

.secnd-user-menu__panel-footer {
  margin-top: auto;
  padding: 12px 16px;
  border-top: 1px solid var(--secnd-border);
  display: grid;
  gap: 12px;
  text-align: left;
  box-sizing: border-box;
}

.secnd-user-menu__panel-footer .secnd-user-menu__links a {
  color: var(--secnd-accent);
}

.secnd-user-menu__panel-footer .secnd-user-menu__links a .secnd-user-menu__icon {
  color: var(--secnd-accent);
}

.secnd-user-menu__panel-footer .secnd-user-menu__links a:hover {
  background: rgba(0, 143, 200, 0.1);
  color: var(--secnd-accent);
}

.secnd-user-menu__panel-footer .secnd-user-menu__logout {
  color: var(--secnd-accent);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}

.secnd-user-menu__panel-footer .secnd-user-menu__logout:hover {
  background: rgba(0, 143, 200, 0.1);
}

body.secnd-mobile-menu-open {
  overflow: hidden;
}

.secnd-user-menu__panel-user {
  display: flex;
  gap: 12px;
  align-items: center;
}

.secnd-user-menu__panel-actions {
  display: grid;
  gap: 10px;
}

@media (max-width: 900px) {
  .secnd-user-menu__desktop {
    display: none;
  }

  .secnd-user-menu__mobile {
    display: inline-flex;
  }
}

.secnd-design-card__stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--secnd-muted);
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.secnd-design-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.secnd-design-card--manage .secnd-design-card__goal-bar {
  margin-bottom: 8px;
}

.secnd-design-card__footer [data-secnd-action="view-results"] {
  background: var(--secnd-accent);
  color: #ffffff;
  border: none;
}

.secnd-design-card__footer [data-secnd-action="view-results"]:hover {
  filter: brightness(0.95);
}

.secnd-design-card__time {
  font-size: 12px;
  color: var(--secnd-muted);
}

.secnd-vote-button {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #E6E7E8;
  background: var(--secnd-surface);
  margin-right: 8px;
  color: var(--secnd-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secnd-vote-anon {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--secnd-border);
  background: #F4F6FA;
}

.secnd-vote-anon input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #D5DAE3;
  background: #EEF2F7;
  color: var(--secnd-text);
}

.secnd-vote-anon__title {
  font-weight: 600;
  font-size: 20px;
  color: var(--secnd-text);
}

.secnd-vote-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--secnd-muted);
}

.secnd-vote-auth {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.secnd-vote.is-locked .secnd-vote-button,
.secnd-vote.is-locked .secnd-vote-submit,
.secnd-vote.is-locked .secnd-vote-slider,
.secnd-vote.is-locked .secnd-vote-image-grid,
.secnd-vote.is-locked .secnd-vote-ranking,
.secnd-vote.is-locked .secnd-vote-single__input,
.secnd-vote.is-locked .secnd-emoji-slider {
  pointer-events: none;
  opacity: 0.4;
}

.secnd-vote[data-secnd-vote-type="multiple_choice"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.secnd-vote[data-secnd-vote-type="multiple_choice"] .secnd-vote-button {
  width: 100%;
  margin-right: 0;
  justify-content: center;
}

.secnd-vote[data-secnd-vote-type="emoji_scale"] .secnd-vote-button,
.secnd-vote[data-secnd-vote-type="emoji-scale"] .secnd-vote-button,
.secnd-vote[data-secnd-vote-type="emoji"] .secnd-vote-button {
  width: auto;
}

.secnd-vote-button.is-selected {
  border-color: var(--secnd-accent);
  background: rgba(0, 143, 200, 0.12);
  color: var(--secnd-accent);
}

.secnd-vote-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-vote-button__icon svg {
  width: 16px;
  height: 16px;
}

.secnd-vote-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 16px 0 20px;
  overflow: visible;
}

.secnd-vote-slider__track {
  position: relative;
  width: 100%;
  overflow: visible;
}

.secnd-vote-slider__label {
  font-size: 13px;
  color: var(--secnd-muted);
  white-space: nowrap;
}

.secnd-vote-slider__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 12px;
}

.secnd-vote-slider__option {
  display: grid;
  gap: 8px;
  text-align: center;
  font-size: 13px;
  color: var(--secnd-muted);
}

.secnd-vote-slider__option img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--secnd-border);
  display: block;
}

.secnd-vote-slider__input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
      to right,
      var(--secnd-accent) 0%,
      var(--secnd-accent) var(--secnd-slider-percent, 50%),
      var(--secnd-slider-track, #e6e7e8) var(--secnd-slider-percent, 50%),
      var(--secnd-slider-track, #e6e7e8) 100%
    ) !important;
}

.secnd-vote-slider__input::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
      to right,
      var(--secnd-accent) 0%,
      var(--secnd-accent) var(--secnd-slider-percent, 50%),
      var(--secnd-slider-track, #e6e7e8) var(--secnd-slider-percent, 50%),
      var(--secnd-slider-track, #e6e7e8) 100%
    ) !important;
}

.secnd-vote-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--secnd-accent);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
  cursor: pointer;
  margin-top: -6px;
}

.secnd-vote-slider__input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--secnd-accent);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
  cursor: pointer;
}

.secnd-vote-slider__input::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--secnd-slider-track, #e6e7e8);
}

.secnd-vote-slider__value {
  position: absolute;
  top: -28px;
  left: var(--secnd-slider-percent, 50%);
  transform: translateX(-50%);
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

.secnd-emoji-slider {
  display: grid;
  gap: 12px;
}

.secnd-emoji-slider__input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--secnd-accent) 0%,
    var(--secnd-accent) var(--secnd-emoji-percent, 0%),
    #e6e7e8 var(--secnd-emoji-percent, 0%),
    #e6e7e8 100%
  );
}

.secnd-emoji-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--secnd-accent);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  margin-top: -7px;
}

.secnd-emoji-slider__input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--secnd-accent);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

.secnd-emoji-slider__input::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #e6e7e8;
}

.secnd-emoji-slider__faces {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

.secnd-emoji-slider__face {
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.secnd-emoji-slider__face.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.secnd-vote-single {
  display: grid;
  gap: 8px;
}

.secnd-vote-single__input {
  width: 100%;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  color: var(--secnd-text);
  background: #ffffff;
}

.secnd-vote-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.secnd-vote-image-option {
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  padding: 8px;
  background: #ffffff;
  text-align: center;
  display: grid;
  gap: 8px;
  grid-template-rows: 1fr auto;
}

.secnd-vote-image-option img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.secnd-vote-image-option.is-selected {
  border-color: var(--secnd-accent);
  box-shadow: 0 0 0 2px rgba(var(--secnd-accent-rgb), 0.15);
}

.secnd-upload__preview {
  display: grid;
  gap: 8px;
}

.secnd-upload__preview input[type="text"] {
  border: 1px solid var(--secnd-border);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 14px;
}

.secnd-upload__featured {
  margin-top: 12px;
  display: none;
}

.secnd-upload__featured select {
  width: 100%;
}

[data-secnd-image-choice-hint] {
  display: none;
}

.secnd-design-page__question .secnd-vote-wrapper {
  margin-top: 20px;
}

.secnd-image-choice {
  display: none;
  gap: 12px;
}

.secnd-upload--inline {
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed var(--secnd-border);
  background: var(--secnd-surface);
  cursor: pointer;
}

.secnd-upload--inline.is-dragging {
  border-color: var(--secnd-accent);
  box-shadow: 0 0 0 2px rgba(var(--secnd-accent-rgb), 0.15);
}

.secnd-image-choice-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.secnd-image-choice-item {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  background: var(--secnd-surface);
  position: relative;
}

.secnd-image-choice-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: #ef4444;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}

.secnd-image-choice-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.secnd-image-choice-item input[type="text"] {
  border: 1px solid var(--secnd-border);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
}

.secnd-looking-for-suggest {
  display: none;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  background: var(--secnd-surface);
}

.secnd-looking-for-suggest__title {
  font-weight: 600;
  color: var(--secnd-text);
  font-size: 14px;
}

.secnd-looking-for-suggest__content {
  color: var(--secnd-muted);
  font-size: 14px;
}

.secnd-vote-submit {
  margin-top: 16px;
}

.secnd-design-card__menu-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--secnd-text);
  font-size: 14px;
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.secnd-design-card__menu-list a:hover {
  background: rgba(var(--secnd-accent-rgb), 0.1);
  color: var(--secnd-accent);
}

.secnd-vote-submit {
  color: #ffffff;
}

.secnd-vote-ranking {
  list-style: decimal;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  margin: 0 0 12px;
}

.secnd-vote-ranking__item {
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  padding: 10px 12px;
  background: var(--secnd-surface);
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
}

.secnd-vote-ranking__handle {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--secnd-muted);
  cursor: grab;
}

.secnd-vote-ranking__handle svg {
  width: 16px;
  height: 16px;
}

.secnd-ranking-ghost {
  opacity: 0.5;
}

.secnd-ranking-chosen {
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
}

.secnd-vote-ranking__actions {
  margin-left: auto;
  display: inline-flex;
  gap: 6px;
}

.secnd-vote-ranking__actions button {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-muted);
  border-radius: 8px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.secnd-vote-ranking__actions button svg {
  width: 14px;
  height: 14px;
}

.secnd-vote-ranking__item.is-dragging {
  opacity: 0.6;
}

.secnd-vote-ranking__item.is-drop-target {
  border-top: 2px solid var(--secnd-accent);
}

.secnd-public-stats {
  display: grid;
  gap: 24px;
}

.secnd-public-stats__summary {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.secnd-public-stats__section {
  display: grid;
  gap: 16px;
}

.secnd-public-stats__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.secnd-stat-card {
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  background: var(--secnd-surface);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.secnd-stat-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--secnd-heading);
}

.secnd-stat-card strong {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--secnd-heading);
}

.secnd-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: inherit;
  color: var(--secnd-muted);
  gap: 12px;
}

.secnd-stat-row span:first-child {
  color: var(--secnd-text);
  font-weight: 500;
}

.secnd-stat-values {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--secnd-muted);
}

.secnd-stat-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.secnd-stat-bar__fill {
  height: 100%;
  display: block;
  background: var(--secnd-bar-color, var(--secnd-accent));
  border-radius: inherit;
  width: 0%;
  transition: width 1s ease;
}

.secnd-appearance {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.secnd-muted {
  color: var(--secnd-muted);
  margin: 6px 0 0;
}

.secnd-theme-options {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  margin-top: 16px;
}

.secnd-theme-option {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--secnd-text);
}

.secnd-theme-option__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  color: var(--secnd-accent);
}

.secnd-theme-option.is-active {
  border-color: var(--secnd-accent);
  box-shadow: 0 0 0 2px rgba(0, 143, 200, 0.2);
}

.secnd-accent-presets {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
  margin: 16px 0;
}

.secnd-accent-swatch {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 6px;
  background: transparent;
  cursor: pointer;
}

.secnd-accent-swatch span {
  display: block;
  width: 100%;
  padding-top: 100%;
  border-radius: 10px;
  border: 1px solid var(--secnd-border);
}

.secnd-accent-swatch.is-active {
  border-color: var(--secnd-accent);
}

.secnd-accent-custom label {
  display: block;
  font-size: 14px;
  color: var(--secnd-muted);
}

.secnd-accent-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.secnd-accent-inputs input[type="text"] {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
}

.secnd-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--secnd-text);
  color: var(--secnd-surface);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.2s ease;
  pointer-events: none;
  z-index: 9999;
}

.secnd-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.secnd-modal-open {
  overflow: hidden;
}

.secnd-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.secnd-modal--feedback {
  z-index: 10001;
}

.secnd-modal.is-active {
  display: flex;
}

.secnd-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
}

.secnd-modal__content {
  position: relative;
  background: var(--secnd-surface);
  border-radius: 16px;
  width: min(720px, 90vw);
  max-height: 90vh;
  overflow: auto;
  padding: 24px;
  z-index: 1;
}

.secnd-modal__loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.secnd-modal__loading.is-visible {
  display: flex;
}

.secnd-modal__loading-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}

.secnd-modal__spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(var(--secnd-accent-rgb), 0.25);
  border-top-color: var(--secnd-accent);
  animation: secnd-spin 0.8s linear infinite;
}

@keyframes secnd-spin {
  to {
    transform: rotate(360deg);
  }
}

.secnd-modal--design .secnd-modal__content {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.secnd-modal--design {
  align-items: stretch;
  justify-content: stretch;
}

.secnd-modal--design .secnd-modal__header,
.secnd-modal--design .secnd-modal__footer {
  padding: 20px 32px;
  background: var(--secnd-surface);
}

.secnd-modal--design .secnd-modal__close {
  color: var(--secnd-accent);
  border: 1px solid var(--secnd-accent);
  background: #ffffff;
}

.secnd-modal--design .secnd-modal__close:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-modal--design .secnd-modal__footer {
  border-top: 1px solid var(--secnd-border);
}

.secnd-modal--design .secnd-modal__body {
  flex: 1;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.secnd-modal--design .secnd-modal__header {
  display: none;
}

.secnd-design-wizard__section-header {
  margin-bottom: 24px;
  padding: 24px 48px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.secnd-design-wizard__top-steps {
  display: none;
  align-items: center;
  gap: 6px;
}

.secnd-design-wizard__top-step {
  width: 16px;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
}

.secnd-design-wizard__top-step.is-active-dot {
  background: var(--secnd-accent);
}

.secnd-design-wizard__section-title {
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--secnd-text);
}

.secnd-design-wizard__section-subtitle {
  margin: 0;
  font-size: 15px;
  color: var(--secnd-muted);
}

.secnd-design-wizard__section-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 18px;
}

.secnd-modal--design .secnd-modal__close {
  grid-column: 3;
  justify-self: end;
}

.secnd-modal--design .secnd-modal__footer,
.secnd-design-wizard__actions {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.secnd-design-wizard__layout {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 0;
  min-height: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
}

.secnd-design-wizard__steps {
  flex: 0 0 var(--secnd-wizard-sidebar, 300px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 48px 36px;
  order: 1;
  background: #f8fafc;
  border-right: 1px solid #e5e7eb;
}

.secnd-design-wizard__steps-title {
  font-weight: 600;
  color: var(--secnd-text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
}

.secnd-design-wizard__steps-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(98, 79, 255, 0.12);
  color: #624fff;
}

.secnd-design-wizard__steps-icon svg {
  width: 18px;
  height: 18px;
}

.secnd-design-wizard__step {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: #ffffff;
  color: #64748b;
  position: relative;
  border: 1px solid transparent;
}

.secnd-design-wizard__step.is-active {
  background: rgba(0, 143, 200, 0.12);
  color: var(--secnd-text);
  border-color: rgba(0, 143, 200, 0.2);
  box-shadow: 0 8px 20px rgba(0, 143, 200, 0.18);
}

.secnd-design-wizard__step.is-active::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 22px;
  border-radius: 8px;
  background: var(--secnd-accent);
}

.secnd-design-wizard__step-number {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #eef2f7;
  font-weight: 600;
  color: #0f172a;
}

.secnd-design-wizard__step.is-complete .secnd-design-wizard__step-number {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-design-wizard__progress {
  margin-top: auto;
  padding-top: 12px;
}

.secnd-design-wizard__progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
}

.secnd-design-wizard__main {
  overflow: auto;
  padding: 0;
  flex: 1 1 0;
  order: 2;
  display: flex;
  flex-direction: column;
}

.secnd-design-wizard__actions {
  justify-content: space-between;
  padding: 28px 56px;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  background: var(--secnd-surface);
  border-top: 1px solid #e5e7eb;
}

.secnd-design-wizard__step strong {
  font-size: 18px;
  display: block;
}

.secnd-design-wizard__step span {
  font-size: 13px;
}

.secnd-design-wizard__main .secnd-wizard {
  max-width: 880px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.secnd-design-wizard__main .secnd-wizard.is-active {
  padding: 32px 56px 40px;
  align-self: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.secnd-design-wizard__main .secnd-wizard.is-active > div {
  font-size: 18px;
}

.secnd-design-wizard__step-note {
  margin: 0 0 24px;
}

.secnd-question-suggestions {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.secnd-question-suggestions__title {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 18px;
}

.secnd-question-suggestions__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.secnd-question-suggestion {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 16px;
  cursor: pointer;
  color: var(--secnd-accent);
}

.secnd-design-wizard__summary {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.secnd-design-wizard__summary-media {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  background: #f1f5f9;
  background-size: cover;
  background-position: center;
}

.secnd-design-wizard__summary-body {
  display: grid;
  gap: 6px;
}

.secnd-design-wizard__summary-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--secnd-text);
}

.secnd-design-wizard__summary-question {
  font-size: 16px;
  color: var(--secnd-muted);
}

.secnd-design-wizard__summary-description {
  font-size: 14px;
  color: var(--secnd-muted);
}

.secnd-design-wizard__summary-visuals {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.secnd-summary-slider__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.secnd-summary-slider__image {
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  background: var(--secnd-surface);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secnd-summary-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.secnd-summary-slider__image.is-empty {
  background: #f1f5f9;
}

.secnd-summary-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.secnd-summary-image-card {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--secnd-muted);
}

.secnd-summary-image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--secnd-border);
  display: block;
}

.secnd-design-wizard__summary-details {
  font-size: 14px;
  color: var(--secnd-muted);
}
.secnd-design-wizard__summary-tags .secnd-tag {
  background: #eef2f7;
  color: #334155;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .secnd-design-wizard__steps {
    display: none;
  }

  .secnd-design-wizard__top-steps {
    display: flex;
  }

  .secnd-design-wizard__section-header {
    padding: 20px 32px 12px;
  }
}

.secnd-design-wizard__summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.secnd-design-wizard__title-grid {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 24px;
  align-items: start;
}

.secnd-design-wizard__title-preview {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: #f1f5f9;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: grid;
  place-items: center;
}

.secnd-design-wizard__title-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secnd-design-wizard__title-fields {
  display: grid;
  gap: 16px;
}

.secnd-design-wizard__main .secnd-wizard label {
  text-align: left;
}

.secnd-design-wizard__main h4 {
  font-size: 34px;
  text-align: left;
  margin-bottom: 8px;
}

.secnd-design-wizard__main .secnd-muted {
  text-align: left;
}

.secnd-design-wizard__main input,
.secnd-design-wizard__main select,
.secnd-design-wizard__main textarea {
  border-radius: 14px;
  min-height: 52px;
  font-size: 18px;
  font-weight: 400;
}

.secnd-design-wizard__main textarea {
  min-height: 140px;
}

.secnd-upload {
  border-radius: 24px;
  padding: 40px;
  background: #ffffff;
  border: 2px dashed #d7dbe8;
}

.secnd-upload.is-dragging {
  background: rgba(0, 143, 200, 0.06);
}

.secnd-upload__previews img {
  width: 84px;
  height: 84px;
  border-radius: 12px;
}

.secnd-upload__prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.secnd-upload__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(98, 79, 255, 0.12);
  color: #624fff;
}

.secnd-upload__icon svg {
  width: 28px;
  height: 28px;
}

.secnd-upload__headline {
  font-size: 18px;
  font-weight: 600;
  color: var(--secnd-text);
  margin: 0;
}

.secnd-upload__types,
.secnd-upload__limits {
  font-size: 14px;
  margin: 0;
}

.secnd-upload__previews {
  margin-top: 24px;
  justify-content: flex-start;
  gap: 16px;
}

.secnd-upload__results {
  margin-top: 24px;
}

.secnd-upload__preview {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.secnd-upload__preview img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.secnd-upload__preview.is-featured {
  border-color: var(--secnd-accent);
  box-shadow: 0 12px 24px rgba(98, 79, 255, 0.2);
}

.secnd-upload__featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  background: var(--secnd-accent);
  color: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.secnd-upload__featured {
  margin-top: 16px;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 10px 12px;
}

.secnd-upload__delete {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: #ef4444;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
}

.secnd-upload__featured label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 13px;
}

.secnd-upload__featured select {
  display: none;
}

.secnd-looking-for-suggest {
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 16px;
}

.secnd-design-wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-self: stretch;
  padding: 28px 56px;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  background: var(--secnd-surface);
  border-top: 1px solid #e5e7eb;
}

.secnd-design-wizard__preview {
  display: none;
}

.secnd-design-wizard__actions .secnd-btn {
  height: auto;
  width: auto;
  flex: 0 0 auto;
}

.secnd-design-wizard__main .secnd-wizard {
  max-width: 840px;
  margin: 0;
  padding: 0;
}

.secnd-folder-create {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.secnd-folder-create input {
  flex: 1 1 auto;
}

.secnd-design-wizard__main h4 {
  font-size: 34px;
  text-align: left;
  margin-bottom: 8px;
}

.secnd-design-wizard__main label span,
.secnd-design-wizard__main .secnd-muted {
  font-size: 18px;
  text-align: left;
}

.secnd-design-wizard__main input,
.secnd-design-wizard__main select,
.secnd-design-wizard__main textarea {
  font-size: 18px !important;
  font-weight: 400;
}

.secnd-design-wizard__main select {
  appearance: none;
  background-color: #ffffff;
  border: 2px solid var(--secnd-border);
  border-radius: 14px;
  padding: 12px 44px 12px 14px;
  min-height: 48px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2364768b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 8 10 12 14 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.secnd-design-wizard__main select:focus {
  border-color: var(--secnd-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--secnd-accent-rgb), 0.15);
}

.secnd-design-wizard__main select[multiple],
.secnd-form-grid select[multiple],
.secnd-modal--onboarding select[multiple],
.secnd-analytics__filters select[multiple] {
  min-height: 120px;
  padding-right: 14px;
  background-image: none;
}

.secnd-multi-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.secnd-multi-option {
  cursor: pointer;
  display: inline-flex;
}

.secnd-multi-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.secnd-multi-option span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--secnd-border);
  background: #ffffff;
  color: var(--secnd-text);
  font-size: 13px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}

.secnd-multi-option input:checked + span {
  background: var(--secnd-accent);
  border-color: var(--secnd-accent);
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(var(--secnd-accent-rgb), 0.15);
}

.secnd-profile-page__meta {
  margin-top: 12px;
}

.secnd-profile-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.secnd-profile-page__tags--hidden {
  display: none;
}

.secnd-profile-page__tags--hidden.is-visible {
  display: flex;
}

.secnd-tag--toggle {
  cursor: pointer;
  border-color: var(--secnd-accent);
  color: var(--secnd-accent);
  background: rgba(var(--secnd-accent-rgb), 0.12);
}

.secnd-profile-page__hero {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.secnd-profile-page__info {
  width: fit-content;
}

.secnd-profile-page__hero .secnd-card {
  min-width: 0;
}

@media (max-width: 900px) {
  .secnd-profile-page__hero {
    grid-template-columns: 1fr;
  }

  .secnd-profile-page__info,
  .secnd-profile-page__hero .secnd-card {
    width: 100%;
  }
}

.secnd-profile-page__pro {
  font-size: 15px;
}

.secnd-profile-page__portfolio-btn {
  width: auto;
  display: inline-flex;
  background: #017fb1;
  border-color: #017fb1;
  color: #ffffff;
}

.secnd-profile-page__portfolio-btn:hover {
  background: #d528a2;
  border-color: #d528a2;
  color: #ffffff;
}

.secnd-profile-page__feedback-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--secnd-accent-rgb), 0.3);
  background: rgba(var(--secnd-accent-rgb), 0.08);
  color: var(--secnd-heading);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

.secnd-profile-page__feedback-icon {
  width: 18px;
  height: 18px;
  color: var(--secnd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-profile-page__feedback-icon svg {
  width: 18px;
  height: 18px;
}

.secnd-card--follow-feed .secnd-card__header {
  align-items: center;
}

.secnd-follow-feed__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.secnd-follow-feed__empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.secnd-design-card--feed .secnd-design-card__meta {
  display: none;
}

@media (max-width: 1200px) {
  .secnd-follow-feed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .secnd-follow-feed__grid {
    grid-template-columns: 1fr;
  }
  .secnd-follow-feed__empty {
    flex-direction: column;
    align-items: flex-start;
  }
}

.secnd-analytics__filters--advanced {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 16px;
  margin: 12px 0 4px;
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--secnd-border);
}

.secnd-analytics__filters--advanced.is-open {
  display: grid;
  margin-bottom: 16px;
}

.secnd-analytics__filters-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.secnd-analytics__filter-note {
  margin: 0 0 6px;
  font-size: 13px;
  grid-column: 1 / -1;
}

.secnd-analytics__filters-clear {
  grid-column: 1 / -1;
  justify-self: flex-end;
}

.secnd-analytics__filters--advanced .secnd-analytics__filter {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  align-items: flex-start;
  gap: 6px;
  flex-direction: column;
}

.secnd-analytics__filters--advanced select {
  width: 100%;
  min-height: 180px;
}

.secnd-analytics__filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--secnd-muted);
}

.secnd-export {
  position: relative;
}

.secnd-export--row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.secnd-export__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secnd-export__icon svg {
  width: 16px;
  height: 16px;
}

.secnd-export__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #ffffff;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  padding: 8px;
  display: none;
  min-width: 160px;
  z-index: 10;
}

.secnd-export__menu.is-open {
  display: block;
}

.secnd-export__menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--secnd-text);
}

.secnd-export__menu a:hover {
  background: rgba(var(--secnd-accent-rgb), 0.12);
  color: var(--secnd-accent);
}


.secnd-demographic__toggle {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: var(--secnd-accent);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.secnd-demographic__more {
  display: none;
  margin-top: 8px;
}

.secnd-demographic__more.is-open {
  display: block;
}

.secnd-multi-counter {
  font-size: 12px;
  font-weight: 500;
  color: var(--secnd-muted);
  margin-left: 8px;
}

.secnd-gate-note {
  margin-top: 8px;
  font-size: 12px;
}

.secnd-section[data-secnd-panel="dashboard"] .secnd-card--feed {
  margin-top: 20px;
}

.secnd-card--feed .secnd-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.secnd-card--feed .secnd-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
}

.secnd-card--feed .secnd-card__actions .secnd-btn {
  width: auto;
}

.secnd-card--feed .secnd-design-grid {
  margin-top: 12px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.secnd-card--feed .secnd-design-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.secnd-card--feed .secnd-design-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.secnd-card--feed .secnd-design-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.secnd-card--feed .secnd-design-card__footer {
  margin-top: auto;
}

.secnd-card--feed .secnd-card__placeholder {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.secnd-walkthrough {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10005;
}

.secnd-walkthrough.is-visible {
  display: block;
}

.secnd-walkthrough__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.secnd-walkthrough__card {
  position: fixed;
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
  z-index: 1;
}

.secnd-walkthrough__step {
  font-size: 12px;
  color: var(--secnd-muted);
  margin-bottom: 6px;
}

.secnd-walkthrough__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--secnd-heading);
  margin-bottom: 6px;
}

.secnd-walkthrough__text {
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
}

.secnd-walkthrough__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.secnd-walkthrough__highlight {
  position: relative;
  z-index: 10006;
  outline: 2px solid var(--secnd-accent);
  border-radius: 12px;
  box-shadow: 0 0 0 4px rgba(var(--secnd-accent-rgb), 0.15);
}

.secnd-design-wizard__preview {
  border: 2px solid var(--secnd-accent);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--secnd-surface);
  min-height: 0;
  flex: 1 1 0;
  max-width: none;
  min-width: 0;
  order: 3;
}

.secnd-design-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.secnd-design-preview__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  overflow: hidden;
}

.secnd-design-preview__media {
  border: 1px solid var(--secnd-border);
  border-radius: 14px;
  background: #ffffff;
  min-height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.secnd-design-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100%;
}

.secnd-design-preview__media.has-image {
  background-image: none !important;
}

.secnd-design-preview__meta {
  font-size: 14px;
  color: var(--secnd-muted);
}

.secnd-design-preview__context {
  font-size: 14px;
  color: var(--secnd-text);
}

.secnd-design-preview__question {
  font-size: 18px;
  font-weight: 600;
  color: var(--secnd-heading);
}

.secnd-design-preview__body {
  flex: 1;
  overflow: auto;
}

.secnd-design-wizard__preview {
  max-height: none;
  overflow: hidden;
  transition: max-height 0.2s ease;
  align-self: stretch;
  margin-top: 0;
}

.secnd-design-wizard__preview.is-expanded {
  max-height: none;
}

.secnd-design-preview__header {
  justify-content: space-between;
}

.secnd-design-preview__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.secnd-design-preview__title {
  font-size: 18px;
}

.secnd-design-preview__accordion {
  display: none;
  border: 0;
  background: transparent;
  color: var(--secnd-accent);
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}

.secnd-design-page__carousel-main {
  margin-bottom: 12px;
}

.secnd-design-page__meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.secnd-design-preview__body .secnd-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
}

@media (max-width: 900px) {
  .secnd-modal--design .secnd-modal__header,
  .secnd-modal--design .secnd-modal__footer {
    padding: 16px 20px;
  }

  .secnd-modal--design .secnd-modal__body {
    padding: 0 20px 20px;
  }

  .secnd-design-wizard__layout {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }

  .secnd-design-wizard__steps {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .secnd-design-wizard__step {
    flex: 1 1 calc(50% - 12px);
  }

  .secnd-design-wizard__preview {
    max-height: 16vh;
    margin-top: auto;
    max-width: none;
    min-width: 0;
  }

  .secnd-design-wizard__preview.is-expanded {
    max-height: 60vh;
  }

  .secnd-design-preview__content {
    grid-template-columns: 1fr;
  }

  .secnd-design-preview__media {
    min-height: 200px;
  }

  .secnd-design-preview__accordion {
    display: inline-flex;
  }

  .secnd-design-wizard__preview.is-collapsed {
    max-height: 52px;
  }

  .secnd-design-wizard__preview.is-collapsed .secnd-design-preview__content {
    display: none;
  }
}

.secnd-app[data-theme="dark"] .secnd-modal--design .secnd-modal__content {
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 18px 40px rgba(15, 23, 42, 0.45);
}

.secnd-app[data-theme="dark"] .secnd-modal--onboarding .secnd-modal__content {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 40px rgba(15, 23, 42, 0.45);
}

.secnd-modal--feedback .secnd-modal__overlay {
  background: #ffffff;
}

.secnd-feedback-modal {
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

.secnd-modal--feedback .secnd-modal__content {
  padding: 24px;
  box-sizing: border-box;
}

.secnd-modal--feedback .secnd-modal__header {
  position: relative;
  padding: 80px 0 16px;
}

.secnd-modal--feedback .secnd-modal__close {
  position: absolute;
  left: 0;
  right: auto;
  top: 24px;
  font-size: 28px;
  color: #757575;
}

.secnd-feedback__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  width: 100%;
}

.secnd-feedback__title h3 {
  font-size: 24px;
}

.secnd-feedback__icon svg {
  width: 26px;
  height: 26px;
  color: var(--secnd-accent);
}

.secnd-feedback {
  display: grid;
  gap: 16px;
}

.secnd-feedback__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.secnd-feedback__image {
  max-height: 40vh;
}

.secnd-feedback__image img {
  width: 100%;
  height: 100%;
  max-height: 40vh;
  border-radius: 16px;
  display: block;
  object-fit: contain;
}

.secnd-feedback__info h4 {
  margin: 10px 0;
  font-size: 28px;
  color: var(--secnd-heading);
  max-width: 520px;
}

.secnd-feedback__info {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
}

.secnd-feedback__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.secnd-feedback__followed {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secnd-primary, var(--secnd-accent));
  color: #ffffff;
}

.secnd-feedback__followed svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
}

.secnd-feedback__author {
  font-size: 14px;
  color: var(--secnd-muted);
  margin-bottom: 16px;
}

.secnd-feedback__vote {
  display: grid;
  gap: 10px;
}

.secnd-feedback__vote .secnd-vote-button {
  width: 100%;
  justify-content: center;
}

.secnd-feedback__vote .secnd-vote[data-secnd-vote-type="emoji_scale"] .secnd-vote-button,
.secnd-feedback__vote .secnd-vote[data-secnd-vote-type="emoji-scale"] .secnd-vote-button,
.secnd-feedback__vote .secnd-vote[data-secnd-vote-type="emoji"] .secnd-vote-button {
  width: auto;
}

.secnd-feedback__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.secnd-feedback__nav .secnd-btn {
  width: auto;
}

.secnd-feedback__nav .secnd-btn--primary {
  color: #ffffff;
}

.secnd-feedback-next {
  color: #ffffff;
}

.secnd-feedback__end {
  text-align: center;
  color: var(--secnd-text);
  line-height: 1.6;
  padding: 16px;
}

.secnd-modal__body {
  overflow: auto;
  padding-right: 2px;
}

.secnd-modal__body .secnd-feedback {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.secnd-modal--feedback .secnd-modal__body {
  flex: 1;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.secnd-modal--feedback .secnd-modal__body .secnd-feedback {
  border-radius: 0;
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 1100px;
}

.secnd-community__feedback-btn {
  z-index: 0;
}

body.secnd-modal-open .secnd-community__feedback-btn {
  display: none;
}

@media (max-width: 900px) {
  .secnd-feedback__grid {
    grid-template-columns: 1fr;
  }
}

.secnd-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.secnd-modal__title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.secnd-modal__subtitle {
  margin: 0;
  font-size: 12px;
  color: var(--secnd-muted);
}

.secnd-modal__close {
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.secnd-modal--feedback .secnd-modal__close {
  color: #757575;
}

.secnd-modal--feedback .secnd-modal__close:hover {
  color: var(--secnd-accent);
  background: transparent;
}

.secnd-modal__body {
  display: grid;
  gap: 16px;
}

.secnd-modal__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.secnd-community {
  display: grid;
  gap: 20px;
}

.secnd-community__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.secnd-community__return {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secnd-primary, var(--secnd-accent));
  font-weight: 600;
  text-decoration: none;
}

.secnd-community__return:hover {
  text-decoration: underline;
}

.secnd-community__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 10;
  overflow: visible;
  --secnd-community-action-height: 45px;
  --secnd-community-action-radius: 16px;
}

.secnd-community__search {
  display: flex;
  align-items: center;
}

body.secnd-modal-open .secnd-community__header,
body.secnd-modal-open .secnd-community__actions {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.secnd-community__search input {
  padding: 0 14px;
  border-radius: var(--secnd-community-action-radius);
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
  min-width: 220px;
  height: var(--secnd-community-action-height);
  box-sizing: border-box;
  line-height: 1;
}

.secnd-community__filter-toggle,
.secnd-community__browse,
.secnd-community__layout-btn,
.secnd-community__feedback-btn {
  height: var(--secnd-community-action-height);
  border-radius: var(--secnd-community-action-radius);
  box-sizing: border-box;
  line-height: 1;
}

.secnd-community__filter-toggle,
.secnd-community__browse,
.secnd-community__layout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--secnd-community-action-height);
}

.secnd-community__browse {
  padding: 0;
  min-width: var(--secnd-community-action-height);
}

.secnd-community__layout {
  display: inline-flex;
  gap: 8px;
}

.secnd-community__layout-btn {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
  padding: 0 10px;
  cursor: pointer;
}

.secnd-community__feedback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.secnd-community__layout-btn.is-active {
  border-color: var(--secnd-accent);
  color: var(--secnd-accent);
  background: rgba(0, 143, 200, 0.12);
}

.secnd-directory {
  display: grid;
  gap: 20px;
}

.secnd-directory__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.secnd-directory__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.secnd-directory__actions input,
.secnd-directory__actions select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  color: var(--secnd-text);
  min-width: 200px;
}

.secnd-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.secnd-person-card {
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  padding: 16px;
  background: var(--secnd-surface);
  display: flex;
  align-items: center;
  gap: 12px;
}

.secnd-directory-grid .secnd-person-card {
  border-radius: 16px !important;
  border: 1px solid #e6e7e8 !important;
  background: #ffffff !important;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.06) !important;
}

.secnd-person-card__avatar img {
  border-radius: 50%;
}

.secnd-person-card__meta {
  display: grid;
  gap: 4px;
  flex: 1;
}

.secnd-person-card--compact {
  padding: 12px 14px;
  gap: 12px;
}

.secnd-person-card--compact .secnd-person-card__meta {
  gap: 2px;
}

.secnd-person-card__icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.secnd-icon-btn {
  border: 1px solid var(--secnd-border);
  background: transparent;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secnd-text);
}

.secnd-icon-btn svg {
  width: 16px;
  height: 16px;
}

.secnd-follow-icon .secnd-icon--off {
  display: none;
}

.secnd-follow-icon.is-active .secnd-icon--on {
  display: inline-flex;
}

.secnd-follow-icon.is-active .secnd-icon--off {
  display: none;
}

.secnd-follow-icon:not(.is-active) .secnd-icon--on {
  display: none;
}

.secnd-follow-icon:not(.is-active) .secnd-icon--off {
  display: inline-flex;
}

.secnd-message-icon.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.secnd-following-grid {
  display: grid;
  gap: 12px;
}

.secnd-following-grid .secnd-person-card {
  align-items: center;
}

.secnd-following__actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.secnd-person-card--columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.secnd-person-card__col--profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.secnd-person-card__col--action {
  justify-self: center;
}

.secnd-person-card__col--icon {
  justify-self: center;
}

.secnd-person-card--columns .secnd-person-card__avatar img {
  width: 48px;
  height: 48px;
}
.secnd-following-grid .secnd-person-card__avatar img {
  width: 48px;
  height: 48px;
}

.secnd-following-grid .secnd-person-card__meta strong {
  font-size: 15px;
}
.secnd-person-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.secnd-directory-grid .secnd-person-card__actions .secnd-btn {
  border: 1px solid var(--secnd-accent) !important;
  color: var(--secnd-accent) !important;
  background: #ffffff !important;
}

.secnd-directory-grid .secnd-person-card__actions .secnd-btn:hover {
  background: var(--secnd-accent) !important;
  color: #ffffff !important;
}

.secnd-directory-grid .secnd-follow-btn.is-active {
  background: var(--secnd-accent) !important;
  color: #ffffff !important;
  border-color: var(--secnd-accent) !important;
}

.secnd-directory-grid .secnd-follow-btn.is-active:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-person-card__message {
  justify-content: center;
  gap: 6px;
}

.secnd-person-card__message .secnd-menu-icon svg {
  width: 18px;
  height: 18px;
}

.secnd-person-card__message.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.secnd-modal--message .secnd-modal__close {
  color: var(--secnd-accent);
}

.secnd-toggle-row--nested {
  width: 100%;
}

@media (prefers-color-scheme: dark) {
  .secnd-modal--message .secnd-modal__content {
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.secnd-follow-btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.secnd-community__browse {
  min-width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--secnd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secnd-accent);
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.08);
  transition: 0.2s ease;
}

.secnd-community__browse svg {
  width: 18px;
  height: 18px;
}

.secnd-community__browse:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-follow-btn.is-active {
  border-color: var(--secnd-accent);
  color: var(--secnd-accent);
}

.secnd-follow-btn.is-active:hover {
  background: var(--secnd-accent);
  color: #ffffff;
  border-color: var(--secnd-accent);
}

.secnd-get-started {
  display: grid;
  gap: 24px;
  padding: 32px 16px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.secnd-get-started__back {
  color: var(--secnd-muted);
}

.secnd-get-started__card {
  max-width: 420px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6e7e8;
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.secnd-get-started__step-panel {
  display: none;
}

.secnd-get-started__step-panel.is-active {
  display: block;
}

.secnd-get-started__logo {
  height: 36px;
  width: auto;
  margin: 0 auto 4px;
}

.secnd-get-started__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--secnd-heading);
}

.secnd-get-started__actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.secnd-get-started__primary {
  color: #ffffff;
}

.secnd-get-started__primary:hover {
  color: #ffffff;
  background: var(--secnd-accent);
}

.secnd-get-started__form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.secnd-get-started__form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--secnd-text);
}

.secnd-get-started__form input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e6e7e8;
  background: #ffffff;
}

.secnd-get-started__status {
  min-height: 18px;
  font-size: 13px;
  color: var(--secnd-muted);
}

.secnd-get-started__status.is-error {
  color: #dc2626;
}

.secnd-get-started__status.is-success {
  color: #16a34a;
}

.secnd-get-started__helper {
  font-size: 13px;
  color: var(--secnd-muted);
}

.secnd-get-started__helper a {
  color: var(--secnd-accent);
  text-decoration: none;
}

.secnd-get-started__steps {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.secnd-get-started__step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  border-radius: 14px;
  padding: 16px;
}

.secnd-get-started__step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--secnd-accent-rgb), 0.15);
  color: var(--secnd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.secnd-get-started__plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.secnd-get-started__plan-title {
  text-align: center;
  margin-bottom: 8px;
}

.secnd-get-started__plan-title h2 {
  margin: 0;
  color: var(--secnd-heading);
}

.secnd-get-started__plan {
  background: #ffffff;
  border: 1px solid #e6e7e8;
  border-radius: 16px;
  padding: 20px;
  display: grid;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.secnd-get-started__plan--pro {
  border-color: rgba(var(--secnd-accent-rgb), 0.4);
}

.secnd-get-started__plan.is-selected {
  border-color: var(--secnd-accent);
  box-shadow: 0 0 0 2px rgba(var(--secnd-accent-rgb), 0.2);
}

.secnd-get-started__plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.secnd-get-started__price {
  font-weight: 700;
  color: var(--secnd-accent);
}

.secnd-get-started__plan ul {
  margin: 0;
  padding-left: 18px;
  color: #333333;
  display: grid;
  gap: 6px;
}

.secnd-get-started__plan-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.secnd-get-started__plan:hover {
  background: #ffffff;
  border-color: rgba(var(--secnd-accent-rgb), 0.4);
}

.secnd-get-started__disclaimer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 520px;
  margin: 0 auto;
  background: var(--secnd-surface);
  border: 1px solid var(--secnd-border);
  border-radius: 14px;
  padding: 14px 16px;
}

.secnd-get-started__shield {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--secnd-accent-rgb), 0.15);
  color: var(--secnd-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.secnd-get-started__shield svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .secnd-get-started__plans {
    grid-template-columns: 1fr;
  }
}

.secnd-empty {
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: grid;
  gap: 12px;
  background: var(--secnd-surface);
}

.secnd-empty__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  color: var(--secnd-muted);
}

.secnd-compose-error {
  color: #ef4444;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .secnd-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .secnd-directory-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .secnd-main {
    padding: calc(72px + env(safe-area-inset-top)) 16px calc(24px + env(safe-area-inset-bottom));
  }

  .secnd-section__header {
    display: grid;
    gap: 6px;
  }

  .secnd-stats-grid {
    grid-template-columns: 1fr;
  }

  .secnd-design-grid,
  .secnd-design-grid--cols-2,
  .secnd-design-grid--cols-3,
  .secnd-design-grid--cols-4 {
    grid-template-columns: 1fr;
  }

  .secnd-design-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .secnd-design-card--manage .secnd-design-card__header {
    flex-direction: row;
    align-items: center;
  }

  .secnd-design-card--manage .secnd-design-card__actions {
    align-items: center;
  }

  .secnd-analytics__actions,
  .secnd-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .secnd-analytics__actions .secnd-btn,
  .secnd-actions .secnd-btn {
    width: 100%;
  }

  .secnd-community__actions {
    grid-template-columns: 1fr;
  }

  .secnd-community__actions > * {
    width: 100%;
  }

  .secnd-community .secnd-design-grid {
    column-count: 1;
  }

  .secnd-community__browse,
  .secnd-community__filter-toggle,
  .secnd-community__feedback-btn {
    width: 100%;
    height: var(--secnd-community-action-height);
  }

  .secnd-directory__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .secnd-directory__actions input,
  .secnd-directory__actions select {
    width: 100%;
    min-width: 0;
  }

  .secnd-btn svg,
  .secnd-btn__icon svg,
  .secnd-menu-icon svg,
  .secnd-card__icon svg {
    width: 16px;
    height: 16px;
  }
}

.secnd-community__filter {
  position: relative;
  z-index: 100002;
}

.secnd-community__filter-toggle {
  border: 1px solid var(--secnd-accent);
  background: #ffffff;
  color: var(--secnd-accent);
  border-radius: var(--secnd-community-action-radius);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  transition: 0.2s ease;
}

.secnd-community__filter-toggle svg {
  width: 18px;
  height: 18px;
}

.secnd-community__filter-toggle:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-community__filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  padding: 6px;
  min-width: 180px;
  display: none;
  z-index: 100003;
}

.secnd-community__filter-menu.is-open {
  display: block;
}

.secnd-community__filter-menu button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  color: var(--secnd-text);
}

.secnd-community__filter-menu button:hover {
  background: rgba(0, 143, 200, 0.1);
  color: var(--secnd-accent);
}

.secnd-community__feedback-btn {
  border: 1px solid var(--secnd-accent);
  background: var(--secnd-accent);
  color: #ffffff;
  transition: 0.2s ease;
}

.secnd-community__feedback-btn:hover {
  background: #ffffff;
  color: var(--secnd-accent);
}

.secnd-community__feedback-btn .secnd-btn__icon {
  display: inline-flex;
  margin-right: 6px;
}

.secnd-community__feedback-btn svg {
  width: 16px;
  height: 16px;
}

.secnd-design-card__author {
  font-size: 13px;
  color: var(--secnd-muted);
  margin-bottom: 8px;
}

.secnd-community .secnd-design-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.secnd-design-card__responses {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secnd-text);
  font-weight: 600;
  font-size: 12px;
}

.secnd-design-card__responses-icon svg {
  width: 14px;
  height: 14px;
}

.secnd-design-card__responses-goal svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.secnd-design-card__voted {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.secnd-design-card__voted svg {
  width: 22px;
  height: 22px;
}

.secnd-design-card__voted {
  width: 44px;
  height: 44px;
  inset: auto;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border-radius: 999px;
  background: var(--secnd-accent);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
}

.secnd-design-card.is-voted .secnd-design-card__media img {
  filter: grayscale(100%);
  opacity: 0.4;
}

.secnd-community .secnd-design-card__menu,
.secnd-community .secnd-design-card__question,
.secnd-community .secnd-design-card__footer,
.secnd-community .secnd-design-card__votes {
  display: none;
}

.secnd-community .secnd-design-card__select {
  display: none;
}

.secnd-community .secnd-tag--status {
  display: none;
}

.secnd-community .secnd-design-card__stats span:not(:first-child) {
  display: none;
}

.secnd-community .secnd-design-grid {
  display: block;
  column-count: var(--secnd-community-columns, 4);
  column-gap: 16px;
}

.secnd-community .secnd-design-grid.is-masonry {
  display: block;
  column-count: var(--secnd-community-columns, 4);
  column-gap: 16px;
}

.secnd-community .secnd-design-grid.is-grid {
  display: grid;
  column-count: initial;
  column-gap: normal;
  grid-template-columns: repeat(var(--secnd-community-columns, 4), minmax(0, 1fr));
  gap: 16px;
}

.secnd-community .secnd-design-grid.is-grid .secnd-design-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  break-inside: auto;
}

.secnd-community .secnd-design-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--secnd-surface);
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 16px;
  break-inside: avoid;
}

.secnd-community .secnd-design-card__media img {
  border-radius: 12px;
  display: block;
}

.secnd-community .secnd-design-card__media {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .secnd-community__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .secnd-community__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "search search"
      "filter browse"
      "feedback feedback"
      "layout layout";
    gap: 10px;
  }

  .secnd-community__search input {
    min-width: 0;
    width: 100%;
  }

  .secnd-community__search {
    grid-area: search;
  }

  .secnd-community__filter {
    grid-area: filter;
  }

  .secnd-community__browse {
    grid-area: browse;
    width: 100%;
  }

  .secnd-community__feedback-btn {
    grid-area: feedback;
    width: 100%;
  }

  .secnd-community__layout {
    grid-area: layout;
    justify-content: center;
  }

  .secnd-community__feedback-btn {
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .secnd-community {
    padding-bottom: 16px;
  }

  .secnd-community .secnd-design-grid {
    column-count: 1 !important;
    column-gap: 12px;
  }

  .secnd-community .secnd-design-grid.is-masonry {
    column-count: 1 !important;
  }

  .secnd-community .secnd-design-grid.is-grid {
    grid-template-columns: 1fr !important;
  }

  .secnd-community .secnd-design-card {
    padding: 10px;
    display: block;
  }

  .secnd-community .secnd-design-card__media {
    width: 100%;
    height: auto;
  }

  .secnd-community .secnd-design-card__media img {
    width: 100%;
    height: auto;
  }
}

.secnd-feedback {
  display: grid;
  gap: 16px;
}

.secnd-feedback__image img {
  width: 100%;
  border-radius: 12px;
}

.secnd-feedback__vote {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.secnd-progress {
  flex: 1;
  height: 6px;
  background: var(--secnd-border);
  border-radius: 999px;
  overflow: hidden;
}

.secnd-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--secnd-accent);
  transition: width 0.2s ease;
}

.secnd-wizard {
  display: none;
  gap: 12px;
}

.secnd-wizard.is-active {
  display: grid;
}

.secnd-upload {
  border: 2px dashed var(--secnd-border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  background: #ffffff;
}

.secnd-upload.is-dragging {
  border-color: var(--secnd-accent);
  background: rgba(0, 143, 200, 0.06);
}

.secnd-upload__input {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.secnd-upload {
  position: relative;
  cursor: pointer;
}

.secnd-upload__previews {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.secnd-upload__previews img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--secnd-border);
}

.secnd-question-types {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.secnd-question-type {
  border: 1px solid var(--secnd-border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.secnd-question-type span {
  font-size: 18px;
}

.secnd-question-type input {
  margin: 0;
}

.secnd-question-type__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  color: var(--secnd-accent);
}

.secnd-mc-builder {
  display: none;
  gap: 12px;
}

.secnd-mc-builder__controls {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.secnd-mc-builder__counts {
  color: var(--secnd-muted);
  font-size: 13px;
}

.secnd-mc-builder__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.secnd-mc-builder__list {
  border: 1px solid var(--secnd-border);
  border-radius: 12px;
  padding: 12px;
  background: var(--secnd-surface);
}

.secnd-mc-builder__list h5 {
  margin: 0;
  font-size: 13px;
  color: var(--secnd-muted);
}

.secnd-mc-builder__options {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.secnd-mc-builder__option {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.secnd-mc-builder__option input {
  margin-top: 2px;
}

.secnd-question-type__icon svg {
  width: 18px;
  height: 18px;
}

.secnd-question-type.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.secnd-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.secnd-toggle-row > div,
.secnd-toggle-row > .secnd-pro-locked__content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.secnd-toggle-row .secnd-toggle {
  margin-top: 0;
}

.secnd-toggle-row .secnd-muted {
  margin: 0;
}

.secnd-toggle-row--nested {
  margin-top: 8px;
  padding-left: 36px;
  display: none;
  align-items: flex-start;
}

.secnd-toggle-row--stacked > div,
.secnd-toggle-row--stacked > .secnd-pro-locked__content {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.secnd-toggle-row--stacked .secnd-toggle-row--nested {
  width: 100%;
  padding-left: 0;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.secnd-toggle-row--stacked .secnd-toggle-row--nested .secnd-toggle-row__meta {
  padding-left: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  text-align: left;
}

.secnd-toggle-row--stacked .secnd-toggle-row--nested .secnd-toggle-row__note {
  display: block;
  margin-top: 6px;
}

.secnd-toggle-row__meta {
  display: grid;
  gap: 4px;
}

.secnd-toggle-row__note {
  font-size: 12px;
  color: var(--secnd-muted);
}



.secnd-category-picker {
  display: grid;
  gap: 8px;
}

.secnd-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.secnd-category-pill {
  border: 1px solid var(--secnd-border);
  background: var(--secnd-surface);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  color: var(--secnd-text);
}

.secnd-category-pill.is-active {
  border-color: var(--secnd-accent);
  background: rgba(0, 143, 200, 0.12);
  color: var(--secnd-accent);
}

.secnd-design-wizard__main .secnd-category-pills {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.secnd-design-wizard__main .secnd-category-pill {
  min-height: 140px;
  border-radius: 18px;
  border: 1px solid #dbe1ef;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--secnd-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.secnd-design-wizard__main .secnd-category-pill::before {
  content: none;
}

.secnd-design-wizard__main .secnd-category-pill__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef2f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.secnd-design-wizard__main .secnd-category-pill__icon svg {
  width: 22px;
  height: 22px;
}

.secnd-design-wizard__main .secnd-category-pill.is-active,
.secnd-design-wizard__main .secnd-category-pill:hover {
  border-color: var(--secnd-accent);
  box-shadow: 0 12px 22px rgba(98, 79, 255, 0.15);
  background: #f6f7ff;
}

.secnd-design-wizard__main .secnd-category-pill.is-active::before,
.secnd-design-wizard__main .secnd-category-pill:hover::before {
  background: rgba(98, 79, 255, 0.18);
}

.secnd-design-wizard__main .secnd-category-pill.is-active .secnd-category-pill__icon,
.secnd-design-wizard__main .secnd-category-pill:hover .secnd-category-pill__icon {
  background: rgba(98, 79, 255, 0.18);
  color: var(--secnd-accent);
}

.secnd-design-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.secnd-design-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.secnd-design-grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.secnd-design-grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.secnd-design-grid--cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.secnd-design-grid--cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .secnd-design-grid--cols-2,
  .secnd-design-grid--cols-3,
  .secnd-design-grid--cols-4,
  .secnd-design-grid--cols-5,
  .secnd-design-grid--cols-6 {
    grid-template-columns: 1fr;
  }

  #secnd-designs .secnd-design-grid {
    grid-template-columns: 1fr;
  }
}

#secnd-designs .secnd-design-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 2100px) {
  #secnd-designs .secnd-design-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1600px) and (max-width: 2099px) {
  #secnd-designs .secnd-design-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) and (max-width: 1599px) {
  #secnd-designs .secnd-design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #secnd-designs .secnd-design-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.secnd-design-card--manage {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #0f172a;
}

.secnd-design-card--manage .secnd-design-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
}

.secnd-design-card--manage .secnd-design-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.secnd-design-card--manage .secnd-design-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secnd-design-card--manage .secnd-design-card__tags {
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.secnd-design-card--manage .secnd-tag {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  white-space: nowrap;
}

.secnd-design-card--manage .secnd-tag--status {
  background: #ffffff;
  border-color: #10b981;
  color: #10b981;
}

.secnd-design-card--manage .secnd-tag--status.is-paused {
  background: #ffffff;
  border-color: #f59e0b;
  color: #f59e0b;
}

.secnd-design-card--manage .secnd-design-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  flex: 1;
}

.secnd-design-card--manage .secnd-design-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.secnd-design-card--manage .secnd-design-card__title {
  font-size: 18px;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.secnd-design-card--manage .secnd-design-card__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.secnd-design-card--manage .secnd-design-card__icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.secnd-design-card--manage .secnd-design-card__icon-btn svg {
  width: 16px;
  height: 16px;
}

.secnd-design-card--manage .secnd-design-card__icon-btn:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-design-card--manage .secnd-design-card__icon-btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.secnd-design-card--manage .secnd-design-card__menu {
  margin-left: auto;
  flex-shrink: 0;
}

.secnd-design-card--manage .secnd-design-card__actions .secnd-design-card__menu {
  margin-left: 0;
}

.secnd-design-card--manage .secnd-design-card__title a {
  color: #0f172a;
  text-decoration: none;
}

.secnd-design-card--manage .secnd-design-card__title a:hover {
  text-decoration: underline;
}

.secnd-design-card--manage .secnd-design-card__question {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  line-height: 1.4;
}

.secnd-design-card--manage .secnd-design-card__question-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-design-card--manage .secnd-design-card__question-icon svg {
  width: 18px;
  height: 18px;
}

.secnd-design-card--manage .secnd-design-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}

.secnd-design-card--manage .secnd-design-card__metrics span {
  font-size: 12px;
  color: #64748b;
}

.secnd-design-card--manage .secnd-design-card__metrics strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
  font-weight: 600;
}

.secnd-design-card--manage .secnd-design-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.secnd-design-card--manage .secnd-design-card__goal-bar-wrap {
  width: 100%;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.secnd-design-card--manage .secnd-design-card__goal-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 400;
}

.secnd-design-card--manage .secnd-design-card__menu {
  margin-left: auto;
  flex-shrink: 0;
}

.secnd-design-card--manage .secnd-analytics__goal-bar {
  width: 100%;
}

.secnd-design-card--manage .secnd-btn--primary {
  background: var(--secnd-accent);
  border-color: var(--secnd-accent);
  color: #ffffff;
  padding: 10px 18px;
  font-weight: 600;
}

.secnd-design-card--manage .secnd-btn--primary:hover {
  filter: brightness(0.95);
}

.secnd-design-card--manage .secnd-design-card__goal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.secnd-design-card--manage .secnd-design-card__goal-gauge {
  width: 80px;
  height: 40px;
  position: relative;
}

.secnd-design-card--manage .secnd-design-card__goal-gauge canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.secnd-design-card--manage .secnd-design-card__goal-gauge span {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.secnd-design-card--manage .secnd-design-card__menu-trigger {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.secnd-design-card--manage .secnd-design-card__menu-trigger:hover {
  background: var(--secnd-accent);
  color: #ffffff;
}

.secnd-design-card--manage .secnd-design-card__menu-trigger {
  color: #64748b;
}

.secnd-design-card--manage .secnd-design-card__menu-list {
  min-width: 180px;
}

@media (max-width: 900px) {
  #secnd-designs .secnd-design-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1024px) {
  #secnd-designs .secnd-design-grid {
    grid-template-columns: 1fr !important;
  }

  .secnd-analytics__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .secnd-grid--2-1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .secnd-sidebar {
    display: flex;
  }

  .secnd-main {
    padding: calc(72px + env(safe-area-inset-top)) 16px calc(24px + env(safe-area-inset-bottom));
  }

  .secnd-messages {
    grid-template-columns: 1fr;
  }

  .secnd-analytics__summary {
    grid-template-columns: 1fr;
  }

  .secnd-analytics__summary-stats {
    width: 100%;
  }

  .secnd-stats-grid--compact {
    grid-template-columns: 1fr;
  }

  .secnd-analytics__design {
    flex-direction: column;
    align-items: flex-start;
  }

  .secnd-analytics__design-info {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .secnd-analytics__thumb {
    width: 100%;
  }

  .secnd-analytics__thumb img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .secnd-analytics__design-btn {
    width: 100%;
  }

  #secnd-designs,
  #secnd-designs .secnd-designs,
  .secnd-designs__toolbar,
  .secnd-designs__filters,
  .secnd-designs__search {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .secnd-designs__toolbar {
    grid-template-columns: 1fr;
  }

  .secnd-designs__filters {
    flex-direction: column;
    align-items: stretch;
  }

  .secnd-designs__actions {
    width: 100%;
    min-width: 0;
  }

  .secnd-designs__actions .secnd-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .secnd-designs__filters select {
    width: 100%;
    box-sizing: border-box;
  }

  .secnd-designs__search input {
    width: 100%;
    box-sizing: border-box;
  }

  #secnd-designs,
  #secnd-designs .secnd-designs,
  #secnd-designs .secnd-design-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  #secnd-designs .secnd-design-card--manage {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    padding: 16px;
  }

  #secnd-designs .secnd-design-card--manage .secnd-design-card__body {
    padding: 0;
  }

  #secnd-designs .secnd-design-card--manage .secnd-design-card__media,
  #secnd-designs .secnd-design-card--manage .secnd-design-card__media img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.secnd-feedback-demo {
  margin: 0 auto;
  width: 100%;
}

.secnd-feedback-demo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.secnd-feedback-demo__panel {
  position: relative;
}

.secnd-feedback-demo__card {
  background: var(--secnd-demo-card-bg, #ffffff);
  border: 1px solid var(--secnd-demo-card-border, #e2e8f0);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 24px;
}

.secnd-feedback-demo__card-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--secnd-demo-muted, #64748b);
  margin-bottom: 16px;
}

.secnd-feedback-demo__card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
}

.secnd-feedback-demo__image {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  background: var(--secnd-demo-panel-bg, #f8fafc);
  border: 1px solid var(--secnd-demo-card-border, #e2e8f0);
}

.secnd-feedback-demo__placeholder {
  width: 100%;
  max-width: 340px;
  background: var(--secnd-demo-panel-bg, #f8fafc);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--secnd-demo-card-border, #e2e8f0);
  display: grid;
  gap: 12px;
}

.secnd-feedback-demo__placeholder-pill {
  height: 14px;
  width: 70px;
  border-radius: 999px;
  background: var(--secnd-demo-card-border, #e2e8f0);
}

.secnd-feedback-demo__placeholder-bar {
  height: 48px;
  width: 100%;
  border-radius: 12px;
  background: rgba(var(--secnd-demo-accent-rgb, 0, 143, 200), 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.secnd-feedback-demo__placeholder-bar.has-image {
  height: auto;
  padding: 0;
}

.secnd-feedback-demo__placeholder-bar img {
  height: auto;
  width: 100%;
  display: block;
  object-fit: cover;
}

.secnd-feedback-demo__placeholder-line {
  height: 12px;
  width: 75%;
  border-radius: 6px;
  background: var(--secnd-demo-card-border, #e2e8f0);
}

.secnd-feedback-demo__placeholder-line--wide {
  width: 90%;
}

.secnd-feedback-demo__question h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.secnd-feedback-demo__binary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.secnd-feedback-demo__choice {
  border: 1px solid var(--secnd-demo-choice-border, #e2e8f0);
  background: var(--secnd-demo-choice-bg, #ffffff);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease,
    background 0.2s ease;
}

.secnd-feedback-demo__choice:hover,
.secnd-feedback-demo__choice.is-selected {
  border-color: var(--secnd-demo-choice-hover-border, var(--secnd-demo-accent, #008fc8));
  background: var(--secnd-demo-choice-hover-bg, #ffffff);
  box-shadow: 0 0 0 3px rgba(var(--secnd-demo-accent-rgb, 0, 143, 200), 0.18);
  color: #0f172a;
}

.secnd-feedback-demo__choice-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-feedback-demo__choice-icon svg {
  width: 18px;
  height: 18px;
}

.secnd-feedback-demo__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--secnd-demo-muted, #94a3b8);
  margin: 12px 0 16px;
  font-size: 13px;
}

.secnd-feedback-demo__divider::before,
.secnd-feedback-demo__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--secnd-demo-card-border, #e2e8f0);
}

.secnd-feedback-demo__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.secnd-feedback-demo__submit {
  width: 100%;
  justify-content: center;
}

.secnd-feedback-demo__submit.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.secnd-feedback-demo__thanks {
  text-align: center;
  padding: 32px 24px;
  display: none;
}

.secnd-feedback-demo__thanks.is-visible {
  display: block;
}

.secnd-feedback-demo__question.is-hidden {
  display: none;
}

.secnd-feedback-demo__thanks-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--secnd-demo-accent, #008fc8);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secnd-feedback-demo__thanks-icon svg {
  width: 28px;
  height: 28px;
}

.secnd-feedback-demo__thanks h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.secnd-feedback-demo__thanks p {
  color: var(--secnd-demo-muted, #64748b);
  margin-bottom: 18px;
}

.secnd-feedback-demo__overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--secnd-demo-overlay-bg, rgba(15, 23, 42, 0.35));
  display: none;
  align-items: center;
  justify-content: center;
}

.secnd-feedback-demo__overlay.is-visible {
  display: flex;
}

.secnd-feedback-demo__overlay-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--secnd-demo-card-border, #e2e8f0);
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0f172a;
}

.secnd-feedback-demo__overlay-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secnd-demo-accent, #008fc8);
}

.secnd-feedback-demo__overlay-icon svg {
  width: 18px;
  height: 18px;
}

.secnd-feedback-demo .secnd-btn--primary.secnd-feedback-demo__submit {
  background: var(--secnd-demo-button-bg, var(--secnd-demo-accent, #008fc8));
  border-color: var(--secnd-demo-button-bg, var(--secnd-demo-accent, #008fc8));
  color: var(--secnd-demo-button-text, #ffffff);
}

.secnd-feedback-demo .secnd-btn--primary.secnd-feedback-demo__submit:hover {
  background: var(--secnd-demo-button-hover-bg, #0f172a);
  border-color: var(--secnd-demo-button-hover-bg, #0f172a);
  color: var(--secnd-demo-button-hover-text, #ffffff);
}

.secnd-feedback-demo .secnd-btn--ghost {
  border-color: var(--secnd-demo-card-border, #e2e8f0);
  color: var(--secnd-demo-muted, #64748b);
}

.secnd-feedback-demo .secnd-btn--ghost:hover {
  border-color: var(--secnd-demo-accent, #008fc8);
  color: var(--secnd-demo-accent, #008fc8);
}

@media (max-width: 1024px) {
  .secnd-feedback-demo__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .secnd-feedback-demo__binary,
  .secnd-feedback-demo__options {
    grid-template-columns: 1fr;
  }

  .secnd-feedback-demo__options,
  .secnd-feedback-demo__divider {
    display: none;
  }
}
