body {
  font-family: "Sora", "Inter", "Segoe UI", sans-serif;
}

.cta-primary {
  border-radius: 9999px;
  background: linear-gradient(90deg, #38bdf8 0%, #0ea5e9 100%);
  color: #0f172a;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  box-shadow: 0 14px 32px rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
}

.cta-secondary {
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 9999px;
  color: #e2e8f0;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cta-secondary:hover {
  border-color: rgba(56, 189, 248, 0.7);
  color: #7dd3fc;
}

.glass-panel {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.5));
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(10px);
}

.task-row {
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 0.75rem;
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
}

.status-done,
.status-focus,
.status-next {
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
}

.status-done {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
}

.status-focus {
  background: rgba(56, 189, 248, 0.2);
  color: #7dd3fc;
}

.status-next {
  background: rgba(249, 115, 22, 0.2);
  color: #fdba74;
}

.feature-card {
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1rem;
  padding: 1.4rem;
}
