/* SooperKanoon Bonus features - Favorites, Notes, Tags, Annotations, Dashboard */

.sk-bonus-page .sk-card,
.sk-bonus-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.sk-bonus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sk-bonus-list-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.sk-bonus-list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sk-bonus-list-item:first-child {
  padding-top: 0;
}

.sk-bonus-list-body {
  flex: 1 1 240px;
  min-width: 0;
}

.sk-bonus-list-body h2,
.sk-bonus-list-body h3,
.sk-bonus-list-body h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.sk-bonus-list-body h2 a,
.sk-bonus-list-body h3 a,
.sk-bonus-list-body h4 a {
  color: #4f46e5;
  text-decoration: none;
}

.sk-bonus-list-body h2 a:hover,
.sk-bonus-list-body h3 a:hover,
.sk-bonus-list-body h4 a:hover {
  text-decoration: underline;
}

.sk-bonus-meta {
  margin: 0.15rem 0;
  font-size: 0.875rem;
  color: #64748b;
}

.sk-bonus-meta b,
.sk-bonus-meta strong {
  color: #334155;
  font-weight: 600;
}

.sk-bonus-list-actions {
  flex: 0 0 auto;
  align-self: center;
}

.sk-bonus-empty {
  margin: 2rem 0;
  padding: 2rem 1rem;
  text-align: center;
  color: #64748b;
  font-size: 1rem;
}

.sk-bonus-empty a:not(.sk-btn-primary):not(.sk-btn-outline) {
  color: #4f46e5;
}

/* Tag cloud pills */
.sk-result-tags {
  margin: 0.875rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid #e2e8f0;
}

.sk-result-tags--detail {
  margin: 0.75rem 0 0;
  padding: 0;
  border-top: 0;
}

.sk-result-tags__label {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.sk-result-tags .sk-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
}

.sk-result-tags + .sk-result-actions {
  margin-top: 0.625rem;
}

.sk-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
}

.sk-tag-cloud a,
.sk-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}

.sk-tag-cloud a:hover {
  background: #eef2ff;
  color: #4f46e5;
}

.sk-tag-cloud .sk-tag-count {
  color: #64748b;
  font-weight: 500;
  text-transform: none;
}

/* Result rows (annotations, tagged judgments) */
.sk-bonus-page .sk-result-row {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.sk-bonus-page .sk-result-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 640px) {
  .sk-bonus-page .sk-result-row--dated,
  .sk-bonus-page .sk-result-row:has(.sk-result-date) {
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.sk-bonus-page .sk-result-row--dated,
.sk-bonus-page .sk-result-row:has(.sk-result-date) {
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.sk-bonus-page .sk-result-date {
  align-self: start;
  width: 4.25rem;
  max-width: 4.25rem;
  flex-shrink: 0;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #64748b;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

@media (min-width: 640px) {
  .sk-bonus-page .sk-result-date {
    width: 5rem;
    max-width: 5rem;
    font-size: 0.75rem;
    border-radius: 12px;
  }
}

.sk-bonus-page .sk-result-date .date-m {
  display: block;
  padding: 4px;
  background: #4f46e5;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .sk-bonus-page .sk-result-date .date-m {
    padding: 6px 4px;
    font-size: 0.75rem;
  }
}

.sk-bonus-page .sk-result-date .date-d {
  display: block;
  padding: 4px 4px 2px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
  .sk-bonus-page .sk-result-date .date-d {
    padding: 6px 4px 2px;
    font-size: 1.5rem;
  }
}

.sk-bonus-page .sk-result-date .date-y,
.sk-bonus-page .sk-result-date span:not(.date-m):not(.date-d) {
  display: block;
  padding: 0 4px 5px;
  font-size: 0.6875rem;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
  .sk-bonus-page .sk-result-date .date-y,
  .sk-bonus-page .sk-result-date span:not(.date-m):not(.date-d) {
    padding: 0 4px 6px;
    font-size: 0.75rem;
  }
}

.sk-bonus-page .sk-result-body h2,
.sk-bonus-page .sk-result-body h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.sk-bonus-page .sk-result-body h2 a,
.sk-bonus-page .sk-result-body h4 a {
  color: #4f46e5;
  text-decoration: none;
}

.sk-bonus-page .sk-result-body h2 a:hover,
.sk-bonus-page .sk-result-body h4 a:hover {
  text-decoration: underline;
}

.sk-bonus-page .sk-result-body p {
  margin: 0.35rem 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

.sk-bonus-page .sk-annotation-block {
  margin: 0.5rem 0 0.75rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid #c7d2fe;
  background: #f8fafc;
  border-radius: 0 10px 10px 0;
  font-size: 0.875rem;
  color: #334155;
}

.sk-bonus-page .sk-annotation-block ul {
  margin: 0.25rem 0 0;
  padding-left: 0;
  list-style: none;
}

.sk-bonus-page .sk-result-actions {
  margin-top: 0.75rem;
}

/* Hide legacy inline note editor */
.sk-bonus-page .formsss,
.sk-bonus-page [id^="elm"] {
  display: none !important;
}

/* Buttons */
.sk-bonus-page .delefav,
.sk-bonus-page .delenote,
.sk-bonus-page .sk-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: #4f46e5;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.sk-bonus-page .delefav:hover,
.sk-bonus-page .delenote:hover,
.sk-bonus-page .sk-btn-danger:hover {
  background: #4338ca;
}

/* Forms */
.sk-bonus-form .form-group,
.sk-bonus-form .sk-form-group {
  margin-bottom: 1rem;
}

.sk-bonus-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.sk-bonus-form .form-control,
.sk-bonus-form select,
.sk-bonus-form textarea,
.sk-bonus-form input[type="text"],
.sk-bonus-form input[type="email"],
.sk-bonus-form input[type="password"],
.sk-bonus-form input[type="number"],
.sk-bonus-form input[type="date"] {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
  box-sizing: border-box;
}

.sk-bonus-form select {
  appearance: auto;
  cursor: pointer;
  min-height: 42px;
}

.sk-bonus-form .form-control:focus,
.sk-bonus-form select:focus,
.sk-bonus-form textarea:focus,
.sk-bonus-form input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.sk-bonus-form .btn-primary,
.sk-bonus-form button[type="submit"],
.sk-bonus-form input[type="submit"],
.sk-bonus-page .btn-primary,
.sk-bonus-page button[type="submit"],
.sk-bonus-page input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: none;
  min-height: 42px;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(to right, #4f46e5, #7c3aed);
  color: #fff !important;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.sk-bonus-form .btn-primary:hover,
.sk-bonus-form button[type="submit"]:hover,
.sk-bonus-form input[type="submit"]:hover,
.sk-bonus-page .btn-primary:hover,
.sk-bonus-page button[type="submit"]:hover,
.sk-bonus-page input[type="submit"]:hover {
  background: linear-gradient(to right, #4338ca, #6d28d9);
}

.sk-bonus-form .submit,
.sk-bonus-form .sk-form-actions,
.sk-bonus-page .sk-form-actions {
  margin-top: 1rem;
  clear: both;
}

.sk-bonus-form form.sk-form-row {
  align-items: flex-end;
}

.sk-bonus-form form.sk-form-row .btn-primary,
.sk-bonus-form form.sk-form-row button[type="submit"] {
  flex: 0 0 auto;
  align-self: flex-end;
}

.sk-bonus-form .checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.sk-bonus-form .sk-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.sk-bonus-form .sk-form-row .form-control {
  flex: 1 1 200px;
}

.sk-bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.sk-bonus-table th,
.sk-bonus-table td {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}

.sk-bonus-table th {
  width: 200px;
  background: #f8fafc;
  font-weight: 600;
  color: #475569;
}

@media (max-width: 639px) {
  .sk-bonus-table,
  .sk-bonus-table tbody,
  .sk-bonus-table tr,
  .sk-bonus-table th,
  .sk-bonus-table td {
    display: block;
    width: 100%;
  }

  .sk-bonus-table th {
    border-bottom: 0;
    padding-bottom: 0.25rem;
  }

  .sk-bonus-table td {
    padding-top: 0.25rem;
    padding-bottom: 0.875rem;
  }

  .sk-bonus-table tr + tr {
    margin-top: 0.25rem;
    padding-top: 0.25rem;
    border-top: 1px solid #e2e8f0;
  }
}

.sk-bonus-callout {
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #64748b;
}

/* Standalone form pages — single column, no side panels (centered via .sk-container mx-auto) */
.sk-container.sk-standalone-form-page {
  max-width: 40rem;
}

.sk-container.sk-standalone-form-page--narrow {
  max-width: 32rem;
}

/* Dashboard */
.sk-dashboard-page .sk-page-title {
  margin-bottom: 0.5rem;
}

.sk-dashboard-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 1rem 0 1.25rem;
  padding-bottom: 0;
  border-bottom: 1px solid #e2e8f0;
  align-items: flex-end;
}

.sk-dashboard-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: -1px;
  border-radius: 10px 10px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.sk-dashboard-nav a:hover {
  color: #4f46e5;
  background: #f8fafc;
}

.sk-dashboard-nav a.is-active {
  color: #4f46e5;
  background: #eef2ff;
  box-shadow: inset 0 -2px 0 #4f46e5;
}

.sk-dashboard-nav .sk-dashboard-nav-dropdown {
  position: relative;
  margin-bottom: -1px;
}

.sk-dashboard-nav .sk-dashboard-nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px 10px 0 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
}

.sk-dashboard-nav .sk-dashboard-nav-dropdown.sk-open > button,
.sk-dashboard-nav .sk-dashboard-nav-dropdown > button:hover {
  color: #4f46e5;
  background: #f8fafc;
}

.sk-dashboard-nav .sk-dashboard-nav-dropdown.sk-open > button.is-active {
  color: #4f46e5;
  background: #eef2ff;
  box-shadow: inset 0 -2px 0 #4f46e5;
}

.sk-dashboard-nav .sk-dashboard-nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 180px;
  margin: 4px 0 0;
  padding: 6px;
  list-style: none;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.sk-dashboard-nav .sk-dashboard-nav-dropdown.sk-open .sk-dashboard-nav-menu {
  display: block;
}

.sk-dashboard-nav .sk-dashboard-nav-menu a {
  display: block;
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: none;
  white-space: normal;
}

.sk-dashboard-nav .sk-dashboard-nav-menu a:hover {
  background: #f1f5f9;
}

.sk-dashboard-panel {
  margin-top: 0;
}

.sk-dashboard-section-title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-dashboard-section-title small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #64748b;
}

.sk-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .sk-dashboard-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.sk-dashboard-stat {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: #fff;
}

.sk-dashboard-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.sk-dashboard-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
}

.sk-dashboard-year-select {
  max-width: 220px;
  margin: 0 auto 1rem;
}

.sk-dashboard-year-select select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
  cursor: pointer;
}

.sk-dashboard-summary {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.sk-dashboard-summary b {
  color: #0f172a;
}

.sk-dashboard-charts {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

@media (min-width: 900px) {
  .sk-dashboard-charts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sk-dashboard-chart-box {
  min-height: 0;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-dashboard-chart-box .inlineChart,
.sk-dashboard-chart-box > span {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sk-dashboard-chart-box .inlineChart div,
.sk-dashboard-chart-box [id$="Div"] {
  width: 100% !important;
  max-width: 480px;
  margin: 0 auto !important;
  line-height: 0;
}

.sk-dashboard-chart-box object,
.sk-dashboard-chart-box embed,
.sk-dashboard-chart-box svg,
.sk-dashboard-chart-box canvas {
  display: block;
  margin: 0 auto;
}

.sk-dashboard-loading {
  text-align: center;
  padding: 1rem;
}

.sk-dashboard-usage-log {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.sk-dashboard-usage-log + .sk-dashboard-usage-log {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

/* User dashboard tabs */
.sk-dashboard-user-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #e2e8f0;
}

.sk-dashboard-user-tabs li a {
  display: inline-flex;
  padding: 10px 16px;
  margin-bottom: -1px;
  border-radius: 10px 10px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
}

.sk-dashboard-user-tabs li.active a,
.sk-dashboard-user-tabs li a.active,
.sk-dashboard-user-tabs li a.sk-tab-active {
  color: #4f46e5;
  background: #eef2ff;
  box-shadow: inset 0 -2px 0 #4f46e5;
}

.sk-dashboard-user-tabs li a:hover {
  color: #4f46e5;
  background: #f8fafc;
}

.sk-bonus-page .tab-content .tab-pane:not(.active) {
  display: none;
}

.sk-bonus-page .tab-pane.active {
  display: block;
}

.sk-breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.sk-breadcrumb a {
  color: #4f46e5;
  text-decoration: none;
}

.sk-breadcrumb a:hover {
  text-decoration: underline;
}

.sk-bonus-layout-with-sidebar {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

.sk-bonus-layout-with-sidebar > * {
  min-width: 0;
}

@media (min-width: 960px) {
  .sk-bonus-layout-with-sidebar {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }
}

.sk-bonus-sidebar .sk-tag-cloud {
  margin-top: 0;
}

.sk-bonus-sidebar .sk-tag-cloud a {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

/* Bonus feature hub pages (digest + crew + moot) share digest layout */
.sk-bonus-digest-page,
.sk-research-crew-page.sk-bonus-digest-page,
.sk-moot-forge-page.sk-bonus-digest-page {
  padding-top: 2rem;
  padding-bottom: 3rem;
  min-height: 32rem;
}

main#content .sk-bonus-digest-page {
  margin-bottom: 2rem;
}

.sk-bonus-digest-page .sk-bonus-hero {
  margin-bottom: 0;
}

.sk-bonus-digest-page .sk-badge,
.sk-lex-pulse-page .sk-badge-pulse,
.sk-cite-signal-page .sk-badge,
.sk-research-crew-page .sk-badge,
.sk-moot-forge-page .sk-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sk-bonus-digest-page .sk-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sk-bonus-digest-page .sk-page-actions .sk-btn-primary,
.sk-bonus-digest-page .sk-page-actions .sk-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.sk-bonus-digest-page .sk-card.sk-bonus-card {
  margin-top: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.sk-bonus-empty {
  text-align: center;
  padding: 2rem 1.5rem 2.25rem;
}

.sk-bonus-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(124, 58, 237, 0.08));
  color: #4f46e5;
  font-size: 1.35rem;
}

.sk-bonus-empty h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-bonus-empty p {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.sk-bonus-empty .sk-help-tip {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0;
}

.sk-bonus-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.sk-bonus-empty__actions .sk-btn-primary,
.sk-bonus-gate .sk-bonus-empty__actions .sk-btn-primary {
  color: #fff;
  text-decoration: none;
}

.sk-bonus-empty__actions .sk-btn-primary:hover,
.sk-bonus-empty__actions .sk-btn-primary:focus,
.sk-bonus-gate .sk-bonus-empty__actions .sk-btn-primary:hover,
.sk-bonus-gate .sk-bonus-empty__actions .sk-btn-primary:focus {
  color: #fff;
  text-decoration: none;
}

.sk-bonus-digest-page .sk-bonus-table-wrap {
  overflow-x: auto;
}

.sk-bonus-digest-page table.table {
  margin-bottom: 0;
  width: 100%;
}

.sk-bonus-digest-page table.table th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  border-bottom: 2px solid #e2e8f0;
}

.sk-bonus-digest-page table.table td {
  vertical-align: middle;
  padding: 0.85rem 0.75rem;
  border-color: #f1f5f9;
  font-size: 0.9375rem;
}

.sk-bonus-digest-page table.table td a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}

.sk-bonus-digest-page table.table td a:hover {
  text-decoration: underline;
}

.sk-bonus-digest-page .sk-digest-footnote {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.sk-bonus-gate {
  padding: 2rem 1.5rem;
  text-align: center;
}

.sk-bonus-gate h2 {
  margin: 0 0 0.5rem;
}

.sk-bonus-gate p {
  margin: 0 auto 1rem;
  max-width: 28rem;
  color: #475569;
  line-height: 1.6;
}

html[data-sk-theme="dark"] .sk-bonus-digest-page .sk-card.sk-bonus-card {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(148, 163, 184, 0.2);
}

html[data-sk-theme="dark"] .sk-bonus-empty h2,
html[data-sk-theme="dark"] .sk-bonus-gate h2 {
  color: #f1f5f9;
}

html[data-sk-theme="dark"] .sk-bonus-empty p,
html[data-sk-theme="dark"] .sk-bonus-gate p {
  color: #94a3b8;
}

.sk-moot-wizard-header--polished {
  padding: 0.5rem 0 0.25rem;
}

.sk-moot-wizard-header__progress-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #f1f5f9;
  overflow: hidden;
  min-width: 12rem;
}

.sk-moot-wizard-header__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.15), rgba(16, 185, 129, 0.12));
  transition: width 0.3s ease;
}

.sk-moot-wizard-header__progress-text {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}

/* MootForge memorial wizard */
.sk-moot-wizard-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.sk-moot-wizard-header__copy {
  flex: 1 1 20rem;
  min-width: 0;
}

.sk-moot-wizard-header__actions {
  flex-shrink: 0;
}

.sk-moot-wizard-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .sk-moot-wizard-layout {
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    align-items: start;
  }
}

.sk-moot-wizard-sidebar {
  padding: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
}

.sk-moot-wizard-progress {
  padding: 1rem 1rem 0.875rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}

.sk-moot-wizard-progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.sk-moot-wizard-progress__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.sk-moot-wizard-progress__count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4f46e5;
}

.sk-moot-wizard-progress__bar {
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.sk-moot-wizard-progress__bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  transition: width 0.25s ease;
}

.sk-moot-wizard-nav {
  list-style: none;
  margin: 0;
  padding: 0.75rem;
}

.sk-moot-wizard-nav .nav-header {
  padding: 0.5rem 0.75rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.sk-moot-wizard-nav li a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.sk-moot-wizard-nav li a .sk-moot-tab-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sk-moot-wizard-nav li[data-sk-moot-complete="1"] a .sk-moot-tab-num {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.sk-moot-wizard-nav li a .sk-moot-tab-text {
  flex: 1;
  min-width: 0;
}

.sk-moot-wizard-nav li a .sk-moot-tab-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: inherit;
}

.sk-moot-wizard-nav li a small {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.35;
  color: #94a3b8;
}

.sk-moot-wizard-nav li.active a,
.sk-moot-wizard-nav li a.active,
.sk-moot-wizard-nav li a.sk-tab-active {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.08));
  color: #312e81;
}

.sk-moot-wizard-nav li.active a .sk-moot-tab-num,
.sk-moot-wizard-nav li a.active .sk-moot-tab-num,
.sk-moot-wizard-nav li a.sk-tab-active .sk-moot-tab-num {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
}

.sk-moot-wizard-nav li.active a small,
.sk-moot-wizard-nav li a.active small,
.sk-moot-wizard-nav li a.sk-tab-active small {
  color: #6366f1;
}

.sk-moot-wizard-nav li a:hover:not(.active):not(.sk-tab-active) {
  background: #f8fafc;
  color: #0f172a;
}

.sk-moot-problem-ref {
  border-top: 1px solid #e2e8f0;
}

.sk-moot-problem-ref summary {
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  list-style: none;
}

.sk-moot-problem-ref summary::-webkit-details-marker {
  display: none;
}

.sk-moot-problem-ref summary::after {
  content: "Show";
  float: right;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6366f1;
}

.sk-moot-problem-ref[open] summary::after {
  content: "Hide";
}

.sk-moot-problem-ref__body {
  max-height: 12rem;
  overflow: auto;
  padding: 0 1rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
  border-top: 1px solid #f1f5f9;
}

.sk-moot-wizard-panel .tab-pane:not(.active) {
  display: none;
}

.sk-moot-wizard-panel {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.sk-moot-step__eyebrow {
  display: inline-block;
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6366f1;
}

.sk-moot-step__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.sk-moot-step__hint {
  margin: 0.5rem 0 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
}

.sk-moot-step__form {
  position: relative;
}

.sk-moot-step__status {
  margin-top: 0.875rem;
  padding: 0.75rem 0.875rem;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.sk-moot-step__status[hidden] {
  display: none !important;
}

.sk-moot-step__status--success {
  color: #166534;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}

.sk-moot-step__status--error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.sk-moot-step__status--info {
  color: #1e40af;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.sk-moot-step__loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
}

.sk-moot-step__loader[hidden] {
  display: none !important;
}

.sk-moot-step__loader-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e0e7ff;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
  color: #4338ca;
  font-size: 0.9375rem;
  font-weight: 600;
}

.sk-moot-step__loader-spinner {
  color: #6366f1;
  font-size: 1.125rem;
}

.sk-moot-ai-suggestion--fresh {
  animation: sk-moot-suggestion-in 0.35s ease;
}

@keyframes sk-moot-suggestion-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.sk-moot-step__form.is-busy .sk-moot-step__actions {
  opacity: 0.55;
}

.sk-moot-step__label {
  display: block;
  margin: 1.25rem 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.sk-moot-step__textarea {
  min-height: 18rem;
  resize: vertical;
  line-height: 1.6;
}

.sk-moot-ai-suggestion {
  margin-top: 1rem;
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  background: linear-gradient(145deg, #fafbff 0%, #eef2ff 100%);
  overflow: hidden;
}

.sk-moot-ai-suggestion__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e0e7ff;
  font-size: 0.875rem;
  color: #4338ca;
}

.sk-moot-ai-suggestion__head .fa {
  color: #6366f1;
}

.sk-moot-ai-suggestion__body {
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
  white-space: pre-wrap;
}

.sk-moot-step__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.sk-moot-step__actions-primary,
.sk-moot-step__actions-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

@media (max-width: 991px) {
  .sk-moot-wizard-sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  }

  .sk-moot-wizard-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.375rem;
    padding: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .sk-moot-wizard-nav::-webkit-scrollbar {
    display: none;
  }

  .sk-moot-wizard-nav .nav-header,
  .sk-moot-problem-ref {
    display: none;
  }

  .sk-moot-wizard-nav li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .sk-moot-wizard-nav li a {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 5.5rem;
    max-width: 7.5rem;
    padding: 0.625rem 0.75rem;
    gap: 0.375rem;
  }

  .sk-moot-wizard-nav li a .sk-moot-tab-text strong {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .sk-moot-wizard-nav li a small {
    display: none;
  }

  .sk-moot-wizard-nav li a .sk-moot-tab-num {
    width: 24px;
    height: 24px;
    font-size: 0.6875rem;
  }

  .sk-moot-wizard-progress {
    padding: 0.75rem 0.875rem;
  }

  .sk-moot-step__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sk-moot-step__actions-primary,
  .sk-moot-step__actions-nav {
    width: 100%;
  }

  .sk-moot-step__actions-primary .sk-btn-primary,
  .sk-moot-step__actions-primary .sk-btn-outline,
  .sk-moot-step__actions-nav .sk-btn-outline {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* Research Crew hub */
.sk-research-crew-hub {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.sk-rc-hero {
  position: relative;
  display: grid;
  gap: 1.75rem;
  overflow: hidden;
  margin: 0 0 2rem;
  padding: 2.25rem 1.5rem 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #0c4a6e 0%, #1e3a8a 38%, #312e81 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.32);
}

@media (min-width: 900px) {
  .sk-rc-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    align-items: center;
    gap: 2rem;
    padding: 2.75rem 2.25rem 3rem;
  }
}

.sk-rc-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(56, 189, 248, 0.45) 0%, transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(129, 140, 248, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 55% 95%, rgba(45, 212, 191, 0.28) 0%, transparent 48%);
  pointer-events: none;
}

.sk-rc-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.sk-rc-hero__glow--1 {
  width: 240px;
  height: 240px;
  top: -70px;
  right: -50px;
  background: rgba(56, 189, 248, 0.4);
}

.sk-rc-hero__glow--2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: 8%;
  background: rgba(99, 102, 241, 0.38);
}

.sk-rc-hero__inner {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.sk-rc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.sk-rc-hero__pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.6);
  animation: sk-rc-pulse 2s ease-out infinite;
}

@keyframes sk-rc-pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(45, 212, 191, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

.sk-rc-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sk-rc-hero__subtitle {
  margin: 0 0 1.15rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.92);
}

.sk-rc-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.sk-rc-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e0f2fe;
}

.sk-rc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sk-rc-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sk-rc-hero__btn--primary {
  color: #0c4a6e;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

.sk-rc-hero__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.3);
  color: #0c4a6e;
}

.sk-rc-hero__btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.sk-rc-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-1px);
}

.sk-rc-hero__btn--solid {
  color: #fff !important;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.sk-rc-hero__btn--solid:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.sk-rc-hero__btn--outline {
  color: #4f46e5;
  background: #fff;
  border: 1px solid #e0e7ff;
}

.sk-rc-hero__btn--outline:hover {
  background: #eef2ff;
  color: #4338ca;
  transform: translateY(-1px);
}

.sk-rc-hero__visual {
  position: relative;
  z-index: 1;
  display: none;
  min-height: 220px;
}

@media (min-width: 900px) {
  .sk-rc-hero__visual {
    display: block;
  }
}

.sk-rc-hero__card {
  position: absolute;
  padding: 0.875rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
  animation: sk-rc-card-float 6s ease-in-out infinite;
}

.sk-rc-hero__card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.sk-rc-hero__card small {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.8);
}

.sk-rc-hero__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #a5f3fc;
  font-size: 0.9375rem;
}

.sk-rc-hero__card--1 {
  top: 0;
  left: 0;
  width: 9.5rem;
}

.sk-rc-hero__card--2 {
  top: 3.5rem;
  right: 0;
  width: 10.5rem;
  animation-delay: -2s;
}

.sk-rc-hero__card--3 {
  bottom: 0;
  left: 18%;
  width: 9rem;
  animation-delay: -4s;
}

@keyframes sk-rc-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.sk-rc-flow {
  margin-bottom: 2rem;
}

.sk-rc-flow__title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.sk-rc-flow__grid {
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .sk-rc-flow__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.sk-rc-flow__step {
  padding: 1.125rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.sk-rc-flow__step:hover {
  border-color: #c7d2fe;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
  transform: translateY(-2px);
}

.sk-rc-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.625rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
}

.sk-rc-flow__step strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-rc-flow__step p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.sk-rc-empty {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.5rem 2.75rem;
  border: 1px solid #e0e7ff;
  border-radius: 1.25rem;
  background: linear-gradient(165deg, #fafbff 0%, #eef2ff 55%, #f0fdfa 100%);
  text-align: center;
}

.sk-rc-empty__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sk-rc-empty__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.125rem;
  border-radius: 1.125rem;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.3);
}

.sk-rc-empty h2 {
  position: relative;
  margin: 0 0 0.625rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.sk-rc-empty > p {
  position: relative;
  margin: 0 auto;
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

.sk-rc-empty .sk-help-tip {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0;
}

.sk-rc-empty__hint {
  position: relative;
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.sk-rc-empty__hint em {
  font-style: normal;
  color: #6366f1;
  font-weight: 500;
}

.sk-rc-empty__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sk-rc-workspace {
  margin-top: 0;
}

.sk-rc-workspace__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.125rem;
}

.sk-rc-workspace__title {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-rc-workspace__desc {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.sk-rc-workspace__add {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sk-rc-workspace__add:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
  color: #fff !important;
}

.sk-rc-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .sk-rc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sk-rc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sk-rc-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  text-decoration: none !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.sk-rc-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.1);
  transform: translateY(-3px);
}

.sk-rc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.sk-rc-status {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sk-rc-status--public {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.sk-rc-status--private {
  background: #f1f5f9;
  color: #64748b;
}

.sk-rc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.08));
  color: #4f46e5;
  font-size: 0.9375rem;
}

.sk-rc-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.sk-rc-card__excerpt {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.sk-rc-card__meta {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.sk-rc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #4f46e5;
}

.sk-rc-card:hover .sk-rc-card__cta {
  color: #4338ca;
}

.sk-rc-gate {
  margin-top: 0;
}

.sk-rc-explore-hero {
  margin-bottom: 1.5rem;
}

.sk-rc-explore-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.sk-rc-explore-hero p {
  margin: 0;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.55;
}

.sk-rc-explore-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
}

.sk-rc-explore-back:hover {
  text-decoration: underline;
}

.sk-rc-create-shell h1 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.sk-rc-create-shell .sk-rc-create-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.55;
}

.sk-rc-create-form {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.sk-rc-create-form .form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.sk-rc-create-form .sk-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.9375rem;
  box-sizing: border-box;
}

.sk-rc-create-form .sk-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.sk-rc-create-form .sk-create-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.45;
}

.sk-rc-create-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

html[data-sk-theme="dark"] .sk-rc-flow__title,
html[data-sk-theme="dark"] .sk-rc-workspace__title,
html[data-sk-theme="dark"] .sk-rc-empty h2,
html[data-sk-theme="dark"] .sk-rc-card__title,
html[data-sk-theme="dark"] .sk-rc-explore-hero h1,
html[data-sk-theme="dark"] .sk-rc-create-shell h1 {
  color: #f1f5f9;
}

html[data-sk-theme="dark"] .sk-rc-flow__step {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(148, 163, 184, 0.2);
}

html[data-sk-theme="dark"] .sk-rc-flow__step strong {
  color: #f1f5f9;
}

html[data-sk-theme="dark"] .sk-rc-flow__step p,
html[data-sk-theme="dark"] .sk-rc-workspace__desc,
html[data-sk-theme="dark"] .sk-rc-empty > p,
html[data-sk-theme="dark"] .sk-rc-explore-hero p,
html[data-sk-theme="dark"] .sk-rc-create-shell .sk-rc-create-lead {
  color: #94a3b8;
}

html[data-sk-theme="dark"] .sk-rc-empty {
  background: linear-gradient(165deg, rgba(30, 27, 75, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
  border-color: rgba(129, 140, 248, 0.2);
}

html[data-sk-theme="dark"] .sk-rc-card,
html[data-sk-theme="dark"] .sk-rc-create-form {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(148, 163, 184, 0.2);
}

html[data-sk-theme="dark"] .sk-rc-card__excerpt {
  color: #94a3b8;
}

html[data-sk-theme="dark"] .sk-rc-hero__btn--outline {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(129, 140, 248, 0.3);
  color: #c7d2fe;
}

/* Research Crew — view page */
.sk-rc-view-header {
  margin-bottom: 1.5rem;
}

.sk-rc-view-header__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.sk-rc-view-header__count {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}

.sk-rc-view-header__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sk-rc-view-header__desc {
  margin: 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

.sk-rc-view-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .sk-rc-view-layout {
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    align-items: start;
  }
}

.sk-rc-view-sidebar {
  display: grid;
  gap: 1rem;
}

.sk-rc-view-panel {
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.sk-rc-view-panel__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-rc-view-panel__title .fa {
  color: #4f46e5;
}

.sk-rc-view-panel .sk-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.9375rem;
  box-sizing: border-box;
}

.sk-rc-view-panel .sk-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.sk-rc-view-feed {
  min-width: 0;
}

.sk-rc-view-feed__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sk-rc-view-feed__head h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-rc-view-feed__meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
}

.sk-rc-view-empty {
  padding: 2.5rem 1.5rem;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
  text-align: center;
}

.sk-rc-view-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: #eef2ff;
  color: #6366f1;
  font-size: 1.25rem;
}

.sk-rc-view-empty p {
  margin: 0;
  font-size: 0.9375rem;
  color: #64748b;
}

.sk-rc-entry-list {
  display: grid;
  gap: 0.875rem;
}

.sk-rc-entry {
  padding: 1.125rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #818cf8;
  border-radius: 0 12px 12px 0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sk-rc-entry:hover {
  border-left-color: #4f46e5;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.08);
}

.sk-rc-entry__case {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5 !important;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none !important;
}

.sk-rc-entry__case:hover {
  background: #e0e7ff;
}

.sk-rc-entry__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
}

.sk-rc-entry__time {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

html[data-sk-theme="dark"] .sk-rc-view-header__title,
html[data-sk-theme="dark"] .sk-rc-view-feed__head h2,
html[data-sk-theme="dark"] .sk-rc-view-panel__title {
  color: #f1f5f9;
}

html[data-sk-theme="dark"] .sk-rc-view-header__desc,
html[data-sk-theme="dark"] .sk-rc-view-empty p {
  color: #94a3b8;
}

html[data-sk-theme="dark"] .sk-rc-view-panel,
html[data-sk-theme="dark"] .sk-rc-entry {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(148, 163, 184, 0.2);
}

html[data-sk-theme="dark"] .sk-rc-view-empty {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(148, 163, 184, 0.25);
}

html[data-sk-theme="dark"] .sk-rc-entry__body {
  color: #cbd5e1;
}

/* ── MootForge hub (marketing landing) ── */
.sk-moot-forge-hub {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
}

.sk-moot-forge-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 2rem;
  margin: 0 0 2.5rem;
  padding: 2.25rem 1.5rem 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #0c1222 0%, #1a1640 38%, #2e1065 72%, #1e3a5f 100%);
  color: #fff;
  box-shadow:
    0 24px 60px rgba(46, 16, 101, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

@media (min-width: 900px) {
  .sk-moot-forge-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
    align-items: center;
    padding: 2.75rem 2.5rem 3rem;
  }
}

.sk-moot-forge-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(16, 185, 129, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(124, 58, 237, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 70% 85%, rgba(99, 102, 241, 0.3) 0%, transparent 48%);
  pointer-events: none;
}

.sk-moot-forge-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.sk-moot-forge-hero__glow--1 {
  width: 240px;
  height: 240px;
  top: -70px;
  right: 5%;
  background: rgba(124, 58, 237, 0.5);
}

.sk-moot-forge-hero__glow--2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: 8%;
  background: rgba(16, 185, 129, 0.35);
}

.sk-moot-forge-hero__inner {
  position: relative;
  z-index: 1;
}

.sk-moot-forge-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sk-moot-forge-hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: sk-moot-pulse 2s ease-in-out infinite;
}

@keyframes sk-moot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
}

.sk-moot-forge-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sk-moot-forge-hero__subtitle {
  margin: 0.875rem 0 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.sk-moot-forge-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.sk-moot-forge-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.sk-moot-forge-hero__chip .fa {
  opacity: 0.85;
  font-size: 0.75rem;
}

.sk-moot-forge-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.sk-moot-forge-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sk-moot-forge-hero__btn--primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.sk-moot-forge-hero__btn--primary:hover,
.sk-moot-forge-hero__btn--primary:focus {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.45);
}

.sk-moot-forge-hero__btn--solid {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.sk-moot-forge-hero__btn--solid:hover,
.sk-moot-forge-hero__btn--solid:focus {
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.4);
}

.sk-moot-forge-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.sk-moot-forge-hero__btn--ghost:hover,
.sk-moot-forge-hero__btn--ghost:focus {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.16);
}

.sk-moot-forge-hero__btn--outline {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334155;
}

.sk-moot-forge-hero__btn--outline:hover,
.sk-moot-forge-hero__btn--outline:focus {
  color: #4f46e5;
  text-decoration: none;
  border-color: #c7d2fe;
  background: #f8fafc;
}

.sk-moot-forge-hero__visual {
  position: relative;
  z-index: 1;
  display: none;
  min-height: 220px;
}

@media (min-width: 900px) {
  .sk-moot-forge-hero__visual {
    display: block;
  }
}

.sk-moot-forge-hero__card {
  position: absolute;
  padding: 0.875rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  animation: sk-moot-float 6s ease-in-out infinite;
}

.sk-moot-forge-hero__card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}

.sk-moot-forge-hero__card small {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.sk-moot-forge-hero__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
  font-size: 0.9rem;
}

.sk-moot-forge-hero__card--1 {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.sk-moot-forge-hero__card--2 {
  top: 35%;
  right: 0;
  animation-delay: -2s;
}

.sk-moot-forge-hero__card--3 {
  bottom: 0;
  left: 15%;
  animation-delay: -4s;
}

@keyframes sk-moot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* How it works */
.sk-moot-forge-flow {
  margin-bottom: 2.5rem;
}

.sk-moot-forge-flow__title {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

.sk-moot-forge-flow__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sk-moot-forge-flow__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.sk-moot-forge-flow__step {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sk-moot-forge-flow__step:hover {
  border-color: #c7d2fe;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
}

.sk-moot-forge-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
}

.sk-moot-forge-flow__step strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.sk-moot-forge-flow__step p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

/* Empty state */
.sk-moot-forge-empty {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3rem 1.5rem 3.25rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #fafbff 0%, #fff 55%, #f8fafc 100%);
  border: 1px dashed #c7d2fe;
}

.sk-moot-forge-empty__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 320px;
  height: 320px;
  margin-left: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sk-moot-forge-empty__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(16, 185, 129, 0.12));
  color: #4f46e5;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
}

.sk-moot-forge-empty h2 {
  position: relative;
  margin: 0 0 0.625rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.sk-moot-forge-empty > p {
  position: relative;
  margin: 0 auto;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

.sk-moot-forge-empty .sk-help-tip {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0;
}

.sk-moot-forge-empty__hint {
  position: relative;
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: italic;
}

.sk-moot-forge-empty__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Workspace + problem cards */
.sk-moot-forge-workspace__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
}

.sk-moot-forge-workspace__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.sk-moot-forge-workspace__desc {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  color: #64748b;
}

.sk-moot-forge-workspace__add {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #4f46e5;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.sk-moot-forge-workspace__add:hover,
.sk-moot-forge-workspace__add:focus {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #4338ca;
  text-decoration: none;
}

.sk-moot-forge-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .sk-moot-forge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sk-moot-forge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sk-moot-forge-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sk-moot-forge-card:hover,
.sk-moot-forge-card:focus {
  text-decoration: none;
  color: inherit;
  transform: translateY(-3px);
  border-color: #c7d2fe;
  box-shadow:
    0 16px 40px rgba(79, 70, 229, 0.12),
    0 0 0 1px rgba(79, 70, 229, 0.06);
}

.sk-moot-forge-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.sk-moot-status {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sk-moot-status--active {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.sk-moot-status--done {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.sk-moot-forge-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.08));
  color: #6366f1;
  font-size: 0.9rem;
}

.sk-moot-forge-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.sk-moot-forge-card:hover .sk-moot-forge-card__title {
  color: #4f46e5;
}

.sk-moot-forge-card__meta {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.sk-moot-forge-card__progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.sk-moot-forge-card__progress-bar {
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.sk-moot-forge-card__progress-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4f46e5, #10b981);
  transition: width 0.3s ease;
}

.sk-moot-forge-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4f46e5;
}

.sk-moot-forge-card__cta .fa {
  font-size: 0.75rem;
  transition: transform 0.15s ease;
}

.sk-moot-forge-card:hover .sk-moot-forge-card__cta .fa {
  transform: translateX(3px);
}

.sk-moot-forge-gate {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

/* Upload form */
.sk-moot-forge-add-header {
  margin-bottom: 1.75rem;
}

.sk-moot-forge-add-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(124, 58, 237, 0.08));
  color: #4f46e5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sk-moot-forge-add-header__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.sk-moot-forge-add-header__desc {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.sk-moot-forge-form {
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.sk-moot-forge-form__section {
  margin-bottom: 1.25rem;
}

.sk-moot-forge-form__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.sk-moot-forge-form__input,
.sk-moot-forge-form__textarea {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #0f172a;
  background: #fafbfc;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.sk-moot-forge-form__input:focus,
.sk-moot-forge-form__textarea:focus {
  outline: none;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
  background: #fff;
}

.sk-moot-forge-form__textarea {
  resize: vertical;
  min-height: 10rem;
}

.sk-moot-forge-form__hint {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.sk-moot-forge-form__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #94a3b8;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sk-moot-forge-form__divider::before,
.sk-moot-forge-form__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.sk-moot-forge-form__dropzone {
  position: relative;
  padding: 2rem 1.5rem;
  border: 2px dashed #c7d2fe;
  border-radius: 14px;
  background: linear-gradient(180deg, #fafbff 0%, #f8fafc 100%);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.sk-moot-forge-form__dropzone:hover {
  border-color: #818cf8;
  background: #f5f3ff;
}

.sk-moot-forge-form__dropzone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  font-size: 1.25rem;
}

.sk-moot-forge-form__dropzone p {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  color: #334155;
}

.sk-moot-forge-form__dropzone small {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.sk-moot-forge-form__file {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.sk-moot-forge-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
}

.sk-moot-forge-form__actions button {
  border: none;
  cursor: pointer;
}

/* ── Notes workspace (marketing-grade UI) ── */
.sk-notes-page {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #fafbff 0%, #f8fafc 40%, #fff 100%);
}

.sk-notes-page .sk-breadcrumb {
  margin-bottom: 1.25rem;
}

.sk-notes-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 2rem 1.5rem 2.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 38%, #4338ca 72%, #3730a3 100%);
  color: #fff;
  box-shadow:
    0 20px 50px rgba(49, 46, 129, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.sk-notes-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 88% 12%, rgba(129, 140, 248, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 72% 88%, rgba(167, 139, 250, 0.25) 0%, transparent 48%);
  pointer-events: none;
}

.sk-notes-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.sk-notes-hero__glow--1 {
  width: 220px;
  height: 220px;
  top: -60px;
  right: 8%;
  background: rgba(124, 58, 237, 0.45);
}

.sk-notes-hero__glow--2 {
  width: 180px;
  height: 180px;
  bottom: -50px;
  left: 6%;
  background: rgba(251, 191, 36, 0.25);
}

.sk-notes-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .sk-notes-hero {
    padding: 2.5rem 2.25rem 2.75rem;
  }

  .sk-notes-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
    gap: 2rem;
  }
}

.sk-notes-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fde68a;
}

.sk-notes-hero__eyebrow .fa {
  color: #fbbf24;
}

.sk-notes-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.625rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
}

.sk-notes-hero__title span {
  background: linear-gradient(90deg, #fde68a, #fef3c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sk-notes-hero__desc {
  margin: 0;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #c7d2fe;
}

.sk-notes-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.sk-notes-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.sk-notes-hero__chip .fa {
  opacity: 0.85;
  font-size: 0.75rem;
}

.sk-notes-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sk-notes-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sk-notes-hero__btn--primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e1b4b;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.35);
}

.sk-notes-hero__btn--primary:hover,
.sk-notes-hero__btn--primary:focus {
  color: #1e1b4b;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.45);
}

.sk-notes-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.sk-notes-hero__btn--ghost:hover,
.sk-notes-hero__btn--ghost:focus {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.16);
}

.sk-notes-hero__visual {
  position: relative;
  display: none;
  min-height: 220px;
}

@media (min-width: 960px) {
  .sk-notes-hero__visual {
    display: block;
  }
}

.sk-notes-hero__card {
  position: absolute;
  padding: 0.875rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  animation: sk-notes-float 6s ease-in-out infinite;
}

.sk-notes-hero__card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}

.sk-notes-hero__card small {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.sk-notes-hero__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.22);
  color: #fde68a;
  font-size: 0.9rem;
}

.sk-notes-hero__card--1 {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.sk-notes-hero__card--2 {
  top: 34%;
  right: 0;
  animation-delay: -2s;
}

.sk-notes-hero__card--3 {
  bottom: 0;
  left: 12%;
  animation-delay: -4s;
}

@keyframes sk-notes-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.sk-notes-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 639px) {
  .sk-notes-stats {
    grid-template-columns: 1fr;
  }
}

.sk-notes-stat {
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sk-notes-stat:hover {
  border-color: #c7d2fe;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
}

.sk-notes-stat--accent {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(124, 58, 237, 0.04));
  border-color: #c7d2fe;
}

.sk-notes-stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #4f46e5;
  font-variant-numeric: tabular-nums;
}

.sk-notes-stat__value--text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #312e81;
}

.sk-notes-stat__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sk-notes-workspace {
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.sk-notes-workspace__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}

.sk-notes-workspace__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.sk-notes-workspace__desc {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  color: #64748b;
}

.sk-notes-search {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: 1 1 260px;
  max-width: 360px;
  padding: 0.625rem 1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sk-notes-search:focus-within {
  background: #fff;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.sk-notes-search .fa {
  color: #94a3b8;
  font-size: 0.875rem;
}

.sk-notes-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 0.9375rem;
  color: #0f172a;
  outline: none;
}

.sk-notes-search input::placeholder {
  color: #94a3b8;
}

.sk-notes-grid {
  display: grid;
  gap: 1rem;
}

.sk-notes-card {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
  border: 1px solid #e2e8f0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

@media (min-width: 640px) {
  .sk-notes-card {
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
  }
}

.sk-notes-card:hover {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  box-shadow:
    0 12px 32px rgba(79, 70, 229, 0.1),
    0 0 0 1px rgba(79, 70, 229, 0.04);
}

.sk-notes-card__date {
  align-self: start;
}

.sk-notes-card__title {
  margin: 0 0 0.625rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
}

.sk-notes-card__title a {
  color: #4f46e5;
  text-decoration: none;
  transition: color 0.12s ease;
}

.sk-notes-card__title a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.sk-notes-card__content {
  margin: 0 0 1rem;
  padding: 0.875rem 1rem;
  border-left: 3px solid #c7d2fe;
  border-radius: 0 12px 12px 0;
  background: #fff;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
  max-height: 8.5rem;
  overflow: hidden;
  position: relative;
}

.sk-notes-card__content::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.5rem;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
}

.sk-notes-card:hover .sk-notes-card__content {
  max-height: none;
}

.sk-notes-card:hover .sk-notes-card__content::after {
  display: none;
}

.sk-notes-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.sk-notes-card__open {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.sk-notes-card__open:hover,
.sk-notes-card__open:focus {
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.sk-notes-page .sk-notes-card__delete {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid #fecaca;
  border-radius: 999px;
  background: #fff;
  color: #b91c1c;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.sk-notes-page .sk-notes-card__delete:hover {
  background: #fef2f2;
  border-color: #fca5a5;
}

.sk-notes-no-results {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #64748b;
}

.sk-notes-no-results[hidden] {
  display: none !important;
}

.sk-notes-no-results__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 1.125rem;
}

.sk-notes-empty,
.sk-notes-gate {
  position: relative;
  overflow: hidden;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.5rem 3.25rem;
  border-radius: 20px;
}

.sk-notes-empty__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 320px;
  height: 320px;
  margin-left: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sk-notes-empty__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(251, 191, 36, 0.12));
  color: #4f46e5;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
}

.sk-notes-empty h2,
.sk-notes-gate h2 {
  position: relative;
  margin: 0 0 0.625rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.sk-notes-empty > p,
.sk-notes-gate > p {
  position: relative;
  margin: 0 auto 1rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

.sk-notes-empty .sk-help-tip,
.sk-notes-gate .sk-help-tip {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0;
}

.sk-notes-empty__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sk-notes-empty__hint {
  position: relative;
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: italic;
}

html[data-sk-theme="dark"] .sk-notes-page {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

html[data-sk-theme="dark"] .sk-notes-stat,
html[data-sk-theme="dark"] .sk-notes-workspace,
html[data-sk-theme="dark"] .sk-notes-card {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(148, 163, 184, 0.2);
}

html[data-sk-theme="dark"] .sk-notes-workspace__title,
html[data-sk-theme="dark"] .sk-notes-empty h2,
html[data-sk-theme="dark"] .sk-notes-gate h2 {
  color: #f1f5f9;
}

html[data-sk-theme="dark"] .sk-notes-workspace__desc,
html[data-sk-theme="dark"] .sk-notes-empty > p,
html[data-sk-theme="dark"] .sk-notes-gate > p {
  color: #94a3b8;
}

html[data-sk-theme="dark"] .sk-notes-search {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.2);
}

html[data-sk-theme="dark"] .sk-notes-search input {
  color: #f1f5f9;
}

html[data-sk-theme="dark"] .sk-notes-card__content {
  background: rgba(30, 41, 59, 0.5);
  color: #cbd5e1;
}

html[data-sk-theme="dark"] .sk-notes-card__content::after {
  background: linear-gradient(180deg, transparent, rgba(30, 41, 59, 0.9));
}

html[data-sk-theme="dark"] .sk-notes-card:hover .sk-notes-card__content::after {
  display: none;
}

