body {
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.08), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(239, 68, 68, 0.08), transparent 25%),
    #ffffff;
  min-height: 100vh;
}

.gradient-blur {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 20%, rgba(249, 115, 22, 0.08), transparent 45%);
  filter: blur(40px);
  z-index: -1;
}

.phone-mock {
  position: relative;
  width: 300px;
  height: 560px;
  border-radius: 36px;
  border: 10px solid #0f172a;
  background: #f8fafc;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(15, 23, 42, 0.15);
}

.phone-mock .phone-top {
  padding: 28px 20px 14px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 5;
}

.mock-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
}

.mock-row .count {
  color: #cbd5e1;
  font-weight: 600;
}

.mock-task {
  padding: 16px 20px;
  background: #fff;
}

.mock-task .meta {
  display: block;
  color: #94a3b8;
  font-size: 13px;
  margin-top: 4px;
}

.shadow-orange {
  box-shadow: 0 10px 50px rgba(249, 115, 22, 0.25);
}

.floating-plus {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
}

.pill {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
}

.pill-orange { background: #fff7ed; color: #c2410c; }
.pill-blue { background: #eff6ff; color: #1d4ed8; }
.pill-red { background: #fef2f2; color: #dc2626; }
.pill-neutral { background: #f8fafc; color: #94a3b8; }
.pill-white { background: #fff; }

.check-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff7ed;
  color: #f97316;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffedd5;
}

.feature-card {
  padding: 28px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: #fed7aa;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  color: #0f172a;
  margin-bottom: 16px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.task-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: grid;
  gap: 12px;
  text-align: left;
}

.mode-card {
  width: 280px;
  height: 480px;
  border-radius: 30px;
  padding: 24px;
  border: 4px solid;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.skeleton-row {
  height: 48px;
  border-radius: 14px;
  background: #f1f5f9;
  animation: pulse 1.8s ease-in-out infinite;
}

.skeleton-row.dark { background: #1e293b; }

@keyframes pulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.45; }
}

.icon-circle {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #f8fafc;
  display: grid;
  place-items: center;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .phone-mock {
    width: 100%;
    max-width: 360px;
  }
}
