:root {
  color-scheme: light dark;
  --skin-link: #d946ef;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-extrabold,
.font-bold {
  font-family: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
}

.glass {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.dark .glass {
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.35);
}

.cell-dropzone {
  min-height: 98px;
  background: rgba(255, 255, 255, 0.92);
}

.slot-card {
  border-left-width: 4px;
  border-radius: 10px;
}

.slot-card.dragging {
  opacity: 0.45;
}

.scrollbar-thin::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.8);
}

.pulse-highlight {
  animation: pulse-soft 1.2s ease-in-out infinite;
}

.skin-nav-link {
  transition: color 180ms ease;
}

.skin-nav-link:hover {
  color: var(--skin-link);
}

@media (max-width: 768px) {
  .pt-header-actions {
    grid-template-columns: 1fr;
  }

  main h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  main p,
  main li {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  button,
  a.rounded-xl {
    min-height: 44px;
  }
}

.feature-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.99rem;
}

.feature-line:last-child {
  border-bottom: 0;
}

.feature-check {
  margin-top: 4px;
  color: #0ea5e9;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid #0ea5e9;
  border-radius: 14px;
  padding: 18px 20px;
  background: rgba(241, 245, 249, 0.72);
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  border-right: 1px solid rgba(148, 163, 184, 0.22);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.dark .step-card {
  background: rgba(30, 41, 59, 0.72);
}

.step-badge {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.28);
}

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(217, 70, 239, 0);
  }
}
